diff options
author | Yaroslav <contact@yaroslavps.com> | 2019-09-23 06:32:38 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2019-09-23 06:32:38 +0300 |
commit | 93d2743e3864e9eab0699b1bb1ea5f01c10bdbc1 (patch) | |
tree | f5cab1472bf7d95aa72c43a713e104d2827b37a5 | |
download | swayrice-93d2743e3864e9eab0699b1bb1ea5f01c10bdbc1.tar.gz swayrice-93d2743e3864e9eab0699b1bb1ea5f01c10bdbc1.zip |
initial commit
841 files changed, 91116 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp @@ -0,0 +1,14 @@ + WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2019 Yaroslav de la Peña Smirnov <contact@yaroslavps.com> + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..494ed59 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Yaroslav's sway rice + +My own config files for my setup of sway. Should work on any distro, however it is optimized for Arch Linux. + diff --git a/dotfiles/.bash_profile b/dotfiles/.bash_profile new file mode 120000 index 0000000..aa7da3a --- /dev/null +++ b/dotfiles/.bash_profile @@ -0,0 +1 @@ +.profile
\ No newline at end of file diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc new file mode 100644 index 0000000..c71a1ef --- /dev/null +++ b/dotfiles/.bashrc @@ -0,0 +1,82 @@ +stty -ixon +shopt -s autocd #Allows you to cd into directory merely by typing the directory name. + +source ~/.scripts/git-prompt +export PS1="\[\033[38;5;14;48;5;0m\] \$(__git_ps1)\[$(tput sgr0)\]\[\033[48;5;14;38;5;0m\]\[\033[30m\] \u \[\033[38;5;14;48;5;4m\]\[\033[38;5;0m\] \h \[$(tput sgr0)\]\[\033[38;5;4;48;5;0m\]\[\033[38;5;38m\] \w\[$(tput sgr0)\]\[\033[00;38;5;0m\]\n\[$(tput sgr0)\]\[\033[48;5;0;38;5;2m\]\$\[$(tput sgr0)\]\[\033[00;38;5;0m\]\[$(tput sgr0)\]\[\033[38;5;15m\]\[$(tput sgr0)\]" + +# Environment variables +export PATH=$PATH:$HOME/.scripts +export EDITOR="nvim" +export TERMINAL="termite" +export BROWSER="qutebrowser" +export MOZ_USE_XINPUT2=1 + +# User specific environment and startup programs: +export LANG=en_US.UTF-8 +export TERM=st + +#Generic shortcuts: +alias music="ncmpcpp" +alias clock="ncmpcpp -s clock" +alias visualizer="vis" +alias news="newsboat" +alias email="neomutt" +alias files="vifm_launch" +alias audio="ncpamixer" +alias calendar="calcurse" +alias calc="R --no-save" +alias eslint="./node_modules/eslint/bin/eslint.js" + +#Mounting drive shortcuts +alias mnt="udisksctl mount -b" +alias umnt="udisksctl unmount -b" +alias dlock="udisksctl lock -b" +alias dulock="udisksctl unlock -b" + +# System Maintainence +alias nf="clear && neofetch" # Le Redditfetch + +# Some aliases +alias tmux="tmux -2" +alias mpv="mpv --gpu-context=wayland" +alias p="sudo pacman" +alias SS="sudo systemctl" +alias v="nvim" +alias r="ranger" +alias vf="vifm" +alias sr="sudo ranger" +alias ka="killall" +alias g="git" +alias gitup="git push origin master" +alias rf="source ~/.bashrc" + +# Terminal "Web apps" +alias rickroll="curl -s -L http://bit.ly/10hA8iC | bash" +weath() { curl wttr.in/$1 ;} # Check the weather (give city or leave blank). + +# Adding color +eval `dircolors ~/.dir_colors` +alias ls='ls -hN --color=auto --group-directories-first' +alias crep="grep --color=always" # Color grep - highlight desired sequence. +alias ccat="highlight --out-format=xterm256" #Color cat - print file with syntax highlighting. + +# Internet +alias yt="youtube-dl --add-metadata -ic" # Download video link +alias yta="youtube-dl --add-metadata -xic" # Download only audio +alias YT="youtube-viewer" +alias starwars="telnet towel.blinkenlights.nl" + +# Audio and Music +alias mute="lmc mute" +alias vu="lmc up" +alias vd="lmc down" +alias play="mpc toggle" +alias next="mpc next" +alias prev="mpc prev" +alias pause="mpc pause" +alias beg="mpc seek 0%" +alias lilbak="mpc seek -10" +alias lilfor="mpc seek +10" +alias bigbak="mpc seek -120" +alias bigfor="mpc seek +120" + diff --git a/dotfiles/.bemenurc b/dotfiles/.bemenurc new file mode 100755 index 0000000..2897a5b --- /dev/null +++ b/dotfiles/.bemenurc @@ -0,0 +1,29 @@ +# +# ~/.bemenurc +# + +BEMENU_BACKEND=wayland + +## define the font for dmenu to be used +BEMENU_FN="FuraCodeNerdFontMono 8" + +## textcolour for title +BEMENU_TF="#F9FAF9" + +## background colour for unselected menu-items +BEMENU_NB="#000000" + +## textcolour for unselected menu-items +BEMENU_NF="#DAC99D" + +## background colour for highlighted menu-items +BEMENU_HB="#689D6A" + +## textcolour for highlighted menu-items +BEMENU_HF="#F9FAF9" + +## command for the terminal application to be used: +TERMINAL_CMD="terminal -e" + +## export our variables +BEMENU_OPTIONS="--tf=$BEMENU_TF --fn=$BEMENU_FN --nb=$BEMENU_NB --nf=$BEMENU_NF --hf=$BEMENU_HF --hb=$BEMENU_HB" diff --git a/dotfiles/.config/gtk-3.0/settings.ini b/dotfiles/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..eb70021 --- /dev/null +++ b/dotfiles/.config/gtk-3.0/settings.ini @@ -0,0 +1,19 @@ +[Settings] +gtk-application-prefer-dark-theme=true +gtk-button-images=0 +gtk-cursor-theme-name=Adwaita +gtk-fallback-icon-theme=gnome +gtk-font-name=FuraCode Nerd Font Mono 10 +gtk-icon-theme-name=Papirus-Dark +gtk-menu-images=1 +gtk-primary-button-warps-slider=0 +gtk-theme-name=oomox-materia-dark +gtk-toolbar-style=GTK_TOOLBAR_TEXT +gtk-cursor-theme-size=0 +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintslight +gtk-xft-rgba=rgb diff --git a/dotfiles/.config/mopidy/mopidy.conf b/dotfiles/.config/mopidy/mopidy.conf new file mode 100644 index 0000000..e23e133 --- /dev/null +++ b/dotfiles/.config/mopidy/mopidy.conf @@ -0,0 +1,123 @@ +# For further information about options in this file see: +# http://docs.mopidy.com/ +# +# The initial commented out values reflect the defaults as of: +# Mopidy 2.1.0 +# Mopidy-File 2.1.0 +# Mopidy-HTTP 2.1.0 +# Mopidy-Local 2.1.0 +# Mopidy-M3U 2.1.0 +# Mopidy-MPD 2.1.0 +# Mopidy-SoftwareMixer 2.1.0 +# Mopidy-Stream 2.1.0 +# +# Available options and defaults might have changed since then, +# run `mopidy config` to see the current effective config and +# `mopidy --version` to check the current version. + +[core] +#cache_dir = $XDG_CACHE_DIR/mopidy +#config_dir = $XDG_CONFIG_DIR/mopidy +#data_dir = $XDG_DATA_DIR/mopidy +#max_tracklist_length = 10000 +#restore_state = false + +[logging] +#color = true +#console_format = %(levelname)-8s %(message)s +#debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s +#debug_file = mopidy.log +#config_file = + +[audio] +#mixer = software +#mixer_volume = +#output = autoaudiosink +#buffer_time = + +[proxy] +#scheme = +#hostname = +#port = +#username = +#password = + +[mpd] +#enabled = true +hostname = 0.0.0.0 +#port = 6600 +#password = +#max_connections = 20 +#connection_timeout = 60 +#zeroconf = Mopidy MPD server on $hostname +#command_blacklist = +# listall +# listallinfo +#default_playlist_scheme = m3u + +[http] +#enabled = true +#hostname = 127.0.0.1 +#port = 6680 +#static_dir = +#zeroconf = Mopidy HTTP server on $hostname + +[stream] +#enabled = true +#protocols = +# http +# https +# mms +# rtmp +# rtmps +# rtsp +#metadata_blacklist = +#timeout = 5000 + +[m3u] +#enabled = true +base_dir = ~/Music/ +#default_encoding = latin-1 +#default_extension = .m3u8 +#playlists_dir = + +[softwaremixer] +#enabled = true + +[file] +#enabled = true +#media_dirs = +# $XDG_MUSIC_DIR|Music +# ~/|Home +#excluded_file_extensions = +# .jpg +# .jpeg +#show_dotfiles = false +#follow_symlinks = false +#metadata_timeout = 1000 + +[local] +#enabled = true +#library = json +media_dir = ~/Music/ +#scan_timeout = 1000 +#scan_flush_threshold = 100 +#scan_follow_symlinks = false +#excluded_file_extensions = +# .directory +# .html +# .jpeg +# .jpg +# .log +# .nfo +# .png +# .txt + +[gmusic] +enabled = true +username = your@gmail.com +password = yourpassword +# deviceid = Your android's device id +all_access = true +bitrate = 320 +radio_stations_in_browse = true diff --git a/dotfiles/.config/mpd/mpd.conf b/dotfiles/.config/mpd/mpd.conf new file mode 100644 index 0000000..59b9d5f --- /dev/null +++ b/dotfiles/.config/mpd/mpd.conf @@ -0,0 +1,23 @@ +db_file "~/.config/mpd/database" +log_file "~/.config/mpd/log" +music_directory "~/Music" +playlist_directory "~/.config/mpd/playlists" +pid_file "~/.config/mpd/pid" +state_file "~/.config/mpd/state" +sticker_file "~/.config/mpd/sticker.sql" + +bind_to_address "127.0.0.1" +restore_paused "yes" +max_output_buffer_size "16384" + +audio_output { + type "pulse" + name "pulse audio" +} + +audio_output { +type "fifo" +name "toggle_visualizer" +path "/tmp/mpd.fifo" +format "44100:16:2" +} diff --git a/dotfiles/.config/mpv/input.conf b/dotfiles/.config/mpv/input.conf new file mode 100644 index 0000000..0a9b5fd --- /dev/null +++ b/dotfiles/.config/mpv/input.conf @@ -0,0 +1,199 @@ +# mpv keybindings +# +# Location of user-defined bindings: ~/.config/mpv/input.conf +# +# Lines starting with # are comments. Use SHARP to assign the # key. +# Copy this file and uncomment and edit the bindings you want to change. +# +# List of commands and further details: DOCS/man/input.rst +# List of special keys: --input-keylist +# Keybindings testing mode: mpv --input-test --force-window --idle +# +# Use 'ignore' to unbind a key fully (e.g. 'ctrl+a ignore'). +# +# Strings need to be quoted and escaped: +# KEY show-text "This is a single backslash: \\ and a quote: \" !" +# +# You can use modifier-key combinations like Shift+Left or Ctrl+Alt+x with +# the modifiers Shift, Ctrl, Alt and Meta (may not work on the terminal). +# +# The default keybindings are hardcoded into the mpv binary. +# You can disable them completely with: --no-input-default-bindings + +# Developer note: +# On compilation, this file is baked into the mpv binary, and all lines are +# uncommented (unless '#' is followed by a space) - thus this file defines the +# default key bindings. + +# If this is enabled, treat all the following bindings as default. +#default-bindings start + +#MOUSE_BTN0 ignore # don't do anything +#MOUSE_BTN0_DBL cycle fullscreen # toggle fullscreen on/off +#MOUSE_BTN2 cycle pause # toggle pause on/off +#MOUSE_BTN3 seek 10 +#MOUSE_BTN4 seek -10 +#MOUSE_BTN5 add volume -2 +#MOUSE_BTN6 add volume 2 + +# Mouse wheels, touchpad or other input devices that have axes +# if the input devices supports precise scrolling it will also scale the +# numeric value accordingly +#AXIS_UP seek 10 +#AXIS_DOWN seek -10 +#AXIS_LEFT seek 5 +#AXIS_RIGHT seek -5 + +## Seek units are in seconds, but note that these are limited by keyframes +#RIGHT seek 5 +#LEFT seek -5 +#UP seek 60 +#DOWN seek -60 +# Do smaller, always exact (non-keyframe-limited), seeks with shift. +# Don't show them on the OSD (no-osd). +#Shift+RIGHT no-osd seek 1 exact +#Shift+LEFT no-osd seek -1 exact +#Shift+UP no-osd seek 5 exact +#Shift+DOWN no-osd seek -5 exact +# Skip to previous/next subtitle (subject to some restrictions; see manpage) +#Ctrl+LEFT no-osd sub-seek -1 +#Ctrl+RIGHT no-osd sub-seek 1 +#PGUP add chapter 1 # skip to next chapter +#PGDWN add chapter -1 # skip to previous chapter +#Shift+PGUP seek 600 +#Shift+PGDWN seek -600 +#[ multiply speed 0.9091 # scale playback speed +#] multiply speed 1.1 +#{ multiply speed 0.5 +#} multiply speed 2.0 +#BS set speed 1.0 # reset speed to normal +#q quit +#Q quit-watch-later +#q {encode} quit 4 +#ESC set fullscreen no +#ESC {encode} quit 4 +#p cycle pause # toggle pause/playback mode +#. frame-step # advance one frame and pause +#, frame-back-step # go back by one frame and pause +#SPACE cycle pause +#> playlist-next # skip to next file +#ENTER playlist-next # skip to next file +#< playlist-prev # skip to previous file +#O no-osd cycle-values osd-level 3 1 # cycle through OSD mode +#o show-progress +#P show-progress +#I show-text "${filename}" # display filename in osd +#z add sub-delay -0.1 # subtract 100 ms delay from subs +#x add sub-delay +0.1 # add +#ctrl++ add audio-delay 0.100 # this changes audio/video sync +#ctrl+- add audio-delay -0.100 +#9 add volume -2 +#/ add volume -2 +#0 add volume 2 +#* add volume 2 +#m cycle mute +#1 add contrast -1 +#2 add contrast 1 +#3 add brightness -1 +#4 add brightness 1 +#5 add gamma -1 +#6 add gamma 1 +#7 add saturation -1 +#8 add saturation 1 +#Alt+0 set window-scale 0.5 +#Alt+1 set window-scale 1.0 +#Alt+2 set window-scale 2.0 +# toggle deinterlacer (automatically inserts or removes required filter) +#d cycle deinterlace +#r add sub-pos -1 # move subtitles up +#t add sub-pos +1 # down +#v cycle sub-visibility +# stretch SSA/ASS subtitles with anamorphic videos to match historical +#V cycle sub-ass-vsfilter-aspect-compat +# switch between applying no style overrides to SSA/ASS subtitles, and +# overriding them almost completely with the normal subtitle style +#u cycle-values sub-ass-style-override "force" "no" +#j cycle sub # cycle through subtitles +#J cycle sub down # ...backwards +#SHARP cycle audio # switch audio streams +#_ cycle video +#T cycle ontop # toggle video window ontop of other windows +#f cycle fullscreen # toggle fullscreen +#s screenshot # take a screenshot +#S screenshot video # ...without subtitles +#Ctrl+s screenshot window # ...with subtitles and OSD, and scaled +#Alt+s screenshot each-frame # automatically screenshot every frame +#w add panscan -0.1 # zoom out with -panscan 0 -fs +#e add panscan +0.1 # in +# cycle video aspect ratios; "-1" is the container aspect +#A cycle-values video-aspect "16:9" "4:3" "2.35:1" "-1" +#POWER quit +#PLAY cycle pause +#PAUSE cycle pause +#PLAYPAUSE cycle pause +#STOP quit +#FORWARD seek 60 +#REWIND seek -60 +#NEXT playlist-next +#PREV playlist-prev +#VOLUME_UP add volume 2 +#VOLUME_DOWN add volume -2 +#MUTE cycle mute +#CLOSE_WIN quit +#CLOSE_WIN {encode} quit 4 +#E cycle edition # next edition +#l ab-loop # Set/clear A-B loop points +#L cycle-values loop "inf" "no" # toggle infinite looping +#ctrl+c quit 4 + +# Apple Remote section +#AR_PLAY cycle pause +#AR_PLAY_HOLD quit +#AR_CENTER cycle pause +#AR_CENTER_HOLD quit +#AR_NEXT seek 10 +#AR_NEXT_HOLD seek 120 +#AR_PREV seek -10 +#AR_PREV_HOLD seek -120 +#AR_MENU show-progress +#AR_MENU_HOLD cycle mute +#AR_VUP add volume 2 +#AR_VUP_HOLD add chapter 1 +#AR_VDOWN add volume -2 +#AR_VDOWN_HOLD add chapter -1 + +# For tv:// +#h cycle tv-channel -1 # previous channel +#k cycle tv-channel +1 # next channel + +# For dvb:// +#H cycle dvb-channel-name -1 # previous channel +#K cycle dvb-channel-name +1 # next channel + +# +# Legacy bindings (may or may not be removed in the future) +# +#! add chapter -1 # skip to previous chapter +#@ add chapter 1 # next + +# +# Not assigned by default +# (not an exhaustive list of unbound commands) +# + +# ? add sub-scale +0.1 # increase subtitle font size +# ? add sub-scale -0.1 # decrease subtitle font size +# ? sub-step -1 # immediately display next subtitle +# ? sub-step +1 # previous +# ? cycle angle # switch DVD/Bluray angle +# ? add balance -0.1 # adjust audio balance in favor of left +# ? add balance 0.1 # right +# ? cycle sub-forced-only # toggle DVD forced subs +# ? cycle program # cycle transport stream programs +# ? stop # stop playback (quit or enter idle mode) + +l seek 5 +h seek -5 +j seek -60 +k seek 60 +S cycle sub diff --git a/dotfiles/.config/ncmpcpp/bindings b/dotfiles/.config/ncmpcpp/bindings new file mode 100644 index 0000000..8e59b21 --- /dev/null +++ b/dotfiles/.config/ncmpcpp/bindings @@ -0,0 +1,617 @@ +############################################################## +## This is the example bindings file. Copy it to ## +## ~/.ncmpcpp/bindings or $XDG_CONFIG_HOME/ncmpcpp/bindings ## +## and set up your preferences ## +############################################################## +## +##### General rules ##### +## +## 1) Because each action has runtime checks whether it's +## ok to run it, a few actions can be bound to one key. +## Actions will be bound in order given in configuration +## file. When a key is pressed, first action in order +## will test itself whether it's possible to run it. If +## test succeeds, action is executed and other actions +## bound to this key are ignored. If it doesn't, next +## action in order tests itself etc. +## +## 2) It's possible to bind more that one action at once +## to a key. It can be done using the following syntax: +## +## def_key "key" +## action1 +## action2 +## ... +## +## This creates a chain of actions. When such chain is +## executed, each action in chain is run until the end of +## chain is reached or one of its actions fails to execute +## due to its requirements not being met. If multiple actions +## and/or chains are bound to the same key, they will be +## consecutively run until one of them gets fully executed. +## +## 3) When ncmpcpp starts, bindings configuration file is +## parsed and then ncmpcpp provides "missing pieces" +## of default keybindings. If you want to disable some +## bindings, there is a special action called 'dummy' +## for that purpose. Eg. if you want to disable ability +## to crop playlists, you need to put the following +## into configuration file: +## +## def_key "C" +## dummy +## +## After that ncmpcpp will not bind any default action +## to this key. +## +## 4) To let you write simple macros, the following special +## actions are provided: +## +## - push_character "character" - pushes given special +## character into input queue, so it will be immediately +## picked by ncmpcpp upon next call to readKey function. +## Accepted values: mouse, up, down, page_up, page_down, +## home, end, space, enter, insert, delete, left, right, +## tab, ctrl-a, ctrl-b, ..., ctrl-z, ctrl-[, ctrl-\\, +## ctrl-], ctrl-^, ctrl-_, f1, f2, ..., f12, backspace. +## In addition, most of these names can be prefixed with +## alt-/ctrl-/shift- to be recognized with the appropriate +## modifier key(s). +## +## - push_characters "string" - pushes given string into +## input queue. +## +## - require_runnable "action" - checks whether given action +## is runnable and fails if it isn't. This is especially +## useful when mixed with previous two functions. Consider +## the following macro definition: +## +## def_key "key" +## push_characters "custom_filter" +## apply_filter +## +## If apply_filter can't be currently run, we end up with +## sequence of characters in input queue which will be +## treated just as we typed them. This may lead to unexpected +## results (in this case 'c' will most likely clear current +## playlist, 'u' will trigger database update, 's' will stop +## playback etc.). To prevent such thing from happening, we +## need to change above definition to this one: +## +## def_key "key" +## require_runnable "apply_filter" +## push_characters "custom_filter" +## apply_filter +## +## Here, first we test whether apply_filter can be actually run +## before we stuff characters into input queue, so if condition +## is not met, whole chain is aborted and we're fine. +## +## - require_screen "screen" - checks whether given screen is +## currently active. accepted values: browser, clock, help, +## media_library, outputs, playlist, playlist_editor, +## search_engine, tag_editor, visualizer, last_fm, lyrics, +## selected_items_adder, server_info, song_info, +## sort_playlist_dialog, tiny_tag_editor. +## +## - run_external_command "command" - runs given command using +## system() function. +## +## 5) In addition to binding to a key, you can also bind actions +## or chains of actions to a command. If it comes to commands, +## syntax is very similar to defining keys. Here goes example +## definition of a command: +## +## def_command "quit" [deferred] +## stop +## quit +## +## If you execute the above command (which can be done by +## invoking action execute_command, typing 'quit' and pressing +## enter), ncmpcpp will stop the player and then quit. Note the +## presence of word 'deferred' enclosed in square brackets. It +## tells ncmpcpp to wait for confirmation (ie. pressing enter) +## after you typed quit. Instead of 'deferred', 'immediate' +## could be used. Then ncmpcpp will not wait for confirmation +## (enter) and will execute the command the moment it sees it. +## +## Note: while command chains are executed, internal environment +## update (which includes current window refresh and mpd status +## update) is not performed for performance reasons. However, it +## may be desirable to do so in some situration. Therefore it's +## possible to invoke by hand by performing 'update enviroment' +## action. +## +## Note: There is a difference between: +## +## def_key "key" +## action1 +## +## def_key "key" +## action2 +## +## and +## +## def_key "key" +## action1 +## action2 +## +## First one binds two single actions to the same key whilst +## second one defines a chain of actions. The behavior of +## these two is different and is described in (1) and (2). +## +## Note: Function def_key accepts non-ascii characters. +## +##### List of unbound actions ##### +## +## The following actions are not bound to any key/command: +## +## - set_volume +## +# +#def_key "mouse" +# mouse_event +# +#def_key "up" +# scroll_up +# +#def_key "shift-up" +# select_item +# scroll_up +# +#def_key "down" +# scroll_down +# +#def_key "shift-down" +# select_item +# scroll_down +# +#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 +# +#def_key "insert" +# select_item +# +#def_key "enter" +# enter_directory +# +#def_key "enter" +# toggle_output +# +#def_key "enter" +# run_action +# +#def_key "enter" +# play_item +# +#def_key "space" +# add_item_to_playlist +# +#def_key "space" +# toggle_lyrics_update_on_song_change +# +#def_key "space" +# toggle_visualization_type +# +#def_key "delete" +# delete_playlist_items +# +#def_key "delete" +# delete_browser_items +# +#def_key "delete" +# delete_stored_playlist +# +#def_key "right" +# next_column +# +#def_key "right" +# slave_screen +# +#def_key "right" +# volume_up +# +#def_key "+" +# volume_up +# +#def_key "left" +# previous_column +# +#def_key "left" +# master_screen +# +#def_key "left" +# volume_down +# +#def_key "-" +# volume_down +# +#def_key ":" +# execute_command +# +#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_clock +# +#def_key "@" +# show_server_info +# +#def_key "s" +# stop +# +#def_key "p" +# pause +# +#def_key ">" +# next +# +#def_key "<" +# previous +# +#def_key "ctrl-h" +# jump_to_parent_directory +# +#def_key "ctrl-h" +# replay_song +# +#def_key "backspace" +# jump_to_parent_directory +# +#def_key "backspace" +# replay_song +# +#def_key "f" +# seek_forward +# +#def_key "b" +# seek_backward +# +#def_key "r" +# toggle_repeat +# +#def_key "z" +# toggle_random +# +#def_key "y" +# save_tag_changes +# +#def_key "y" +# start_searching +# +#def_key "y" +# toggle_single +# +#def_key "R" +# toggle_consume +# +#def_key "Y" +# toggle_replay_gain_mode +# +#def_key "T" +# toggle_add_mode +# +#def_key "|" +# toggle_mouse +# +#def_key "#" +# toggle_bitrate_visibility +# +#def_key "Z" +# shuffle +# +#def_key "x" +# toggle_crossfade +# +#def_key "X" +# set_crossfade +# +#def_key "u" +# update_database +# +#def_key "ctrl-s" +# sort_playlist +# +#def_key "ctrl-s" +# toggle_browser_sort_mode +# +#def_key "ctrl-s" +# toggle_media_library_sort_mode +# +#def_key "ctrl-r" +# reverse_playlist +# +#def_key "ctrl-f" +# apply_filter +# +#def_key "ctrl-_" +# select_found_items +# +#def_key "/" +# find +# +#def_key "/" +# find_item_forward +# +#def_key "?" +# find +# +#def_key "?" +# find_item_backward +# +#def_key "." +# next_found_item +# +#def_key "," +# previous_found_item +# +#def_key "w" +# toggle_find_mode +# +#def_key "e" +# edit_song +# +#def_key "e" +# edit_library_tag +# +#def_key "e" +# edit_library_album +# +#def_key "e" +# edit_directory_name +# +#def_key "e" +# edit_playlist_name +# +#def_key "e" +# edit_lyrics +# +#def_key "i" +# show_song_info +# +#def_key "I" +# show_artist_info +# +#def_key "g" +# jump_to_position_in_song +# +#def_key "l" +# show_lyrics +# +#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 "c" +# clear_playlist +# +#def_key "c" +# clear_main_playlist +# +#def_key "C" +# crop_playlist +# +#def_key "C" +# crop_main_playlist +# +#def_key "m" +# move_sort_order_up +# +#def_key "m" +# move_selected_items_up +# +#def_key "n" +# move_sort_order_down +# +#def_key "n" +# move_selected_items_down +# +#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_browser +# +#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 "P" +# toggle_display_mode +# +#def_key "\\" +# toggle_interface +# +#def_key "!" +# toggle_separators_between_albums +# +#def_key "L" +# toggle_lyrics_fetcher +# +#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 "q" +# quit +# +# +def_key "s" + select_item +def_key "d" + delete_playlist_items + +def_key "f" + find +def_key "f" + find_item_forward + +def_key "+" + show_clock +def_key "=" + volume_up + +def_key "j" + scroll_down +def_key "k" + scroll_up + +def_key "ctrl-u" + page_up +#push_characters "kkkkkkkkkkkkkkk" +def_key "ctrl-d" + page_down +#push_characters "jjjjjjjjjjjjjjj" +def_key "u" + page_up +#push_characters "kkkkkkkkkkkkkkk" +def_key "d" + page_down +#push_characters "jjjjjjjjjjjjjjj" +def_key "h" + previous_column +def_key "l" + next_column + +def_key "." + show_lyrics + +def_key "n" + next_found_item +def_key "N" + previous_found_item + +# not used but bound +def_key "J" + move_sort_order_down +def_key "K" + move_sort_order_up +def_key "h" + jump_to_parent_directory +def_key "l" + enter_directory +def_key "l" + run_action +def_key "l" + play_item +def_key "m" + show_media_library +def_key "m" + toggle_media_library_columns_mode +def_key "t" + show_tag_editor +def_key "v" + show_visualizer +def_key "G" + move_end +def_key "g" + move_home +#jump_to_position_in_song +def_key "U" + update_database diff --git a/dotfiles/.config/ncmpcpp/config b/dotfiles/.config/ncmpcpp/config new file mode 100644 index 0000000..d89e7b8 --- /dev/null +++ b/dotfiles/.config/ncmpcpp/config @@ -0,0 +1,48 @@ +############################################################################## +## This is the example configuration file. Copy it to $HOME/.ncmpcpp/config ## +## or $XDG_CONFIG_HOME/ncmpcpp/config and set up your preferences. ## +############################################################################## +# +# Interfaz: +user_interface = "alternative" +alternative_header_first_line_format = "$(white)─┤ $b$(red)%a$(end)$/b ├─$(end)" +alternative_header_second_line_format = "$(16)%t (%y)$(end)" +alternative_ui_separator_color = "cyan" + +# Formato de canción: +song_columns_list_format = "$L (10)[white]{n} $1│$7 (20)[cyan]{a} $1│$7 (20)[white]{b} $1│$7 (30)[cyan]{t} $1│$7 (10)[white]{l}" +now_playing_prefix = "$b" +centered_cursor = "no" +cyclic_scrolling = "yes" +mouse_list_scroll_whole_page = "no" + +# Varias configuraciones: +autocenter_mode = "yes" +display_bitrate = "yes" +header_visibility = "yes" +statusbar_visibility = "yes" +progressbar_look = "▃▃▃" +external_editor = "nvim" + + +# Visualizador de música: +visualizer_output_name = "FIFO" +visualizer_in_stereo = "no" +visualizer_fifo_path = "/tmp/mpd.fifo" +visualizer_sync_interval = "10" +visualizer_type = "spectrum" +visualizer_look = "▋▋" + + +# Color: +color1 = "white" +color2 = "red" +discard_colors_if_item_is_selected = "yes" +main_window_color = "white" +header_window_color = "4" +progressbar_color = "blue" +statusbar_color = "red" +volume_color = "4" +window_border_color = "white" +active_window_border = "4" + diff --git a/dotfiles/.config/stig/default.theme b/dotfiles/.config/stig/default.theme new file mode 100644 index 0000000..8c1cd7e --- /dev/null +++ b/dotfiles/.config/stig/default.theme @@ -0,0 +1,617 @@ +# This is the default theme for stig. +# https://github.com/rndusr/stig +# +# To create your own theme, copy this file anywhere you like (name and +# extension are irrelevant) and load it: +# +# set tui.theme path/to/your/theme +# +# If your theme file is in the same directory as your rc file +# ($XDG_CONFIG_HOME/stig by default), you can omit the path. +# +# FILE FORMAT +# +# Each line specifies one combination of foreground/background color and +# optional attributes (bold, underlined, etc). The line format is: +# +# <NAME> <FOREGROUND COLOR>[,<ATTRIBUTE1>,<ATTRIBUTE2>,...] on <BACKGROUND COLOR> +# +# Color names: default, black, white, dark gray, light gray, dark red, +# light red, dark green, light green, dark blue, light blue, dark magenta, +# light magenta, dark cyan, light cyan, brown, yellow +# +# You can also use RGB colors in the format "#RGB". They will be converted to +# the closest color in the 256-color palette. +# +# Attribute names: bold, underline, standout +# +# VARIABLES +# +# You can declare simple variables like this: +# +# $<VARIABLE> = <VALUE> +# +# Any occurence of '$<VARIABLE>' after this declaration is replaced by +# '<VALUE>'. Variable names consist of one or more printable, non-whitespace +# characters. + +# Uncomment the next line to automatically make light colors bold. +#light_is_bold + +cli black on yellow +scrollbar light gray on dark gray +helptext light gray on default +prompt black,bold on yellow +find.highlight black on yellow + +$tabf = dark cyan +$tabuf = black +tabs.unfocused white on $tabuf +tabs.focused black on $tabf +tabs.torrentlist.unfocused light gray on $tabuf +tabs.torrentlist.focused black on $tabf +tabs.torrentsummary.unfocused light blue on $tabuf +tabs.torrentsummary.focused black on $tabf +tabs.filelist.unfocused light magenta on $tabuf +tabs.filelist.focused black on $tabf +tabs.peerlist.unfocused light green on $tabuf +tabs.peerlist.focused black on $tabf +tabs.trackerlist.unfocused white on $tabuf +tabs.trackerlist.focused black on $tabf +tabs.settinglist.unfocused yellow on $tabuf +tabs.settinglist.focused dark blue on $tabf +tabs.help.unfocused light green on $tabuf +tabs.help.focused dark blue on $tabf + +$topbar_bg = dark cyan +topbar black on $topbar_bg +topbar.host.connected yellow on $topbar_bg +topbar.host.connecting black on light magenta +topbar.host.disconnected black on light red +topbar.help.key light cyan on $topbar_bg +topbar.help.equals light cyan on $topbar_bg +topbar.help.label light cyan on $topbar_bg +topbar.help.space light cyan on $topbar_bg + +$bottombar_bg = black +bottombar light gray on $bottombar_bg +bottombar.important light red,bold on $bottombar_bg +bottombar.marked black,bold on yellow +bottombar.bandwidth.up dark green on $bottombar_bg +bottombar.bandwidth.up.highlighted light green on $bottombar_bg +bottombar.bandwidth.down dark cyan on $bottombar_bg +bottombar.bandwidth.down.highlighted light cyan on $bottombar_bg + +$log_bg = dark gray +log light gray on $log_bg +log.timestamp dark cyan on $log_bg +log.info light green on $log_bg +log.error light red,bold on $log_bg +log.debug yellow on $log_bg +log.dupecount light cyan on $log_bg + +$keychains_bg = black +keychains light gray on $keychains_bg +keychains.header light gray on dark gray +keychains.keys light gray on $keychains_bg +keychains.keys.next yellow on $keychains_bg +keychains.action white on $keychains_bg +keychains.description white on $keychains_bg + + + +$tlist_bg.uf = default +$tlist_bg.f = black +torrentlist default on $tlist_bg.uf +torrentlist.focused default on $tlist_bg.f +torrentlist.header light gray,underline on $tlist_bg.uf + +$id_fg = white +torrentlist.id.header $id_fg,underline on $tlist_bg.uf +torrentlist.id.unfocused $id_fg on $tlist_bg.uf +torrentlist.id.focused $id_fg on $tlist_bg.f + +$downloaded_fg = dark cyan +$downloaded_hl = light cyan +torrentlist.downloaded.header $downloaded_fg,underline on $tlist_bg.uf +torrentlist.downloaded.unfocused $downloaded_fg on $tlist_bg.uf +torrentlist.downloaded.focused $downloaded_fg on $tlist_bg.f +torrentlist.downloaded.highlighted.unfocused $downloaded_hl on $tlist_bg.uf +torrentlist.downloaded.highlighted.focused $downloaded_hl on $tlist_bg.f + +$uploaded_fg = dark green +$uploaded_hl = light green +torrentlist.uploaded.header $uploaded_fg,underline on $tlist_bg.uf +torrentlist.uploaded.unfocused $uploaded_fg on $tlist_bg.uf +torrentlist.uploaded.focused $uploaded_fg on $tlist_bg.f +torrentlist.uploaded.highlighted.unfocused $uploaded_hl on $tlist_bg.uf +torrentlist.uploaded.highlighted.focused $uploaded_hl on $tlist_bg.f + +$available_fg = dark blue +$available_hl = light blue +torrentlist.available.header $available_fg,underline on $tlist_bg.uf +torrentlist.available.unfocused $available_fg on $tlist_bg.uf +torrentlist.available.focused $available_fg on $tlist_bg.f +torrentlist.available.highlighted.unfocused $available_hl on $tlist_bg.uf +torrentlist.available.highlighted.focused $available_hl on $tlist_bg.f + +$marked_fg = white +torrentlist.marked.header $marked_fg,underline on $tlist_bg.uf +torrentlist.marked.unfocused $marked_fg on $tlist_bg.uf +torrentlist.marked.focused $marked_fg on $tlist_bg.f + +$path_fg = light gray +torrentlist.path.header $path_fg,underline on $tlist_bg.uf +torrentlist.path.unfocused $path_fg on $tlist_bg.uf +torrentlist.path.focused $path_fg on $tlist_bg.f + +$peers_fg = light gray +$peers_hl = white +torrentlist.peers.header $peers_fg,underline on $tlist_bg.uf +torrentlist.peers.unfocused $peers_fg on $tlist_bg.uf +torrentlist.peers.focused $peers_fg on $tlist_bg.f +torrentlist.peers.highlighted.unfocused $peers_hl on $tlist_bg.uf +torrentlist.peers.highlighted.focused $peers_hl on $tlist_bg.f + +$seeds_fg = light gray +$seeds_hl = white +torrentlist.seeds.header $seeds_fg,underline on $tlist_bg.uf +torrentlist.seeds.unfocused $seeds_fg on $tlist_bg.uf +torrentlist.seeds.focused $seeds_fg on $tlist_bg.f +torrentlist.seeds.highlighted.unfocused $seeds_hl on $tlist_bg.uf +torrentlist.seeds.highlighted.focused $seeds_hl on $tlist_bg.f + +$%downloaded_fg = dark blue +$%downloaded_hl = light blue +torrentlist.%downloaded.header $%downloaded_fg,underline on $tlist_bg.uf +torrentlist.%downloaded.unfocused $%downloaded_fg on $tlist_bg.uf +torrentlist.%downloaded.focused $%downloaded_fg on $tlist_bg.f +torrentlist.%downloaded.highlighted.unfocused $%downloaded_hl on $tlist_bg.uf +torrentlist.%downloaded.highlighted.focused $%downloaded_hl on $tlist_bg.f + +$%available_fg = dark blue +$%available_hl = light blue +torrentlist.%available.header $%available_fg,underline on $tlist_bg.uf +torrentlist.%available.unfocused $%available_fg on $tlist_bg.uf +torrentlist.%available.focused $%available_fg on $tlist_bg.f +torrentlist.%available.highlighted.unfocused $%available_hl on $tlist_bg.uf +torrentlist.%available.highlighted.focused $%available_hl on $tlist_bg.f + +$rate-down_fg = dark cyan +$rate-down_hl = light cyan +torrentlist.rate-down.header $rate-down_fg,underline on $tlist_bg.uf +torrentlist.rate-down.unfocused $rate-down_fg on $tlist_bg.uf +torrentlist.rate-down.focused $rate-down_fg on $tlist_bg.f +torrentlist.rate-down.highlighted.unfocused $rate-down_hl on $tlist_bg.uf +torrentlist.rate-down.highlighted.focused $rate-down_hl on $tlist_bg.f + +$rate-up_fg = dark green +$rate-up_hl = light green +torrentlist.rate-up.header $rate-up_fg,underline on $tlist_bg.uf +torrentlist.rate-up.unfocused $rate-up_fg on $tlist_bg.uf +torrentlist.rate-up.focused $rate-up_fg on $tlist_bg.f +torrentlist.rate-up.highlighted.unfocused $rate-up_hl on $tlist_bg.uf +torrentlist.rate-up.highlighted.focused $rate-up_hl on $tlist_bg.f + +$limit-rate-down_fg = dark cyan +$limit-rate-down_hl = light cyan +torrentlist.limit-rate-down.header $limit-rate-down_fg,underline on $tlist_bg.uf +torrentlist.limit-rate-down.unfocused $limit-rate-down_fg on $tlist_bg.uf +torrentlist.limit-rate-down.focused $limit-rate-down_fg on $tlist_bg.f +torrentlist.limit-rate-down.highlighted.unfocused $limit-rate-down_hl on $tlist_bg.uf +torrentlist.limit-rate-down.highlighted.focused $limit-rate-down_hl on $tlist_bg.f + +$limit-rate-up_fg = dark green +$limit-rate-up_hl = light green +torrentlist.limit-rate-up.header $limit-rate-up_fg,underline on $tlist_bg.uf +torrentlist.limit-rate-up.unfocused $limit-rate-up_fg on $tlist_bg.uf +torrentlist.limit-rate-up.focused $limit-rate-up_fg on $tlist_bg.f +torrentlist.limit-rate-up.highlighted.unfocused $limit-rate-up_hl on $tlist_bg.uf +torrentlist.limit-rate-up.highlighted.focused $limit-rate-up_hl on $tlist_bg.f + +$ratio_fg = dark blue +$ratio_hl = light blue +torrentlist.ratio.header $ratio_fg,underline on $tlist_bg.uf +torrentlist.ratio.unfocused $ratio_fg on $tlist_bg.uf +torrentlist.ratio.focused $ratio_fg on $tlist_bg.f +torrentlist.ratio.highlighted.unfocused $ratio_hl on $tlist_bg.uf +torrentlist.ratio.highlighted.focused $ratio_hl on $tlist_bg.f + +$size_fg = dark magenta +torrentlist.size.header $size_fg,underline on $tlist_bg.uf +torrentlist.size.unfocused $size_fg on $tlist_bg.uf +torrentlist.size.focused $size_fg on $tlist_bg.f + +$tracker_fg = light gray +torrentlist.tracker.header $tracker_fg,underline on $tlist_bg.uf +torrentlist.tracker.unfocused $tracker_fg on $tlist_bg.uf +torrentlist.tracker.focused $tracker_fg on $tlist_bg.f + +$error_fg = light red +torrentlist.error.header $error_fg,underline on $tlist_bg.uf +torrentlist.error.unfocused $error_fg on $tlist_bg.uf +torrentlist.error.focused $error_fg on $tlist_bg.f + +$added_fg = brown +torrentlist.added.header $added_fg,underline on $tlist_bg.uf +torrentlist.added.unfocused $added_fg on $tlist_bg.uf +torrentlist.added.focused $added_fg on $tlist_bg.f + +$activity_fg = brown +torrentlist.activity.header $activity_fg,underline on $tlist_bg.uf +torrentlist.activity.unfocused $activity_fg on $tlist_bg.uf +torrentlist.activity.focused $activity_fg on $tlist_bg.f + +$created_fg = brown +torrentlist.created.header $created_fg,underline on $tlist_bg.uf +torrentlist.created.unfocused $created_fg on $tlist_bg.uf +torrentlist.created.focused $created_fg on $tlist_bg.f + +$completed_fg = brown +$completed_hl = yellow +torrentlist.completed.header $completed_fg,underline on $tlist_bg.uf +torrentlist.completed.unfocused $completed_fg on $tlist_bg.uf +torrentlist.completed.focused $completed_fg on $tlist_bg.f +torrentlist.completed.highlighted.unfocused $completed_hl on $tlist_bg.uf +torrentlist.completed.highlighted.focused $completed_hl on $tlist_bg.f + +$eta_fg = brown +$eta_hl = yellow +torrentlist.eta.header $eta_fg,underline on $tlist_bg.uf +torrentlist.eta.unfocused $eta_fg on $tlist_bg.uf +torrentlist.eta.focused $eta_fg on $tlist_bg.f +torrentlist.eta.highlighted.unfocused $eta_hl on $tlist_bg.uf +torrentlist.eta.highlighted.focused $eta_hl on $tlist_bg.f + +$started_fg = brown +torrentlist.started.header $started_fg,underline on $tlist_bg.uf +torrentlist.started.unfocused $started_fg on $tlist_bg.uf +torrentlist.started.focused $started_fg on $tlist_bg.f + + +$status.idle_fg = light gray +$status.downloading_fg = dark cyan +$status.uploading_fg = dark green +$status.connected_fg = dark magenta +$status.seeding_fg = light gray +$status.stopped_fg = dark blue +$status.queued_fg = brown +$status.isolated_fg = dark red +$status.verifying_fg = yellow +$status.discovering_fg = light blue + +torrentlist.status.header $status.idle_fg,underline on $tlist_bg.uf + +torrentlist.status.idle.unfocused $status.idle_fg on $tlist_bg.uf +torrentlist.status.idle.focused $status.idle_fg on $tlist_bg.f + +torrentlist.status.uploading.unfocused $status.uploading_fg on $tlist_bg.uf +torrentlist.status.uploading.focused $status.uploading_fg on $tlist_bg.f + +torrentlist.status.downloading.unfocused $status.downloading_fg on $tlist_bg.uf +torrentlist.status.downloading.focused $status.downloading_fg on $tlist_bg.f + +torrentlist.status.connected.unfocused $status.connected_fg on $tlist_bg.uf +torrentlist.status.connected.focused $status.connected_fg on $tlist_bg.f + +torrentlist.status.seeding.unfocused $status.seeding_fg on $tlist_bg.uf +torrentlist.status.seeding.focused $status.seeding_fg on $tlist_bg.f + +torrentlist.status.stopped.unfocused $status.stopped_fg on $tlist_bg.uf +torrentlist.status.stopped.focused $status.stopped_fg on $tlist_bg.f + +torrentlist.status.isolated.unfocused $status.isolated_fg on $tlist_bg.uf +torrentlist.status.isolated.focused $status.isolated_fg on $tlist_bg.f + +torrentlist.status.queued.unfocused $status.queued_fg on $tlist_bg.uf +torrentlist.status.queued.focused $status.queued_fg on $tlist_bg.f + +torrentlist.status.verifying.unfocused $status.verifying_fg on $tlist_bg.uf +torrentlist.status.verifying.focused $status.verifying_fg on $tlist_bg.f + +torrentlist.status.discovering.unfocused $status.discovering_fg on $tlist_bg.uf +torrentlist.status.discovering.focused $status.discovering_fg on $tlist_bg.f + + +$name.idle_fg = $status.idle_fg +torrentlist.name.header $name.idle_fg,underline on $tlist_bg.uf +torrentlist.name.idle.progress1.unfocused $name.idle_fg,underline on $tlist_bg.uf +torrentlist.name.idle.progress1.focused $name.idle_fg,underline on $tlist_bg.f +torrentlist.name.idle.progress2.unfocused $name.idle_fg on $tlist_bg.uf +torrentlist.name.idle.progress2.focused $name.idle_fg on $tlist_bg.f +torrentlist.name.idle.complete.unfocused $name.idle_fg on $tlist_bg.uf +torrentlist.name.idle.complete.focused $name.idle_fg on $tlist_bg.f + +$name.uploading_fg = $status.uploading_fg +torrentlist.name.uploading.progress1.unfocused $name.uploading_fg,underline on $tlist_bg.uf +torrentlist.name.uploading.progress1.focused $name.uploading_fg,underline on $tlist_bg.f +torrentlist.name.uploading.progress2.unfocused $name.uploading_fg on $tlist_bg.uf +torrentlist.name.uploading.progress2.focused $name.uploading_fg on $tlist_bg.f +torrentlist.name.uploading.complete.unfocused $name.uploading_fg on $tlist_bg.uf +torrentlist.name.uploading.complete.focused $name.uploading_fg on $tlist_bg.f + +$name.downloading_fg = $status.downloading_fg +torrentlist.name.downloading.progress1.unfocused $name.downloading_fg,underline on $tlist_bg.uf +torrentlist.name.downloading.progress1.focused $name.downloading_fg,underline on $tlist_bg.f +torrentlist.name.downloading.progress2.unfocused $name.downloading_fg on $tlist_bg.uf +torrentlist.name.downloading.progress2.focused $name.downloading_fg on $tlist_bg.f +torrentlist.name.downloading.complete.unfocused $name.downloading_fg on $tlist_bg.uf +torrentlist.name.downloading.complete.focused $name.downloading_fg on $tlist_bg.f + +$name.isolated_fg = $status.isolated_fg +torrentlist.name.isolated.progress1.unfocused $name.isolated_fg,underline on $tlist_bg.uf +torrentlist.name.isolated.progress1.focused $name.isolated_fg,underline on $tlist_bg.f +torrentlist.name.isolated.progress2.unfocused $name.isolated_fg on $tlist_bg.uf +torrentlist.name.isolated.progress2.focused $name.isolated_fg on $tlist_bg.f +torrentlist.name.isolated.complete.unfocused $name.isolated_fg on $tlist_bg.uf +torrentlist.name.isolated.complete.focused $name.isolated_fg on $tlist_bg.f + +$name.connected_fg = $status.connected_fg +torrentlist.name.connected.progress1.unfocused $name.connected_fg,underline on $tlist_bg.uf +torrentlist.name.connected.progress1.focused $name.connected_fg,underline on $tlist_bg.f +torrentlist.name.connected.progress2.unfocused $name.connected_fg on $tlist_bg.uf +torrentlist.name.connected.progress2.focused $name.connected_fg on $tlist_bg.f +torrentlist.name.connected.complete.unfocused $name.connected_fg on $tlist_bg.uf +torrentlist.name.connected.complete.focused $name.connected_fg on $tlist_bg.f + +$name.queued_fg = $status.queued_fg +torrentlist.name.queued.progress1.unfocused $name.queued_fg,underline on $tlist_bg.uf +torrentlist.name.queued.progress1.focused $name.queued_fg,underline on $tlist_bg.f +torrentlist.name.queued.progress2.unfocused $name.queued_fg on $tlist_bg.uf +torrentlist.name.queued.progress2.focused $name.queued_fg on $tlist_bg.f +torrentlist.name.queued.complete.unfocused $name.queued_fg on $tlist_bg.uf +torrentlist.name.queued.complete.focused $name.queued_fg on $tlist_bg.f + +$name.stopped_fg = $status.stopped_fg +torrentlist.name.stopped.progress1.unfocused $name.stopped_fg,underline on $tlist_bg.uf +torrentlist.name.stopped.progress1.focused $name.stopped_fg,underline on $tlist_bg.f +torrentlist.name.stopped.progress2.unfocused $name.stopped_fg on $tlist_bg.uf +torrentlist.name.stopped.progress2.focused $name.stopped_fg on $tlist_bg.f +torrentlist.name.stopped.complete.unfocused $name.stopped_fg on $tlist_bg.uf +torrentlist.name.stopped.complete.focused $name.stopped_fg on $tlist_bg.f + +$name.verifying_fg = $status.verifying_fg +torrentlist.name.verifying.progress1.unfocused $name.verifying_fg,underline on $tlist_bg.uf +torrentlist.name.verifying.progress1.focused $name.verifying_fg,underline on $tlist_bg.f +torrentlist.name.verifying.progress2.unfocused $name.verifying_fg on $tlist_bg.uf +torrentlist.name.verifying.progress2.focused $name.verifying_fg on $tlist_bg.f +torrentlist.name.verifying.complete.unfocused $name.verifying_fg on $tlist_bg.uf +torrentlist.name.verifying.complete.focused $name.verifying_fg on $tlist_bg.f + +$name.discovering_fg = $status.discovering_fg +torrentlist.name.discovering.progress1.unfocused $name.discovering_fg,underline on $tlist_bg.uf +torrentlist.name.discovering.progress1.focused $name.discovering_fg,underline on $tlist_bg.f +torrentlist.name.discovering.progress2.unfocused $name.discovering_fg on $tlist_bg.uf +torrentlist.name.discovering.progress2.focused $name.discovering_fg on $tlist_bg.f +torrentlist.name.discovering.complete.unfocused $name.discovering_fg on $tlist_bg.uf +torrentlist.name.discovering.complete.focused $name.discovering_fg on $tlist_bg.f + + +torrentsummary light gray on black +torrentsummary.error light red on black + + +$flist_bg.uf = black +$flist_bg.f = dark gray +filelist default on $flist_bg.uf +filelist.focused default on $flist_bg.f +filelist.header light gray,underline on $flist_bg.uf + +$marked_fg = white +filelist.marked.header $marked_fg,underline on $flist_bg.uf +filelist.marked.unfocused $marked_fg on $flist_bg.uf +filelist.marked.focused $marked_fg on $flist_bg.f + +$file_fg = light gray +$folder_fg = white +filelist.name.header light gray,underline on $flist_bg.uf +filelist.name.file.unfocused $file_fg on $flist_bg.uf +filelist.name.file.focused $file_fg on $flist_bg.f +filelist.name.folder.unfocused $folder_fg on $flist_bg.uf +filelist.name.folder.focused $folder_fg on $flist_bg.f + +$size_fg = dark magenta +filelist.size.header $size_fg,underline on $flist_bg.uf +filelist.size.unfocused $size_fg on $flist_bg.uf +filelist.size.focused $size_fg on $flist_bg.f + +$downloaded_fg = dark cyan +$downloaded_hl = light cyan +filelist.downloaded.header $downloaded_fg,underline on $flist_bg.uf +filelist.downloaded.unfocused $downloaded_fg on $flist_bg.uf +filelist.downloaded.focused $downloaded_fg on $flist_bg.f +filelist.downloaded.highlighted.unfocused $downloaded_hl on $flist_bg.uf +filelist.downloaded.highlighted.focused $downloaded_hl on $flist_bg.f + +$%downloaded_fg = dark blue +$%downloaded_hl = light blue +filelist.%downloaded.header $%downloaded_fg,underline on $flist_bg.uf +filelist.%downloaded.unfocused $%downloaded_fg on $flist_bg.uf +filelist.%downloaded.focused $%downloaded_fg on $flist_bg.f +filelist.%downloaded.highlighted.unfocused $%downloaded_hl on $flist_bg.uf +filelist.%downloaded.highlighted.focused $%downloaded_hl on $flist_bg.f + +$priority_fg = brown +$priority_hl = yellow +filelist.priority.header $priority_fg,underline on $flist_bg.uf +filelist.priority.unfocused $priority_fg on $flist_bg.uf +filelist.priority.focused $priority_fg on $flist_bg.f +filelist.priority.low.unfocused $priority_fg on $flist_bg.uf +filelist.priority.low.focused $priority_fg on $flist_bg.f +filelist.priority.high.unfocused $priority_hl on $flist_bg.uf +filelist.priority.high.focused $priority_hl on $flist_bg.f +filelist.priority.off.unfocused dark blue on $flist_bg.uf +filelist.priority.off.focused dark blue on $flist_bg.f + + +$plist_bg = default +peerlist default on $plist_bg +peerlist.focused default on $plist_bg +peerlist.header light gray,underline on $plist_bg + +$torrent_fg = light gray +peerlist.torrent.header $torrent_fg,underline on $plist_bg +peerlist.torrent.unfocused $torrent_fg on $plist_bg + +$host_fg = light gray +peerlist.host.header $host_fg,underline on $plist_bg +peerlist.host.unfocused $host_fg on $plist_bg + +$port_fg = light gray +peerlist.port.header $port_fg,underline on $plist_bg +peerlist.port.unfocused $port_fg on $plist_bg + +$client_fg = dark magenta +peerlist.client.header $client_fg,underline on $plist_bg +peerlist.client.unfocused $client_fg on $plist_bg + +$%downloaded_fg = dark blue +$%downloaded_hl = light blue +peerlist.%downloaded.header $%downloaded_fg,underline on $plist_bg +peerlist.%downloaded.unfocused $%downloaded_fg on $plist_bg +peerlist.%downloaded.highlighted.unfocused $%downloaded_hl on $plist_bg + +$rate-down_fg = dark cyan +$rate-down_hl = light cyan +peerlist.rate-down.header $rate-down_fg,underline on $plist_bg +peerlist.rate-down.unfocused $rate-down_fg on $plist_bg +peerlist.rate-down.highlighted.unfocused $rate-down_hl on $plist_bg + +$rate-up_fg = dark green +$rate-up_hl = light green +peerlist.rate-up.header $rate-up_fg,underline on $plist_bg +peerlist.rate-up.unfocused $rate-up_fg on $plist_bg +peerlist.rate-up.highlighted.unfocused $rate-up_hl on $plist_bg + +$rate-est_fg = dark green +$rate-est_hl = light green +peerlist.rate-est.header $rate-est_fg,underline on $plist_bg +peerlist.rate-est.unfocused $rate-est_fg on $plist_bg +peerlist.rate-est.highlighted.unfocused $rate-est_hl on $plist_bg + +$eta_fg = brown +$eta_hl = yellow +peerlist.eta.header $eta_fg,underline on $plist_bg +peerlist.eta.unfocused $eta_fg on $plist_bg +peerlist.eta.highlighted.unfocused $eta_hl on $plist_bg + +$country_fg = dark red +peerlist.country.header $country_fg,underline on $plist_bg +peerlist.country.unfocused $country_fg on $plist_bg + + +$trklist_bg.uf = default +$trklist_bg.f = black +trackerlist default on $trklist_bg.uf +trackerlist.focused default on $trklist_bg.f +trackerlist.header light gray,underline on $trklist_bg.uf + +$torrent_fg = light gray +trackerlist.torrent.header $torrent_fg,underline on $trklist_bg.uf +trackerlist.torrent.unfocused $tracker_fg on $trklist_bg.uf +trackerlist.torrent.focused $tracker_fg on $trklist_bg.f + +$tier_fg = brown +trackerlist.tier.header $tier_fg,underline on $trklist_bg.uf +trackerlist.tier.unfocused $tier_fg on $trklist_bg.uf +trackerlist.tier.focused $tier_fg on $trklist_bg.f + +$domain_fg = dark magenta +trackerlist.domain.header $domain_fg,underline on $trklist_bg.uf +trackerlist.domain.unfocused $domain_fg on $trklist_bg.uf +trackerlist.domain.focused $domain_fg on $trklist_bg.f + +$url-announce_fg = light blue +trackerlist.url-announce.header $url-announce_fg,underline on $trklist_bg.uf +trackerlist.url-announce.unfocused $url-announce_fg on $trklist_bg.uf +trackerlist.url-announce.focused $url-announce_fg on $trklist_bg.f + +$url-scrape_fg = light blue +trackerlist.url-scrape.header $url-scrape_fg,underline on $trklist_bg.uf +trackerlist.url-scrape.unfocused $url-scrape_fg on $trklist_bg.uf +trackerlist.url-scrape.focused $url-scrape_fg on $trklist_bg.f + +$status_fg = dark cyan +trackerlist.status.header $status_fg,underline on $trklist_bg.uf +trackerlist.status.unfocused $status_fg on $trklist_bg.uf +trackerlist.status.focused $status_fg on $trklist_bg.f + +$error_fg = dark red +trackerlist.error.header $error_fg,underline on $trklist_bg.uf +trackerlist.error.unfocused $error_fg on $trklist_bg.uf +trackerlist.error.focused $error_fg on $trklist_bg.f + +$error-announce_fg = dark red +trackerlist.error-announce.header $error_fg,underline on $trklist_bg.uf +trackerlist.error-announce.unfocused $error_fg on $trklist_bg.uf +trackerlist.error-announce.focused $error_fg on $trklist_bg.f + +$error-scrape_fg = dark red +trackerlist.error-scrape.header $error_fg,underline on $trklist_bg.uf +trackerlist.error-scrape.unfocused $error_fg on $trklist_bg.uf +trackerlist.error-scrape.focused $error_fg on $trklist_bg.f + +$downloads_fg = light gray +trackerlist.downloads.header $downloads_fg,underline on $trklist_bg.uf +trackerlist.downloads.unfocused $downloads_fg on $trklist_bg.uf +trackerlist.downloads.focused $downloads_fg on $trklist_bg.f + +$leeches_fg = light gray +trackerlist.leeches.header $leeches_fg,underline on $trklist_bg.uf +trackerlist.leeches.unfocused $leeches_fg on $trklist_bg.uf +trackerlist.leeches.focused $leeches_fg on $trklist_bg.f + +$seeds_fg = light gray +trackerlist.seeds.header $seeds_fg,underline on $trklist_bg.uf +trackerlist.seeds.unfocused $seeds_fg on $trklist_bg.uf +trackerlist.seeds.focused $seeds_fg on $trklist_bg.f + +$last-announce_fg = white +trackerlist.last-announce.header $last-announce_fg,underline on $trklist_bg.uf +trackerlist.last-announce.unfocused $last-announce_fg on $trklist_bg.uf +trackerlist.last-announce.focused $last-announce_fg on $trklist_bg.f + +$next-announce_fg = white +trackerlist.next-announce.header $next-announce_fg,underline on $trklist_bg.uf +trackerlist.next-announce.unfocused $next-announce_fg on $trklist_bg.uf +trackerlist.next-announce.focused $next-announce_fg on $trklist_bg.f + +$last-scrape_fg = white +trackerlist.last-scrape.header $last-scrape_fg,underline on $trklist_bg.uf +trackerlist.last-scrape.unfocused $last-scrape_fg on $trklist_bg.uf +trackerlist.last-scrape.focused $last-scrape_fg on $trklist_bg.f + +$next-scrape_fg = white +trackerlist.next-scrape.header $next-scrape_fg,underline on $trklist_bg.uf +trackerlist.next-scrape.unfocused $next-scrape_fg on $trklist_bg.uf +trackerlist.next-scrape.focused $next-scrape_fg on $trklist_bg.f + + +$slist_bg.uf = default +$slist_bg.f = black +settinglist default on $slist_bg.uf +settinglist.focused default on $slist_bg.f +settinglist.header light gray,underline on $slist_bg.uf + +$name_fg = light blue +settinglist.name.header $name_fg,underline on $slist_bg.uf +settinglist.name.unfocused $name_fg on $slist_bg.uf +settinglist.name.focused $name_fg on $slist_bg.f + +$value_fg = light gray +$value_hl = white,bold +settinglist.value.header $value_fg,underline on $slist_bg.uf +settinglist.value.unfocused $value_fg on $slist_bg.uf +settinglist.value.focused $value_fg on $slist_bg.f +settinglist.value.highlighted.unfocused $value_hl on $slist_bg.uf +settinglist.value.highlighted.focused $value_hl on $slist_bg.f + +$default_fg = light gray +settinglist.default.header $default_fg,underline on $slist_bg.uf +settinglist.default.unfocused $default_fg on $slist_bg.uf +settinglist.default.focused $default_fg on $slist_bg.f + +$description_fg = light gray +settinglist.description.header $description_fg,underline on $slist_bg.uf +settinglist.description.unfocused $description_fg on $slist_bg.uf +settinglist.description.focused $description_fg on $slist_bg.f diff --git a/dotfiles/.config/stig/rc b/dotfiles/.config/stig/rc new file mode 100644 index 0000000..1c86c97 --- /dev/null +++ b/dotfiles/.config/stig/rc @@ -0,0 +1 @@ +set tui.theme ~/.config/stig/default.theme diff --git a/dotfiles/.config/sway/config b/dotfiles/.config/sway/config new file mode 100644 index 0000000..c3c4253 --- /dev/null +++ b/dotfiles/.config/sway/config @@ -0,0 +1,352 @@ +# vim: filetype=i3 +# i3 config file (v4) +# Please see http://i3wm.org/docs/userguide.html for a complete reference! + +# Set mod key (Mod1=<Alt>, Mod4=<Super>) +set $mod Mod4 +set $term termite +set $browser "qutebrowser" +set $stoprec --no-startup-id dmenurecord kill + +# set default desktop layout (default is tiling) +# workspace_layout tabbed <stacking|tabbed> + +# Configure border style <normal|1pixel|pixel xx|none|pixel> +default_border pixel 2 +default_floating_border pixel 2 + +# Hide borders +hide_edge_borders both + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. +font pango:FuraCode Nerd Font Mono 10 + +# Use Mouse+$mod to drag floating windows +floating_modifier $mod + + +##### Startup scripts and programs ##### +# Waybar +exec_always waybar_launch +# KDE Connect +exec --no-startup-id kdeconnect-indicator +# Mopidy music daemon +# exec_always --no-startup-id ~/.scripts/mopidy_launch +exec --no-startup-id mpd +# Bluetooth adapter applet +exec_always --no-startup-id blueman-applet +# Motification handler +exec --no-startup-id mako_launch +# NetworkManager Applet +exec --no-startup-id nm-applet + +# Workspace names +# to display names or symbols instead of plain workspace numbers you can use +# something like: set $ws1 1:mail +# set $ws2 2: +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 + +# Open applications on specific workspaces +# assign [class="Thunderbird"] $ws1 +# assign [class="Pale moon"] $ws2 +# assign [class="Pcmanfm"] $ws3 +# assign [class="Skype"] $ws5 + +# Open specific applications in specific modes +for_window [title="alsamixer"] floating enable +for_window [title="ncpamixer"] floating enable +for_window [title="i3_help"] floating enable, sticky enable +for_window [class="Lightdm-settings"] floating enable +for_window [class="Lxappearance"] floating enable, sticky enable +for_window [class="Nitrogen"] floating enable, sticky enable +for_window [class="Pavucontrol"] floating enable +for_window [class="qt5ct"] floating enable, sticky enable +for_window [class="Qtconfig-qt4"] floating enable, sticky enable +for_window [class="(?i)System-config-printer.py"] floating enable +for_window [title="wl-clipboard"] floating enable + +# Webcam window +for_window [title="mpvfloat"] floating enable, sticky enable +no_focus [title="mpvfloat"] + +# Dropdown-like windows + +# VK Messenger +for_window [instance="vk" window_role="browser-window"] floating enable, sticky enable +# for_window [class="VK"] move scratchpad + +# Telegram Desktop +for_window [app_id="telegramdesktop"] floating enable, sticky enable +# for_window [class="TelegramDesktop"] move scratchpad + +# Quake-like Terminal dropdown +for_window [title="quakemite"] floating enable, sticky enable + +# switch to workspace with urgent window automatically +# for_window [urgent=latest] focus + +# Theme colors +# class border backgr. text indic. child_border + client.focused #212121 #212121 #8EC07C #FDF6E3 #689D6A + client.focused_inactive #000000 #151515 #689D6A #454948 #000000 + client.unfocused #000000 #151515 #EBDBB2 #454948 #000000 + client.urgent #CB4B16 #FDF6E3 #1ABC9C #268BD2 #CB4B16 + client.placeholder #FFFFFF #0c0c0c #ffffff #FFFFFF #FFFFFF + + client.background #2B2C2B + +# hide/unhide i3status bar +# bindsym $mod+m bar mode toggle + +# Outputs +output "*" background ~/.config/wall1.png fill +output "eDP-1" scale 1.31 pos 960 1080 +output "HDMI-A-2" scale 1 pos 0 0 +output "DP-5" scale 1 pos 0 0 +output "DP-4" scale 1 pos 1920 0 +output "DP-7" scale 1 pos 0 0 +output "DP-6" scale 1 pos 1920 0 + +# Keymaps +input * xkb_layout "us,es,ru" +input * xkb_options "lv3:ralt_switch,grp:alt_shift_toggle,misc:typo,caps:escape,grp_led:scroll" + +############################# +### settings for i3-gaps: ### +############################# + +# Set inner/outer gaps +gaps inner 18 +gaps outer 0 + +# Additionally, you can issue commands with the following syntax. This is useful to bind keys to changing the gap size. +# gaps inner|outer current|all set|plus|minus <px> +# gaps inner all set 10 +# gaps outer all plus 5 + +# Smart gaps (gaps used if only more than one container on the workspace) +# smart_gaps on + +# Smart borders (draw borders around container only if it is not the only container on this workspace) +# on|no_gaps (on=always activate and no_gaps=only activate if the gap size to the edge of the screen is 0) +smart_borders on + +##### Bindsyms (layout-independent) ##### +bindsym --to-code { + + # change borders + $mod+u border none + $mod+y border pixel 2 + $mod+n border normal + + # start a terminal + $mod+Return exec $term + + # kill focused window + $mod+Shift+q kill + $mod+q kill + + # start program launcher + $mod+d exec --no-startup-id menurun + + # Mako (notifications) + $mod+Ctrl+space exec "makoctl dismiss" + $mod+Ctrl+grave exec "makoctl list" + + # Screen brightness controls + XF86MonBrightnessUp exec "xbacklight -inc 5 -fps 30" + XF86MonBrightnessDown exec "xbacklight -dec 5 -fps 30" + $mod+Ctrl+Up exec "xbacklight -inc 5 -fps 30" + $mod+Ctrl+Down exec "xbacklight -dec 5 -fps 30" + + # Media keys + XF86AudioPrev exec --no-startup-id "lmc prev" + XF86AudioPlay exec --no-startup-id "lmc toggle" + XF86AudioNext exec --no-startup-id "lmc next" + XF86AudioRaiseVolume exec --no-startup-id lmc up 5 + XF86AudioLowerVolume exec --no-startup-id lmc down 5 + XF86AudioMute exec --no-startup-id lmc mute + + $mod+F5 exec lmc prev + $mod+F6 exec lmc toggle + $mod+F7 exec lmc next + + # Start Applications + $mod+Shift+w exec --no-startup-id $browser + $mod+F3 exec menudisplay + $mod+r exec $term -e vifm + $mod+s exec "xway steam" + $mod+m exec $term -e ncmpcpp + $mod+o exec --no-startup-id notistats + $mod+c exec --no-startup-id camtoggle + $mod+grave exec --no-startup-id menuducksearch + $mod+Shift+grave exec --no-startup-id menuemoji + $mod+F1 exec --no-startup-id zathura ~/.config/i3/i3guide.pdf + + # Screenshot and recording + Print exec --no-startup-id menugrim -q + Shift+Print exec --no-startup-id menugrim + $mod+Print exec --no-startup-id dmenurecord + $mod+Delete exec $stoprec + + # Sound + $mod+Ctrl+m exec $term -e 'ncpamixer' + $mod+Shift+m exec --no-startup-id menuoutput + + # Applications that start with no gaps + $mod+g exec --no-startup-id gimp; gaps inner current set 0; gaps outer current set 0 + $mod+i exec --no-startup-id inkscape; gaps inner current set 0; gaps outer current set 0 + + # Dropdown/scratchpad applications + $mod+Shift+v exec --no-startup-id ddvk + $mod+Shift+t exec --no-startup-id ddtelegram + $mod+Shift+p exec --no-startup-id ddquakemite + + #focus_follows_mouse no + + # Sticky float to bottom left + $mod+Ctrl+b floating toggle; sticky toggle; exec --no-startup-id bottomleft + $mod+Shift+b floating toggle; sticky toggle; exec --no-startup-id bottomright + + # change focus + $mod+h focus left + $mod+j focus down + $mod+k focus up + $mod+l focus right + + # alternatively, you can use the cursor keys: + $mod+Left focus left + $mod+Down focus down + $mod+Up focus up + $mod+Right focus right + + # move focused window + $mod+Shift+h move left + $mod+Shift+j move down + $mod+Shift+k move up + $mod+Shift+l move right + + # alternatively, you can use the cursor keys: + $mod+Shift+Left move left + $mod+Shift+Down move down + $mod+Shift+Up move up + $mod+Shift+Right move right + + # split orientation + $mod+b split h;exec notify-send 'tile horizontally' + $mod+v split v;exec notify-send 'tile vertically' + + # toggle fullscreen mode for the focused container + $mod+f fullscreen toggle + + # change container layout (stacked, tabbed, toggle split) + # $mod+s layout stacking + $mod+w layout tabbed + $mod+e layout toggle split + + # toggle tiling / floating + $mod+Shift+space floating toggle + + # change focus between tiling / floating windows + $mod+space focus mode_toggle + + # toggle sticky + $mod+Shift+s sticky toggle + + # move the currently focused window to the scratchpad + $mod+Shift+minus move scratchpad + + # Show the next scratchpad window or hide the focused scratchpad window. + # If there are multiple scratchpad windows, this command cycles through them. + $mod+minus scratchpad show + + #navigate workspaces next / previous + $mod+Tab workspace next + $mod+Shift+Tab workspace prev + + # switch to workspace + $mod+1 workspace $ws1 + $mod+2 workspace $ws2 + $mod+3 workspace $ws3 + $mod+4 workspace $ws4 + $mod+5 workspace $ws5 + $mod+6 workspace $ws6 + $mod+7 workspace $ws7 + $mod+8 workspace $ws8 + $mod+9 workspace $ws9 + $mod+0 workspace $ws10 + + # Move focused container to workspace + $mod+Ctrl+1 move container to workspace $ws1 + $mod+Ctrl+2 move container to workspace $ws2 + $mod+Ctrl+3 move container to workspace $ws3 + $mod+Ctrl+4 move container to workspace $ws4 + $mod+Ctrl+5 move container to workspace $ws5 + $mod+Ctrl+6 move container to workspace $ws6 + $mod+Ctrl+7 move container to workspace $ws7 + $mod+Ctrl+8 move container to workspace $ws8 + $mod+Ctrl+9 move container to workspace $ws9 + $mod+Ctrl+0 move container to workspace $ws10 + + # Move to workspace with focused container + $mod+Shift+1 move container to workspace $ws1; workspace $ws1 + $mod+Shift+2 move container to workspace $ws2; workspace $ws2 + $mod+Shift+3 move container to workspace $ws3; workspace $ws3 + $mod+Shift+4 move container to workspace $ws4; workspace $ws4 + $mod+Shift+5 move container to workspace $ws5; workspace $ws5 + $mod+Shift+6 move container to workspace $ws6; workspace $ws6 + $mod+Shift+7 move container to workspace $ws7; workspace $ws7 + $mod+Shift+8 move container to workspace $ws8; workspace $ws8 + $mod+Shift+9 move container to workspace $ws9; workspace $ws9 + $mod+Shift+0 move container to workspace $ws10; workspace $ws10 + + # reload the configuration file + $mod+Shift+r reload + + # restart waybar + $mod+Ctrl+r exec --no-startup-id waybar_launch + + # Shut down, restart and locking features + $mod+Shift+e exec menusession + + $mod+Shift+y exec --no-startup-id swayresize left + $mod+Shift+u exec --no-startup-id swayresize down + $mod+Shift+i exec --no-startup-id swayresize up + $mod+Shift+o exec --no-startup-id swayresize right + + + # Lock screen + #$mod+x exec --no-startup-id blurlock + $mod+x exec --no-startup-id lock-color + + $mod+a gaps inner current plus 5 + $mod+Shift+a gaps inner current minus 5 + $mod+Shift+d gaps inner current set 0; gaps outer current set 0 + $mod+t gaps inner current set 18; gaps outer current set 0 + $mod+z gaps outer current plus 5 + $mod+Shift+z gaps outer current minus 5 +} + +# bar { + # position top + # separator_symbol "|" + + # status_command i3blocks + + # colors { + # statusline #ffffff + # background #000000AA + # active_workspace #689d6a #323232 #689d6a + # focused_workspace #8ec07c #689d6a #ffffff + # } +# } diff --git a/dotfiles/.config/swaylock/config b/dotfiles/.config/swaylock/config new file mode 100644 index 0000000..07de89b --- /dev/null +++ b/dotfiles/.config/swaylock/config @@ -0,0 +1,5 @@ +image=~/.config/lockwall.png +color=#000000 +indicator-radius=100 +show-failed-attempts +inside-color=#00000000 diff --git a/dotfiles/.config/termite/config b/dotfiles/.config/termite/config new file mode 100644 index 0000000..1cab051 --- /dev/null +++ b/dotfiles/.config/termite/config @@ -0,0 +1,50 @@ +[colors] +# Base16 Gruvbox dark, hard +# Author = Dawid Kurek (dawikur@gmail.com), morhetz (https =//github.com/morhetz/gruvbox) + +foreground = #d5c4a1 +foreground_bold = #ebdbb2 +cursor = #ebdbb2 +cursor_foreground = #1d2021 +background = rgba(32, 32, 33, 0.9) + +# 16 color space + +# Black, Gray, Silver, White +color0 = #1d2021 +color8 = #665c54 +color7 = #d5c4a1 +color15 = #fbf1c7 + +# DarkRed + Red +color1 = #cc241d +color9 = #fb4934 +# DarkGreen + Green +color2 = #98971a +color10 = #b8bb26 +# DarkYellow + Yellow +color3 = #d79921 +color11 = #fabd2f +# DarkBlue + Blue +color4 = #458588 +color12 = #83a598 +# DarkMagenta + Magenta +color5 = #b16286 +color13 = #d3869b +# DarkCyan + Cyan +color6 = #689d6a +color14 = #8ec07c + +# Extra colors +color16 = #fe8019 +color17 = #d65d0e +color18 = #3c3836 +color19 = #504945 +color20 = #bdae93 +color21 = #ebdbb2 + +[options] +font = FuraCode Nerd Font Mono 11 +allow_bold = true +cursor_shape = underline +mouse_autohide = true diff --git a/dotfiles/.config/transmission/settings.json b/dotfiles/.config/transmission/settings.json new file mode 100644 index 0000000..f440feb --- /dev/null +++ b/dotfiles/.config/transmission/settings.json @@ -0,0 +1,90 @@ +{ + "alt-speed-down": 50, + "alt-speed-enabled": false, + "alt-speed-time-begin": 540, + "alt-speed-time-day": 127, + "alt-speed-time-enabled": false, + "alt-speed-time-end": 1020, + "alt-speed-up": 50, + "blocklist-date": 0, + "blocklist-enabled": false, + "blocklist-updates-enabled": true, + "blocklist-url": "http://www.example.com/blocklist", + "compact-view": false, + "dht-enabled": true, + "download-dir": "/home/yaroslav/Downloads/P2P", + "download-queue-enabled": true, + "download-queue-size": 5, + "encryption": 1, + "filter-mode": "show-all", + "filter-trackers": "", + "idle-seeding-limit": 30, + "idle-seeding-limit-enabled": false, + "incomplete-dir": "/home/yaroslav/Downloads", + "incomplete-dir-enabled": false, + "inhibit-desktop-hibernation": false, + "lpd-enabled": false, + "main-window-height": 1017, + "main-window-layout-order": "menu,toolbar,filter,list,statusbar", + "main-window-width": 618, + "main-window-x": 50, + "main-window-y": 50, + "message-level": 2, + "open-dialog-dir": "/home/yaroslav", + "peer-limit-global": 200, + "peer-limit-per-torrent": 50, + "peer-port": 51413, + "peer-port-random-high": 65535, + "peer-port-random-low": 49152, + "peer-port-random-on-start": false, + "peer-socket-tos": 0, + "pex-enabled": true, + "port-forwarding-enabled": true, + "preallocation": 1, + "prompt-before-exit": true, + "queue-stalled-minutes": 30, + "ratio-limit": 2, + "ratio-limit-enabled": false, + "remote-session-enabled": true, + "remote-session-host": "localhost", + "remote-session-password": "", + "remote-session-port": 9091, + "remote-session-requres-authentication": false, + "remote-session-username": "", + "rename-partial-files": true, + "rpc-authentication-required": false, + "rpc-enabled": false, + "rpc-password": "", + "rpc-port": 9091, + "rpc-username": "", + "rpc-whitelist": "127.0.0.1", + "rpc-whitelist-enabled": true, + "script-torrent-done-enabled": false, + "script-torrent-done-filename": "", + "show-backup-trackers": false, + "show-extra-peer-details": false, + "show-filterbar": true, + "show-notification-area-icon": false, + "show-options-window": true, + "show-statusbar": true, + "show-toolbar": true, + "sort-mode": "sort-by-name", + "sort-reversed": false, + "speed-limit-down": 10240, + "speed-limit-down-enabled": true, + "speed-limit-up": 10240, + "speed-limit-up-enabled": true, + "start-added-torrents": true, + "start-minimized": false, + "statusbar-stats": "total-ratio", + "torrent-added-notification-enabled": true, + "torrent-complete-notification-enabled": true, + "torrent-complete-sound-command": "canberra-gtk-play -i complete-download -d 'transmission torrent downloaded'", + "torrent-complete-sound-enabled": true, + "trash-original-torrent-files": false, + "upload-slots-per-torrent": 14, + "user-has-given-informed-consent": true, + "utp-enabled": true, + "watch-dir": "/home/yaroslav/Downloads", + "watch-dir-enabled": false +} diff --git a/dotfiles/.config/vifm/colors/Default.vifm b/dotfiles/.config/vifm/colors/Default.vifm new file mode 100644 index 0000000..7434b36 --- /dev/null +++ b/dotfiles/.config/vifm/colors/Default.vifm @@ -0,0 +1,80 @@ +" You can edit this file by hand. +" The " character at the beginning of a line comments out the line. +" Blank lines are ignored. + +" The Default color scheme is used for any directory that does not have +" a specified scheme and for parts of user interface like menus. A +" color scheme set for a base directory will also +" be used for the sub directories. + +" The standard ncurses colors are: +" Default = -1 = None, can be used for transparency or default color +" Black = 0 +" Red = 1 +" Green = 2 +" Yellow = 3 +" Blue = 4 +" Magenta = 5 +" Cyan = 6 +" White = 7 + +" Light versions of colors are also available (set bold attribute): +" LightBlack +" LightRed +" LightGreen +" LightYellow +" LightBlue +" LightMagenta +" LightCyan +" LightWhite + +" Available attributes (some of them can be combined): +" bold +" underline +" reverse or inverse +" standout +" italic (on unsupported systems becomes reverse) +" none + +" Vifm supports 256 colors you can use color numbers 0-255 +" (requires properly set up terminal: set your TERM environment variable +" (directly or using resources) to some color terminal name (e.g. +" xterm-256color) from /usr/lib/terminfo/; you can check current number +" of colors in your terminal with tput colors command) + +" highlight group cterm=attrs ctermfg=foreground_color ctermbg=background_color + +highlight clear + +highlight Win cterm=none ctermfg=white ctermbg=black +highlight Directory cterm=bold ctermfg=cyan ctermbg=default +highlight Link cterm=bold ctermfg=yellow ctermbg=default +highlight BrokenLink cterm=bold ctermfg=red ctermbg=default +highlight Socket cterm=bold ctermfg=magenta ctermbg=default +highlight Device cterm=bold ctermfg=red ctermbg=default +highlight Fifo cterm=bold ctermfg=cyan ctermbg=default +highlight Executable cterm=bold ctermfg=green ctermbg=default +highlight Selected cterm=bold ctermfg=magenta ctermbg=default +highlight CurrLine cterm=bold,reverse ctermfg=default ctermbg=default +highlight TopLine cterm=none ctermfg=black ctermbg=white +highlight TopLineSel cterm=bold ctermfg=black ctermbg=default +highlight StatusLine cterm=bold ctermfg=black ctermbg=white +highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black +highlight CmdLine cterm=none ctermfg=white ctermbg=black +highlight ErrorMsg cterm=none ctermfg=red ctermbg=black +highlight Border cterm=none ctermfg=black ctermbg=white +highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=white +highlight SuggestBox cterm=bold ctermfg=default ctermbg=default +highlight CmpMismatch cterm=bold ctermfg=white ctermbg=red +highlight AuxWin cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight TabLine cterm=none ctermfg=white ctermbg=black +highlight TabLineSel cterm=bold,reverse ctermfg=default ctermbg=default +highlight User1 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User2 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User3 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User4 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User5 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User6 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User7 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User8 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User9 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default diff --git a/dotfiles/.config/vifm/colors/yaroslavps.vifm b/dotfiles/.config/vifm/colors/yaroslavps.vifm new file mode 100644 index 0000000..bb425ee --- /dev/null +++ b/dotfiles/.config/vifm/colors/yaroslavps.vifm @@ -0,0 +1,33 @@ +highlight clear +highlight Win cterm=none ctermfg=white ctermbg=none +highlight Directory cterm=bold ctermfg=cyan ctermbg=default +highlight Link cterm=bold ctermfg=blue ctermbg=default +highlight BrokenLink cterm=bold ctermfg=red ctermbg=default +highlight Socket cterm=bold ctermfg=magenta ctermbg=default +highlight Device cterm=bold ctermfg=red ctermbg=default +highlight Fifo cterm=bold ctermfg=cyan ctermbg=default +highlight Executable cterm=bold ctermfg=green ctermbg=default +highlight Selected cterm=bold ctermfg=magenta ctermbg=default +highlight CurrLine cterm=bold,reverse ctermfg=default ctermbg=default +highlight TopLine cterm=none ctermfg=white ctermbg=black +highlight TopLineSel cterm=bold ctermfg=black ctermbg=default +highlight StatusLine cterm=bold ctermfg=white ctermbg=black +highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black +highlight CmdLine cterm=none ctermfg=white ctermbg=black +highlight ErrorMsg cterm=none ctermfg=red ctermbg=black +highlight Border cterm=none ctermfg=white ctermbg=black +highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=white +highlight SuggestBox cterm=bold ctermfg=default ctermbg=default +highlight CmpMismatch cterm=bold ctermfg=white ctermbg=red +highlight AuxWin cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight TabLine cterm=none ctermfg=white ctermbg=black +highlight TabLineSel cterm=bold,reverse ctermfg=default ctermbg=default +highlight User1 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User2 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User3 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User4 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User5 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User6 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User7 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User8 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default +highlight User9 cterm=bold,underline,reverse,standout,italic ctermfg=default ctermbg=default diff --git a/dotfiles/.config/vifm/scripts/README b/dotfiles/.config/vifm/scripts/README new file mode 100644 index 0000000..7694952 --- /dev/null +++ b/dotfiles/.config/vifm/scripts/README @@ -0,0 +1,6 @@ +This directory is dedicated for user-supplied scripts/executables. +vifm modifies its PATH environment variable to let user run those +scripts without specifying full path. All subdirectories are added +as well. File in a subdirectory overrules file with the same name +in parent directories. Restart might be needed to recognize files +in newly created or renamed subdirectories.
\ No newline at end of file diff --git a/dotfiles/.config/vifm/scripts/imgc b/dotfiles/.config/vifm/scripts/imgc new file mode 100755 index 0000000..941b7e7 --- /dev/null +++ b/dotfiles/.config/vifm/scripts/imgc @@ -0,0 +1,16 @@ +#!/bin/bash + +W3MIMGDISPLAY="/usr/lib/w3m/w3mimgdisplay" +FONTH=18 # Size of one terminal row +FONTW=9 # Size of one terminal column + +X=$1 +Y=$2 +COLUMNS=$3 +LINES=$4 + +x=$((FONTW * X)) +y=$((FONTH * Y)) + +erase="6;$x;$y;$(( FONTW*COLUMNS ));$(( FONTH*LINES ))\n3;" +echo -e "$erase" | $W3MIMGDISPLAY diff --git a/dotfiles/.config/vifm/scripts/imgt b/dotfiles/.config/vifm/scripts/imgt new file mode 100755 index 0000000..5d76d5d --- /dev/null +++ b/dotfiles/.config/vifm/scripts/imgt @@ -0,0 +1,38 @@ +#!/bin/bash +# +# Based on script by z3bra -- 2014-01-21 + +W3MIMGDISPLAY="/usr/lib/w3m/w3mimgdisplay" +FONTH=16 # Size of one terminal row +FONTW=9 # Size of one terminal column + +X=$1 +Y=$2 +COLUMNS=$3 +LINES=$4 +FILENAME=$5 + +read width height <<< `echo "5;$FILENAME" | $W3MIMGDISPLAY` +if [ -z "$width" -o -z "$height" ]; then + echo 'Error: Failed to obtain image size.' + exit 1 +fi + +x=$((FONTW * X)) +y=$((FONTH * Y)) + +max_width=$((FONTW * COLUMNS)) +max_height=$((FONTH * LINES)) + +if [ "$width" -gt "$max_width" ]; then + height=$((height * max_width / width)) + width=$max_width +fi +if [ "$height" -gt "$max_height" ]; then + width=$((width * max_height / height)) + height=$max_height +fi + +w3m_command="0;1;$x;$y;$width;$height;;;;;$FILENAME\n4;\n3;" + +echo -e "$w3m_command" | $W3MIMGDISPLAY diff --git a/dotfiles/.config/vifm/scripts/vifmimg b/dotfiles/.config/vifm/scripts/vifmimg new file mode 100755 index 0000000..e5d8763 --- /dev/null +++ b/dotfiles/.config/vifm/scripts/vifmimg @@ -0,0 +1,53 @@ +#!/usr/bin/env bash +readonly ID_PREVIEW="preview" + +#AUTO_REMOVE="yes" +# By enabling this option the script will remove the preview file after it is drawn +# and by doing so the preview will always be up-to-date with the file. +# This however, requires more CPU and therefore affects the overall performance. + +if [ -e "$FIFO_UEBERZUG" ]; then + if [[ "$1" == "draw" ]]; then + declare -p -A cmd=([action]=add [identifier]="$ID_PREVIEW" + [x]="$2" [y]="$3" [width]="$4" [height]="$5" \ + [path]="${PWD}/$6") \ + > "$FIFO_UEBERZUG" + + elif [[ "$1" == "videopreview" ]]; then + echo -e "Loading preview..\nFile: $6" + [[ ! -d "/tmp${PWD}/$6/" ]] && mkdir -p "/tmp${PWD}/$6/" + [[ ! -f "/tmp${PWD}/$6.png" ]] && ffmpegthumbnailer -i "${PWD}/$6" -o "/tmp${PWD}/$6.png" -s 0 -q 10 + declare -p -A cmd=([action]=add [identifier]="$ID_PREVIEW" + [x]="$2" [y]="$3" [width]="$4" [height]="$5" \ + [path]="/tmp${PWD}/$6.png") \ + > "$FIFO_UEBERZUG" + + elif [[ "$1" == "gifpreview" ]]; then + echo -e "Loading preview..\nFile: $6" + [[ ! -d "/tmp${PWD}/$6/" ]] && mkdir -p "/tmp${PWD}/$6/" && convert -coalesce "${PWD}/$6" "/tmp${PWD}/$6/$6.png" + for frame in $(ls -1 /tmp${PWD}/$6/$6*.png | sort -V); do + declare -p -A cmd=([action]=add [identifier]="$ID_PREVIEW" + [x]="$2" [y]="$3" [width]="$4" [height]="$5" \ + [path]="$frame") \ + > "$FIFO_UEBERZUG" + # Sleep between frames to make the animation smooth. + sleep .07 + done + + elif [[ "$1" == "pdfpreview" ]]; then + echo -e "Loading preview..\nFile: $6" + [[ ! -d "/tmp${PWD}/$6/" ]] && mkdir -p "/tmp${PWD}/$6/" + [[ ! -f "/tmp${PWD}/$6.png" ]] && pdftoppm -png -singlefile "$6" "/tmp${PWD}/$6" + declare -p -A cmd=([action]=add [identifier]="$ID_PREVIEW" + [x]="$2" [y]="$3" [width]="$4" [height]="$5" \ + [path]="/tmp${PWD}/$6.png") \ + > "$FIFO_UEBERZUG" + + elif [[ "$1" == "clear" ]]; then + declare -p -A cmd=([action]=remove [identifier]="$ID_PREVIEW") \ + > "$FIFO_UEBERZUG" + [[ ! -z $AUTO_REMOVE ]] && [[ -f "/tmp${PWD}/$6.png" ]] && rm -f "/tmp${PWD}/$6.png" + [[ ! -z $AUTO_REMOVE ]] && [[ -d "/tmp${PWD}/$6/" ]] && rm -rf "/tmp${PWD}/$6/" + + fi +fi diff --git a/dotfiles/.config/vifm/scripts/vifmrun b/dotfiles/.config/vifm/scripts/vifmrun new file mode 100755 index 0000000..9eda32a --- /dev/null +++ b/dotfiles/.config/vifm/scripts/vifmrun @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}" + +function cleanup { + rm "$FIFO_UEBERZUG" 2>/dev/null + pkill -P $$ 2>/dev/null +} + +rm "$FIFO_UEBERZUG" 2>/dev/null +mkfifo "$FIFO_UEBERZUG" +trap cleanup EXIT +tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser bash & + +vifm +cleanup diff --git a/dotfiles/.config/vifm/vifm-help.txt b/dotfiles/.config/vifm/vifm-help.txt new file mode 100644 index 0000000..59550f6 --- /dev/null +++ b/dotfiles/.config/vifm/vifm-help.txt @@ -0,0 +1,5899 @@ +VIFM(1) General Commands Manual VIFM(1) + + + +NAME + vifm - vi file manager + +SYNOPSIS + vifm [OPTION]... + vifm [OPTION]... path + vifm [OPTION]... path path + +DESCRIPTION + Vifm is an ncurses based file manager with vi like keybindings. If you + use vi, vifm gives you complete keyboard control over your files with- + out having to learn a new set of commands. + +OPTIONS + vifm starts in the current directory unless it is given a different + directory on the command line or 'vifminfo' option includes "savedirs" + (in which case last visited directories are used as defaults). + + - Read list of files from standard input stream and compose custom + view out of them (see "Custom views" section). Current working + directory is used as a base for relative paths. + + <path> Starts Vifm in the specified path. + + <path> <path> + Starts Vifm in the specified paths. + + Specifying two directories triggers split view even when vifm was in + single-view mode on finishing previous session. To suppress this be- + haviour :only command can be put in the vifmrc file. + + When only one path argument is found on command-line, the left/top pane + is automatically set as the current view. + + Paths to files are also allowed in case you want vifm to start with + some archive opened. + + --select <path> + Open parent directory of the given path and select specified + file in it. + + -f Makes vifm instead of opening files write selection to + $VIFM/vimfiles and quit. + + --choose-files <path>|- + Sets output file to write selection into on exit instead of + opening files. "-" means standard output. Use empty value to + disable it. + + --choose-dir <path>|- + Sets output file to write last visited directory into on exit. + "-" means standard output. Use empty value to disable it. + + --delimiter <delimiter> + Sets separator for list of file paths written out by vifm. + Empty value means null character. Default is new line charac- + ter. + + --on-choose <command> + Sets command to be executed on selected files instead of opening + them. The command may use any of macros described in "Command + macros" section below. The command is executed once for whole + selection. + + --logging[=<startup log path>] + Log some operational details $VIFM/log. If the optional startup + log path is specified and permissions allow to open it for writ- + ing, then logging of early initialization (before value of $VIFM + is determined) is put there. + + --server-list + List available server names and exit. + + --server-name <name> + Name of target or this instance (sequential numbers are appended + on name conflict). + + --remote + Sends the rest of the command line to another instance of vifm, + --server-name is treated just like any other argument and should + precede --remote on the command line. When there is no server, + quits silently. There is no limit on how many arguments can be + processed. One can combine --remote with -c <command> or +<com- + mand> to execute commands in already running instance of vifm. + See also "Client-Server" section below. + + --remote-expr + passes expression to vifm server and prints result. See also + "Client-Server" section below. + + -c <command> or +<command> + Run command-line mode <command> on startup. Commands in such + arguments are executed in the order they appear in command line. + Commands with spaces or special symbols must be enclosed in dou- + ble or single quotes or all special symbols should be escaped + (the exact syntax strongly depends on shell). "+" argument is + equivalent to "$" and thus picks last item of of the view. + + --help, -h + Show a brief command summary and exit vifm. + + --version, -v + Show version information and quit. + + --no-configs + Skip reading vifmrc and vifminfo. + + + See "Startup" section below for the explanations on $VIFM. + +General keys + Ctrl-C or Escape + cancel most operations (see "Cancellation" section below), clear + all selected files. + + Ctrl-L clear and redraw the screen. + +Basic Movement + The basic vi key bindings are used to move through the files and pop-up + windows. + + k, gk, or Ctrl-P + move cursor up one line. + + j, gj or Ctrl-N + move cursor down one line. + + h when 'lsview' is off move up one directory (moves to parent + directory node in tree view), otherwise move left one file. + + l when 'lsview' is off move into a directory or launches a file, + otherwise move right one file. + + gg move to the first line of the file list. + + G move to the last line in the file list. + + gh go up one directory regardless of view representation (regular, + ls-like). Also can be used to leave custom views including tree + view. + + gl or Enter + enter directory or launch a file. + + H move to the first file in the window. + + M move to the file in the middle of the window. + + L move to the last file in the window. + + Ctrl-F or Page Down + move forward one page. + + Ctrl-B or Page Up + move back one page. + + Ctrl-D jump back one half page. + + Ctrl-U jump forward one half page. + + n% move to the file that is n percent from the top of the list (for + example 25%). + + 0 or ^ move cursor to the first column. See 'lsview' option descrip- + tion. + + $ move cursor to the last column. See 'lsview' option descrip- + tion. + + Space switch file lists. + + gt switch to the next tab (wrapping around). + + {n}gt switch to the tab number {n} (wrapping around). + + gT switch to the previous tab (wrapping around). + + {n}gT switch to {n}-th previous tab. + +Movement with Count + Most movement commands also accept a count, 12j would move down 12 + files. + + [count]% + move to percent of the file list. + + [count]j + move down [count] files. + + [count]k + move up [count] files. + + [count]G or [count]gg + move to list position [count]. + + [count]h + go up [count] directories. + +Scrolling panes + zt redraw pane with file in top of list. + + zz redraw pane with file in center of list. + + zb redraw pane with file in bottom of list. + + Ctrl-E scroll pane one line down. + + Ctrl-Y scroll pane one line up. + +Pane manipulation + Second character can be entered with or without Control key. + + Ctrl-W H + move the pane to the far left. + + Ctrl-W J + move the pane to the very bottom. + + Ctrl-W K + move the pane to the very top. + + Ctrl-W L + move the pane to the far right. + + + Ctrl-W h + switch to the left pane. + + Ctrl-W j + switch to the pane below. + + Ctrl-W k + switch to the pane above. + + Ctrl-W l + switch to the right pane. + + + Ctrl-W b + switch to bottom-right window. + + Ctrl-W t + switch to top-left window. + + + Ctrl-W p + switch to previous window. + + Ctrl-W w + switch to other pane. + + + Ctrl-W o + leave only one pane. + + Ctrl-W s + split window horizontally. + + Ctrl-W v + split window vertically. + + + Ctrl-W x + exchange panes. + + Ctrl-W z + quit preview pane or view modes. + + + Ctrl-W - + decrease size of the view by count. + + Ctrl-W + + increase size of the view by count. + + Ctrl-W < + decrease size of the view by count. + + Ctrl-W > + increase size of the view by count. + + + Ctrl-W | + set current view size to count. + + Ctrl-W _ + set current view size to count. + + Ctrl-W = + make size of two views equal. + + For Ctrl-W +, Ctrl-W -, Ctrl-W <, Ctrl-W >, Ctrl-W | and Ctrl-W _ com- + mands count can be given before and/or after Ctrl-W. The resulting + count is a multiplication of those two. So "2 Ctrl-W 2 -" decreases + window size by 4 lines or columns. + + Ctrl-W | and Ctrl-W _ maximise current view by default. + +Marks + Marks are set the same way as they are in vi. + + You can use these characters for marks [a-z][A-Z][0-9]. + + m[a-z][A-Z][0-9] + set a mark for the file at the current cursor position. + + '[a-z][A-Z][0-9] + navigate to the file set for the mark. + + + There are also several special marks that can't be set manually: + + - ' (single quote) - previously visited directory of the view, thus + hitting '' allows switching between two last locations + + - < - the first file of the last visually selected block + + - > - the last file of the last visually selected block + +Searching + /regular expression pattern + search for files matching regular expression in forward direc- + tion and advance cursor to next match. + + / perform forward search with top item of search pattern history. + + ?regular expression pattern + search for files matching regular expression in backward direc- + tion and advance cursor to previous match. + + ? perform backward search with top item of search pattern history. + + Trailing slash for directories is taken into account, so /\/ searches + for directories and symbolic links to directories. At the moment // + works too, but this can change in the future, so consider escaping the + slash if not typing pattern by hand. + + Matches are automatically selected if 'hlsearch' is set. Enabling + 'incsearch' makes search interactive. 'ignorecase' and 'smartcase' + options affect case sensitivity of search queries. + + + [count]n + go to the next file matching last search pattern. Takes last + search direction into account. + + [count]N + go to the previous file matching last search pattern. Takes + last search direction into account. + + If 'hlsearch' option is set, hitting n/N to perform search and go to + the first matching item resets current selection in normal mode. It is + not the case if search was already performed on files in the directory, + thus selection is not reset after clearing selection with escape key + and hitting n/N key again. + + Note: vifm uses extended regular expressions for / and ?. + + + [count]f[character] + search forward for file with [character] as first character in + name. Search wraps around the end of the list. + + [count]F[character] + search backward for file with [character] as first character in + name. Search wraps around the end of the list. + + [count]; + find the next match of f or F. + + [count], + find the previous match of f or F. + + Note: f, F, ; and , wrap around list beginning and end when they are + used alone and they don't wrap when they are used as selectors. + +File Filters + There are three basic file filters: + + - dot files filter (excluding "." and ".." special directories, whose + appearance is controlled by the 'dotdirs' option); + + - manual filter for file names; + + - automatic filter for file names; + + - local filter for file names (see description of the "=" normal mode + command). + + Performing operations on manual filter for file names automatically + does the same on automatic one. The file name filter is separated + mainly for convenience purpose and to get more deterministic behaviour. + + The basic vim folding key bindings are used for filtering files. + + Each file list has its own copy of each filter. + + Filtered files are not checked in / search or :commands. + + Files and directories are filtered separately. For this a slash is + appended to a directory name before testing whether it matches the fil- + ter. Examples: + + + " filter directories which names end with '.files' + :filter /^.*\.files\/$/ + + " filter files which names end with '.d' + :filter /^.*\.d$/ + + " filter files and directories which names end with '.o' + :filter /^.*\.o\/?$/ + + Note: vifm uses extended regular expressions. + + za toggle visibility of dot files. + + zo show dot files. + + zm hide dot files. + + zf add selected files to file name filter. + + zO show files hidden by file name filter. + + zM restore all filters. + + zR remove all filters. + + zr remove local filter. + + zd exclude selection or current file from a custom view. Does + nothing for regular view. For tree view excluding directory + excludes that sub-tree. For compare views zd hides group of + adjacent identical files, count can be specified as 1 to exclude + just single file or selected items instead. Files excluded this + way are not counted as filtered out and can't be returned unless + view is reloaded. + + =regular expression pattern + filter out files that don't match regular expression. Whether + view is updated as regular expression is changed depends on the + value of the 'incsearch' option. This kind of filter is auto- + matically reset when directory is changed. + +Other Normal Mode Keys + [count]: + enter command line mode. [count] generates range. + + q: open external editor to prompt for command-line command. See + "Command line editing" section for details. + + q/ open external editor to prompt for search pattern to be searched + in forward direction. See "Command line editing" section for + details. + + q? open external editor to prompt for search pattern to be searched + in backward direction. See "Command line editing" section for + details. + + q= open external editor to prompt for filter pattern. See "Command + line editing" section for details. Unlike other q{x} commands + this one doesn't work in Visual mode. + + [count]!! and [count]!<selector> + enter command line mode with entered ! command. [count] modi- + fies range. + + Ctrl-O go backwards through directory history of current view. Nonex- + istent directories are automatically skipped. + + Ctrl-I if 'cpoptions' contains "t" flag, <tab> and <c-i> switch active + pane just like <space> does, otherwise it goes forward through + directory history of current view. Nonexistent directories are + automatically skipped. + + Ctrl-G create a window showing detailed information about the current + file. + + Shift-Tab + enters view mode (works only after activating view pane with + :view command). + + ga calculate directory size. Uses cached directory sizes when pos- + sible for better performance. As a special case calculating + size of ".." entry results in calculation of size of current + directory. + + gA like ga, but force update. Ignores old values of directory + sizes. + + If file under cursor is selected, each selected item is processed, oth- + erwise only current file is updated. + + gf find link destination (like l with 'followlinks' off, but also + finds directories). + + gr only for MS-Windows + same as l key, but tries to run program with administrative + privileges. + + av go to visual mode into selection amending state preserving cur- + rent selection. + + gv go to visual mode restoring last selection. + + [reg]gs + when no register is specified, restore last t selection (similar + to what gv does for visual mode selection). If register is + present, then all files listed in that register and which are + visible in current view are selected. + + gu<selector> + make names of selected files lowercase. + + [count]guu and [count]gugu + make names of [count] files starting from the current one lower- + case. Without [count] only current file is affected. + + gU<selector> + make names of selected files uppercase. + + [count]gUU and [count]gUgU + make names of [count] files starting from the current one upper- + case. Without [count] only current file is affected. + + e explore file in the current pane. + + i handle file (even if it's an executable and 'runexec' option is + set). + + cw change word is used to rename a file or files. + + cW change WORD is used to change only name of file (without exten- + sion). + + cl change link target. + + co only for *nix + change file owner. + + cg only for *nix + change file group. + + [count]cp + change file attributes (permission on *nix and properties on + Windows). If [count] is specified, it's treated as numerical + argument for non-recursive `chmod` command (of the form + [0-7]{3,4}). + + [count]C + clone file [count] times. + + [count]dd or d[count]selector + move selected file or files to trash directory (if 'trash' + option is set, otherwise delete). See "Trash directory" section + below. + + [count]DD or D[count]selector + like dd and d<selector>, but omitting trash directory (even when + 'trash' option is set). + + Y, [count]yy or y[count]selector + yank selected files. + + p copy yanked files to the current directory or move the files to + the current directory if they were deleted with dd or :d[elete] + or if the files were yanked from trash directory. See "Trash + directory" section below. + + P move the last yanked files. The advantage of using P instead of + d followed by p is that P moves files only once. This isn't + important in case you're moving files in the same file system + where your home directory is, but using P to move files on some + other file system (or file systems, in case you want to move + files from fs1 to fs2 and your home is on fs3) can save your + time. + + al put symbolic links with absolute paths. + + rl put symbolic links with relative paths. + + t select or unselect (tag) the current file. + + u undo last change. + + Ctrl-R redo last change. + + dp in compare view of "ofboth grouppaths" kind, makes corresponding + entry of the other pane equal to the current one. The semantics + is as follows: + - nothing done for identical entries + - if file is missing in current view, its pair gets removed + - if file is missing or differs in other view, it's replaced + - file pairs are defined by matching relative paths + File removal obeys 'trash' option. When the option is enabled, + the operation can be undone/redone (although results won't be + visible automatically). + Unlike in Vim, this operation is performed on a single line + rather than a set of adjacent changes. + + do same as dp, but applies changes in the opposite direction. + + v or V enter visual mode, clears current selection. + + [count]Ctrl-A + increment first number in file name by [count] (1 by default). + + [count]Ctrl-X + decrement first number in file name by [count] (1 by default). + + ZQ same as :quit!. + + ZZ same as :quit. + + . repeat last command-line command (not normal mode command) of + this session (does nothing right after startup or :restart com- + mand). The command doesn't depend on command-line history and + can be used with completely disabled history. + + ( go to previous group. Groups are defined by primary sorting + key. For name and iname members of each group have same first + letter, for all other sorting keys vifm uses size, uid, ... + + ) go to next group. See ( key description above. + + { speeds up navigation to closest previous entry of the opposite + type by moving to the first file backwards when cursor is on a + directory and to the first directory backwards when cursor is on + a file. This is essentially a special case of ( that is locked + on "dirs". + + } same as {, but in forward direction. + + [c go to previous mismatched entry in directory comparison view or + do nothing. + + ]c go to next mismatched entry in directory comparison view or do + nothing. + + [d go to previous directory entry or do nothing. + + ]d go to next directory entry or do nothing. + + [r same as :siblprev. + + ]r same as :siblnext. + + [R same as :siblprev!. + + ]R same as :siblnext!. + + [s go to previous selected entry or do nothing. + + ]s go to next selected entry or do nothing. + + [z go to first sibling of current entry. + + ]z go to last sibling of current entry. + + zj go to next directory sibling of current entry or do nothing. + + zk go to previous directory sibling of current entry or do nothing. + +Using Count + You can use count with commands like yy. + + [count]yy + yank count files starting from current cursor position downward. + + Or you can use count with motions passed to y, d or D. + + d[count]j + delete (count + 1) files starting from current cursor position + upward. + +Registers + vifm supports multiple registers for temporary storing list of yanked + or deleted files. + + Registers should be specified by hitting double quote key followed by a + register name. Count is specified after register name. By default + commands use unnamed register, which has double quote as its name. + + Though all commands accept registers, most of commands ignores them + (for example H or Ctrl-U). Other commands can fill register or append + new files to it. + + Presently vifm supports ", _, a-z and A-Z characters as register names. + + As mentioned above " is unnamed register and has special meaning of the + default register. Every time when you use named registers (a-z and A- + Z) unnamed register is updated to contain same list of files as the + last used register. + + _ is black hole register. It can be used for writing, but its list is + always empty. + + Registers with names from a to z and from A to Z are named ones. Low- + ercase registers are cleared before adding new files, while uppercase + aren't and should be used to append new files to the existing file list + of appropriate lowercase register (A for a, B for b, ...). + + Registers can be changed on :empty command if they contain files under + trash directory (see "Trash directory" section below). + + Registers do not contain one file more than once. + + Example: + + "a2yy + + puts names of two files to register a (and to the unnamed register), + + "Ad + + removes one file and append its name to register a (and to the unnamed + register), + + p or "ap or "Ap + + inserts previously yanked and deleted files into current directory. + +Selectors + y, d, D, !, gu and gU commands accept selectors. You can combine them + with any of selectors below to quickly remove or yank several files. + + Most of selectors are like vi motions: j, k, gg, G, H, L, M, %, f, F, + ;, comma, ', ^, 0 and $. But there are some additional ones. + + a all files in current view. + + s selected files. + + S all files except selected. + + Examples: + + - dj - delete file under cursor and one below; + + - d2j - delete file under cursor and two below; + + - y6gg - yank all files from cursor position to 6th file in the list. + + When you pass a count to whole command and its selector they are multi- + plied. So: + + - 2d2j - delete file under cursor and four below; + + - 2dj - delete file under cursor and two below; + + - 2y6gg - yank all files from cursor position to 12th file in the + list. + +Visual Mode + Visual mode has to generic operating submodes: + + - plain selection as it is in Vim; + + - selection editing submode. + + Both modes select files in range from cursor position at which visual + mode was entered to current cursor position (let's call it "selection + region"). Each of two borders can be adjusted by swapping them via "o" + or "O" keys and updating cursor position with regular cursor motion + keys. Obviously, once initial cursor position is altered this way, + real start position becomes unavailable. + + Plain Vim-like visual mode starts with cleared selection, which is not + restored on rejecting selection ("Escape", "Ctrl-C", "v", "V"). Con- + trary to it, selection editing doesn't clear previously selected files + and restores them after reject. Accepting selection by performing an + operation on selected items (e.g. yanking them via "y") moves cursor to + the top of current selection region (not to the top most selected file + of the view). + + In turn, selection editing supports three types of editing (look at + statusbar to know which one is currently active): + + - append - amend selection by selecting elements in selection region; + + - remove - amend selection by deselecting elements in selection + region; + + - invert - amend selection by inverting selection of elements in + selection region. + + No matter how you activate selection editing it starts in "append". + One can switch type of operation (in the order given above) via "Ctrl- + G" key. + + Almost all normal mode keys work in visual mode, but instead of accept- + ing selectors they operate on selected items. + + Enter save selection and go back to normal mode not moving cursor. + + av leave visual mode if in amending mode (restores previous selec- + tion), otherwise switch to amending selection mode. + + gv restore previous visual selection. + + v, V, Ctrl-C or Escape + leave visual mode if not in amending mode, otherwise switch to + normal visual selection. + + Ctrl-G switch type of amending by round robin scheme: append -> remove + -> invert. + + : enter command line mode. Selection is cleared on leaving the + mode. + + o switch active selection bound. + + O switch active selection bound. + + gu, u make names of selected files lowercase. + + gU, U make names of selected files uppercase. + +View Mode + This mode tries to imitate the less program. List of builtin shortcuts + can be found below. Shortcuts can be customized using :qmap, :qnoremap + and :qunmap command-line commands. + + Shift-Tab, Tab, q, Q, ZZ + return to normal mode. + + [count]e, [count]Ctrl-E, [count]j, [count]Ctrl-N, [count]Enter + scroll forward one line (or [count] lines). + + [count]y, [count]Ctrl-Y, [count]k, [count]Ctrl-K, [count]Ctrl-P + scroll backward one line (or [count] lines). + + [count]f, [count]Ctrl-F, [count]Ctrl-V, [count]Space + scroll forward one window (or [count] lines). + + [count]b, [count]Ctrl-B, [count]Alt-V + scroll backward one window (or [count] lines). + + [count]z + scroll forward one window (and set window to [count]). + + [count]w + scroll backward one window (and set window to [count]). + + [count]Alt-Space + scroll forward one window, but don't stop at end-of-file. + + [count]d, [count]Ctrl-D + scroll forward one half-window (and set half-window to [count]). + + [count]u, [count]Ctrl-U + scroll backward one half-window (and set half-window to + [count]). + + r, Ctrl-R, Ctrl-L + repaint screen. + + R reload view preserving scroll position. + + F toggle automatic forwarding. Roughly equivalent to periodic + file reload and scrolling to the bottom. The behaviour is simi- + lar to `tail -F` or F key in less. + + [count]/pattern + search forward for ([count]-th) matching line. + + [count]?pattern + search backward for ([count]-th) matching line. + + [count]n + repeat previous search (for [count]-th occurrence). + + [count]N + repeat previous search in reverse direction (for [count]-th + occurrence). + + [count]g, [count]<, [count]Alt-< + scroll to the first line of the file (or line [count]). + + [count]G, [count]>, [count]Alt-> + scroll to the last line of the file (or line [count]). + + [count]p, [count]% + scroll to the beginning of the file (or N percent into file). + + v invoke an editor to edit the current file being viewed. The + command for editing is taken from the 'vicmd'/'vixcmd' option + value and extended with middle line number prepended by a plus + sign and name of the current file. + + All "Ctrl-W x" keys work the same was as in Normal mode. Active mode + is automatically changed on navigating among windows. When less-like + mode activated on file preview is left using one by "Ctrl-W x" keys, + its state is stored until another file is displayed using preview (it's + possible to leave the mode, hide preview pane, do something else, then + get back to the file and show preview pane again with previously stored + state in it). + +Command line Mode + These keys are available in all submodes of the command line mode: com- + mand, search, prompt and filtering. + + Down, Up, Left, Right, Home, End and Delete are extended keys and they + are not available if vifm is compiled with --disable-extended-keys + option. + + Esc, Ctrl-C + leave command line mode, cancels input. Cancelled input is + saved into appropriate history and can be recalled later. + + Ctrl-M, Enter + execute command and leave command line mode. + + Ctrl-I, Tab + complete command or its argument. + + Shift-Tab + complete in reverse order. + + Ctrl-_ stop completion and return original input. + + Ctrl-B, Left + move cursor to the left. + + Ctrl-F, Right + move cursor to the right. + + Ctrl-A, Home + go to line beginning. + + Ctrl-E, End + go to line end. + + Alt-B go to the beginning of previous word. + + Alt-F go to the end of next word. + + Ctrl-U remove characters from cursor position till the beginning of + line. + + Ctrl-K remove characters from cursor position till the end of line. + + Ctrl-H, Backspace + remove character before the cursor. + + Ctrl-D, Delete + remove character under the cursor. + + Ctrl-W remove characters from cursor position till the beginning of + previous word. + + Alt-D remove characters from cursor position till the beginning of + next word. + + Ctrl-T swap the order of current and previous character and move cursor + forward or, if cursor past the end of line, swap the order of + two last characters in the line. + + Alt-. insert last part of previous command to current cursor position. + Each next call will insert last part of older command. + + Ctrl-G edit command-line content in external editor. See "Command line + editing" section for details. + + Ctrl-N recall more recent command-line from history. + + Ctrl-P recall older command-line from history. + + Up recall more recent command-line from history, that begins as the + current command-line. + + Down recall older command-line from history, that begins as the cur- + rent command-line. + + Ctrl-] trigger abbreviation expansion. + +Pasting special values + The shortcuts listed below insert specified values into current cursor + position. Last key of every shortcut references value that it inserts: + - c - [c]urrent file + - d - [d]irectory path + - e - [e]xtension of a file name + - r - [r]oot part of a file name + - t - [t]ail part of directory path + + - a - [a]utomatic filter + - m - [m]anual filter + - = - local filter, which is bound to "=" in normal mode + + Values related to filelist in current pane are available through Ctrl-X + prefix, while values from the other pane have doubled Ctrl-X key as + their prefix (doubled Ctrl-X is presumably easier to type than upper- + case letters; it's still easy to remap the keys to correspond to names + of similar macros). + + Ctrl-X c + name of the current file of the active pane. + + Ctrl-X d + path to the current directory of the active pane. + + Ctrl-X e + extension of the current file of the active pane. + + Ctrl-X r + name root of current file of the active pane. + + Ctrl-X t + the last component of path to the current directory of the + active pane. + + Ctrl-X Ctrl-X c + name of the current file of the inactive pane. + + Ctrl-X Ctrl-X d + path to the current directory of the inactive pane. + + Ctrl-X Ctrl-X e + extension of the current file of the inactive pane. + + Ctrl-X Ctrl-X r + name root of current file of the inactive pane. + + Ctrl-X Ctrl-X t + the last component of path to the current directory of the inac- + tive pane. + + + Ctrl-X a + value of automatic filter of the active pane. + + Ctrl-X m + value of manual filter of the active pane. + + Ctrl-X = + value of local filter of the active pane. + + + Ctrl-X / + last pattern from search history. + +Command line editing + vifm provides a facility to edit several kinds of data, that is usually + edited in command-line mode, in external editor (using command speci- + fied by 'vicmd' or 'vixcmd' option). This has at least two advantages + over built-in command-line mode: + - one can use full power of Vim to edit text; + - finding and reusing history entries becomes possible. + + The facility is supported by four input submodes of the command-line: + - command; + - forward search; + - backward search; + - file rename (see description of cw and cW normal mode keys). + + Editing command-line using external editor is activated by the Ctrl-G + shortcut. It's also possible to do almost the same from Normal and + Visual modes using q:, q/ and q? commands. + + Temporary file created for the purpose of editing the line has the fol- + lowing structure: + + 1. First line, which is either empty or contains text already entered + in command-line. + + 2. 2nd and all other lines with history items starting with the most + recent one. Altering this lines in any way won't change history + items stored by vifm. + + After editing application is finished the first line of the file is + taken as the result of operation, when the application returns zero + exit code. If the application returns an error (see :cquit command in + Vim), all the edits made to the file are ignored, but the initial value + of the first line is saved in appropriate history. + +More Mode + This is the mode that appears when status bar content is so big that it + doesn't fit on the screen. One can identify the mode by "-- More --" + message at the bottom. + + The following keys are handled in this mode: + + + Enter, Ctrl-J, j or Down + scroll one line down. + + Backspace, k or Up + scroll one line up. + + + d scroll one page (half of a screen) down. + + u scroll one page (half of a screen) up. + + + Space, f or PageDown + scroll down a screen. + + b or PageUp + scroll up a screen. + + + G scroll to the bottom. + + g scroll to the top. + + + q, Escape or Ctrl-C + quit the mode. + + : switch to command-line mode. + +Commands + Commands are executed with :command_name<Enter> + + Commented out lines should start with the double quote symbol ("), + which may be preceded by whitespace characters intermixed with colons. + Inline comments can be added at the end of the line after double quote + symbol, only last line of a multi-line command can contain such com- + ment. Not all commands support inline comments as their syntax con- + flicts with names of registers and fields where double quotes are + allowed. + + Most of the commands have two forms: complete and the short one. Exam- + ple: + + :noh[lsearch] + + This means the complete command is nohlsearch, and the short one is + noh. + + Most of command-line commands completely reset selection in the current + view. However, there are several exceptions: + + - `:invert s` most likely leaves some files selected; + + - :normal command (when it doesn't leave command-line mode); + + - :if and :else commands don't affect selection on successful execu- + tion. + + '|' can be used to separate commands, so you can give multiple commands + in one line. If you want to use '|' in an argument, precede it with + '\'. + + These commands see '|' as part of their arguments even when it's + escaped: + + :[range]! + :autocmd + :cabbrev + :cmap + :cnoreabbrev + :cnoremap + :command + :dmap + :dnoremap + :filetype + :fileviewer + :filextype + :map + :mmap + :mnoremap + :nmap + :nnoremap + :noremap + :normal + :qmap + :qnoremap + :vmap + :vnoremap + :wincmd + :windo + :winrun + + To be able to use another command after one of these, wrap it with the + :execute command. An example: + + if filetype('.') == 'reg' | execute '!!echo regular file' | endif + + :[count] + + :number + move to the file number. + :12 would move to the 12th file in the list. + :0 move to the top of the list. + :$ move to the bottom of the list. + + :[count]command + The only builtin :[count]command are :[count]d[elete] and + :[count]y[ank]. + + :d3 would delete three files starting at the current file position + moving down. + + :3d would delete one file at the third line in the list. + + :command [args] + + :[range]!program + execute command via shell. Accepts macros. + + :[range]!command & + + same as above, but the command is run in the background using vifm's + means. + + Programs that write to stdout like "ls" create an error message showing + partial output of the command. + + Note the space before ampersand symbol, if you omit it, command will be + run in the background using job control of your shell. + + Accepts macros. + + :!! + + :[range]!!command + same as :!, but pauses before returning. + + :!! repeat the last command. + + :alink + + :[range]alink[!?] + create absolute symbolic links to files in directory of inactive + view. With "?" prompts for destination file names in an edi- + tor. "!" forces overwrite. + + :[range]alink[!] path + create absolute symbolic links to files in directory specified + by the path (absolute or relative to directory of inactive + view). + + :[range]alink[!] name1 name2... + create absolute symbolic links of files in directory of other + view giving each next link a corresponding name from the argu- + ment list. + + :apropos + + :apropos keyword... + create a menu of items returned by the apropos command. Select- + ing an item in the menu opens corresponding man page. By + default the command relies on the external "apropos" utility, + which can be customized by altering value of the 'aproposprg' + option. + + :autocmd + + :au[tocmd] {event} {pat} {cmd} + register autocommand for the {event}, which can be: + - DirEnter - performed on entering a directory + Event name is case insensitive. + + {pat} is a comma-separated list of modified globs patterns, + which can contain tilde or environment variables. All paths use + slash ('/') as directory separator. The pattern can start with + a '!', which negates it. Patterns that do not contain slashes + are matched against the last item of the path only (e.g. "dir" + in "/path/dir"). Literal comma can be entered by doubling it. + Two modifications to globs matching are as follows: + - * - never matches a slash (i.e., can signify single direc- + tory level) + - ** - matches any character (i.e., can match path of arbi- + trary depth) + + {cmd} is a :command or several of them separated with '|'. + + Examples of patterns: + - conf.d - matches conf.d directory anywhere + - *.d - matches directories ending with ".d" anywhere + - **.git - matches something.git, but not .git anywhere + - **/.git/** - matches /path/.git/objects, but not /path/.git + - **/.git/**/ - matches /path/.git/ only (because of trailing + slash) + - /etc/* - matches /etc/conf.d/, /etc/X11, but not + /etc/X11/fs + - /etc/**/*.d - matches /etc/conf.d, /etc/X11/conf.d, etc. + - /etc/**/* - matches /etc/ itself and any file below it + - /etc/**/** - matches /etc/ itself and any file below it + + :au[tocmd] [{event}] [{pat}] + list those autocommands that match given event-pattern combina- + tion. + {event} and {pat} can be omitted to list all autocommands. To + list any autocommands for specific pattern one can use * place- + holder in place of {event}. + + :au[tocmd]! [{event}] [{pat}] + remove autocommands that match given event-pattern combination. + Syntax is the same as for listing above. + + :apropos + repeat last :apropos command. + + :bmark + + :bmark tag1 [tag2 [tag3...]] + bookmark current directory with specified tags. + + :bmark! path tag1 [tag2 [tag3...]] + same as :bmark, but allows bookmarking specific path instead of + current directory. This is for use in vifmrc and for bookmark- + ing files. + + Path can contain macros that expand to single path (%c, %C, %d, + %D) or those that can expand to multiple paths, but contain only + one (%f, %F, %rx). The latter is done for convenience on using + the command interactively. Complex macros that include spaces + (e.g. "%c:gs/ /_") should be escaped. + + :bmarks + + :bmarks + display all bookmarks in a menu. + + :bmarks [tag1 [tag2...]] + display menu of bookmarks that include all of the specified + tags. + + :bmgo + + :bmgo [tag1 [tag2...]] + when there are more than one match acts exactly like :bmarks, + otherwise navigates to single match immediately (and fails if + there is no match). + + :cabbrev + + :ca[bbrev] + display menu of command-line mode abbreviations. + + :ca[bbrev] lhs-prefix + display command-line mode abbreviations which left-hand side + starts with specified prefix. + + :ca[bbrev] lhs rhs + register new or overwrites existing abbreviation for command- + line mode. rhs can contain spaces and any special sequences + accepted in rhs of mappings (see "Mappings" section below). + Abbreviations are expanded non-recursively. + + :cnoreabbrev + + :cnorea[bbrev] + display menu of command-line mode abbreviations. + + :cnorea[bbrev] lhs-prefix + display command-line mode abbreviations which left-hand side + starts with specified prefix. + + :cnorea[bbrev] lhs rhs + same as :cabbrev, but mappings in rhs are ignored during expan- + sion. + + :cd + + :cd or :cd ~ or :cd $HOME + change to home directory. + + :cd - go to the last visited directory. + + :cd ~/dir + change directory to ~/dir. + + :cd /curr/dir /other/dir + change directory of the current pane to /curr/dir and directory + of the other pane to /other/dir. Relative paths are assumed to + be relative to directory of current view. Command won't fail if + one of directories is invalid. All forms of the command accept + macros. + + :cd! /dir + same as :cd /dir /dir. + + :change + + :c[hange] + create a menu window to alter a files properties. + + :chmod + + :[range]chmod + display file attributes (permission on *nix and properties on + Windows) change dialog. + + :[range]chmod[!] arg... + only for *nix + change permissions for files. See `man 1 chmod` for arg format. + "!" means set permissions recursively. + + :chown + + :[range]chown + only for *nix + same as co key in normal mode. + + :[range]chown [user][:][group] + only for *nix + change owner and/or group of files. Operates on directories + recursively. + + :clone + + :[range]clone[!?] + clones files in current directory. With "?" vifm will open vi + to edit file names. "!" forces overwrite. Macros are expanded. + + :[range]clone[!] path + clones files to directory specified with the path (absolute or + relative to current directory). "!" forces overwrite. Macros + are expanded. + + :[range]clone[!] name1 name2... + clones files in current directory giving each next clone a cor- + responding name from the argument list. "!" forces overwrite. + Macros are expanded. + + :colorscheme + + :colo[rscheme]? + print current color scheme name on the status bar. + + :colo[rscheme] + display a menu with a list of available color schemes. You can + choose primary color scheme here. It is used for view if no + directory specific colorscheme fits current path. It's also + used to set border color (except view titles) and colors in + menus and dialogs. + + :colo[rscheme] color_scheme_name + change primary color scheme to color_scheme_name. In case of + errors (e.g. some colors are not supported by terminal) either + nothing is changed or color scheme is reset to builtin colors to + ensure that TUI is left in a usable state. + + :colo[rscheme] color_scheme_name directory + associate directory with the color scheme. The directory argu- + ment can be either absolute or relative path when :colorscheme + command is executed from command line, but mandatory should be + an absolute path when the command is executed in scripts loaded + at startup (until vifm is completely loaded). + + :comclear + + :comc[lear] + remove all user defined commands. + + :command + + :com[mand] + display a menu of user commands. + + :com[mand] beginning + display user defined commands that start with the beginning. + + :com[mand] name action + set a new user command. + Trying to use a reserved command name will result in an error + message. + Use :com[mand]! to overwrite a previously set command. + Unlike vim user commands do not have to start with a capital + letter. User commands are run in a shell by default. To run a + command in the background you must set it as a background com- + mand with & at the end of the commands action (:com rm rm %f &). + Command name cannot contain numbers or special symbols (except + '?' and '!'). + + :com[mand] name /pattern + set search pattern. + + :com[mand] name =pattern + set local filter value. + + :com[mand] name filter{:filter args} + set file name filter (see :filter command description). For + example: + + " display only audio files + :command onlyaudio filter/.+.\(mp3|wav|mp3|flac|ogg|m4a|wma|ape\)$/i + " display everything except audio files + :command noaudio filter!/.+.\(mp3|wav|mp3|flac|ogg|m4a|wma|ape\)$/i + + :com[mand] cmd :commands + set kind of an alias for internal command (like in a shell). + Passes range given to alias to an aliased command, so running + :%cp after + :command cp :copy %a + equals + :%copy + + :compare + + :compare [byname | bysize | bycontents | listall | listunique | + listdups | ofboth | ofone | groupids | grouppaths | skipempty]... + compare files in one or two views according the arguments. The + default is "bycontents listall ofboth grouppaths". See "Compare + views" section below for details. Tree structure is incompati- + ble with alternative representations, so values of 'lsview' and + 'millerview' options are ignored. + + :copen + + :cope[n] + opens menu with contents of the last displayed menu with naviga- + tion to files by default, if any. + + :copy + + :[range]co[py][!?][ &] + copy files to directory of other view. With "?" prompts for + destination file names in an editor. "!" forces overwrite. + + :[range]co[py][!] path[ &] + copy files to directory specified with the path (absolute or + relative to directory of other view). "!" forces overwrite. + + :[range]co[py][!] name1 name2...[ &] + copy files to directory of other view giving each next file a + corresponding name from the argument list. "!" forces over- + write. + + :cquit + + :cq[uit][!] + same as :quit, but also aborts directory choosing via + --choose-dir (empties output file) and returns non-zero exit + code. + + :cunabbrev + + :cuna[bbrev] lhs + unregister command-line mode abbreviation by its lhs. + + :cuna[bbrev] rhs + unregister command-line mode abbreviation by its rhs, so that + abbreviation could be removed even after expansion. + + :delbmarks + + :delbmarks + remove bookmarks from current directory. + + :delbmarks tag1 [tag2 [tag3...]] + remove set of bookmarks that include all of the specified tags. + + :delbmarks! + remove all bookmarks. + + :delbmarks! path1 [path2 [path3...]] + remove bookmarks of listed paths. + + :delcommand + + :delc[ommand] user_command + remove user defined command named user_command. + + :delete + + :[range]d[elete][!][ &] + delete selected file or files. "!" means complete removal + (omitting trash). + + :[range]d[elete][!] [reg] [count][ &] + delete selected or [count] files to the reg register. "!" means + complete removal (omitting trash). + + :delmarks + + :delm[arks]! + delete all marks. + + :delm[arks] marks ... + delete specified marks, each argument is treated as a set of + marks. + + :display + + :di[splay] + display menu with registers content. + + :di[splay] list ... + display the contents of the numbered and named registers that + are mentioned in list (for example "az to display "", "a and "z + content). + + :dirs + + :dirs display directory stack. + + :echo + + :ec[ho] [<expr>...] + evaluate each argument as an expression and output them sepa- + rated with a space. See help on :let command for a definition + of <expr>. + + :edit + + :[range]e[dit] [file...] + open selected or passed file(s) in editor. Macros and environ- + ment variables are expanded. + + :else + + :el[se] + execute commands until next matching :endif if all other condi- + tions didn't match. See also help on :if and :endif commands. + + :elseif + + :elsei[f] {expr1} + execute commands until next matching :elseif, :else or :endif if + conditions of previous :if and :elseif branches were evaluated + to zero. See also help on :if and :endif commands. + + :empty + + :empty permanently remove files from all existing non-empty trash + directories (see "Trash directory" section below). Trash direc- + tories which are specified via %r and/or %u also get deleted + completely. Also remove all operations from undolist that have + no sense after :empty and remove all records about files located + inside directories from all registers. Removal is performed as + background task with undetermined amount of work and can be + checked via :jobs menu. + + :endif + + :en[dif] + end conditional block. See also help on :if and :else commands. + + :execute + + :exe[cute] [<expr>...] + evaluate each argument as an expression and join results sepa- + rated by a space to get a single string which is then executed + as a command-line command. See help on :let command for a defi- + nition of <expr>. + + :exit + + :exi[t][!] + same as :quit. + + :file + + :f[ile][ &] + display menu of programs set for the file type of the current + file. " &" forces running associated program in background. + + :f[ile] arg[ &] + run associated command that begins with the arg skipping opening + menu. " &" forces running associated program in background. + + :filetype + + :filet[ype] pattern-list [{descr}]def_prog[ &],[{descr}]prog2[ &],... + associate given program list to each of the patterns. Associ- + ated program (command) is used by handlers of l and Enter keys + (and also in the :file menu). If you need to insert comma into + command just double it (",,"). Space followed by an ampersand + as two last characters of a command means running of the command + in the background. Optional description can be given to each + command to ease understanding of what command will do in the + :file menu. Vifm will try the rest of the programs for an asso- + ciation when the default isn't found. When program entry + doesn't contain any of vifm macros, name of current file is + appended as if program entry ended with %c macro on *nix and %"c + on Windows. On Windows path to executables containing spaces + can (and should be for correct work with such paths) be double + quoted. See "Patterns" section below for pattern definition. + See also "Automatic FUSE mounts" section below. Example for zip + archives and several actions: + + filetype *.zip,*.jar,*.war,*.ear + \ {Mount with fuse-zip} + \ FUSE_MOUNT|fuse-zip %SOURCE_FILE %DESTINATION_DIR, + \ {View contents} + \ zip -sf %c | less, + \ {Extract here} + \ tar -xf %c, + + Note that on OS X when `open` is used to call an app, vifm is + unable to check whether that app is actually available. So if + automatic skipping of programs that aren't there is desirable, + `open` should be replaced with an actual command. + + :filet[ype] filename + list (in menu mode) currently registered patterns that match + specified file name. Same as ":filextype filename". + + :filextype + + :filex[type] pattern-list [{ description }] def_program,program2,... + same as :filetype, but this command is ignored if not running in + X. In X :filextype is equal to :filetype. See "Patterns" sec- + tion below for pattern definition. See also "Automatic FUSE + mounts" section below. + + For example, consider the following settings (the order might + seem strange, but it's for the demonstration purpose): + + filetype *.html,*.htm + \ {View in lynx} + \ lynx + filextype *.html,*.htm + \ {Open with dwb} + \ dwb %f %i &, + filetype *.html,*.htm + \ {View in links} + \ links + filextype *.html,*.htm + \ {Open with firefox} + \ firefox %f &, + \ {Open with uzbl} + \ uzbl-browser %f %i &, + + If you're using vifm inside a terminal emulator that is running + in graphical environment (when X is used on *nix; always on Win- + dows), vifm attempts to run application in this order: + + 1. lynx + 2. dwb + 3. links + 4. firefox + 5. uzbl + + If there is no graphical environment (checked presence of $DIS- + PLAY environment variable on *nix; never happens on Windows), + the list will look like: + + 1. lynx + 2. links + + Just as if all :filextype commands were not there. + + The purpose of such differentiation is to allow comfortable use + of vifm with same settings in desktop environment/through remote + connection (SSH)/in native console. + + Note that on OS X $DISPLAY isn't defined unless you define it, + so :filextype should be used only if you set $DISPLAY in some + way. + + :filext[ype] filename + list (in menu mode) currently registered patterns that match + specified file name. Same as ":filetype filename". + + :fileviewer + + :filev[iewer] pattern-list command1,command2,... + register specified list of commands as viewers for each of the + patterns. Viewer is a command which output is captured and dis- + played in one of the panes of vifm after pressing "e" or running + :view command. When the command doesn't contain any of vifm + macros, name of current file is appended as if command ended + with %c macro. Comma escaping and missing commands processing + rules as for :filetype apply to this command. See "Patterns" + section below for pattern definition. + + Example for zip archives: + + fileviewer *.zip,*.jar,*.war,*.ear zip -sf %c, echo "No zip to preview:" + + :filev[iewer] filename + list (in menu mode) currently registered patterns that match + specified filename. + + :filter + + :filter[!] {pattern} + filter files matching the pattern out of directory listings. + '!' controls state of filter inversion after updating filter + value (see also 'cpoptions' description). Filter is matched + case sensitively on *nix and case insensitively on Windows. See + "File Filters" and "Patterns" sections. + + Example: + + " filter all files ending in .o from the filelist. + :filter /.o$/ + + + :filter[!] {empty-pattern} + same as above, but use last search pattern as pattern value. + + Example: + + :filter //I + + + :filter + reset filter (set it to an empty string) and show all files. + + :filter! + same as :invert. + + :filter? + show information on local, name and auto filters. + + :find + + :[range]fin[d] pattern + display results of find command in the menu. Searches among + selected files if any. Accepts macros. By default the command + relies on the external "find" utility, which can be customized + by altering value of the 'findprg' option. + + :[range]fin[d] -opt... + same as :find above, but user defines all find arguments. + Searches among selected files if any. + + :[range]fin[d] path -opt... + same as :find above, but user defines all find arguments. + Ignores selection and range. + + :[range]fin[d] + repeat last :find command. + + :finish + + :fini[sh] + stop sourcing a script. Can only be used in a vifm script file. + This is a quick way to skip the rest of the file. + + :goto + + :go[to] + change directory if necessary and put specified path under the + cursor. The path should be existing non-root path. Macros and + environment variables are expanded. + + :grep + + :[range]gr[ep][!] pattern + will show results of grep command in the menu. Add "!" to + request inversion of search (look for lines that do not match + pattern). Searches among selected files if any and no range + given. Ignores binary files by default. By default the command + relies on the external "grep" utility, which can be customized + by altering value of the 'grepprg' option. + + :[range]gr[ep][!] -opt... + same as :grep above, but user defines all grep arguments, which + are not escaped. Searches among selected files if any. + + :[range]gr[ep][!] + repeats last :grep command. "!" of this command inverts "!" in + repeated command. + + :help + + :h[elp] + show the help file. + + :h[elp] argument + is the same as using ':h argument' in vim. Use vifm-<something> + to get help on vifm (tab completion works). This form of the + command doesn't work when 'vimhelp' option is off. + + :highlight + + :hi[ghlight] + display information about all highlight groups active at the + moment. + + :hi[ghlight] clear + reset all highlighting to builtin defaults and removed all file- + name-specific rules. + + :hi[ghlight] clear ( {pat1,pat2,...} | /regexp/ ) + removes specified rule. + + :hi[ghlight] ( group-name | {pat1,pat2,...} | /regexp/ ) + display information on given highlight group or file name pat- + tern of color scheme used in the active view. + + :hi[ghlight] ( group-name | {pat1,pat2,...} | /regexp/[iI] ) + cterm=style | ctermfg=color | ctermbg=color + set style (cterm), foreground (ctermfg) or/and background + (ctermbg) parameters of highlight group or file name pattern for + color scheme used in the active view. + + All style values as well as color names are case insensitive. + + Available style values (some of them can be combined): + - bold + - underline + - reverse or inverse + - standout + - italic (on unsupported systems becomes reverse) + - none + + Available group-name values: + - Win - color of all windows (views, dialogs, menus) and default color + for their content (e.g. regular files in views) + - AuxWin - color of auxiliary areas of windows + - Border - color of vertical parts of the border + - TabLine - tab line color + - TabLineSel - color of the tip of selected tab + - TopLineSel - top line color of the current pane + - TopLine - top line color of the other pane + - CmdLine - the command line/status bar color + - ErrorMsg - color of error messages in the status bar + - StatusLine - color of the line above the status bar + - JobLine - color of job line that appears above the status line + - WildMenu - color of the wild menu items + - SuggestBox - color of key suggestion box + - CurrLine - line at cursor position in active view + - OtherLine - line at cursor position in inactive view + - Selected - color of selected files + - Directory - color of directories + - Link - color of symbolic links in the views + - BrokenLink - color of broken symbolic links + - Socket - color of sockets + - Device - color of block and character devices + - Executable - color of executable files + - Fifo - color of fifo pipes + - CmpMismatch - color of mismatched files in side-by-side comparison + by path + - User1..User9 - 9 colors which can be used via %* 'statusline' macro + + Available colors: + - -1 or default or none - default or transparent + - black and lightblack + - red and lightred + - green and lightgreen + - yellow and lightyellow + - blue and lightblue + - magenta and lightmagenta + - cyan and lightcyan + - white and lightwhite + - 0-255 - corresponding colors from 256-color palette + + Light versions of colors are regular colors with bold attribute set. + So order of arguments of :highlight command is important and it's bet- + ter to put "cterm" in front of others to prevent it from overwriting + attributes set by "ctermfg" or "ctermbg" arguments. + + For convenience of color scheme authors xterm-like names for 256 color + palette is also supported. The mapping is taken from + http://vim.wikia.com/wiki/Xterm256_color_names_for_console_Vim Dupli- + cated entries were altered by adding an underscore followed by numeri- + cal suffix. + + 0 Black 86 Aquamarine1 172 Orange3 + 1 Red 87 DarkSlateGray2 173 LightSalmon3_2 + 2 Green 88 DarkRed_2 174 LightPink3 + 3 Yellow 89 DeepPink4_2 175 Pink3 + 4 Blue 90 DarkMagenta 176 Plum3 + 5 Magenta 91 DarkMagenta_2 177 Violet + 6 Cyan 92 DarkViolet 178 Gold3_2 + 7 White 93 Purple 179 LightGoldenrod3 + 8 LightBlack 94 Orange4_2 180 Tan + 9 LightRed 95 LightPink4 181 MistyRose3 + 10 LightGreen 96 Plum4 182 Thistle3 + 11 LightYellow 97 MediumPurple3 183 Plum2 + 12 LightBlue 98 MediumPurple3_2 184 Yellow3_2 + 13 LightMagenta 99 SlateBlue1 185 Khaki3 + 14 LightCyan 100 Yellow4 186 LightGoldenrod2 + 15 LightWhite 101 Wheat4 187 LightYellow3 + 16 Grey0 102 Grey53 188 Grey84 + 17 NavyBlue 103 LightSlateGrey 189 LightSteelBlue1 + 18 DarkBlue 104 MediumPurple 190 Yellow2 + 19 Blue3 105 LightSlateBlue 191 DarkOliveGreen1 + 20 Blue3_2 106 Yellow4_2 192 DarkOliveG- + reen1_2 + 21 Blue1 107 DarkOliveGreen3 193 DarkSeaGreen1_2 + 22 DarkGreen 108 DarkSeaGreen 194 Honeydew2 + 23 DeepSkyBlue4 109 LightSkyBlue3 195 LightCyan1 + 24 DeepSkyBlue4_2 110 LightSkyBlue3_2 196 Red1 + 25 DeepSkyBlue4_3 111 SkyBlue2 197 DeepPink2 + 26 DodgerBlue3 112 Chartreuse2_2 198 DeepPink1 + 27 DodgerBlue2 113 DarkOliveGreen3_2 199 DeepPink1_2 + 28 Green4 114 PaleGreen3_2 200 Magenta2_2 + 29 SpringGreen4 115 DarkSeaGreen3 201 Magenta1 + 30 Turquoise4 116 DarkSlateGray3 202 OrangeRed1 + 31 DeepSkyBlue3 117 SkyBlue1 203 IndianRed1 + 32 DeepSkyBlue3_2 118 Chartreuse1 204 IndianRed1_2 + 33 DodgerBlue1 119 LightGreen_2 205 HotPink + 34 Green3 120 LightGreen_3 206 HotPink_2 + 35 SpringGreen3 121 PaleGreen1 207 MediumOrchid1_2 + 36 DarkCyan 122 Aquamarine1_2 208 DarkOrange + 37 LightSeaGreen 123 DarkSlateGray1 209 Salmon1 + 38 DeepSkyBlue2 124 Red3 210 LightCoral + 39 DeepSkyBlue1 125 DeepPink4_3 211 PaleVioletRed1 + 40 Green3_2 126 MediumVioletRed 212 Orchid2 + 41 SpringGreen3_2 127 Magenta3 213 Orchid1 + 42 SpringGreen2 128 DarkViolet_2 214 Orange1 + 43 Cyan3 129 Purple_2 215 SandyBrown + 44 DarkTurquoise 130 DarkOrange3 216 LightSalmon1 + 45 Turquoise2 131 IndianRed 217 LightPink1 + 46 Green1 132 HotPink3 218 Pink1 + 47 SpringGreen2_2 133 MediumOrchid3 219 Plum1 + 48 SpringGreen1 134 MediumOrchid 220 Gold1 + 49 MediumSpringGreen 135 MediumPurple2 221 LightGolden- + rod2_2 + 50 Cyan2 136 DarkGoldenrod 222 LightGolden- + rod2_3 + 51 Cyan1 137 LightSalmon3 223 NavajoWhite1 + 52 DarkRed 138 RosyBrown 224 MistyRose1 + 53 DeepPink4 139 Grey63 225 Thistle1 + 54 Purple4 140 MediumPurple2_2 226 Yellow1 + 55 Purple4_2 141 MediumPurple1 227 LightGoldenrod1 + 56 Purple3 142 Gold3 228 Khaki1 + 57 BlueViolet 143 DarkKhaki 229 Wheat1 + 58 Orange4 144 NavajoWhite3 230 Cornsilk1 + 59 Grey37 145 Grey69 231 Grey100 + 60 MediumPurple4 146 LightSteelBlue3 232 Grey3 + 61 SlateBlue3 147 LightSteelBlue 233 Grey7 + 62 SlateBlue3_2 148 Yellow3 234 Grey11 + 63 RoyalBlue1 149 DarkOliveGreen3_3 235 Grey15 + 64 Chartreuse4 150 DarkSeaGreen3_2 236 Grey19 + 65 DarkSeaGreen4 151 DarkSeaGreen2 237 Grey23 + 66 PaleTurquoise4 152 LightCyan3 238 Grey27 + 67 SteelBlue 153 LightSkyBlue1 239 Grey30 + 68 SteelBlue3 154 GreenYellow 240 Grey35 + 69 CornflowerBlue 155 DarkOliveGreen2 241 Grey39 + 70 Chartreuse3 156 PaleGreen1_2 242 Grey42 + 71 DarkSeaGreen4_2 157 DarkSeaGreen2_2 243 Grey46 + 72 CadetBlue 158 DarkSeaGreen1 244 Grey50 + 73 CadetBlue_2 159 PaleTurquoise1 245 Grey54 + 74 SkyBlue3 160 Red3_2 246 Grey58 + 75 SteelBlue1 161 DeepPink3 247 Grey62 + 76 Chartreuse3_2 162 DeepPink3_2 248 Grey66 + 77 PaleGreen3 163 Magenta3_2 249 Grey70 + 78 SeaGreen3 164 Magenta3_3 250 Grey74 + 79 Aquamarine3 165 Magenta2 251 Grey78 + 80 MediumTurquoise 166 DarkOrange3_2 252 Grey82 + 81 SteelBlue1_2 167 IndianRed_2 253 Grey85 + 82 Chartreuse2 168 HotPink3_2 254 Grey89 + 83 SeaGreen2 169 HotPink2 255 Grey93 + 84 SeaGreen1 170 Orchid + 85 SeaGreen1_2 171 MediumOrchid1 + + There are two colors (foreground and background) and only one bold + attribute. Thus single bold attribute affects both colors when + "reverse" attribute is used in vifm run inside terminal emulator. At + the same time linux native console can handle boldness of foreground + and background colors independently, but for consistency with terminal + emulators this is available only implicitly by using light versions of + colors. This behaviour might be changed in the future. + + Although vifm supports 256 colors in a sense they are supported by UI + drawing library, whether you will be able to use all of them highly + depends on your terminal. To set up terminal properly, make sure that + $TERM in the environment you run vifm is set to name of 256-color ter- + minal (on *nixes it can also be set via X resources), e.g. + xterm-256color. One can find list of available terminal names by list- + ing /usr/lib/terminfo/. Number of colors supported by terminal with + current settings can be checked via "tput colors" command. + + Here is the hierarchy of highlight groups, which you need to know for + using transparency: + JobLine + SuggestBox + StatusLine + WildMenu + User1..User9 + Border + CmdLine + ErrorMsg + Win + AuxWin + File name specific highlights + Directory + Link + BrokenLink + Socket + Device + Fifo + Executable + Selected + CurrLine + OtherLine + TopLine + TopLineSel + TabLine + TabLineSel + + "none" means default terminal color for highlight groups at the first + level of the hierarchy and transparency for all others. + + Here file name specific highlights mean those configured via globs ({}) + or regular expressions (//). At most one of them is applied per file + entry, namely the first that matches file name, hence order of :high- + light commands might be important in certain cases. + + :history + + :his[tory] + creates a pop-up menu of directories visited. + + :his[tory] x + x can be: + d[ir] or . show directory history. + c[md] or : show command line history. + s[earch] or / show search history and search forward on l key. + f[search] or / show search history and search forward on l key. + b[search] or ? show search history and search backward on l key. + i[nput] or @ show prompt history (e.g. on one file renaming). + fi[lter] or = show filter history (see description of the "=" + normal mode command). + + :histnext + + :histnext + same as <c-i>. The main use case for this command is to work + around the common pain point of <tab> and <c-i> being the same + ASCII character: one could alter the terminal emulator settings + to emit, for example, the `F1` keycode when Ctrl-I is pressed, + then `:noremap <f1> :histnext<cr>` in vifm, add "t" flag to the + 'cpoptions', and thus have both <c-i> and <tab> working as + expected. + + :histprev + + :histprev + same as <c-o>. + + :if + + :if {expr1} + starts conditional block. Commands are executed until next + matching :elseif, :else or :endif command if {expr1} evaluates + to non-zero, otherwise they are ignored. See also help on :else + and :endif commands. + + Example: + + if $TERM == 'screen.linux' + highlight CurrLine ctermfg=lightwhite ctermbg=lightblack + elseif $TERM == 'tmux' + highlight CurrLine cterm=reverse ctermfg=black ctermbg=white + else + highlight CurrLine cterm=bold,reverse ctermfg=black ctermbg=white + endif + + :invert + + :invert [f] + invert file name filter. + + :invert? [f] + show current filter state. + + :invert s + invert selection. + + :invert o + invert sorting order of the primary sorting key. + + :invert? o + show sorting order of the primary sorting key. + + :jobs + + :jobs shows menu of current backgrounded processes. + + :let + + :let $ENV_VAR = <expr> + sets environment variable. Warning: setting environment vari- + able to an empty string on Windows removes it. + + :let $ENV_VAR .= <expr> + append value to environment variable. + + :let &[l:|g:]opt = <expr> + sets option value. + + :let &[l:|g:]opt .= <expr> + append value to string option. + + :let &[l:|g:]opt += <expr> + increasing option value, adding sub-values. + + :let &[l:|g:]opt -= <expr> + decreasing option value, removing sub-values. + + Where <expr> could be a single-quoted string, double-quoted string, an + environment variable, function call or a concatanation of any of them + in any order using the '.' operator. Any whitespace is ignored. + + :locate + + :locate filename + use "locate" command to create a menu of filenames. Selecting a + file from the menu will reload the current file list in vifm to + show the selected file. By default the command relies on the + external "locate" utility (it's assumed that its database is + already built), which can be customized by altering value of the + 'locateprg' option. + + :locate + repeats last :locate command. + + :ls + + :ls lists windows of active terminal multiplexer (only when terminal + multiplexer is used). This is achieved by issuing proper com- + mand for active terminal multiplexer, thus the list is not han- + dled by vifm. + + :lstrash + + :lstrash + displays a menu with list of files in trash. Each element of + the list is original path of a deleted file, thus the list can + contain duplicates. + + :mark + + :[range]ma[rk][?] x [/full/path] [filename] + Set mark x (a-zA-Z0-9) at /full/path and filename. By default + current directory is being used. If no filename was given and + /full/path is current directory then last file in [range] is + used. Using of macros is allowed. Question mark will stop com- + mand from overwriting existing marks. + + :marks + + :marks create a pop-up menu of marks. + + :marks list ... + display the contents of the marks that are mentioned in list. + + :media + + :media only for *nix + display media management menu. See also 'mediaprg' option. + + :messages + + :mes[sages] + shows previously given messages (up to 50). + + :mkdir + + :[line]mkdir[!] dir ... + create directories at specified paths. The [line] can be used + to pick node in a tree-view. "!" means make parent directories + as needed. Macros are expanded. + + :move + + :[range]m[ove][!?][ &] + move files to directory of other view. With "?" prompts for + destination file names in an editor. "!" forces overwrite. + + :[range]m[ove][!] path[ &] + move files to directory specified with the path (absolute or + relative to directory of other view). "!" forces overwrite. + + :[range]m[ove][!] name1 name2...[ &] + move files to directory of other view giving each next file a + corresponding name from the argument list. "!" forces over- + write. + + :nohlsearch + + :noh[lsearch] + clear selection in current pane. + + :normal + + :norm[al][!] commands + execute normal mode commands. If "!" is used, user defined map- + pings are ignored. Unfinished last command is aborted as if + <esc> or <c-c> was typed. A ":" should be completed as well. + Commands can't start with a space, so put a count of 1 (one) + before it. + + :only + + :on[ly] + switch to a one window view. + + :popd + + :popd remove pane directories from stack. + + :pushd + + :pushd[!] /curr/dir [/other/dir] + add pane directories to stack and process arguments like :cd + command. + + :pushd exchange the top two items of the directory stack. + + :put + + :[line]pu[t][!] [reg] [ &] + puts files from specified register (" by default) into current + directory. The [line] can be used to pick node in a tree-view. + "!" moves files "!" moves files from their original location + instead of copying them. During this operation no confirmation + dialogs will be shown, all checks are performed beforehand. + + :pwd + + :pw[d] show the present working directory. + + :qall + + :qa[ll][!] + exit vifm (add ! to skip saving changes and checking for active + backgrounded commands). + + :quit + + :q[uit][!] + if there is more than one tab, close the current one, otherwise + exit vifm (add ! to skip saving changes and checking for active + backgrounded commands). + + :redraw + + :redr[aw] + redraw the screen immediately. + + :registers + + :reg[isters] + display menu with registers content. + + :reg[isters] list ... + display the contents of the numbered and named registers that + are mentioned in list (for example "az to display "", "a and "z + content). + + :regular + + :regular + + switch to regular view leaving custom view. + :rename + + :[range]rename[!] + rename files using vi to edit names. ! means go recursively + through directories. + + :[range]rename name1 name2... + rename each of selected files to a corresponding name. + + :restart + + :restart + free a lot of things (histories, commands, etc.), reread + vifminfo and vifmrc files and run startup commands passed in the + argument list, thus losing all unsaved changes (e.g. recent his- + tory or keys mapped in current session). + + :restore + + :[range]restore + restore file from trash directory, doesn't work outside one of + trash directories. See "Trash directory" section below. + + :rlink + + :[range]rlink[!?] + create relative symbolic links to files in directory of other + view. With "?" prompts for destination file names in an editor. + "!" forces overwrite. + + :[range]rlink[!] path + create relative symbolic links of files in directory specified + with the path (absolute or relative to directory of other view). + "!" forces overwrite. + + :[range]rlink[!] name1 name2... + create relative symbolic links of files in directory of other + view giving each next link a corresponding name from the argu- + ment list. "!" forces overwrite. + + :screen + + :screen + toggle whether to use the terminal multiplexer or not. + A terminal multiplexer uses pseudo terminals to allow multiple + windows to be used in the console or in a single xterm. Start- + ing vifm from terminal multiplexer with appropriate support + turned on will cause vifm to open a new terminal multiplexer + window for each new file edited or program launched from vifm. + This requires screen version 3.9.9 or newer for the screen -X + argument or tmux (1.8 version or newer is recommended). + + :screen! + enable integration with terminal multiplexers. + + :screen? + display whether integration with terminal multiplexers is + enabled. + + Note: the command is called screen for historical reasons (when tmux + wasn't yet supported) and might be changed in future releases, or get + an alias. + + :select + + :[range]select + select files in the given range (current file if no range is + given). + + :select {pattern} + select files that match specified pattern. Possible {pattern} + forms are described in "Patterns" section below. Trailing slash + for directories is taken into account, so `:select! */ | invert + s` selects only files. + + :select //[iI] + same as item above, but reuses last search pattern. + + :select !{external command} + select files from the list supplied by external command. Files + are matched by full paths, relative paths are converted to abso- + lute ones beforehand. + + :[range]select! [{pattern}] + same as above, but resets previously selected items before pro- + ceeding. + + :set + + :se[t] display all options that differ from their default value. + + :se[t] all + display all options. + + :se[t] opt1=val1 opt2='val2' opt3="val3" ... + sets given options. For local options both values are set. + You can use following syntax: + - for all options - option, option? and option& + - for boolean options - nooption, invoption and option! + - for integer options - option=x, option+=x and option-=x + - for string options - option=x and option+=x + - for string list options - option=x, option+=x and option-=x + - for enumeration options - option=x, option+=x and option-=x + - for set options - option=x, option+=x and option-=x + - for charset options - option=x, option+=x, option-=x and + option^=x + + the meaning: + - option - turn option on (for boolean) or print its value (for + all others) + - nooption - turn option off + - invoption - invert option state + - option! - invert option state + - option? - print option value + - option& - reset option to its default value + - option=x or option:x - set option to x + - option+=x - add/append x to option + - option-=x - remove (or subtract) x from option + - option^=x - toggle x presence among values of the option + + Option name can be prepended and appended by any number of + whitespace characters. + + :setglobal + + :setg[lobal] + display all global options that differ from their default value. + + :setg[lobal] all + display all global options. + + :setg[lobal] opt1=val1 opt2='val2' opt3="val3" ... + same as :set, but changes/prints only global options or global + values of local options. Changes to the latter might be not + visible until directory is changed. + + :setlocal + + :setl[ocal] + display all local options that differ from their default value. + + :setl[ocal] all + display all local options. + + :setl[ocal] opt1=val1 opt2='val2' opt3="val3" ... + same as :set, but changes/prints only local values of local + options. + + :shell + + :sh[ell][!] + start a shell in current directory. "!" suppresses spawning + dedicated window of terminal multiplexer for a shell. To make + vifm adaptive to environment it uses $SHELL if it's defined, + otherwise 'shell' value is used. + + + :siblnext + + :[count]siblnext[!] + + change directory to [count]th next sibling directory after cur- + rent path using value of global sort option of current pane. + "!" enables wrapping. + + For example, say, you're at /boot and root listing starts like + this: + + bin/ + boot/ + dev/ + ... + + Issuing :siblnext will navigate to /dev. + + + :siblprev + + :[count]siblprev[!] + same as :siblnext, but in the opposite direction. + + :sort + + :sor[t] + display dialog with different sorting methods, when one can + select primary sorting key. When 'viewcolumns' options is empty + and 'lsview' is off, changing primary sorting key will also + affect view look (in particular the second column of the view + will be changed). + + :source + + :so[urce] file + read command-line commands from the file. + + :split + + :sp[lit] + switch to a two window horizontal view. + + :sp[lit]! + toggle horizontal window splitting. + + :sp[lit] path + splits the window horizontally to show both file directories. + Also changes other pane to path (absolute or relative to current + directory of active pane). + + :substitute + + :[range]s[ubstitute]/pattern/string/[flags] + for each file in range replace a match of pattern with string. + + String can contain \0...\9 to link to capture groups (\0 - all match, + \1 - first group, etc.). + + Pattern is stored in search history. + + Available flags: + + - i - ignore case (the 'ignorecase' and 'smartcase' options are not + used) + + - I - don't ignore case (the 'ignorecase' and 'smartcase' options are + not used) + + - g - substitute all matches in each file name (each g toggles this) + + :[range]s[ubstitute]/pattern + substitute pattern with an empty string. + + :[range]s[ubstitute]//string/[flags] + use last pattern from search history. + + :[range]s[ubstitute] + repeat previous substitution command. + + :sync + + :sync [relative path] + change the other pane to the current pane directory or to some + path relative to the current directory. Using macros is + allowed. + + :sync! change the other pane to the current pane directory and synchro- + nize cursor position. If current pane displays custom list of + files, position before entering it is used (current one might + not make any sense). + + + :sync! [location | cursorpos | localopts | filters | filelist | tree | + all]... + change enumerated properties of the other pane to match corre- + sponding properties of the current pane. Arguments have the + following meanings: + + - location - current directory of the pane; + + - cursorpos - cursor position (doesn't make sense without + "location"); + + - localopts - all local options; + + - filters - all filters; + + - filelist - list of files for custom view (implies "loca- + tion"); + + - tree - tree structure for tree view (implies "location"); + + - all - all of the above. + + :tabclose + + :tabc[lose] + close current tab, unless it's the only one open at current + scope. + + :tabmove + + :tabm[ove] [N] + without the argument or with `$` as the argument, current tab + becomes the last tab. With the argument, current tab is moved + after the tab with the specified number. Argument of `0` moves + current tab to the first position. + + :tabname + + :tabname [name] + set, update or reset (when no argument is provided) name of the + current tab. + + :tabnew + + :tabnew [path] + create new tab. Accepts optional path for the new tab. Macros + and environment variables are expanded. + + :tabnext + + :tabn[ext] + switch to the next tab (wrapping around). + + :tabn[ext] {n} + go to the tab number {n}. Tab numeration starts with 1. + + :tabprevious + + :tabp[revious] + switch to the previous tab (wrapping around). + + :tabp[revious] {n} + go to the {n}-th previous tab. Note that :tabnext handles its + argument differently. + + :touch + + :[line]touch file... + create files at specified paths. Aborts on errors. Doesn't + update time of existing files. The [line] can be used to pick + node in a tree-view. Macros are expanded. + + :tr + + :[range]tr/pattern/string/ + for each file in range transliterate the characters which appear + in pattern to the corresponding character in string. When + string is shorter than pattern, it's padded with its last char- + acter. + + :trashes + + :trashes + lists all valid trash directories in a menu. Only non-empty and + writable trash directories are shown. This is exactly the list + of directories that are cleared when :empty command is executed. + + :trashes? + same as :trashes, but also displays size of each trash direc- + tory. + + :tree + + :tree turn pane into tree view with current directory as its root. + The tree view is implemented on top of a custom view, but is + automatically kept in sync with file system state and considers + all the filters. Thus the structure corresponds to what one + would see on visiting the directories manually. As a special + case for trees built out of custom view file-system tracking + isn't performed. + + To leave tree view go up from its root or use gh at any level of + the tree. Any command that changes directory will also do, in + particular, `:cd ..`. + + Tree structure is incompatible with alternative representations, + so values of 'lsview' and 'millerview' options are ignored. + + :tree! toggle current view in and out of tree mode. + + :undolist + + :undol[ist] + display list of latest changes. Use "!" to see actual commands. + + :unlet + + :unl[et][!] $ENV_VAR1 $ENV_VAR2 ... + remove environment variables. Add ! to omit displaying of warn- + ings about nonexistent variables. + + :unselect + + :[range]unselect + unselect files in the given range (current file if no range is + given). + + :unselect {pattern} + unselect files that match specified pattern. Possible {pattern} + forms are described in "Patterns" section below. Trailing slash + for directories is taken into account, so `:unselect */` unse- + lects directories. + + :unselect !{external command} + unselect files from the list supplied by external command. + Files are matched by full paths, relative paths are converted to + absolute ones beforehand. + + :unselect //[iI] + same as item above, but reuses last search pattern. + + :version + + :ve[rsion] + show menu with version information. + + :vifm + + :vifm same as :version. + + :view + + :vie[w] + toggle on and off the quick file view. See also 'quickview' + option. + + :vie[w]! + turn on quick file view if it's off. + + :volumes + + :volumes + only for MS-Windows + display menu with volume list. Hitting l (or Enter) key opens + appropriate volume in the current pane. + + :vsplit + + :vs[plit] + switch to a two window vertical view. + + :vs[plit]! + toggle window vertical splitting. + + :vs[plit] path + split the window vertically to show both file directories. And + changes other pane to path (absolute or relative to current + directory of active pane). + + :wincmd + + :[count]winc[md] {arg} + same as running Ctrl-W [count] {arg}. + + :windo + + :windo [command...] + execute command for each pane (same as :winrun % command). + + :winrun + + :winrun type [command...] + execute command for pane(s), which is determined by type argu- + ment: + - ^ - top-left pane + - $ - bottom-right pane + - % - all panes + - . - current pane + - , - other pane + + :write + + :w[rite] + write vifminfo file. + + :wq + + :wq[!] same as :quit, but ! only disables check of backgrounded com- + mands. :wqall + + :wqa[ll][!] + same as :qall, but ! only disables check of backgrounded com- + mands. + + :xall + + :xa[ll][!] + same as :qall. + + :xit + + :x[it][!] + same as :quit. + + :yank + + :[range]y[ank] [reg] [count] + will yank files to the reg register. + + :map lhs rhs + + :map lhs rhs + map lhs key sequence to rhs in normal and visual modes. + + :map! lhs rhs + map lhs key sequence to rhs in command line mode. + + + :cmap :dmap :mmap :nmap :qmap + :vmap + + :cm[ap] lhs rhs + map lhs to rhs in command line mode. + + :dm[ap] lhs rhs + map lhs to rhs in dialog modes. + + :mm[ap] lhs rhs + map lhs to rhs in menu mode. + + :nm[ap] lhs rhs + map lhs to rhs in normal mode. + + :qm[ap] lhs rhs + map lhs to rhs in view mode. + + :vm[ap] lhs rhs + map lhs to rhs in visual mode. + + + :*map + + :cm[ap] + list all maps in command line mode. + + :dm[ap] + list all maps in dialog modes. + + :mm[ap] + list all maps in menu mode. + + :nm[ap] + list all maps in normal mode. + + :qm[ap] + list all maps in view mode. + + :vm[ap] + list all maps in visual mode. + + :*map beginning + + :cm[ap] beginning + list all maps in command line mode that start with the begin- + ning. + + :dm[ap] beginning + list all maps in dialog modes that start with the beginning. + + :mm[ap] beginning + list all maps in menu mode that start with the beginning. + + :nm[ap] beginning + list all maps in normal mode that start with the beginning. + + :qm[ap] beginning + list all maps in view mode that start with the beginning. + + :vm[ap] beginning + list all maps in visual mode that start with the beginning. + + :noremap + + :no[remap] lhs rhs + map the key sequence lhs to rhs for normal and visual modes, but + disallow mapping of rhs. + + :no[remap]! lhs rhs + map the key sequence lhs to rhs for command line mode, but dis- + allow mapping of rhs. + + :cnoremap :dnoremap :mnoremap :nnoremap :qnoremap + :vnoremap + + :cno[remap] lhs rhs + map the key sequence lhs to rhs for command line mode, but dis- + allow mapping of rhs. + + :dn[oremap] lhs rhs + map the key sequence lhs to rhs for dialog modes, but disallow + mapping of rhs. + + :mn[oremap] lhs rhs + map the key sequence lhs to rhs for menu mode, but disallow map- + ping of rhs. + + :nn[oremap] lhs rhs + map the key sequence lhs to rhs for normal mode, but disallow + mapping of rhs. + + :qn[oremap] lhs rhs + map the key sequence lhs to rhs for view mode, but disallow map- + ping of rhs. + + :vn[oremap] lhs rhs + map the key sequence lhs to rhs for visual mode, but disallow + mapping of rhs. + + :unmap + + :unm[ap] lhs + remove the mapping of lhs from normal and visual modes. + + :unm[ap]! lhs + remove the mapping of lhs from command line mode. + + :cunmap :dunmap :munmap :nunmap :qunmap + :vunmap + + :cu[nmap] lhs + remove the mapping of lhs from command line mode. + + :du[nmap] lhs + remove the mapping of lhs from dialog modes. + + :mu[nmap] lhs + remove the mapping of lhs from menu mode. + + :nun[map] lhs + remove the mapping of lhs from normal mode. + + :qun[map] lhs + remove the mapping of lhs from view mode. + + :vu[nmap] lhs + remove the mapping of lhs from visual mode. + +Ranges + The ranges implemented include: + 2,3 - from second to third file in the list (including it) + % - the entire directory. + . - the current position in the filelist. + $ - the end of the filelist. + 't - the mark position t. + + Examples: + + :%delete + + would delete all files in the directory. + + :2,4delete + + would delete the files in the list positions 2 through 4. + + :.,$delete + + would delete the files from the current position to the end of the + filelist. + + :3delete4 + + would delete the files in the list positions 3, 4, 5, 6. + + If a backward range is given :4,2delete - an query message is given and + user can chose what to do next. + + The builtin commands that accept a range are :d[elete] and :y[ank]. + +Command macros + The command macros may be used in user commands. + + %a User arguments. When user arguments contain macros, they are + expanded before preforming substitution of %a. + + %c %"c The current file under the cursor. + + %C %"C The current file under the cursor in the other directory. + + %f %"f All of the selected files. + + %F %"F All of the selected files in the other directory list. + + %b %"b Same as %f %F. + + %d %"d Full path to current directory. + + %D %"D Full path to other file list directory. + + %rx %"rx + Full paths to files in the register {x}. In case of invalid + symbol in place of {x}, it's processed with the rest of the line + and default register is used. + + %m Show command output in a menu. + + %M Same as %m, but l (or Enter) key is handled like for :locate and + :find commands. + + %u Process command output as list of paths and compose custom view + out of it. + + %U Same as %u, but implies less list updates inside vifm, which is + absence of sorting at the moment. + + %Iu same as %u, but gives up terminal before running external com- + mand. + + %IU same as %U, but gives up terminal before running external com- + mand. + + %S Show command output in the status bar. + + %q redirect command output to quick view, which is activated if + disabled. + + %s Execute command in split window of active terminal multiplexer + (ignored if not running inside one). + + %n Forbid using of terminal multiplexer to run the command. + + %i Completely ignore command output. + + + %pc Marks end of the main command and beginning of the clear command + for graphical preview, which is invoked on closing preview of a + file. + + The following dimensions and coordinates are in characters: + + %px x coordinate of top-left corner of preview area. + + %py y coordinate of top-left corner of preview area. + + %pw width of preview area. + + %ph height of preview area. + + + Use %% if you need to put a percent sign in your command. + + Note that %m, %M, %s, %S, %i, %u and %U macros are mutually exclusive. + Only the last one of them on the command will take effect. + + You can use file name modifiers after %c, %C, %f, %F, %b, %d and %D + macros. Supported modifiers are: + + - :p - full path + + - :u - UNC name of path (e.g. "\\server" in + "\\server\share"), Windows only. Expands to current computer name + for not UNC paths. + + - :~ - relative to the home directory + + - :. - relative to current directory + + - :h - head of the file name + + - :t - tail of the file name + + - :r - root of the file name (without last extension) + + - :e - extension of the file name (last one) + + - :s?pat?sub? - substitute the first occurrence of pat with sub. + You can use any character for '?', but it must not occur in pat or + sub. + + - :gs?pat?sub? - like :s, but substitutes all occurrences of pat with + sub. + + See ':h filename-modifiers' in Vim's documentation for the detailed + description. + + Using %x means expand corresponding macro escaping all characters that + have special meaning. And %"x means using of double quotes and escape + only backslash and double quote characters, which is more useful on + Windows systems. + + Position and quantity (if there is any) of %m, %M, %S or %s macros in + the command is unimportant. All their occurrences are removed from the + resulting command. + + %c and %f macros are expanded to file names only, when %C and %F are + expanded to full paths. %f and %F follow this in %b too. + + :com move mv %f %D + set the :move command to move all of the files selected in the + current directory to the other directory. + + The %a macro is replaced with any arguments given to an alias command. + All arguments are considered optional. + :com lsl !!ls -l %a - set the lsl command to execute ls -l with + or without an argument. + + :lsl<Enter> + will list the directory contents of the current directory. + + :lsl filename<Enter> + will list only the given filename. + + The macros can also be used in directly executing commands. ":!mv %f + %D" would move the current directory selected files to the other direc- + tory. + + Appending & to the end of a command causes it to be executed in the + background. Typically you want to run two kinds of external commands + in the background: + + - GUI applications that doesn't fork thus block vifm (:!sxiv %f &); + + - console tools that do not work with terminal (:!mv %f %D &). + + You don't want to run terminal commands, which require terminal input + or output something in background because they will mess up vifm's TUI. + Anyway, if you did run such a command, you can use Ctrl-L key to update + vifm's TUI. + + Rewriting the example command with macros given above with background- + ing: + + %m, %M, %s, %S, %u and %U macros cannot be combined with background + mark (" &") as it doesn't make much sense. + +Command backgrounding + Copy and move operation can take a lot of time to proceed. That's why + vifm supports backgrounding of this two operations. To run :copy, + :move or :delete command in the background just add " &" at the end of + a command. + + For each background operation a new thread is created. Currently job + cannot be stopped or paused. + + You can see if command is still running in the :jobs menu. Back- + grounded commands have progress instead of process id at the line + beginning. + + Background operations cannot be undone. + +Cancellation + Note that cancellation works somewhat different on Windows platform due + to different mechanism of break signal propagation. One also might + need to use Ctrl-Break shortcut instead of Ctrl-C. + + There are two types of operations that can be cancelled: + + - file system operations; + + - mounting with FUSE (but not unmounting as it can cause loss of + data); + + - calls of external applications. + + Note that vifm never terminates applications, it sends SIGINT signal + and lets the application quit normally. + + When one of set of operations is cancelled (e.g. copying of 5th file of + 10 files), further operations are cancelled too. In this case undo + history will contain only actually performed operations. + + Cancelled operations are indicated by "(cancelled)" suffix appended to + information message on statusbar. + + File system operations + + Currently the following commands can be cancelled: :alink, :chmod, + :chown, :clone, :copy, :delete, :mkdir, :move, :restore, :rlink, + :touch. File putting (on p/P key) can be cancelled as well. It's not + hard to see that these are mainly long-running operations. + + Cancelling commands when they are repeated for undo/redo operations is + allowed for convenience, but is not recommended as further undo/redo + operations might get blocked by side-effects of partially cancelled + group of operations. + + These commands can't be cancelled: :empty, :rename, :substitute, :tr. + + Mounting with FUSE + + It's not considered to be an error, so only notification on the status + bar is shown. + + External application calls + + Each of this operations can be cancelled: :apropos, :find, :grep, + :locate. + +Patterns + :highlight, :filetype, :filextype, :fileviewer commands and 'classify' + option support globs, regular expressions and mime types to match file + names or their paths. + + There are six possible ways to write a single pattern: + + 1. [!]{comma-separated-name-globs} + + 2. [!]{{comma-separated-path-globs}} + + 3. [!]/name-regular-expression/[iI] + + 4. [!]//path-regular-expression//[iI] + + 5. [!]<comma-separated-mime-type-globs> + + 6. undecorated-pattern + + Flags of regular expressions mean the following: + - "i" makes filter case insensitive; + - "I" makes filter case sensitive. They can be repeated multiple + times, but the later one takes precedence (e.g. "iiiI" is equivalent + to "I" and "IiIi" is the same as "i"). + + To combine several patterns (AND them), make sure you're using one of + the first five forms and write patterns one after another, like this: + <text/plain>{*.vifm} + Mind that if you make a mistake the whole string will be treated as the + sixth form. + + :filetype, :filextype and :fileviewer commands accept comma-separated + list of patterns instead of a single pattern, thus effectively handling + OR operation on them: + <text/plain>{*.vifm},<application/pdf>{*.pdf} + + Five first forms can include leading exclamation mark that negates pat- + tern matching. + + The last form is implicitly refers to one of others. :highlight does + not accept undecorated form, while :filetype, :filextype, :fileviewer, + :select, :unselect and 'classify' treat it as list of name globs. + + Regular expression patterns are case insensitive by default, see + description of commands, which might override default behaviour. + + "Globs" section below provides short overview of globs and some impor- + tant points that one needs to know about them. + + Mime type matching is essentially globs matching applied to mime type + of a file instead of its name/path. Note: mime types aren't detected + on Windows. + +Globs + Globs are always case insensitive as it makes sense in general case. + + *, ?, [ and ] are treated as special symbols in the pattern. E.g. + + :filetype * less %c + + matches all files. One can use character classes for escaping, so + + :filetype [*] less %c + + matches only one file name, the one which contains only asterisk sym- + bol. + + * means any number of any characters (possibly an empty substring), + with one exception: asterisk at the pattern beginning doesn't match dot + in the first position. E.g. + + :fileviewer *.zip,*.jar zip -sf %c + + associates using of zip program to preview all files with zip or jar + extensions as listing of their content. + + ? means any character at this position. E.g. + + :fileviewer ?.out file %c + + calls file tool for all files which has exactly one character before + their extension (e.g. a.out, b.out). + + Square brackets designate character class, which means that whole char- + acter class matches against any of characters listed in it. For exam- + ple + + :fileviewer *.[ch] highlight -O xterm256 -s dante --syntax c %c + + makes vifm call highlight program to colorize source and header files + in C language for a 256-color terminal. Equal command would be + + :fileviewer *.c,*.h highlight -O xterm256 -s dante --syntax c %c + + + Inside square brackets ^ or ! can be used for symbol class negotiation + and the - symbol to set a range. ^ and ! should appear right after the + opening square bracket. For example + + :filetype *.[!d]/ inspect_dir + + associates inspect_dir as additional handler for all directories that + have one character extension unless it's "d" letter. And + + :filetype [0-9].jpg sxiv + + associates sxiv picture viewer only for JPEG-files that contain single + digit in their name. + +:set options + Local options + These are kind of options that are local to a specific view. So + you can set ascending sorting order for left pane and descending + order for right pane. + + In addition to being local to views, each such option also has + two values: + + - local to current directory (value associated with current + location); + + - global to current directory (value associated with the + pane). + + The idea is that current directory can be made a temporary + exception to regular configuration of the view, until directory + change. Use :setlocal for that. :setglobal changes view value + not affecting settings until directory change. :set applies + changes immediately to all values. + + + 'aproposprg' + type: string + default: "apropos %a" + Specifies format for an external command to be invoked by the + :apropos command. The format supports expanding of macros, spe- + cific for a particular *prg option, and %% sequence for insert- + ing percent sign literally. This option should include the %a + macro to specify placement of arguments passed to the :apropos + command. If the macro is not used, it will be implicitly added + after a space to the value of this option. + + 'autochpos' + type: boolean + default: true + When disabled vifm will set cursor to the first line in the view + after :cd and :pushd commands instead of saved cursor position. + Disabling this will also make vifm clear information about cur- + sor position in the view history on :cd and :pushd commands (and + on startup if 'autochpos' is disabled in the vifmrc). l key in + the ":history ." and ":trashes" menus are treated like :cd com- + mand. This option also affects marks so that navigating to a + mark doesn't restore cursor position. + + When this option is enabled, more fine grained control over cur- + sor position is available via 'histcursor' option. + + 'columns' 'co' + type: integer + default: terminal width on startup + Terminal width in characters. + + 'caseoptions' + type: charset + default: "" + This option gives additional control over case sensitivity by + allowing overriding default behaviour to either always be case + sensitive or always be case insensitive. Possible values form + pairs of lower and upper case letters that configure specific + aspect of behaviour: + p - always ignore case of paths during completion. + P - always match case of paths during completion. + g - always ignore case of characters for f/F/;/,. + G - always match case of characters for f/F/;/,. + + At most one item of each pair takes affect, if both or more are + present, only the last one matters. When none of pair's ele- + ments are present, the behaviour is default (depends on operat- + ing system for path completion and on values of 'ignorecase' and + 'smartcase' options for file navigation). + + 'cdpath' 'cd' + type: string list + default: value of $CDPATH with commas instead of colons + Specifies locations to check on changing directory with relative + path that doesn't start with "./" or "../". When non-empty, + current directory is examined after directories listed in the + option. + + This option doesn't affect completion of :cd command. + + Example: + + set cdpath=~ + + This way ":cd bin" will switch to "~/bin" even if directory + named "bin" exists in current directory, while ":cd ./bin" com- + mand will ignore value of 'cdpath'. + + 'chaselinks' + type: boolean + default: false + When enabled path of view is always resolved to real path (with + all symbolic links expanded). + + 'classify' + type: string list + default: ":dir:/" + Specifies file name prefixes and suffixes depending on file type + or name. The format is either of: + - [{prefix}]:{filetype}:[{suffix}] + - [{prefix}]::{pattern}::[{suffix}] + Possible {pattern} forms are described in "Patterns" section + above. + + Priority rules: + - file name patterns have priority over type patterns + - file name patterns are matched in left-to-right order of + their appearance in this option + + Either {prefix} or {suffix} or both can be omitted (which is the + default for all unspecified file types), this means empty {pre- + fix} and/or {suffix}. {prefix} and {suffix} should consist of + at most eight characters. Elements are separated by commas. + Neither prefixes nor suffixes are part of file names, so they + don't affect commands which operate on file names in any way. + Comma (',') character can be inserted by doubling it. List of + file type names can be found in the description of filetype() + function. + + 'confirm' 'cf' + type: set + default: delete,permdelete + Defines which operations require confirmation: + - delete - moving files to trash (on d or :delete); + - permdelete - permanent deletion of files (on D or :delete! + command or on undo/redo operation). + + 'cpoptions' 'cpo' + type: charset + default: "fst" + Contains a sequence of single-character flags. Each flag + enables behaviour of older versions of vifm. Flags: + - f - when included, running :filter command results in not + inverted (matching files are filtered out) and :filter! in + inverted (matching files are left) filter, when omitted, meaning + of the exclamation mark changes to the opposite; + - s - when included, yy, dd and DD normal mode commands act on + selection, otherwise they operate on current file only; + - t - when included, <tab> (thus <c-i>) behave as <space> and + switches active pane, otherwise <tab> and <c-i> go forward in + the view history. It's possible to make both <tab> and <c-i> to + work as expected by setting up the terminal to emit a custom + sequence when <c-i> is pressed; see :histnext for details. + + 'cvoptions' + type: set + default: + Specifies whether entering/leaving custom views triggers events + that normally happen on entering/leaving directories: + - autocmds - trigger autocommands on entering/leaving custom + views; + - localopts - reset local options on entering/leaving custom + views; + - localfilter - reset local filter on entering/leaving custom + views. + + 'deleteprg' + type: string + default: "" + Specifies program to run on files that are permanently removed. + When empty, files are removed as usual, otherwise this command + is invoked on each file by appending its name. If the command + doesn't remove files, they will remain on the file system. + + 'dirsize' + type: enumeration + default: size + Controls how size of directories is displayed in file views. + The following values are possible: + - size - size of directory (i.e., size used to store list of + files) + - nitems - number of entries in the directory (excluding . and + ..) + + Size obtained via ga/gA overwrites this setting so seeing count + of files and occasionally size of directories is possible. + + 'dotdirs' + type: set + default: nonrootparent + Controls displaying of dot directories. The following values + are possible: + - rootparent - show "../" in root directory of file system + - nonrootparent - show "../" in non-root directories of file + system + + Note that empty directories always contain "../" entry regard- + less of value of this option. "../" disappears at the moment at + least one file is created. + + 'dotfiles' + type: boolean + default: false + Whether dot files are shown in the view. Can be controlled with + z* bindings. + + 'fastrun' + type: boolean + default: false + With this option turned on you can run partially entered com- + mands with unambiguous beginning using :! (e.g. :!Te instead of + :!Terminal or :!Te<tab>). + + 'fillchars' 'fcs' + type: string list + default: "" + Sets characters used to fill borders. + + item default used for + vborder:c ' ' left, middle and right vertical bor- + ders + + If value is omitted, its default value is used. Example: + + set fillchars=vborder:. + + 'findprg' + type: string + default: "find %s %a -print , -type d \( ! -readable -o ! -exe- + cutable \) -prune" + Specifies format for an external command to be invoked by the + :find command. The format supports expanding of macros, spe- + cific for a particular *prg option, and %% sequence for insert- + ing percent sign literally. This option should include the %s + macro to specify placement of list of paths to search in and %a + or %A macro to specify placement of arguments passed to the + :find command. If some of the macros are not used, they will be + implicitly added after a space to the value of the option in the + following order: %s, %a. Note that when neither %a nor %A are + specified, it's %a which is added implicitly. + + The macros can slightly change their meaning depending on :find + command arguments. When the first argument points to an exist- + ing directory, %s is assigned all arguments and %a/%A are left + empty. Otherwise, %s is assigned a dot (".") meaning current + directory or list of selected file names, if any. %a/%A are + assigned arguments when first argument starts with a dash ("-"), + otherwise %a gets an escaped version of arguments, prepended by + "-name" (on *nix) or "-iname" (on Windows) predicate. + + %a and %A macros contain almost the same value, the difference + is that %a can be escaped and %A is never escaped. %A is to be + used mainly on Windows, where shell escaping is a mess and can + break command execution. + + Optional %u or %U macro could be used (if both specified %U is + chosen) to force redirection to custom or unsorted custom view + respectively. + + Starting from Windows Server 2003 a where command is available, + one can configure vifm to use it in the following way: + + set findprg="where /R %s %A" + + As the syntax of this command is rather limited, one can't use + :find command with selection of more than one item in this case. + The command looks for files only completely ignoring directo- + ries. + + When using find port on Windows, another option is to setup + 'findprg' like this: + + set findprg="find %s %a" + + 'followlinks' + type: boolean + default: true + Follow links on l or Enter. That is navigate to destination + file instead of treating the link as if it were target file. + Doesn't affects links to directories, which are always entered + (use gf key for directories). + + 'fusehome' + type: string + default: "($XDG_DATA_HOME/.local/share | $VIFM)/fuse/" + Directory to be used as a root dir for FUSE mounts. Value of + the option can contain environment variables (in form + "$envname"), which will be expanded (prepend it with a slash to + prevent expansion). The value should expand to an absolute + path. + + If you change this option, vifm won't remount anything. It + affects future mounts only. See "Automatic FUSE mounts" section + below for more information. + + 'gdefault' 'gd' + type: boolean + default: false + When on, 'g' flag is on for :substitute by default. + + 'grepprg' + type: string + default: "grep -n -H -I -r %i %a %s" + Specifies format for an external command to be invoked by the + :grep command. The format supports expanding of macros, spe- + cific for a particular *prg option, and %% sequence for insert- + ing percent sign literally. This option should include the %i + macro to specify placement of "-v" string when inversion of + results is requested, %a or %A macro to specify placement of + arguments passed to the :grep command and the %s macro to spec- + ify placement of list of files to search in. If some of the + macros are not used, they will be implicitly added after a space + to the value of the 'grepprg' option in the following order: %i, + %a, %s. Note that when neither %a nor %A are specified, it's %a + which is added implicitly. + + Optional %u or %U macro could be used (if both specified %U is + chosen) to force redirection to custom or unsorted custom view + respectively. + + See 'findprg' option for description of difference between %a + and %A. + + Example of setup to use ack (http://beyondgrep.com/) instead of + grep: + + set grepprg='ack -H -r %i %a %s' + + or The Silver Searcher (https://github.com/ggreer/the_sil- + ver_searcher): + + set grepprg='ag --line-numbers %i %a %s' + + + + 'histcursor' + type: set + default: startup,dirmark,direnter + Defines situations when cursor should be moved according to + directory history: + - startup - on loading file lists during startup + - dirmark - after navigating to a mark that doesn't specify + file + - direnter - on opening directory from a file list + + This option has no effect when 'autochpos' is disabled. + + Note that the list is not exhaustive and there are other situa- + tions when cursor is positioned automatically. + + 'history' 'hi' + type: integer + default: 15 + Maximum number of stored items in all histories. + + 'hlsearch' 'hls' + type: boolean + default: true + Highlight all matches of search pattern. + + 'iec' type: boolean + default: false + Use KiB, MiB, ... suffixes instead of K, M, ... when printing + size in human-friendly format. + + 'ignorecase' 'ic' + type: boolean + default: false + Ignore case in search patterns (:substitute, / and ? commands) + and characters after f and F commands. It doesn't affect file + filtering. + + 'incsearch' 'is' + type: boolean + default: false + When this option is set, search and view update for local filter + is be performed starting from initial cursor position each time + search pattern is changed. + + 'iooptions' + type: set + default: + Controls details of file operations. The following values are + available: + - fastfilecloning - perform fast file cloning (copy-on-write), + when available + (available on Linux and btrfs file system). + + 'laststatus' 'ls' + type: boolean + default: true + Controls if status bar is visible. + + 'lines' + type: integer + default: terminal height on startup + Terminal height in lines. + + 'locateprg' + type: string + default: "locate %a" + Specifies format for an external command to be invoked by the + :locate command. The format supports expanding of macros, spe- + cific for a particular *prg option, and %% sequence for insert- + ing percent sign literally. This option should include the %a + macro to specify placement of arguments passed to the :locate + command. If the macro is not used, it will be implicitly added + after a space to the value of this option. + + Optional %u or %U macro could be used (if both specified %U is + chosen) to force redirection to custom or unsorted custom view + respectively. + + 'mediaprg' + type: string + default: path to bundled script that supports udevil and udisks + {only for *nix} + Specifies command to be used to manage media devices. Used by + :media command. + + The command can be passed the following parameters: + - list -- list media + - mount {device} -- mount a device + - unmount {path} -- unmount given mount point + + The output of `list` subcommand is parsed in search of lines + that start with one of the following prefixes: + - device= - specifies device path (e.g., "/dev/sde") + - label= - specifies optional device label (e.g., "Memory + card") + - mount-point= - specifies a mount point (can be absent or + appear more than once) + + All other lines are ignored. Each `device=` starts a new sec- + tion describing a device which should include two other possible + prefixes. + + `list` subcommand is assumed to always succeed, while error + stream and exit code of `mount` and `unmount` is taken into + account to determine whether operation was performed success- + fully. + + 'lsoptions' + type: string list + default: "" + scope: local + + Configures ls-like view. + + item used for + transposed filling view grid by columns rather than by + lines + + + 'lsview' + type: boolean + default: false + scope: local + When this option is set, directory view will be displayed in + multiple columns with file names similar to output of `ls -x` + command. See "ls-like view" section below for format descrip- + tion. This option has no effect if 'millerview' is on. + + 'milleroptions' + type: string list + default: "lsize:1,csize:1,rsize:1" + scope: local + + Configures miller view. + + item default used for + lsize:num 0 left column + csize:num 1 center column (can't be disabled) + rsize:num 0 right column + + *size specifies ratios of columns. Each ratio is in the range + from 0 to 100 and values are adjusted to fit the limits. Zero + disables a column, but central (main) column can't be disabled. + + Example of two-column mode which is useful in combination with + :view command: + + set milleroptions=lsize:1,csize:2 + + + 'millerview' + type: boolean + default: false + scope: local + When this option is set, directory view will be displayed in + multiple cascading columns. Ignores 'lsview'. + + 'mintimeoutlen' + type: integer + default: 150 + The fracture of 'timeoutlen' in milliseconds that is waited + between subsequent input polls, which affects various asynchro- + nous operations (detecting changes made by external applica- + tions, monitoring background jobs, redrawing UI). There are no + strict guarantees, however the higher this value is, the less is + CPU load in idle mode. + + 'number' 'nu' + type: boolean + default: false + scope: local + Print line number in front of each file name when 'lsview' + option is turned off. Use 'numberwidth' to control width of + line number. Also see 'relativenumber'. + + 'numberwidth' 'nuw' + type: integer + default: 4 + scope: local + Minimal number of characters for line number field. + + 'previewprg' + type: string + default: "" + scope: local + + External command to be used instead of preview programs config- + ured via :fileviewer command. + + Example: + + " always show git log in preview of files inside some repository + au DirEnter '~/git-repo/**/*' setl previewprg='git log --color -- %c 2>&1' + + 'quickview' + type: boolean + default: false + Whether quick view (:view) is currently active or not. + + 'relativenumber' 'rnu' + type: boolean + default: false + scope: local + Print relative line number in front of each file name when + 'lsview' option is turned off. Use 'numberwidth' to control + width of line number. Various combinations of 'number' and + 'relativenumber' lead to such results: + + nonumber number + + norelativenumber | first | 1 first + | second | 2 second + | third | 3 third + + relativenumber | 1 first | 1 first + | 0 second |2 second + | 1 third | 1 third + + + 'rulerformat' 'ruf' + type: string + default: "%l/%S " + Determines the content of the ruler. Its minimal width is 13 + characters and it's right aligned. Following macros are sup- + ported: + %= - separation point between left and right aligned halves of + the line + %l - file number + %L - total number of files in view (including filtered out + ones) + %x - number of files excluded by filters + %0- - old name for %x macro + %S - number of displayed files + %= - separation point between left and right align items + %% - percent sign + %[ - designates beginning of an optional block + %] - designates end of an optional block + + Percent sign can be followed by optional minimum field width. + Add '-' before minimum field width if you want field to be right + aligned. + + Example: + + set rulerformat='%2l-%S%[ +%x%]' + + 'runexec' + type: boolean + default: false + Run executable file on Enter or l. + + 'scrollbind' 'scb' + type: boolean + default: false + When this option is set, vifm will try to keep difference of + scrolling positions of two windows constant. + + 'scrolloff' 'so' + type: integer + default: 0 + Minimal number of screen lines to keep above and below the cur- + sor. If you want cursor line to always be in the middle of the + view (except at the beginning or end of the file list), set this + option to some large value (e.g. 999). + + 'shell' 'sh' + type: string + default: $SHELL or "/bin/sh" or "cmd" (on MS-Windows) + Full path to the shell to use to run external commands. On *nix + a shell argument can be supplied. + + 'shortmess' 'shm' + type: charset + default: "p" + Contains a sequence of single-character flags. Each flag + enables shortening of some message displayed by vifm in the TUI. + Flags: + - M - shorten titles in windows of terminal multiplexers cre- + ated by vifm down to file name instead of using full path. + - T - truncate status-bar messages in the middle if they are + too long to fit on the command line. "..." will appear in the + middle. + - p - use tilde shortening in view titles. + + + 'showtabline' 'stal' + type: enumeration + default: multiple + Specifies when tab line should be displayed. Possible values: + - never - never display tab line + - multiple - show tab line only when there are at least two + tabs + - always - display tab line always + + Alternatively 0, 1 and 2 Vim-like values are also accepted and + correspond to "never", "multiple" and "always" respectively. + + + 'sizefmt' + type: string list + default: "units:iec" + Configures the way size is formatted in human-friendly way. + + item value meaning + units: iec Use 1024 byte units (K or KiB, + etc.). + See 'iec' option. + si Use 1000 byte units (KB, etc.). + precision: i > 0 How many fraction digits to con- + sider. + {not set} Precision of 1 for integer part + < 10, + 0 otherwise (provides old behav- + iour). + + Numbers are rounded from zero. Trailing zeros are dropped. + + Example: + + set sizefmt=units:iec,precision:2 + + + 'slowfs' + type: string list + default: "" + only for *nix + A list of mounter fs name beginnings (first column in /etc/mtab + or /proc/mounts) or paths prefixes for fs/directories that work + too slow for you. This option can be used to stop vifm from + making some requests to particular kinds of file systems that + can slow down file browsing. Currently this means don't check + if directory has changed, skip check if target of symbolic links + exists, assume that link target located on slow fs to be a + directory (allows entering directories and navigating to files + via gf). If you set the option to "*", it means all the systems + are considered slow (useful for cygwin, where all the checks + might render vifm very slow if there are network mounts). + + Example for autofs root /mnt/autofs: + + set slowfs+=/mnt/autofs + + 'smartcase' 'scs' + type: boolean + default: false + Overrides the ignorecase option if the search pattern contains + at least one upper case character. Only used when ignorecase + option is enabled. It doesn't affect file filtering. + + 'sort' type: string list + default: +name on *nix and +iname on Windows + scope: local + Sets list of sorting keys (first item is primary key, second is + secondary key, etc.): + [+-]ext - extension of files and directories + [+-]fileext - extension of files only + [+-]name - name (including extension) + [+-]iname - name (including extension, ignores case) + [+-]type - file type + (dir/reg/exe/link/char/block/sock/fifo) + [+-]dir - directory grouping (directory < file) + [+-]gid - group id (*nix only) + [+-]gname - group name (*nix only) + [+-]mode - file type derived from its mode (*nix only) + [+-]perms - permissions string (*nix only) + [+-]uid - owner id (*nix only) + [+-]uname - owner name (*nix only) + [+-]nlinks - number of hard links (*nix only) + [+-]inode - inode number (*nix only) + [+-]size - size + [+-]nitems - number of items in a directory (zero for files) + [+-]groups - groups extracted via regexps from 'sortgroups' + [+-]target - symbolic link target (empty for other file + types) + [+-]atime - time accessed (e.g. read, executed) + [+-]ctime - time changed (changes in metadata, e.g. mode) + [+-]mtime - time modified (when file contents is changed) + + Note: look for st_atime, st_ctime and st_mtime in "man 2 stat" + for more information on time keys. + + '+' means ascending sort for this key, and '-' means descending + sort. + + "dir" key is somewhat similar in this regard but it's added + implicitly: when "dir" is not specified, sorting behaves as if + it was the first key in the list. That's why if one wants sort- + ing algorithm to mix directories and files, "dir" should be + appended to sorting option, for example like this: + + set sort+=dir + + or + + set sort=-size,dir + + Value of the option is checked to include dir key and default + sorting key (name on *nix, iname on Windows). Here is what hap- + pens if one of them is missing: + + - type key is added at the beginning; + + - default key is added at the end; + + all other keys are left untouched (at most they are moved). + + This option also changes view columns according to primary sort- + ing key set, unless 'viewcolumns' option is not empty. + + 'sortnumbers' + type: boolean + default: false + scope: local + Natural sort of (version) numbers within text. + + 'sortgroups' + type: string + default: "" + scope: local + Sets comma-separated list of regular expressions to use for + group sorting, double comma is literal comma. Each expression + should contain at least one group or its value will be consid- + ered to be always empty. Only first match of each regular + expression is considered. Groups are considered from right to + first similar to 'sort', first group divides list of files into + sub-groups, each of which is sorted by the second group and so + on. + + Example: + set sortgroups=-(done|todo).* + this would put files with "-done" in their names above all files + with "-todo". + + 'sortorder' + type: enumeration + default: ascending + Sets sort order for primary key: ascending, descending. + + 'statusline' 'stl' + type: string + default: "" + Determines the content of the status line (the line right above + command-line). Empty string means use same format like in pre- + vious versions. Following macros are supported: + + - %t - file name (considering value of the 'classify' option) + + - %T - symbolic link target (empty for other filetypes) + + - %f - file name relative to current directory (considers 'clas- + sify') + + - %A - file attributes (permissions on *nix or properties on + Windows) %u - user name or uid (if it cannot be resolved) + + - %g - group name or gid (if it cannot be resolved) + + - %s - file size in human readable format + + - %E - size of selected files in human readable format, same as + %s when no files are selected, except that it will never show + size of ../ in visual mode, since it cannot be selected + + - %d - file modification date (uses 'timefmt' option) + + - %D - path of the other pane for single-pane layout + + - %a - amount of free space available at current partition + + - %z - short tips/tricks/hints that chosen randomly after one + minute period + + - %{<expr>} - evaluate arbitrary vifm expression '<expr>', e.g. + '&sort' + + - %* - resets or applies one of User1..User9 highlight groups; + reset happens when width field is 0 or not specified, one of + groups gets picked when width field is in the range from 1 to + 9 + + - all 'rulerformat' macros + + Percent sign can be followed by optional minimum field width. + Add '-' before minimum field width if you want field to be right + aligned. + + On Windows file properties include the following flags (upper + case means flag is on): + A - archive + H - hidden + I - content isn't indexed + R - readonly + S - system + C - compressed + D - directory + E - encrypted + P - reparse point (e.g. symbolic link) + Z - sparse file + + Example without colors: + + set statusline=" %t%= %A %10u:%-7g %15s %20d %{&sort} " + + Example with colors: + + highlight User1 ctermbg=yellow + highlight User2 ctermbg=blue ctermfg=white cterm=bold + set statusline="%1* %-26t %2* %= %1* %A %2* %7u:%-7g %1* %-5s %2* %d " + + + 'suggestoptions' + type: string list + default: + Controls when, for what and how suggestions are displayed. The + following values are available: + - normal - in normal mode; + - visual - in visual mode; + - view - in view mode; + - otherpane - use other pane to display suggestions, when + available; + - delay[:num] - display suggestions after a small delay (to + do not annoy if you just want to type a fast shortcut consisting + of multiple keys), num specifies the delay in ms (500 by + default), 'timeoutlen' at most; + - keys - include shortcuts (commands and selectors); + - foldsubkeys - fold multiple keys with common prefix; + - marks - include marks; + - registers[:num] - include registers, at most num files (5 by + default). + + 'syncregs' + type: string + default: + Specifies identifier of group of instances that share registers + between each other. When several instances of vifm have this + option set to identical value, they automatically synchronize + contents of their registers on operations which use them. + + 'syscalls' + type: boolean + default: false + When disabled, vifm will rely on external applications to per- + form file-system operations, otherwise system calls are used + instead (much faster and supports progress tracking). The + option should eventually be removed. Mostly *nix-like systems + are affected. + + 'tabscope' + type: enumeration + default: global + Picks style of tabs, which defines what a single tab contains. + Possible values: + - global - tab describes complete UI of two views and how they + are arranged + - pane - tab is located "inside" a pane and manages it and + quick view + + 'tabstop' 'ts' + type: integer + default: value from curses library + Number of spaces that a Tab in the file counts for. + + 'timefmt' + type: string + default: "%m/%d %H:%M" + Format of time in file list. See "man 1 date" or "man 3 strf- + time" for details. + + 'timeoutlen' 'tm' + type: integer + default: 1000 + The time in milliseconds that is waited for a mapped key in case + of already typed key sequence is ambiguous. + + 'title' + type: boolean + default: true when title can be restored, false otherwise + When enabled title of the terminal or terminal multiplexer's + window is updated according to current location. + + 'trash' + type: boolean + default: true + Use trash directory. See "Trash directory" section below. + + 'trashdir' + type: string + default: on *nix: + "%r/.vifm-Trash-%u,$VIFM/Trash,%r/.vifm-Trash" + or if $VIFM/Trash doesn't exist + "%r/.vifm-Trash-%u,$XDG_DATA_HOME/vifm/Trash,%r/.vifm-Trash" + on Windows: + "%r/.vifm-Trash,$XDG_DATA_HOME/vifm/Trash" + List of trash directory path specifications, separated with com- + mas. Each list item either defines an absolute path to trash + directory or a path relative to a mount point root when list + element starts with "%r/". Value of the option can contain + environment variables (of form "$envname"), which will be + expanded (prepend $ with a slash to prevent expansion). Envi- + ronment variables are expanded when the option is set. + + On *nix, if element ends with "%u", the mark is replaced with + real user ID and permissions are set so that only that only + owner is able to use it. + Note that even this setup is not completely secure when combined + with "%r/" and it's overall safer to keep files in home direc- + tory, but that implies cost of copying files between partitions. + + When new file gets cut (deleted) vifm traverses each element of + the option in the order of their appearance and uses first trash + directory that it was able to create or that is already + writable. + + Default value tries to use trash directory per mount point and + falls back to ~/.vifm/Trash on failure. + + Will attempt to create the directory if it does not exist. See + "Trash directory" section below. + + 'tuioptions' 'to' + type: charset + default: "ps" + Each flag configures some aspect of TUI appearance. The flags + are: + p - when included: + * file list inside a pane gets additional single character + padding on left and right sides; + * quick view and view mode get single character padding. + s - when included, left and right borders (side borders, hence + "s" character) are visible. + u - use Unicode characters in the TUI (Unicode ellipsis instead + of "..."). + + 'undolevels' 'ul' + type: integer + default: 100 + Maximum number of changes that can be undone. Note that here + single file operation is used as a unit, not operation, i.e. + deletion of 101 files will exceed default limit. + + 'vicmd' + type: string + default: "vim" + The actual command used to start vi. Ampersand sign at the end + (regardless whether it's preceded by space or not) means back- + grounding of command. + + Background flag is ignored in certain context where vifm waits + for the editor to finish. Such contexts include any command + that spawns editor to change list of file names or a command, + with :rename being one example. `-f` is also appended to pre- + vent forking in such cases, so the command needs to handle the + flag. + + Additionally `+{num}` and `+'call cursor()'` arguments are used + to position cursor when location is known. + + 'viewcolumns' + type: string + default: "" + scope: local + Format string containing list of columns in the view. When this + option is empty, view columns to show are chosen automatically + using sorting keys (see 'sort') as a base. Value of this option + is ignored if 'lsview' is set. See "Column view" section below + for format description. + + An example of setting the options for both panes (note :windo + command): + + windo set viewcolumns=-{name}..,6{size},11{perms} + + 'vixcmd' + type: string + default: value of 'vicmd' + Same as 'vicmd', but takes precedence over it when running in X. + + 'vifminfo' + type: set + default: bookmarks,bmarks + Controls what will be saved in the $VIFM/vifminfo file. + + bmarks - named bookmarks + bookmarks - marks, except special ones like '< and '> + tui - state of the user interface (sorting, number of + windows, quick + view state, active view) + dhistory - directory history + state - file name and dot filters and terminal multiplex- + ers integration + state + cs - primary color scheme + savedirs - save last visited directory (requires dhistory) + chistory - command line history + shistory - search history (/ and ? commands) + phistory - prompt history + fhistory - history of local filter (see description of the + "=" normal mode + command) + dirstack - directory stack overwrites previous stack, unless + stack of + current session is empty + registers - registers content + options - all options that can be set with the :set command + (obsolete) + filetypes - associated programs and viewers (obsolete) + commands - user defined commands (see :command description) + (obsolete) + + 'vimhelp' + type: boolean + default: false + Use vim help format. + + 'wildmenu' 'wmnu' + type: boolean + default: false + Controls whether possible matches of completion will be shown + above the command line. + + 'wildstyle' + type: enumeration + default: bar + Picks presentation style of wild menu. Possible values: + - bar - one-line with left-to-right cursor + - popup - multi-line with top-to-bottom cursor + + 'wordchars' + type: string list + default: "1-8,14-31,33-255" (that is all non-whitespace charac- + ters) + Specifies which characters in command-line mode should be con- + sidered as part of a word. Value of the option is comma-sepa- + rated list of ranges. If both endpoints of a range match, sin- + gle endpoint is enough (e.g. "a" = "a-a"). Both endpoints are + inclusive. There are two accepted forms: character representing + itself or number encoding character according to ASCII table. + In case of ambiguous characters (dash, comma, digit) use numeric + form. Accepted characters are in the range from 0 to 255. Any + Unicode character with code greater than 255 is considered to be + part of a word. + + The option affects Alt-D, Alt-B and Alt-F, but not Ctrl-W. This + is intentionally to allow two use cases: + + - Moving by WORDS and deletion by words. + - Moving by words and deletion by WORDS. + + To get the latter use the following mapping: + + cnoremap <c-w> <a-b><a-d> + + Also used for abbreviations. + + 'wrap' type: boolean + default: true + Controls whether to wrap text in quick view. + + 'wrapscan' 'ws' + type: boolean + default: true + Searches wrap around end of the list. + +Mappings + Map arguments + + LHS of mappings can be preceded by arguments which take the form of + special sequences: + + <silent> + Postpone UI updates until RHS is completely processed. + + <wait> In case of builtin mapping causing conflict for a user-defined + mapping (e.g., `t` builtin to a partially typed `ta` user- + defined mapping), ignore the builtin mapping and wait for input + indefinitely as opposed to default behaviour of triggering the + builtin mapping after a delay defined by 'timeoutlen'. Example: + + nnoremap <wait> tw :set wrap!<cr> + nnoremap <wait> tn :set number!<cr> + nnoremap <wait> tr :set relativenumber!<cr> + + Special sequences + + Since it's not easy to enter special characters there are several spe- + cial sequences that can be used in place of them. They are: + + <cr> Enter key. + + <esc> Escape key. + + <space> + Space key. + + <lt> Less-than character (<). + + <nop> provides a way to disable a mapping (by mapping it to <nop>). + + <bs> Backspace key (see key conflict description below). + + <tab> <s-tab> + Tabulation and Shift+Tabulation keys. + + <home> <end> + Home/End. + + <left> <right> <up> <down> + Arrow keys. + + <pageup> <pagedown> + PageUp/PageDown. + + <del> <delete> + Delete key. <del> and <delete> mean different codes, but + <delete> is more common. + + <insert> + Insert key. + + <c-a>,<c-b>,...,<c-z>,<c-[>,<c->,<c-]>,<c-^>,<c-_> + Control + some key (see key conflict description below). + + <c-@> only for *nix + Control + Space. + + <a-a>,<a-b>,...,<a-z> + <m-a>,<m-b>,...,<m-z> Alt + some key. + + <a-c-a>,<a-c-b>,...,<a-c-z> + <m-c-a>,<m-c-b>,...,<m-c-z> only for *nix + Alt + Ctrl + some key. + + <f0> - <f63> + Functional keys. + + <c-f1> - <c-f12> + only for MS-Windows + functional keys with Control key pressed. + + <a-f1> - <a-f12> + only for MS-Windows + functional keys with Alt key pressed. + + <s-f1> - <s-f12> + only for MS-Windows + functional keys with Shift key pressed. + + Note that due to the way terminals process their input, several key- + board keys might be mapped to single key code, for example: + + - <cr> and <c-m>; + + - <tab> and <c-i>; + + - <c-h> and <bs>; + + - etc. + + Most of the time they are defined consistently and don't cause sur- + prises, but <c-h> and <bs> are treated differently in different envi- + ronments (although they match each other all the time), that's why they + correspond to different keys in vifm. As a consequence, if you map <c- + h> or <bs> be sure to repeat the mapping with the other one so that it + works in all environments. Alternatively, provide your mapping in one + form and add one of the following: + + " if mappings with <c-h> in the LHS work + map <c-h> <bs> + " if mappings with <bs> in the LHS work + map <bs> <c-h> + + Whitespace + + vifm removes whitespace characters at the beginning and end of com- + mands. That's why you may want to use <space> at the end of rhs in + mappings. For example: + + cmap <f1> man<space> + + will put "man " in line when you hit the <f1> key in the command line + mode. + +Expression syntax + Supported expressions is a subset of what VimL provides. + + Expression syntax summary, from least to most significant: + + expr1 expr2 + expr2 || expr2 .. logical OR + + expr2 expr3 + expr3 && expr3 .. logical AND + + expr3 expr4 + expr4 == expr4 equal + expr4 != expr4 not equal + expr4 > expr4 greater than + expr4 >= expr4 greater than or equal + expr4 < expr4 smaller than + expr4 <= expr4 smaller than or equal + + expr4 expr5 + expr5 + expr5 .. number addition + expr5 - expr5 .. number subtraction + + expr5 expr6 + expr6 . expr6 .. string concatenation + + expr6 expr7 + - expr6 unary minus + + expr6 unary plus + ! expr6 logical NOT + + expr7 number number constant + "string" string constant, \ is special + 'string' string constant, ' is doubled + &option option value + $VAR environment variable + v:var builtin variable + function(expr1, ...) function call + (expr1) nested expression + + ".." indicates that the operations in this level can be concatenated. + + expr1 + ----- + expr2 || expr2 + + Arguments are converted to numbers before evaluation. + + Result is non-zero if at least one of arguments is non-zero. + + It's right associative and with short-circuiting, so sub-expressions + are evaluated from left to right until result of whole expression is + determined (i.e., until first non-zero) or end of the expression. + + expr2 + ----- + expr3 && expr3 + + Arguments are converted to numbers before evaluation. + + Result is non-zero only if both arguments are non-zero. + + It's right associative and with short-circuiting, so sub-expressions + are evaluated from left to right until result of whole expression is + determined (i.e., until first zero) or end of the expression. + + expr3 + ----- + expr4 {cmp} expr4 + + Compare two expr4 expressions, resulting in a 0 if it evaluates to + false or 1 if it evaluates to true. + + equal == + not equal != + greater than > + greater than or equal >= + smaller than < + smaller than or equal <= + + Examples: + + 'a' == 'a' == 1 + 'a' > 'b' == 1 + 'a' == 'b' == 0 + '2' > 'b' == 0 + 2 > 'b' == 1 + 2 > '1b' == 1 + 2 > '9b' == 0 + -1 == -'1' == 1 + 0 == '--1' == 1 + + expr4 + ----- + expr5 + expr5 .. number addition expr5 - expr5 .. number sub- + traction + + Examples: + + 1 + 3 - 3 == 1 + 1 + '2' == 3 + + expr5 + ----- + expr6 . expr6 .. string concatenation + + Examples: + + 'a' . 'b' == 'ab' + 'aaa' . '' . 'c' == 'aaac' + + expr6 + ----- + + - expr6 unary minus + + expr6 unary plus + ! expr6 logical NOT + + For '-' the sign of the number is changed. + For '+' the number is unchanged. + For '!' non-zero becomes zero, zero becomes one. + + A String will be converted to a Number first. + + These operations can be repeated and mixed. Examples: + + --9 == 9 + ---9 == -9 + -+9 == 9 + !-9 == 0 + !'' == 1 + !'x' == 0 + !!9 == 1 + + expr7 + ----- + + number number constant + ----- + + Decimal number. Examples: + + 0 == 0 + 0000 == 0 + 01 == 1 + 123 == 123 + 10000 == 10000 + + string + ------ + "string" string constant + + Note that double quotes are used. + + A string constant accepts these special characters: + \b backspace <bs> + \e escape <esc> + \n newline + \r return <cr> + \t tab <tab> + \\ backslash + \" double quote + + Examples: + + "\"Hello,\tWorld!\"" + "Hi,\nthere!" + + literal-string + -------------- + 'string' string constant + + Note that single quotes are used. + + This string is taken as it is. No backslashes are removed or have a + special meaning. The only exception is that two quotes stand for one + quote. + + Examples: + + 'All\slashes\are\saved.' + 'This string contains doubled single quotes ''here''' + + option + ------ + &option option value (local one is preferred, if exists) + &g:option global option value &l:option local + option value + + Examples: + + echo 'Terminal size: '.&columns.'x'.&lines + if &columns > 100 + + Any valid option name can be used here (note that "all" in ":set all" + is a pseudo option). See ":set options" section above. + + environment variable + -------------------- + $VAR environment variable + + The String value of any environment variable. When it is not defined, + the result is an empty string. + + Examples: + + 'This is my $PATH env: ' . $PATH + 'vifmrc at ' . $MYVIFMRC . ' is used.' + + builtin variable + -------------------- + v:var builtin variable + + Information exposed by vifm for use in scripting. + + v:count + count passed to : command, 0 by default. Can be used in mappings to + pass + count to a different command. + v:count1 + same as v:count, but 1 by default. + v:servername + See below. + + function call + ------------- + function(expr1, ...) function call + + See "Functions" section below. + + Examples: + + "'" . filetype('.') . "'" + filetype('.') == 'reg' + + expression nesting + ------------------ + (expr1) nested expression + + Groups any other expression of arbitrary complexity enforcing order in + which operators are applied. + + +Functions + USAGE RESULT DESCRIPTION + + chooseopt({opt}) String Queries choose parameters passed on + startup. + executable({expr}) Integer Checks whether {expr} command avail- + able. + expand({expr}) String Expands special keywords in {expr}. + filetype({fnum} [, {resolve}]) + String Returns file type from position. + fnameescape({expr}) String Escapes {expr} for use in a :command. + getpanetype() String Returns type of current pane. + has({property}) Integer Checks whether instance has {prop- + erty}. + layoutis({type}) Integer Checks whether layout is of type + {type}. + paneisat({loc}) Integer Checks whether current pane is at + {loc}. + system({command}) String Executes shell command and returns + its output. + tabpagenr([{arg}]) Integer Returns number of current or last + tab. + term({command}) String Like system(), but for interactive + commands. + + chooseopt({opt}) + + Retrieves values of options related to file choosing. {opt} can be one + of: + files returns argument of --choose-files or empty string + dir returns argument of --choose-dir or empty string + cmd returns argument of --on-choose or empty string + delimiter returns argument of --delimiter or the default one (\n) + + executable({expr}) + + If {expr} is absolute or relative path, checks whether path destination + exists and refers to an executable, otherwise checks whether command + named {expr} is present in directories listed in $PATH. Checks for + various executable extensions on Windows. Returns boolean value + describing result of the check. + + Example: + + " use custom default viewer script if it's available and installed + " in predefined system directory, otherwise try to find it elsewhere + if executable('/usr/local/bin/defviewer') + fileview * /usr/local/bin/defviewer %c + else + if executable('defviewer') + fileview * defviewer %c + endif + endif + + expand({expr}) + + Expands environment variables and macros in {expr} just like it's done + for command-line commands. Returns a string. See "Command macros" + section above. + + Examples: + + " percent sign + :echo expand('%%') + " the last part of directory name of the other pane + :echo expand('%D:t') + " $PATH environment variable (same as `:echo $PATH`) + :echo expand('$PATH') + + filetype({fnum}[,{resolve}]) + + The result is a string, which represents file type and is one of the + list: + exe executables + reg regular files + link symbolic links + broken broken symbolic links (appears only when resolving) + dir directories + char character devices + block block devices + fifo pipes + sock *nix domain sockets + ? unknown file type (should not normally appear) + + The result can also be an empty string in case of invalid argument. + + Parameter {fnum} can have following values: + - '.' to get type of file under the cursor in the active pane + - numerical value base 1 to get type of file on specified line num- + ber + + Optional parameter {resolve} is treated as a boolean and specifies + whether symbolic links should be resolved. + + fnameescape({expr}) + + Escapes parameter to make it suitable for use as an argument of a :com- + mand. List of escaped characters includes %, which is doubled. + + Usage example: + + " navigate to most recently modified file in current directory + execute 'goto' fnameescape(system('ls -t | head -1')) + + getpanetype() + + Retrieves string describing type of current pane. Possible return val- + ues: + regular regular file listing of some directory + custom custom file list (%u) + very-custom very custom file list (%U) + tree tree view + + has({property}) + + Allows examining internal parameters from scripts to e.g. figure out + environment in which application is running. Returns 1 if property is + true/present, otherwise 0 is returned. Currently the following proper- + ties are supported (anything else will yield 0): + unix runs in *nix-like environment (including Cygwin) + win runs on Windows + + Usage example: + + " skip user/group on Windows + if !has('win') + let $RIGHTS = '%10u:%-7g ' + endif + + execute 'set' 'statusline=" %t%= %A '.$RIGHTS.'%15E %20d "' + + layoutis({type}) + + Checks whether current interface layout is {type} or not, where {type} + can be: + only single-pane mode + split double-pane mode (either vertical or horizon split) + vsplit vertical split (left and right panes) + hsplit horizontal split (top and bottom panes) + + Usage example: + + " automatically split vertically before enabling preview + :nnoremap w :if layoutis('only') | vsplit | endif | view!<cr> + + paneisat({loc}) + + Checks whether position of active pane in current layout matches one of + the following locations: + top pane reaches top border + bottom pane reaches bottom border + left pane reaches left border + right pane reaches right border + + system({command}) + + Runs the command in shell and returns its output (joined standard out- + put and standard error streams). All trailing newline characters are + stripped to allow easy appending to command output. Ctrl-C should + interrupt the command. + + Use this function to consume output of external commands that don't + require user interaction and term() for interactive commands that make + use of terminal and are capable of handling stream redirection. + + Usage example: + + " command to enter .git/ directory of git-repository (when ran inside one) + command! cdgit :execute 'cd' system('git rev-parse --git-dir') + + tabpagenr([{arg}]) + + When called without arguments returns number of current tab page base + one. + + When called with "$" as an argument returns number of the last tab page + base one, which is the same as number of tabs. + + term({command}) + + Same as system() function, but user interface is shutdown during the + execution of the command, which makes sure that external interactive + applications won't affect the way terminal is used by vifm. + + Usage example: + + " command to change directory by picking it via fzf + command! fzfcd :execute 'cd' "'".term('find -type d | fzf 2> /dev/tty')."'" + +Menus and dialogs + When navigating to some path from a menu there is a difference in end + location depending on whether path has trailing slash or not. Files + normally don't have trailing slashes so "file/" won't work and one can + only navigate to a file anyway. On the other hand with directories + there are two options: navigate to a directory or inside of it. To + allow both use cases, the first one is used on paths like "dir" and the + second one for "dir/". + + Commands + + :range navigate to a menu line. + + :exi[t][!] :q[uit][!] :x[it][!] + leave menu mode. + + :noh[lsearch] + reset search match highlighting. + + :w[rite] {dest} + write all menu lines into file specified by {dest}. + + General + + j, Ctrl-N - move down. + k, Ctrl-P - move up. + Enter, l - select and exit the menu. + Ctrl-L - redraw the menu. + + Escape, Ctrl-C, ZZ, ZQ, q - quit. + + In all menus + + The following set of keys has the same meaning as in normal mode. + + Ctrl-B, Ctrl-F + Ctrl-D, Ctrl-U + Ctrl-E, Ctrl-Y + /, ? + n, N + [count]G, [count]gg + H, M, L + zb, zt, zz + + zh - scroll menu items [count] characters to the right. + zl - scroll menu items [count] characters to the left. + zH - scroll menu items half of screen width characters to the right. + zL - scroll menu items half of screen width characters to the left. + + : - enter command line mode for menus (currently only :exi[t], :q[uit], + :x[it] and :{range} are supported). + + b - interpret content of the menu as list of paths and use it to create + custom view in place of previously active pane. See "Custom views" + section below. + B - same as above, but creates unsorted view. + + v - load menu content into quickfix list of the editor (Vim compatible + by assumption) or if list doesn't have separators after file names + (colons) open each line as a file name. + + + Below is description of additional commands and reaction on selection + in some menus and dialogs. + + Apropos menu + + Selecting menu item runs man on a given topic. Menu won't be closed + automatically to allow view several pages one by one. + + Command-line mode abbreviations menu + + Type dd on an abbreviation to remove it. + + c leaves menu preserving file selection and inserts right-hand side of + selected command into command-line. + + Color scheme menu + + Selecting name of a color scheme applies it the same way as if ":col- + orscheme <name>" was executed on the command-line. + + Commands menu + + Selecting command executes it with empty arguments (%a). + + dd on a command to remove. + + Marks menu + + Selecting mark navigates to it. + + dd on a mark to remove it. + + Bookmarks menu + + Selecting a bookmark navigates to it. + + Type dd on a bookmark to remove it. + + gf and e also work to make it more convenient to bookmark files. + + Trash (:lstrash) menu + + r on a file name to restore it from trash. + + dd deletes file under the cursor. + + Trashes menu + + dd empties selected trash in background. + + Directory history and Trashes menus + + Selecting directory name will change directory of the current view as + if :cd command was used. + + Directory stack menu + + Selecting directory name will rotate stack to put selected directory + pair at the top of the stack. + + Filetype menu + + Commands from vifmrc or typed in command-line are displayed above empty + line. All commands below empty line are from .desktop files. + + c leaves menu preserving file selection and inserts command after :! in + command-line mode. + + Grep, find, locate, bookmarks and user menu with navigation (%M macro) + + gf - navigate previously active view to currently selected item. + Leaves menu mode except for grep menu. Pressing Enter key has the same + effect. + + e - open selected path in the editor, stays in menu mode. + + c - leave menu preserving file selection and insert file name after :! + in command-line mode. + + User menu without navigation (%m macro) + + c leaves menu preserving file selection and inserts whole line after :! + in command-line mode. + + Grep menu + + Selecting file (via Enter or l key) opens it in editor set by 'vicmd' + at given line number. Menu won't be closed automatically to allow + viewing more than one result. + + See above for "gf" and "e" keys description. + + Command-line history menu + + Selecting an item executes it as command-line command, search query or + local filter. + + c leaves menu preserving file selection and inserts line into command- + line of appropriate kind. + + Volumes menu + + Selecting a drive navigates previously active pane to the root of that + drive. + + Fileinfo dialog + + Enter, q - close dialog + + Sort dialog + + h, Space - switch ascending/descending. + q - close dialog + + One shortcut per sorting key (see the dialog). + + Attributes (permissions or properties) dialog + + h, Space - check/uncheck. + q - close dialog + + Item states: + + - * - checked flag. + + - X - means that it has different value for files in selection. + + - d (*nix only) - (only for execute flags) means u-x+X, g-x+X or o-x+X + argument for the chmod program. If you're not on OS X and want to + remove execute permission bit from all files, but preserve it for + directories, set all execute flags to 'd' and check 'Set Recursively' + flag. + + Jobs menu + + dd requests cancellation of job under cursor. The job won't be removed + from the list, but marked as being cancelled (if cancellation was suc- + cessfully requested). A message will pop up if the job has already + stopped. Note that on Windows cancelling external programs like this + might not work, because their parent shell doesn't have any windows. + + e key displays errors of selected job if any were collected. They are + displayed in a new menu, but you can get back to jobs menu by pressing + h. + + + Undolist menu + + r - reset undo position to group under the cursor. + + + Media menu + + r - reload the list. + + m - mount/unmount device (cursor should be positioned on lines under + device information). + + +Custom views + Definition + + Normally file views contain list of files from a single directory, but + sometimes it's useful to populate them with list of files that do not + belong to the same directory, which is what custom views are for. + + Presentation + + Custom views are still related to directory they were in before custom + list was loaded. Path to that directory (original directory) can be + seen in the title of a custom view. + + Files in same directory have to be named differently, this doesn't hold + for custom views thus seeing just file names might be rather confusing. + In order to give an idea where files come from and when possible, rela- + tive paths to original directory of the view is displayed, otherwise + full path is used instead. + + Custom views normally don't contain any inexistent files. + + Navigation + + Custom views have some differences related to navigation in regular + views. + + gf - acts similar to gf on symbolic links and navigates to the file at + its real + location. + + h - go to closes parent node in tree view, otherwise return to the + original directory. + + gh - return to the original directory. + + Opening ".." entry also causes return to the original directory. + + History + + Custom list exists only while it's visible, once left one can't return + to it, so there is no appearances of it in any history. + + Filters + + Only local filter affects content of the view. This is intentional, + presumably if one loads list, precisely that list should be displayed + (except for inexistent paths, which are ignored). + + Search + + Although directory names are visible in listing, they are not search- + able. Only file names are taken into account (might be changed in + future, searching whole lines seems quite reasonable). + + Sorting + + Contrary to search sorting by name works on whole visible part of file + path. + + Highlight + + Whole file name is highlighted as one entity, even if there are direc- + tory elements. + + Updates + + Reloads can occur, though they are not automatic due to files being + scattered among different places. On a reload, inexistent files are + removed and meta-data of all other files is updated. + + Once custom view forgets about the file, it won't add it back even if + it's created again. So not seeing file previously affected by an oper- + ation, which was undone is normal. + + Operations + + All operations that add files are forbidden for custom views. For + example, moving/copying/putting files into a custom view doesn't work, + because it doesn't make much sense. + + On the other hand, operations that use files of a custom view as a + source (e.g. yanking, copying, moving file from custom view, deletion) + and operations that modify names are all allowed. + +Compare views + Kinds + + :compare can produce four different results depending on arguments: + - single compare view (ofone and either listall or listdups); + - single custom view (ofone and listunique); + - two compare views (ofboth and either listall or listdups); + - two custom views (ofboth and listunique). + + The first two display files of one file system tree. Here duplicates + are files that have at least one copy in the same tree. The other two + kinds of operation compare two trees, in which duplicates are files + that are found in both trees. + + Lists of unique files are presented in custom views because there is no + file grouping to preserve as all file ids are guaranteed to be dis- + tinct. + + Creation + + Arguments passed to :compare form four categories each with its own + prefix and is responsible for particular property of operation. + + Which files to compare: + - ofboth - compares files of two panes against each other; + - ofone - compares files of the same directory. + + How files are compared: + - byname - by their name only; + - bysize - only by their size; + - bycontents - by combination of size and hash of file contents. + + Which files to display: + - listall - all files; + - listunique - unique files only; + - listdups - only duplicated files. + + How results are grouped (has no effect if "ofone" specified): + - groupids - files considered identical are always adjacent in out- + put; + - grouppaths - file system ordering is preferred (this also enables + displaying identically named files as mismatches). + + Which files to omit: + - skipempty - ignore empty files. + + Each argument can appear multiple times, the rightmost one of the group + is considered. Arguments alter default behaviour instead of substitut- + ing it. + + Examples + + The defaults corresponds to probably the most common use case of com- + paring files in two trees with grouping by paths, so the following are + equivalent: + + :compare + :compare bycontents grouppaths + :compare bycontents listall ofboth grouppaths + + Another use case is to find duplicates in the current sub-tree: + + :compare listdups ofone + + The following command lists files that are unique to each pane: + + :compare listunique + + Look + + The view can't switch to ls-like view as it's unable to display diff- + like data. + + Comparison views have second column displaying id of the file, files + with same id are considered to be equal. The view columns configura- + tion is predefined. + + Behaviour + + When two views are being compared against each other the following + changes to the regular behaviour apply: + - views are scrolled synchronously (as if 'scrollbind' was set); + - views' cursors are synchronized; + - local filtering is disabled (its results wouldn't be meaningful); + - zd excludes groups of adjacent identical files, 1zd gives usual be- + haviour; + - sorting is permanently disabled (ordering is fixed); + - removed files hide their counter pairs; + - exiting one of the views terminates the other immediately; + - renaming files isn't blocked, but isn't taken into account and might + require regeneration of comparison; + - entries which indicate absence of equivalent file have empty names + and can be matched as such; + - when unique files of both views are listed custom views can be + empty, this absence of unique files is stated clearly. + + One compare view has similar properties (those that are applicable for + single pane). + + Files are gathered in this way: + - recursively starting at current location of the view; + - dot files are excluded if view hides them at the moment of compari- + son; + - directories are not taken into account; + - symbolic links to directories are ignored. + +Startup + On startup vifm determines several variables that are used during the + session. They are determined in the order they appear below. + + On *nix systems $HOME is normally present and used as is. On Windows + systems vifm tries to find correct home directory in the following + order: + - $HOME variable; + - $USERPROFILE variable (on Windows only); + - a combination of $HOMEDRIVE and $HOMEPATH variables (on Windows + only). + + vifm tries to find correct configuration directory by checking the fol- + lowing places: + - $VIFM variable; + - parent directory of the executable file (on Windows only); + - $HOME/.vifm directory; + - $APPDATA/Vifm directory (on Windows only); + - $XDG_CONFIG_HOME/vifm directory; + - $HOME/.config/vifm directory. + + vifm tries to find correct configuration file by checking the following + places: + - $MYVIFMRC variable; + - vifmrc in parent directory of the executable file (on Windows only); + - $VIFM/vifmrc file. + +Configure + See "Startup" section above for the explanations on $VIFM and $MYV- + IFMRC. + + The vifmrc file contains commands that will be executed on vifm + startup. There are two such files: global and local. Global one is at + {prefix}/etc/vifm/vifmrc, see $MYVIFMRC variable description for the + search algorithm used to find local vifmrc. Global vifmrc is loaded + before the local one, so that the later one can redefine anything con- + figured globally. + + Use vifmrc to set settings, mappings, filetypes etc. To use multi line + commands precede each next line with a slash (whitespace before slash + is ignored, but all spaces at the end of the lines are saved). For + example: + + set + \smartcase + + equals "setsmartcase". When + + set<space here> + \ smartcase + + equals "set smartcase". + + The $VIFM/vifminfo file contains session settings. You may edit it by + hand to change the settings, but it's not recommended to do that, edit + vifmrc instead. You can control what settings will be saved in + vifminfo by setting 'vifminfo' option. Vifm always writes this file on + exit unless 'vifminfo' option is empty. Marks, bookmarks, commands, + histories, filetypes, fileviewers and registers in the file are merged + with vifm configuration (which has bigger priority). + + Generally, runtime configuration has bigger priority during merging, + but there are some exceptions: + + - directory stack stored in the file is not overwritten unless some- + thing is changed in vifm session that performs merge; + + - each mark or bookmark is marked with a timestamp, so that newer + value is not overwritten by older one, thus no matter from where it + comes, the newer one wins. + + The $VIFM/scripts directory can contain shell scripts. vifm modifies + its PATH environment variable to let user run those scripts without + specifying full path. All subdirectories of the $VIFM/scripts will be + added to PATH too. Script in a subdirectory overlaps script with the + same name in all its parent directories. + + The $VIFM/colors/ and {prefix}/etc/vifm/colors/ directories contain + color schemes. Available color schemes are searched in that order, so + on name conflict the one in $VIFM/colors/ wins. + + Each color scheme should have ".vifm" extension. This wasn't the case + before and for this reason the following rules apply during lookup: + + - if there is no file with .vifm extension, all regular files are + listed; + + - otherwise only files with .vifm extension are listed (with the + extension being truncated). + +Automatic FUSE mounts + vifm has a builtin support of automated FUSE file system mounts. It is + implemented using file associations mechanism. To enable automated + mounts, one needs to use a specially formatted program line in filetype + or filextype commands. Currently two formats are supported: + + 1) FUSE_MOUNT This format should be used in case when all information + needed for mounting all files of a particular type is the same. E.g. + mounting of tar files don't require any file specific options. + + Format line: + FUSE_MOUNT|mounter %SOURCE_FILE %DESTINATION_DIR [%FOREGROUND] + + Example filetype command: + + :filetype FUSE_MOUNT|fuse-zip %SOURCE_FILE %DESTINATION_DIR + + 2) FUSE_MOUNT2 This format allows one to use specially formatted files + to perform mounting and is useful for mounting remotes, for example + remote file systems over ftp or ssh. + + Format line: + FUSE_MOUNT2|mounter %PARAM %DESTINATION_DIR [%FOREGROUND] + + Example filetype command: + + :filetype FUSE_MOUNT2|sshfs %PARAM %DESTINATION_DIR + + Example file content: + + root@127.0.0.1:/ + + All % macros are expanded by vifm at runtime and have the following + meaning: + - %SOURCE_FILE is replaced by full path to selected file; + - %DESTINATION_DIR is replaced by full path to mount directory, which + is created by vifm basing on the value of 'fusehome' option; + - %PARAM value is filled from the first line of file (whole line), + though in the future it can be changed to whole file content; + - %FOREGROUND means that you want to run mount command as a regular + command (required to be able to provide input for communication with + mounter in interactive way). + + %FOREGROUND is an optional macro. Other macros are not mandatory, but + mount commands likely won't work without them. + + %CLEAR is obsolete name of %FOREGROUND, which is still supported, but + might be removed in future. Its use is discouraged. + + The mounted FUSE file systems will be automatically unmounted in two + cases: + + - when vifm quits (with ZZ, :q, etc. or when killed by signal); + + - when you explicitly leave mount point going up to its parent direc- + tory (with h, Enter on "../" or ":cd ..") and other pane is not in + the same directory or its child directories. + +View look + vifm supports displaying of file list view in two different ways: + + - in a table mode, when multiple columns can be set using 'view- + columns' option (see "Column view" section below for details); + + - in a multicolumn list manner which looks almost like `ls -x` com- + mand output (see "ls-like view" section below for details). + + The look is local for each view and can be chosen by changing value of + the 'lsview' boolean option. + + Depending on view look some of keys change their meaning to allow more + natural cursor moving. This concerns mainly h, j, k, l and other simi- + lar navigation keys. + + Also some of options can be ignored if they don't affect view display- + ing in selected look. For example value of 'viewcolumns' when 'lsview' + is set. + +ls-like view + When this view look is enabled by setting 'lsview' option on, vifm will + display files in multiple columns. Number of columns depends on the + length of the longest file name present in current directory of the + view. Whole file list is automatically reflowed on directory change, + terminal or view resize. + + View looks close to output of `ls -x` command, so files are listed left + to right in rows. + + In this mode file manipulation commands (e.g. d) don't work line-wise + like they do in Vim, since such operations would be uncommon for file + manipulation tasks. Thus, for example, dd will remove only current + file. + + By default the view is filled by lines, 'lsoptions' can be used to get + filling by columns. + + Note that tree-view and compare view inhibit ls-like view. + +Column view + View columns are described by a comma-separated list of column descrip- + tions, each of which has the following format + [ '-' ] [ fw ( [ '.' tw ] | '%' ) ] '{' type '}' '.'{0,3} + where fw stands for full width and tw stands for text width. + + So it basically consists of four parts: + 1. Optional alignment specifier + 2. Optional width specifier + 3. Mandatory column name + 4. Optional cropping specifier + + Alignment specifier + + It's an optional minus or asterisk sign as the first symbol of the + string. + + Specifies type of text alignment within a column. Three types are sup- + ported: + + - left align + + set viewcolumns=-{name} + + - right align (default) + + set viewcolumns={name} + + - dynamic align + + It's like left alignment, but when the text is bigger than the col- + umn, the alignment is made at the right (so the part of the field is + always visible). + + set viewcolumns=*{name} + + Width specifier + + It's a number followed by a percent sign, two numbers (second one + should be less than or equal to the first one) separated with a dot or + a single number. + + Specifies column width and its units. There are three size types: + + - absolute size - column width is specified in characters + + set viewcolumns=-100{name},20.15{ext} + + results in two columns with lengths of 100 and 20 and a reserved + space of five characters on the left of second column. + + - relative (percent) size - column width is specified in percents of + view width + + set viewcolumns=-80%{name},15%{ext},5%{mtime} + + results in three columns with lengths of 80/100, 15/100 and 5/100 of + view width. + + - auto size (default) - column width is automatically determined + + set viewcolumns=-{name},{ext},{mtime} + + results in three columns with length of one third of view width. + There is no size adjustment to content, since it will slow down ren- + dering. + + Columns of different sizing types can be freely mixed in one view. + Though sometimes some of columns can be seen partly or be completely + invisible if there is not enough space to display them. + + Column name + + This is just a sort key surrounded with curly braces or {root}, e.g. + + {name},{ext},{mtime} + + {name} and {iname} keys are the same and present both for consistency + with 'sort' option. + + Following keys don't have corresponding sorting keys: + + - {root} - display name without extension (as a complement for {ext}) + + Empty curly braces ({}) are replaced with the default secondary column + for primary sort key. So after the next command view will be displayed + almost as if 'viewcolumns' is empty, but adding ellipsis for long file + names: + + set viewcolumns=-{name}..,6{}. + + Cropping specifier + + It's from one to three dots after closing curly brace in column format. + + Specifies type of text truncation if it doesn't fit in the column. + Currently three types are supported: + + - truncation - text is truncated + + set viewcolumns=-{name}. + + results in truncation of names that are too long too fit in the + view. + + - adding of ellipsis - ellipsis on the left or right are added when + needed + + set viewcolumns=-{name}.. + + results in that ellipsis are added at the end of too long file + names. + + - none (default) - text can pass column boundaries + + set viewcolumns=-{name}...,{ext} + + results in that long file names can partially be written on the ext + column. + +Color schemes + The color schemes in vifm can be applied in two different ways: + + - as the primary color scheme; + + - as local to a pane color scheme. + + Both types are set using :colorscheme command, but of different forms: + + - :colorscheme color_scheme_name - for the primary color scheme; + + - :colorscheme color_scheme_name directory - for local color schemes. + + Look of different parts of the TUI (Text User Interface) is determined + in this way: + + - Border, TabLine, TabLineSel, TopLineSel, TopLine, CmdLine, + ErrorMsg, StatusLine, JobLine, SuggestBox and WildMenu are always + determined by the primary color scheme; + + - CurrLine, Selected, Directory, Link, BrokenLink, Socket, Device, + Executable, Fifo, CmpMismatch, Win and AuxWin are determined by + primary color scheme and a set of local color schemes, which can be + empty. + + There might be a set of local color schemes because they are structured + hierarchically according to file system structure. For example, having + the following piece of file system: + + ~ + `-- bin + | + `-- my + + Two color schemes: + + # ~/.vifm/colors/for_bin + highlight Win cterm=none ctermfg=white ctermbg=red + highlight CurrLine cterm=none ctermfg=red ctermbg=black + + # ~/.vifm/colors/for_bin_my + highlight CurrLine cterm=none ctermfg=green ctermbg=black + + And these three commands in the vifmrc file: + + colorscheme Default + colorscheme for_bin ~/bin + colorscheme for_bin_my ~/bin/my + + File list will look in the following way for each level: + + - ~/ - Default color scheme + black background + cursor with blue background + + - ~/bin/ - mix of Default and for_bin color schemes + red background + cursor with black background and red foreground + + - ~/bin/my/ - mix of Default, for_bin and for_bin_my color schemes + red background + cursor with black background and green foreground + +Trash directory + vifm has support of trash directory, which is used as temporary storage + for deleted files or files that were cut. Using trash is controlled by + the 'trash' option, and exact path to the trash can be set with + 'trashdir' option. Trash directory in vifm differs from the system- + wide one by default, because of possible incompatibilities of storing + deleted files among different file managers. But one can set + 'trashdir' to "~/.local/share/Trash" to use a "standard" trash direc- + tory. + + There are two scenarios of using trash in vifm: + + 1. As a place for storing files that were cut by "d" and may be + inserted to some other place in file system. + + 2. As a storage of files, that are deleted but not purged yet. + + The first scenario uses deletion ("d") operations to put files to trash + and put ("p") operations to restore files from trash directory. Note + that such operations move files to and from trash directory, which can + be long term operations in case of different partitions or remote + drives mounted locally. + + The second scenario uses deletion ("d") operations for moving files to + trash directory and :empty command-line command to purge all previously + deleted files. + + Deletion and put operations depend on registers, which can point to + files in trash directory. Normally, there are no nonexistent files in + registers, but vifm doesn't keep track of modifications under trash + directory, so one shouldn't expect value of registers to be absolutely + correct if trash directory was modified not by operation that are meant + for it. But this won't lead to any issues with operations, since they + ignore nonexistent files. + +Client-Server + vifm supports remote execution of command-line mode commands, remote + changing of directories and expression evaluation. This is possible + using --remote and --remote-expr command-line arguments. + + To execute a command remotely combine --remote argument with -c <com- + mand> or +<command>. For example: + + vifm --remote -c 'cd /' + vifm --remote '+cd /' + + To change directory not using command-line mode commands one can spec- + ify paths right after --remote argument, like this: + + vifm --remote / + vifm --remote ~ + vifm --remote /usr/bin /tmp + + Evaluating expression remotely might be useful to query information + about an instance, for example its location: + + vifm --remote-expr 'expand("%d")' + + If there are several running instances, the target can be specified + with --server-name option (otherwise, the first one lexicographically + is used): + + vifm --server-name work --remote ~/work/project + + List of names of running instances can be obtained via --server-list + option. Name of the current one is available via v:servername. + + + v:servername + server name of the running vifm instance. Empty if client- + server feature is disabled. + +Plugin + Plugin for using vifm in vim as a file selector. + + Commands: + + :EditVifm select a file or files to open in the current buffer. + :SplitVifm split buffer and select a file or files to open. + :VsplitVifm vertically split buffer and select a file or files to + open. + :DiffVifm select a file or files to compare to the current file + with + :vert diffsplit. + :TabVifm select a file or files to open in tabs. + + Each command accepts up to two arguments: left pane directory and right + pane directory. After arguments are checked, vifm process is spawned + in a special "file-picker" mode. To pick files just open them either + by pressing l, i or Enter keys, or by running :edit command. If no + files are selected, file under the cursor is opened, otherwise whole + selection is passed to the plugin and opened in vim. + + The plugin have only two settings. It's a string variable named + g:vifm_term to let user specify command to run GUI terminal. By + default it's equal to 'xterm -e'. And another string variable named + g:vifm_exec, which equals "vifm" by default and specifies path to + vifm's executable. To pass arguments to vifm use g:vifm_exec_args, + which is empty by default. + + To use the plugin copy the vifm.vim file to either the system wide + vim/plugin directory or into ~/.vim/plugin. + + If you would prefer not to use the plugin and it is in the system wide + plugin directory add + + let loaded_vifm=1 + + to your ~/.vimrc file. + +Reserved + The following command names are reserved and shouldn't be used for user + commands. + + g[lobal] + v[global] + +ENVIRONMENT + VIFM Points to main configuration directory (usually ~/.vifm/). + + MYVIFMRC + Points to main configuration file (usually ~/.vifm/vifmrc). + + These environment variables are valid inside vifm and also can be used + to configure it by setting some of them before running vifm. + + When $MYVIFMRC isn't set, it's made as $VIFM/vifmrc (exception for Win- + dows: vifmrc in the same directory as vifm.exe has higher priority than + $VIFM/vifmrc). + + See "Startup" section above for more details. + + VIFM_FUSE_FILE + On execution of external commands this variable is set to the + full path of file used to initiate FUSE mount of the closes + mount point from current pane directory up. It's not set when + outside FUSE mount point. When vifm is used inside terminal + multiplexer, it tries to set this variable as well (it doesn't + work this way on its own). + +SEE ALSO + vifm-convert-dircolors(1), vifm-pause(1) + + Website: https://vifm.info/ + Wiki: https://wiki.vifm.info/ + + Esperanto translation of the documentation by Sebastian Cyprych: + http://cyprych.neostrada.pl/tekstoj/komputiloj/vifm-help.eo.html + +AUTHOR + Vifm was written by ksteen <ksteen@users.sourceforge.net> + And currently is developed by xaizek <xaizek@posteo.net> + + + +vifm 0.10 November 11, 2018 VIFM(1) diff --git a/dotfiles/.config/vifm/vifminfo b/dotfiles/.config/vifm/vifminfo new file mode 100644 index 0000000..016f986 --- /dev/null +++ b/dotfiles/.config/vifm/vifminfo @@ -0,0 +1,293 @@ +# You can edit this file by hand, but it's recommended not to do that. + +# Marks: +'H + /home/yaroslav/ + .. +1556296785 +'b + /home/yaroslav/bin/ + .. +1556296785 +'h + /home/yaroslav/ + .. +1556296785 +'j + /home/yaroslav/Downloads + .. +1559512388 +'k + /home/yaroslav + Extra +1556629457 + +# Bookmarks: + +# TUI: +al +q1 +v2 +ov +m-1 +l2 +r2 + +# Left window history (oldest to newest): +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019 + AUG +2 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG + Madrid +9 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid + D0 +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D0 + JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D0/JPG + .. +0 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D0 + _DSC5603.NEF +2 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid + D1 +2 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D1 + JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D1/JPG + _DSC5617.JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D1 + JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid + D2 +3 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D2 + JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D2/JPG + _DSC6153.JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D2 + JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid + D3 +4 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D3 + JPG +1 +d/run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/Pictures/Camera/2019/AUG/Madrid/D3/JPG + _DSC6573.JPG +1 +d/home/yaroslav + Extra +4 +d/home/yaroslav/Repositories + i3rice +4 +d/home/yaroslav/Repositories/i3rice + arch +1 +d/home/yaroslav/Repositories/i3rice/arch + laptop +1 +d/home/yaroslav/Repositories/i3rice + .soundalerts +6 +d/home/yaroslav/Repositories/i3rice/.soundalerts + start.ogg +2 +d/home/yaroslav/Repositories/i3rice + .soundalerts +6 +d/home/yaroslav/Repositories + swayrice +7 +d/home/yaroslav/Repositories/swayrice + .. +0 +d/home/yaroslav + Extra +4 + +# Right window history (oldest to newest): +D/home/yaroslav/Repositories/csmoney/stats/bot + +0 +D/home/yaroslav/Extra + Emuladores +2 +D/home/yaroslav/Extra/Emuladores + .. +0 +D/home/yaroslav/Extra + Emuladores +2 +D/home/yaroslav + Extra +4 +D/home + yaroslav +1 +D/home/yaroslav + Extra +4 +D/home/yaroslav/Extra + OS +3 +D/home/yaroslav/.config/vifm + .. +0 +D/home/yaroslav/.config + vifm +9 +D/home/yaroslav + Documents +2 +D/home/yaroslav/Documents + prog +9 +D/home/yaroslav/.config/vifm + .. +0 +D/home/yaroslav/Repositories/i3rice + .. +0 +D/home/yaroslav + .. +0 +D/home/yaroslav/Repositories/st + +0 +D/home/yaroslav + .. +0 +D/run/media/yaroslav + +0 +D/home/yaroslav + .. +0 +D/run/media/yaroslav/6163-3361/DCIM/101D3300 + +0 +D/home/yaroslav + .. +0 + +# Command line history (oldest to newest): +:mkdir +:mkdir src +:cd csmoney/stats/ +:mkdir test +:ta +:cd src/utils/ +:cd stuff/notes/ +:mkdir data +:cd Documents/eBooks/ +:cd Pictures/Camera/Nikon/ +:mkdir Edited +:cd Downloads/ +:cd ~ +:cd .venvs/ +:cd Extra/temp/ +:mkdir pack +:mkdir vscode-node-debug +:cd /usr +:cd .vim +:cd .scripts/ +:cd Pictures/screenshots/ +:empty +:cd Pictures/ +:cd Repositories/csmoney/stats/backend/ +:cd /run/media/yaroslav/956e5c54-6659-479e-91f1-de6afc4a37b9/ +:cd Repositories/ +:mkdir swayrice + +# Search history (oldest to newest): +/resize +/70 +/80 +/24 +/29 +/38 +/45 +/408 +/422 +/69 +/76 +/82 +/482 +/89 +/500 +/17 +/71 +/Ima +/vif +/setbg +/komo +/code +/node +/cur +/win +/Madrid + +# Prompt history (oldest to newest): +pbackend_test.env +pbackend_dev.env +pswayresize +pdevutils +pdev +prawmatch0.json +pgot.jpg +pparty +pbot.js +pservers.js +p.eslintrc.js +p.eslintrc.json +pc.vim +prawmatches1.json +pplayertracker.js +pindex.js +pcalculateplayerstats.js +pplayerstats.js +pschemas +pplayerstats.test.js +pmodels.test.js +ppubprof2.json +ppubprof0.json +ppubprof1.json +ppubprof7.json +pvscode-node-debug +pddquakemite + +# Local filter history (oldest to newest): + +# Registers: +""/home/yaroslav/.local/share/vifm/Trash/000_Diskette Park - Stray.zip +""/home/yaroslav/.local/share/vifm/Trash/000_Sonnig 991 - MALLSOFT ODYSSEY.zip +""/home/yaroslav/.local/share/vifm/Trash/000_Whitewoods - Spaceship Earth.zip +""/home/yaroslav/.local/share/vifm/Trash/000_Windows彡96 - Vibes.zip +""/home/yaroslav/.local/share/vifm/Trash/000_vcr-classique - exotics.zip + +# Directory stack (oldest to newest): + +# Trash content: +t/home/yaroslav/.local/share/vifm/Trash/000_Undertale + /home/yaroslav/Downloads/music/Undertale +t/home/yaroslav/.local/share/vifm/Trash/000_Diskette Park - Stray.zip + /home/yaroslav/Downloads/music/Diskette Park - Stray.zip +t/home/yaroslav/.local/share/vifm/Trash/000_Sonnig 991 - MALLSOFT ODYSSEY.zip + /home/yaroslav/Downloads/music/Sonnig 991 - MALLSOFT ODYSSEY.zip +t/home/yaroslav/.local/share/vifm/Trash/000_Whitewoods - Spaceship Earth.zip + /home/yaroslav/Downloads/music/Whitewoods - Spaceship Earth.zip +t/home/yaroslav/.local/share/vifm/Trash/000_Windows彡96 - Vibes.zip + /home/yaroslav/Downloads/music/Windows彡96 - Vibes.zip +t/home/yaroslav/.local/share/vifm/Trash/000_vcr-classique - exotics.zip + /home/yaroslav/Downloads/music/vcr-classique - exotics.zip diff --git a/dotfiles/.config/vifm/vifmrc b/dotfiles/.config/vifm/vifmrc new file mode 100644 index 0000000..7ef1696 --- /dev/null +++ b/dotfiles/.config/vifm/vifmrc @@ -0,0 +1,336 @@ +" vim: filetype=vifm +colorscheme yaroslavps + +set vicmd=$EDITOR +set syscalls +set nofollowlinks +set sortnumbers +set undolevels=100 +set wildmenu +set wildstyle=popup +set scrolloff=4 +set ignorecase +set smartcase +set nohlsearch +set incsearch +set timefmt=%m/%d\ %H:%M +set suggestoptions=normal,visual,view,otherpane,keys,marks,registers +set statusline=" Hint: %z%= %A %10u:%-7g %15s %20d " + +map <C-h> <C-w>h +map <C-j> <C-w>j +map <C-k> <C-w>k +map <C-l> <C-w>l +map <C-o> <C-w>o +map <C-s> <C-w>s +map <C-v> <C-w>v + +map R :restart<CR> +map x :!sxiv -ft * 2>/dev/null &<CR> +nnoremap o :file &<cr> +map E :!$EDITOR %f<CR> +map mkd :mkdir<space> +map cd :cd<space> +map bgg :!cp %f ~/.config/wall1.png && setbg<CR> +map bgl :!setbglblur %f<CR> +map bgL :!setbglsimple %f<CR> +map X :!ext %f &<CR> +nnoremap s :shell<cr> +nnoremap w :view<cr> +vnoremap w :view<cr>gv +nnoremap yd :!echo %d | xclip %i<cr> +nnoremap yf :!echo %c:p | xclip %i<cr> +nnoremap I cw<c-a> +nnoremap cc cw<c-u> +nnoremap A cw +nnoremap ,w :set wrap!<cr> +nmap <space> tj +nmap q ZQ + +" Tab shortcuts +map Oh :tabnew ~/<CR> +map Od :tabnew ~/Documents<CR> +map OD :tabnew ~/Downloads<CR> +map Omm :tabnew ~/Music<CR> +map Opp :tabnew ~/Pictures<CR> +map Opw :tabnew ~/Pictures/Backgrounds<CR> +map Ovv :tabnew ~/Video<CR> +map Or :tabnew ~/Repositories<CR> +map Os :tabnew ~/.scripts<CR> +map Ocf :tabnew ~/.config<CR> +map Omd :tabnew /run/media<CR> +noremap J :tabn<CR> +noremap K :tabp<CR> + +" ------------------------------------------------------------------------------ + +" The file type is for the default programs to be used with +" a file extension. +" :filetype pattern1,pattern2 defaultprogram,program2 +" :fileviewer pattern1,pattern2 consoleviewer +" The other programs for the file type can be accessed with the :file command +" The command macros %f, %F, %d, %F may be used in the commands. +" The %a macro is ignored. To use a % you must put %%. + +" For automated FUSE mounts, you must register an extension with :file[x]type +" in one of following formats: +" +" :filetype extensions FUSE_MOUNT|some_mount_command using %SOURCE_FILE and %DESTINATION_DIR variables +" %SOURCE_FILE and %DESTINATION_DIR are filled in by vifm at runtime. +" A sample line might look like this: +" :filetype *.zip,*.jar,*.war,*.ear FUSE_MOUNT|fuse-zip %SOURCE_FILE %DESTINATION_DIR +" +" :filetype extensions FUSE_MOUNT2|some_mount_command using %PARAM and %DESTINATION_DIR variables +" %PARAM and %DESTINATION_DIR are filled in by vifm at runtime. +" A sample line might look like this: +" :filetype *.ssh FUSE_MOUNT2|sshfs %PARAM %DESTINATION_DIR +" %PARAM value is filled from the first line of file (whole line). +" Example first line for SshMount filetype: root@127.0.0.1:/ +" +" You can also add %CLEAR if you want to clear screen before running FUSE +" program. + +" Pdf +filextype *.pdf zathura %c %i &, apvlv %c, xpdf %c +fileviewer *.pdf + "\ vifmimg pdfpreview %px %py %pw %ph %c + "\ %pc + "\ vifmimg clear + \ pdftotext -nopgbrk %c - + +" PostScript +filextype *.ps,*.eps,*.ps.gz + \ {View in zathura} + \ zathura %f&, + \ {View in gv} + \ gv %c %i &, + +" Djvu +filextype *.djvu + \ {View in zathura} + \ zathura %f&, + \ {View in apvlv} + \ apvlv %f&, + +" Audio +filetype *.wav,*.mp3,*.flac,*.m4a,*.wma,*.ape,*.ac3,*.og[agx],*.spx,*.opus + "\ {Play using ffplay} + "\ ffplay -nodisp -autoexit %c, + \ {Play using MPlayer} + \ mplayer %f, +fileviewer *.mp3 mp3info +fileviewer *.flac soxi + +" Video +filextype *.avi,*.mp4,*.wmv,*.dat,*.3gp,*.ogv,*.mkv,*.mpg,*.mpeg,*.vob, + \*.fl[icv],*.m2v,*.mov,*.webm,*.ts,*.mts,*.m4v,*.r[am],*.qt,*.divx, + \*.as[fx] + \ {View using mpv} + \ mpv --gpu-context=wayland %f, + \ {View using ffplay} + \ ffplay -fs -autoexit %f, + \ {View using Dragon} + \ dragon %f:p, + \ {View using mplayer} + \ mplayer %f, +fileviewer *.avi,*.mp4,*.wmv,*.dat,*.3gp,*.ogv,*.mkv,*.mpg,*.mpeg,*.vob, + \*.fl[icv],*.m2v,*.mov,*.webm,*.ts,*.mts,*.m4v,*.r[am],*.qt,*.divx, + \*.as[fx] + "\ vifmimg videopreview %px %py %pw %ph %c + "\ %pc + "\ vifmimg clear + \ ffprobe -pretty %c 2>&1 + +" Web +filextype *.html,*.htm + \ {Open with dwb} + \ dwb %f %i &, + \ {Open with firefox} + \ firefox %f &, + \ {Open with uzbl} + \ uzbl-browser %f %i &, +filetype *.html,*.htm links, lynx + +" Object +filetype *.o nm %f | less + +" Man page +filetype *.[1-8] man ./%c +fileviewer *.[1-8] man ./%c | col -b + +" Images +filextype *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm + \ {View in sxiv} + \ sxiv -ia %c %d &, + \ {View in imv} + \ imv -d %d -n %f &, + \ {View in feh} + \ feh %d &, + \ {View in cacaview} + \ cacaview %c &, +fileviewer *.bmp,*.jpg,*.jpeg,*.png,*.xpm + \ vifmimg draw %px %py %pw %ph %c + \ %pc + \ vifmimg clear + " Get w3m image previews inside vifm + " \ imgt %px %py %pw %ph %c + " \ %pc + " \ imgc %px %py %pw %ph NOT NEEDED IN XTERM +fileviewer *.gif + \ vifmimg gifpreview %px %py %pw %ph %c + \ %pc + \ vifmimg clear + +" OpenRaster +filextype *.ora + \ {Edit in MyPaint} + \ mypaint %f, + +" Mindmap +filextype *.vym + \ {Open with VYM} + \ vym %f &, + +" MD5 +filetype *.md5 + \ {Check MD5 hash sum} + \ md5sum -c %f %S, + +" SHA1 +filetype *.sha1 + \ {Check SHA1 hash sum} + \ sha1sum -c %f %S, + +" SHA256 +filetype *.sha256 + \ {Check SHA256 hash sum} + \ sha256sum -c %f %S, + +" SHA512 +filetype *.sha512 + \ {Check SHA512 hash sum} + \ sha512sum -c %f %S, + +" GPG signature +filetype *.asc + \ {Check signature} + \ !!gpg --verify %c, + +" Torrent +filetype *.torrent ktorrent %f & +fileviewer *.torrent dumptorrent -v %c + +" FuseZipMount +filetype *.zip,*.jar,*.war,*.ear,*.oxt,*.apkg + \ {Mount with fuse-zip} + \ FUSE_MOUNT|fuse-zip %SOURCE_FILE %DESTINATION_DIR, + \ {View contents} + \ zip -sf %c | less, + \ {Extract here} + \ tar -xf %c, +fileviewer *.zip,*.jar,*.war,*.ear,*.oxt zip -sf %c + +" ArchiveMount +filetype *.tar,*.tar.bz2,*.tbz2,*.tgz,*.tar.gz,*.tar.xz,*.txz + \ {Mount with archivemount} + \ FUSE_MOUNT|archivemount %SOURCE_FILE %DESTINATION_DIR, +fileviewer *.tgz,*.tar.gz tar -tzf %c +fileviewer *.tar.bz2,*.tbz2 tar -tjf %c +fileviewer *.tar.txz,*.txz xz --list %c +fileviewer *.tar tar -tf %c + +" Rar2FsMount and rar archives +filetype *.rar + \ {Mount with rar2fs} + \ FUSE_MOUNT|rar2fs %SOURCE_FILE %DESTINATION_DIR, +fileviewer *.rar unrar v %c + +" IsoMount +filetype *.iso + \ {Mount with fuseiso} + \ FUSE_MOUNT|fuseiso %SOURCE_FILE %DESTINATION_DIR, + +" SshMount +filetype *.ssh + \ {Mount with sshfs} + \ FUSE_MOUNT2|sshfs %PARAM %DESTINATION_DIR %FOREGROUND, + +" FtpMount +filetype *.ftp + \ {Mount with curlftpfs} + \ FUSE_MOUNT2|curlftpfs -o ftp_port=-,,disable_eprt %PARAM %DESTINATION_DIR %FOREGROUND, + +" Fuse7z and 7z archives +filetype *.7z + \ {Mount with fuse-7z} + \ FUSE_MOUNT|fuse-7z %SOURCE_FILE %DESTINATION_DIR, +fileviewer *.7z 7z l %c + +" Office files +filextype *.odt,*.doc,*.docx,*.xls,*.xlsx,*.odp,*.pptx libreoffice %f & +fileviewer *.doc catdoc %c +fileviewer *.docx docx2txt.pl %f - + +" TuDu files +filetype *.tudu tudu -f %c + +" Qt projects +filextype *.pro qtcreator %f & + +" Directories +filextype */ + \ {View in thunar} + \ Thunar %f &, + +" Syntax highlighting in preview +" +" Explicitly set highlight type for some extensions +" +" 256-color terminal +" fileviewer *.[ch],*.[ch]pp highlight -O xterm256 -s dante --syntax c %c +" fileviewer Makefile,Makefile.* highlight -O xterm256 -s dante --syntax make %c +" +" 16-color terminal +" fileviewer *.c,*.h highlight -O ansi -s dante %c +" +" Or leave it for automatic detection +" +" fileviewer *[^/] pygmentize -O style=monokai -f console256 -g + +" Displaying pictures in terminal +" +" fileviewer *.jpg,*.png shellpic %c + +" Open all other files with default system programs (you can also remove all +" :file[x]type commands above to ensure they don't interfere with system-wide +" settings). By default all unknown files are opened with 'vi[x]cmd' +" uncommenting one of lines below will result in ignoring 'vi[x]cmd' option +" for unknown file types. +" For *nix: +" filetype * xdg-open +" For OS X: +" filetype * open +" For Windows: +" filetype * start, explorer + +" GETTING ICONS TO DISPLAY IN VIFM +" You need the next 14 lines! + +" file types +set classify=' :dir:/, :exe:, :reg:, :link:' +" various file names +set classify+=' ::../::, ::*.sh::, ::*.[hc]pp::, ::*.[hc]::, ::/^copying|license$/::, ::.git/,,*.git/::, ::*.epub,,*.fb2,,*.djvu::, ::*.pdf::, ::*.htm,,*.html,,**.[sx]html,,*.xml::' +" archives +set classify+=' ::*.7z,,*.ace,,*.arj,,*.bz2,,*.cpio,,*.deb,,*.dz,,*.gz,,*.jar,,*.lzh,,*.lzma,,*.rar,,*.rpm,,*.rz,,*.tar,,*.taz,,*.tb2,,*.tbz,,*.tbz2,,*.tgz,,*.tlz,,*.trz,,*.txz,,*.tz,,*.tz2,,*.xz,,*.z,,*.zip,,*.zoo::' +" images +set classify+=' ::*.bmp,,*.gif,,*.jpeg,,*.jpg,,*.ico,,*.png,,*.ppm,,*.svg,,*.svgz,,*.tga,,*.tif,,*.tiff,,*.xbm,,*.xcf,,*.xpm,,*.xspf,,*.xwd::' +" audio +set classify+=' ::*.aac,,*.anx,,*.asf,,*.au,,*.axa,,*.flac,,*.m2a,,*.m4a,,*.mid,,*.midi,,*.mp3,,*.mpc,,*.oga,,*.ogg,,*.ogx,,*.ra,,*.ram,,*.rm,,*.spx,,*.wav,,*.wma,,*.ac3::' +" media +set classify+=' ::*.avi,,*.ts,,*.axv,,*.divx,,*.m2v,,*.m4p,,*.m4v,,.mka,,*.mkv,,*.mov,,*.mp4,,*.flv,,*.mp4v,,*.mpeg,,*.mpg,,*.nuv,,*.ogv,,*.pbm,,*.pgm,,*.qt,,*.vob,,*.wmv,,*.xvid::' +" office files +set classify+=' ::*.doc,,*.docx::, ::*.xls,,*.xls[mx]::, ::*.pptx,,*.ppt::' + +--------------------------------------------------------------------------------- + +set vifminfo=dhistory,chistory,tui,shistory,phistory,fhistory,dirstack,registers,bookmarks,bmarks diff --git a/dotfiles/.config/vis/config b/dotfiles/.config/vis/config new file mode 100644 index 0000000..da946d3 --- /dev/null +++ b/dotfiles/.config/vis/config @@ -0,0 +1,14 @@ +#Refresh rate of the visualizers. A really high refresh rate may cause screen tearing. Default is 20. +visualizer.fps=30 + +#Sets the audio sources to use. Currently available ones are "mpd" and "alsa"Sets the audio sources to use. +#Currently available ones are "mpd", "pulse", and "alsa". Defaults to "mpd". +audio.sources=pulse + +#Available smoothing options are monstercat, sgs, none. +visualizer.spectrum.smoothing.mode=monstercat + +#This configures the sgs smoothing effect on the spectrum visualizer. More points spreads out the smoothing +#effect and increasing passes runs the smoother multiple times on reach run. Defaults are points=3 and passes=2. +visualizer.sgs.smoothing.points=5 +visualizer.sgs.smoothing.passes=2 diff --git a/dotfiles/.config/waybar/config b/dotfiles/.config/waybar/config new file mode 100644 index 0000000..3eb4dae --- /dev/null +++ b/dotfiles/.config/waybar/config @@ -0,0 +1,165 @@ + +{ + "layer": "bottom", + "height": 25, + "modules-left": [ + "sway/workspaces", + "custom/right-arrow-black", + "sway/mode", + "mpd", + "pulseaudio", + "custom/right-arrow-cyan" + ], + "modules-center": ["clock"], + "modules-right": [ + "custom/left-arrow-cyan", + "custom/swaykbd", + "custom/weather", + "backlight", + "custom/left-arrow-gray", + "network", + "battery#bat0", + "battery#bat1", + "custom/left-arrow-black", + "tray" + ], + "sway/mode": { + "format": "<span style=\"italic\">{}</span>" + }, + "mpd": { + "format": " {stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {title} [{elapsedTime:%M:%S}] ", + "format-disconnected": " Disconnected ", + "format-stopped": " {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ", + "unknown-tag": "N/A", + "interval": 2, + "consume-icons": { + "on": " " + }, + "random-icons": { + "off": "<span color=\"#f53c3c\"></span> ", + "on": " " + }, + "repeat-icons": { + "on": " " + }, + "single-icons": { + "on": "1 " + }, + "state-icons": { + "paused": "", + "playing": "" + }, + "tooltip-format": "MPD (connected)", + "tooltip-format-disconnected": "MPD (disconnected)" + }, + "idle_inhibitor": { + "format": "{icon}", + "format-icons": { + "activated": "", + "deactivated": "" + } + }, + "tray": { + "icon-size": 16, + "spacing": 10 + }, + "clock": { + "format": "{:%Y-%m-%d %H:%M:%S}", + "interval": 1 + }, + "cpu": { + "format": "{usage}% ", + "tooltip": false + }, + "memory": { + "format": "{}% " + }, + "temperature": { + // "thermal-zone": 2, + // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input", + "critical-threshold": 80, + // "format-critical": "{temperatureC}°C {icon}", + "format": "{temperatureC}°C {icon}", + "format-icons": ["", "", ""] + }, + "backlight": { + // "device": "acpi_video1", + "format": "{percent}% {icon}", + "format-icons": ["", ""] + }, + "battery#bat0": { + "bat": "BAT0", + "format": "{capacity}% {icon}", + "format-charging": "{capacity}% ", + "format-plugged": "{capacity}% ", + "format-icons": ["", "", "", "", ""] + }, + "battery#bat1": { + "bat": "BAT1", + "format": "{capacity}% {icon}", + "format-charging": "{capacity}% ", + "format-plugged": "{capacity}% ", + "format-icons": ["", "", "", "", ""] + }, + "network": { + // "interface": "wlp2*", // (Optional) To force the use of this interface + "format-wifi": "{essid}: {ipaddr} ", + "format-ethernet": "{ifname}: {ipaddr} ", + "format-linked": "{ifname} (No IP) ", + "format-disconnected": "Disconnected ⚠", + "format-alt": "{ifname}: {ipaddr}/{cidr}" + }, + "custom/left-arrow-cyan": { + "format": "" + }, + "custom/right-arrow-cyan": { + "format": "" + }, + "custom/left-arrow-gray": { + "format": "" + }, + "custom/left-arrow-black": { + "format": "" + }, + "custom/right-arrow-black": { + "format": "" + }, + "pulseaudio": { + // "scroll-step": 1, // %, can be a float + "format": "{volume}% {icon}", + "format-bluetooth": "{volume}% {icon} {format_source}", + "format-muted": "", + "format-source": "{volume}% ", + "format-source-muted": "", + "format-icons": { + "headphones": "", + "handsfree": "", + "headset": "", + "phone": "", + "portable": "", + "car": "", + "default": ["", "", ""] + }, + "on-click": "termite -e ncpamixer" + }, + "custom/weather": { + "format": "{}", + "interval": 900, + "exec": "$HOME/.scripts/i3barweather" + }, + "custom/swaykbd": { + "format": "{} ", + "exec": "$HOME/.scripts/swaykbd" + }, + "custom/media": { + "format": "{icon} {}", + "return-type": "json", + "max-length": 40, + "format-icons": { + "spotify": "", + "default": "🎜" + }, + "escape": true, + "exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder + } +} diff --git a/dotfiles/.config/waybar/style.css b/dotfiles/.config/waybar/style.css new file mode 100644 index 0000000..9429e0c --- /dev/null +++ b/dotfiles/.config/waybar/style.css @@ -0,0 +1,107 @@ +* { + font-size: 11px; + font-family: "FuraCode Nerd Font Mono"; + min-height: 0; +} + +window#waybar { + background: rgba(26, 26, 26, 0.75); + color: #fdf6e3; + min-height: 0; +} +#custom-right-arrow-cyan, #custom-left-arrow-cyan { + color: #8ec07c; + font-size: 20px; +} +#custom-right-arrow-black, #custom-left-arrow-black { + color: #000000; + font-size: 20px; +} +#custom-left-arrow-gray { + color: #191919; + background: #8ec07c; + font-size: 20px; +} +#custom-right-arrow-black { + background: #8ec07c; +} +#custom-left-arrow-black { + background: #191919; +} +#clock.1 { + background: #2D888D; +} +#clock.2 { + color: #1E1F23; + background: #DCDCCC; +} +#clock.3 { + background: #E00421; +} +#workspaces { + padding-left: 8px; + background: #000000; +} +#workspaces button { + padding: 0 4px; + color: #fdf6e3; +} +#workspaces button.focused { + color: #8ec07c; +} +#workspaces button:hover { + box-shadow: inherit; + text-shadow: inherit; +} +#workspaces button:hover { + border-color: #0C3D27; + border-radius: 0; + background: #0C3D27; +} +#backlight, +#memory, +#cpu, +#battery, +#network, +#tray, +#pulseaudio, +#mpd, +#temperature, +#custom-weather, +#custom-swaykbd, +#idle_inhibitor { + padding: 0 8px; +} +#tray { + background: #000000; +} +#memory { + background: #ff6e67; +} +#pulseaudio, +#mpd, +#temperature, +#backlight, +#custom-weather, +#custom-swaykbd { + color: #000000; + background: #8ec07c; +} +#cpu { + background: #f1fa8c; +} +#battery{ + background: #191919; +} +#battery.charging { + color: #8ec07c; +} +#network{ + background: #191919; +} +#memory, #cpu, #tray { + color: #1E1F23; +} +#clock{ + padding: 0 16px; +} diff --git a/dotfiles/.config/youtube-viewer/youtube-viewer.conf b/dotfiles/.config/youtube-viewer/youtube-viewer.conf new file mode 100644 index 0000000..407917b --- /dev/null +++ b/dotfiles/.config/youtube-viewer/youtube-viewer.conf @@ -0,0 +1,100 @@ +#!/usr/bin/perl + +# Youtube Viewer 3.5.5 - configuration file + +our $CONFIG = { + auto_captions => 0, + autohide_watched => 0, + cache_dir => "/home/yaroslav/.cache/youtube-viewer", + captions_dir => "/tmp", + clobber => 0, + colors => 1, + comments_order => "time", + confirm => 0, + convert_cmd => "ffmpeg -i *IN* *OUT*", + convert_to => undef, + copy_caption => 0, + custom_layout => 0, + custom_layout_format => "*NO*. *TITLE* (*AUTHOR*) (*RATING*) [*TIME*]\\n", + dash_mp4_audio => 1, + dash_segmented => 1, + dash_support => 1, + debug => 0, + download_and_play => 0, + download_in_parallel => 0, + download_with_wget => 1, + downloads_dir => ".", + env_proxy => 1, + fat32safe => 0, + ffmpeg_cmd => "/usr/bin/ffmpeg", + fullscreen => 0, + get_captions => 1, + get_term_width => 1, + highlight_color => "bold", + highlight_watched => 1, + history => 0, + history_file => "/home/yaroslav/.config/youtube-viewer/history.txt", + history_limit => 10000, + hl => "en_US", + http_proxy => undef, + interactive => 1, + keep_original_video => 0, + maxResults => 20, + merge_into_mkv => 1, + merge_into_mkv_args => "-loglevel warning -c:s srt -c:v copy -c:a copy -disposition:s forced", + merge_with_captions => 1, + order => undef, + page => 1, + prefer_mp4 => 0, + publishedAfter => undef, + publishedBefore => undef, + random_autoplay => 0, + regionCode => undef, + remove_played_file => 0, + resolution => 1080, + results_fixed_width => 0, + results_with_colors => 0, + results_with_details => 0, + safeSearch => undef, + skip_if_exists => 1, + srt_languages => ["en", "es"], + subscriptions_order => "relevance", + thousand_separator => ",", + use_invidious_api => 0, + video_filename_format => "*FTITLE* - *ID*.*FORMAT*", + video_player_selected => "mpv", + video_players => { + mplayer => { + arg => "-prefer-ipv4 -really-quiet -title *TITLE*", + audio => "-audiofile *AUDIO*", + cmd => "/usr/bin/mplayer", + fs => "-fs", + novideo => "-novideo", + srt => "-sub *SUB*", + }, + mpv => { + arg => "--gpu-context=wayland --really-quiet --title *TITLE* --no-ytdl", + audio => "--audio-file *AUDIO*", + cmd => "mpv", + fs => "--fullscreen", + novideo => "--no-video", + srt => "--sub-file *SUB*", + }, + vlc => { + arg => "--quiet --play-and-exit --no-video-title-show --input-title-format *TITLE*", + audio => "--input-slave *AUDIO*", + cmd => "vlc", + fs => "--fullscreen", + novideo => "--intf dummy --novideo", + srt => "--sub-file *SUB*", + }, + }, + videoCaption => undef, + videoDefinition => undef, + videoDimension => undef, + videoDuration => undef, + videoLicense => undef, + videoSyndicated => undef, + wget_cmd => "/usr/bin/wget", + youtube_video_url => "https://www.youtube.com/watch?v=%s", +} diff --git a/dotfiles/.dir_colors b/dotfiles/.dir_colors new file mode 100644 index 0000000..1e3ff8c --- /dev/null +++ b/dotfiles/.dir_colors @@ -0,0 +1,243 @@ +# Configuration file for dircolors, a utility to help you set the +# LS_COLORS environment variable used by GNU ls with the --color option. + +# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copying and distribution of this file, with or without modification, +# are permitted provided the copyright notice and this notice are preserved. + +# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the +# slackware version of dircolors) are recognized but ignored. + +# You can copy this file to .dir_colors in your $HOME directory to override +# the system defaults. + +# Below, there should be one TERM entry for each termtype that is colorizable +TERM Eterm +TERM ansi +TERM color-xterm +TERM con132x25 +TERM con132x30 +TERM con132x43 +TERM con132x60 +TERM con80x25 +TERM con80x28 +TERM con80x30 +TERM con80x43 +TERM con80x50 +TERM con80x60 +TERM cons25 +TERM console +TERM cygwin +TERM dtterm +TERM eterm-color +TERM gnome +TERM gnome-256color +TERM hurd +TERM jfbterm +TERM konsole +TERM kterm +TERM linux +TERM linux-c +TERM mach-color +TERM mach-gnu-color +TERM mlterm +TERM putty +TERM putty-256color +TERM rxvt +TERM rxvt-256color +TERM rxvt-cygwin +TERM rxvt-cygwin-native +TERM rxvt-unicode +TERM rxvt-unicode-256color +TERM rxvt-unicode256 +TERM screen +TERM screen-256color +TERM screen-256color-bce +TERM screen-bce +TERM screen-w +TERM screen.Eterm +TERM screen.rxvt +TERM screen.linux +TERM st +TERM st-256color +TERM terminator +TERM vt100 +TERM xterm +TERM xterm-16color +TERM xterm-256color +TERM xterm-88color +TERM xterm-color +TERM xterm-debian + +# Below are the color init strings for the basic file types. A color init +# string consists of one or more of the following numeric codes: +# Attribute codes: +# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed +# Text color codes: +# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white +# Background color codes: +# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white +#NORMAL 00 # no color code at all +#FILE 00 # regular file: use no color at all +RESET 0 # reset to "normal" color +DIR 01;34 # directory +LINK 01;36 # symbolic link. (If you set this to 'target' instead of a + # numerical value, the color is as for the file pointed to.) +MULTIHARDLINK 00 # regular file with more than one link +FIFO 40;33 # pipe +SOCK 01;35 # socket +DOOR 01;35 # door +BLK 40;33;01 # block device driver +CHR 40;33;01 # character device driver +ORPHAN 01;05;37;41 # orphaned syminks +MISSING 01;05;37;41 # ... and the files they point to +SETUID 37;41 # file that is setuid (u+s) +SETGID 30;43 # file that is setgid (g+s) +CAPABILITY 30;41 # file with capability +STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w) +OTHER_WRITABLE 31;42 # dir that is other-writable (o+w) and not sticky +STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable + +# This is for files with execute permission: +EXEC 01;32 + +# List any file extensions like '.gz' or '.tar' that you would like ls +# to colorize below. Put the extension, a space, and the color init string. +# (and any comments you want to add after a '#') + +# If you use DOS-style suffixes, you may want to uncomment the following: +#.cmd 01;32 # executables (bright green) +#.exe 01;32 +#.com 01;32 +#.btm 01;32 +#.bat 01;32 +# Or if you want to colorize scripts even if they do not have the +# executable bit actually set. +#.sh 01;32 +#.csh 01;32 + + # archives or compressed (bright red) +.tar 01;31 +.tgz 01;31 +.arc 01;31 +.arj 01;31 +.taz 01;31 +.lha 01;31 +.lz4 01;31 +.lzh 01;31 +.lzma 01;31 +.tlz 01;31 +.txz 01;31 +.tzo 01;31 +.t7z 01;31 +.zip 01;31 +.z 01;31 +.Z 01;31 +.dz 01;31 +.gz 01;31 +.lrz 01;31 +.lz 01;31 +.lzo 01;31 +.xz 01;31 +.bz2 01;31 +.bz 01;31 +.tbz 01;31 +.tbz2 01;31 +.tz 01;31 +.deb 01;31 +.rpm 01;31 +.jar 01;31 +.war 01;31 +.ear 01;31 +.sar 01;31 +.rar 01;31 +.alz 01;31 +.ace 01;31 +.zoo 01;31 +.cpio 01;31 +.7z 01;31 +.rz 01;31 +.cab 01;31 + +# image formats +.jpg 01;35 +.jpeg 01;35 +.gif 01;35 +.bmp 01;35 +.pbm 01;35 +.pgm 01;35 +.ppm 01;35 +.tga 01;35 +.xbm 01;35 +.xpm 01;35 +.tif 01;35 +.tiff 01;35 +.png 01;35 +.svg 01;35 +.svgz 01;35 +.mng 01;35 +.pcx 01;35 +.mov 01;35 +.mpg 01;35 +.mpeg 01;35 +.m2v 01;35 +.mkv 01;35 +.webm 01;35 +.ogm 01;35 +.mp4 01;35 +.m4v 01;35 +.mp4v 01;35 +.vob 01;35 +.qt 01;35 +.nuv 01;35 +.wmv 01;35 +.asf 01;35 +.rm 01;35 +.rmvb 01;35 +.flc 01;35 +.avi 01;35 +.fli 01;35 +.flv 01;35 +.gl 01;35 +.dl 01;35 +.xcf 01;35 +.xwd 01;35 +.yuv 01;35 +.cgm 01;35 +.emf 01;35 + +# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions +.axv 01;35 +.anx 01;35 +.ogv 01;35 +.ogx 01;35 + +# Document files +.pdf 00;32 +.ps 00;32 +.txt 00;32 +.patch 00;32 +.diff 00;32 +.log 00;32 +.tex 00;32 +.doc 00;32 + +# audio formats +.aac 00;36 +.au 00;36 +.flac 00;36 +.m4a 00;36 +.mid 00;36 +.midi 00;36 +.mka 00;36 +.mp3 00;36 +.mpc 00;36 +.ogg 00;36 +.ra 00;36 +.wav 00;36 + +# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions +.axa 00;36 +.oga 00;36 +.spx 00;36 +.xspf 00;36 diff --git a/dotfiles/.emoji b/dotfiles/.emoji new file mode 100644 index 0000000..35c1e1b --- /dev/null +++ b/dotfiles/.emoji @@ -0,0 +1,1644 @@ +😀 grinning face; U+1F600 +😃 grinning face with big eyes; U+1F603 +😄 grinning face with smiling eyes; U+1F604 +😁 beaming face with smiling eyes; U+1F601 +😆 grinning squinting face; U+1F606 +😅 grinning face with sweat; U+1F605 +🤣 rolling on the floor laughing; U+1F923 +😂 face with tears of joy; U+1F602 +🙂 slightly smiling face; U+1F642 +🙃 upside-down face; U+1F643 +😉 winking face; U+1F609 +😊 smiling face with smiling eyes; U+1F60A +😇 smiling face with halo; U+1F607 +🥰 smiling face with 3 hearts; U+1F970 +😍 smiling face with heart-eyes; U+1F60D +🤩 star-struck; U+1F929 +😘 face blowing a kiss; U+1F618 +😗 kissing face; U+1F617 +☺ smiling face; U+263A +😚 kissing face with closed eyes; U+1F61A +😙 kissing face with smiling eyes; U+1F619 +😋 face savoring food; U+1F60B +😛 face with tongue; U+1F61B +😜 winking face with tongue; U+1F61C +🤪 zany face; U+1F92A +😝 squinting face with tongue; U+1F61D +🤑 money-mouth face; U+1F911 +🤗 hugging face; U+1F917 +🤭 face with hand over mouth; U+1F92D +🤫 shushing face; U+1F92B +🤔 thinking face; U+1F914 +🤐 zipper-mouth face; U+1F910 +🤨 face with raised eyebrow; U+1F928 +😐 neutral face; U+1F610 +😑 expressionless face; U+1F611 +😶 face without mouth; U+1F636 +😏 smirking face; U+1F60F +😒 unamused face; U+1F612 +🙄 face with rolling eyes; U+1F644 +😬 grimacing face; U+1F62C +🤥 lying face; U+1F925 +😌 relieved face; U+1F60C +😔 pensive face; U+1F614 +😪 sleepy face; U+1F62A +🤤 drooling face; U+1F924 +😴 sleeping face; U+1F634 +😷 face with medical mask; U+1F637 +🤒 face with thermometer; U+1F912 +🤕 face with head-bandage; U+1F915 +🤢 nauseated face; U+1F922 +🤮 face vomiting; U+1F92E +🤧 sneezing face; U+1F927 +🥵 hot face; U+1F975 +🥶 cold face; U+1F976 +🥴 woozy face; U+1F974 +😵 dizzy face; U+1F635 +🤯 exploding head; U+1F92F +🤠 cowboy hat face; U+1F920 +🥳 partying face; U+1F973 +😎 smiling face with sunglasses; U+1F60E +🤓 nerd face; U+1F913 +🧐 face with monocle; U+1F9D0 +😕 confused face; U+1F615 +😟 worried face; U+1F61F +🙁 slightly frowning face; U+1F641 +☹ frowning face; U+2639 +😮 face with open mouth; U+1F62E +😯 hushed face; U+1F62F +😲 astonished face; U+1F632 +😳 flushed face; U+1F633 +🥺 pleading face; U+1F97A +😦 frowning face with open mouth; U+1F626 +😧 anguished face; U+1F627 +😨 fearful face; U+1F628 +😰 anxious face with sweat; U+1F630 +😥 sad but relieved face; U+1F625 +😢 crying face; U+1F622 +😭 loudly crying face; U+1F62D +😱 face screaming in fear; U+1F631 +😖 confounded face; U+1F616 +😣 persevering face; U+1F623 +😞 disappointed face; U+1F61E +😓 downcast face with sweat; U+1F613 +😩 weary face; U+1F629 +😫 tired face; U+1F62B +😤 face with steam from nose; U+1F624 +😡 pouting face; U+1F621 +😠 angry face; U+1F620 +🤬 face with symbols on mouth; U+1F92C +😈 smiling face with horns; U+1F608 +👿 angry face with horns; U+1F47F +💀 skull; U+1F480 +☠ skull and crossbones; U+2620 +💩 pile of poo; U+1F4A9 +🤡 clown face; U+1F921 +👹 ogre; U+1F479 +👺 goblin; U+1F47A +👻 ghost; U+1F47B +👽 alien; U+1F47D +👾 alien monster; U+1F47E +🤖 robot face; U+1F916 +😺 grinning cat face; U+1F63A +😸 grinning cat face with smiling eyes; U+1F638 +😹 cat face with tears of joy; U+1F639 +😻 smiling cat face with heart-eyes; U+1F63B +😼 cat face with wry smile; U+1F63C +😽 kissing cat face; U+1F63D +🙀 weary cat face; U+1F640 +😿 crying cat face; U+1F63F +😾 pouting cat face; U+1F63E +🙈 see-no-evil monkey; U+1F648 +🙉 hear-no-evil monkey; U+1F649 +🙊 speak-no-evil monkey; U+1F64A +💋 kiss mark; U+1F48B +💌 love letter; U+1F48C +💘 heart with arrow; U+1F498 +💝 heart with ribbon; U+1F49D +💖 sparkling heart; U+1F496 +💗 growing heart; U+1F497 +💓 beating heart; U+1F493 +💞 revolving hearts; U+1F49E +💕 two hearts; U+1F495 +💟 heart decoration; U+1F49F +❣ heavy heart exclamation; U+2763 +💔 broken heart; U+1F494 +❤ red heart; U+2764 +🧡 orange heart; U+1F9E1 +💛 yellow heart; U+1F49B +💚 green heart; U+1F49A +💙 blue heart; U+1F499 +💜 purple heart; U+1F49C +🖤 black heart; U+1F5A4 +💯 hundred points; U+1F4AF +💢 anger symbol; U+1F4A2 +💥 collision; U+1F4A5 +💫 dizzy; U+1F4AB +💦 sweat droplets; U+1F4A6 +💨 dashing away; U+1F4A8 +🕳 hole; U+1F573 +💣 bomb; U+1F4A3 +💬 speech balloon; U+1F4AC +👁️🗨️ eye in speech bubble; U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F +🗨 left speech bubble; U+1F5E8 +🗯 right anger bubble; U+1F5EF +💭 thought balloon; U+1F4AD +💤 zzz; U+1F4A4 +👋 waving hand; U+1F44B +🤚 raised back of hand; U+1F91A +🖐 hand with fingers splayed; U+1F590 +✋ raised hand; U+270B +🖖 vulcan salute; U+1F596 +👌 OK hand; U+1F44C +✌ victory hand; U+270C +🤞 crossed fingers; U+1F91E +🤟 love-you gesture; U+1F91F +🤘 sign of the horns; U+1F918 +🤙 call me hand; U+1F919 +👈 backhand index pointing left; U+1F448 +👉 backhand index pointing right; U+1F449 +👆 backhand index pointing up; U+1F446 +🖕 middle finger; U+1F595 +👇 backhand index pointing down; U+1F447 +☝ index pointing up; U+261D +👍 thumbs up; U+1F44D +👎 thumbs down; U+1F44E +✊ raised fist; U+270A +👊 oncoming fist; U+1F44A +🤛 left-facing fist; U+1F91B +🤜 right-facing fist; U+1F91C +👏 clapping hands; U+1F44F +🙌 raising hands; U+1F64C +👐 open hands; U+1F450 +🤲 palms up together; U+1F932 +🤝 handshake; U+1F91D +🙏 folded hands; U+1F64F +✍ writing hand; U+270D +💅 nail polish; U+1F485 +🤳 selfie; U+1F933 +💪 flexed biceps; U+1F4AA +🦵 leg; U+1F9B5 +🦶 foot; U+1F9B6 +👂 ear; U+1F442 +👃 nose; U+1F443 +🧠 brain; U+1F9E0 +🦷 tooth; U+1F9B7 +🦴 bone; U+1F9B4 +👀 eyes; U+1F440 +👁 eye; U+1F441 +👅 tongue; U+1F445 +👄 mouth; U+1F444 +👶 baby; U+1F476 +🧒 child; U+1F9D2 +👦 boy; U+1F466 +👧 girl; U+1F467 +🧑 person; U+1F9D1 +👱 person: blond hair; U+1F471 +👨 man; U+1F468 +👱♂️ man: blond hair; U+1F471 U+200D U+2642 U+FE0F +👨🦰 man: red hair; U+1F468 U+200D U+1F9B0 +👨🦱 man: curly hair; U+1F468 U+200D U+1F9B1 +👨🦳 man: white hair; U+1F468 U+200D U+1F9B3 +👨🦲 man: bald; U+1F468 U+200D U+1F9B2 +🧔 man: beard; U+1F9D4 +👩 woman; U+1F469 +👱♀️ woman: blond hair; U+1F471 U+200D U+2640 U+FE0F +👩🦰 woman: red hair; U+1F469 U+200D U+1F9B0 +👩🦱 woman: curly hair; U+1F469 U+200D U+1F9B1 +👩🦳 woman: white hair; U+1F469 U+200D U+1F9B3 +👩🦲 woman: bald; U+1F469 U+200D U+1F9B2 +🧓 older person; U+1F9D3 +👴 old man; U+1F474 +👵 old woman; U+1F475 +🙍 person frowning; U+1F64D +🙍♂️ man frowning; U+1F64D U+200D U+2642 U+FE0F +🙍♀️ woman frowning; U+1F64D U+200D U+2640 U+FE0F +🙎 person pouting; U+1F64E +🙎♂️ man pouting; U+1F64E U+200D U+2642 U+FE0F +🙎♀️ woman pouting; U+1F64E U+200D U+2640 U+FE0F +🙅 person gesturing NO; U+1F645 +🙅♂️ man gesturing NO; U+1F645 U+200D U+2642 U+FE0F +🙅♀️ woman gesturing NO; U+1F645 U+200D U+2640 U+FE0F +🙆 person gesturing OK; U+1F646 +🙆♂️ man gesturing OK; U+1F646 U+200D U+2642 U+FE0F +🙆♀️ woman gesturing OK; U+1F646 U+200D U+2640 U+FE0F +💁 person tipping hand; U+1F481 +💁♂️ man tipping hand; U+1F481 U+200D U+2642 U+FE0F +💁♀️ woman tipping hand; U+1F481 U+200D U+2640 U+FE0F +🙋 person raising hand; U+1F64B +🙋♂️ man raising hand; U+1F64B U+200D U+2642 U+FE0F +🙋♀️ woman raising hand; U+1F64B U+200D U+2640 U+FE0F +🙇 person bowing; U+1F647 +🙇♂️ man bowing; U+1F647 U+200D U+2642 U+FE0F +🙇♀️ woman bowing; U+1F647 U+200D U+2640 U+FE0F +🤦 person facepalming; U+1F926 +🤦♂️ man facepalming; U+1F926 U+200D U+2642 U+FE0F +🤦♀️ woman facepalming; U+1F926 U+200D U+2640 U+FE0F +🤷 person shrugging; U+1F937 +🤷♂️ man shrugging; U+1F937 U+200D U+2642 U+FE0F +🤷♀️ woman shrugging; U+1F937 U+200D U+2640 U+FE0F +👨⚕️ man health worker; U+1F468 U+200D U+2695 U+FE0F +👩⚕️ woman health worker; U+1F469 U+200D U+2695 U+FE0F +👨🎓 man student; U+1F468 U+200D U+1F393 +👩🎓 woman student; U+1F469 U+200D U+1F393 +👨🏫 man teacher; U+1F468 U+200D U+1F3EB +👩🏫 woman teacher; U+1F469 U+200D U+1F3EB +👨⚖️ man judge; U+1F468 U+200D U+2696 U+FE0F +👩⚖️ woman judge; U+1F469 U+200D U+2696 U+FE0F +👨🌾 man farmer; U+1F468 U+200D U+1F33E +👩🌾 woman farmer; U+1F469 U+200D U+1F33E +👨🍳 man cook; U+1F468 U+200D U+1F373 +👩🍳 woman cook; U+1F469 U+200D U+1F373 +👨🔧 man mechanic; U+1F468 U+200D U+1F527 +👩🔧 woman mechanic; U+1F469 U+200D U+1F527 +👨🏭 man factory worker; U+1F468 U+200D U+1F3ED +👩🏭 woman factory worker; U+1F469 U+200D U+1F3ED +👨💼 man office worker; U+1F468 U+200D U+1F4BC +👩💼 woman office worker; U+1F469 U+200D U+1F4BC +👨🔬 man scientist; U+1F468 U+200D U+1F52C +👩🔬 woman scientist; U+1F469 U+200D U+1F52C +👨💻 man technologist; U+1F468 U+200D U+1F4BB +👩💻 woman technologist; U+1F469 U+200D U+1F4BB +👨🎤 man singer; U+1F468 U+200D U+1F3A4 +👩🎤 woman singer; U+1F469 U+200D U+1F3A4 +👨🎨 man artist; U+1F468 U+200D U+1F3A8 +👩🎨 woman artist; U+1F469 U+200D U+1F3A8 +👨✈️ man pilot; U+1F468 U+200D U+2708 U+FE0F +👩✈️ woman pilot; U+1F469 U+200D U+2708 U+FE0F +👨🚀 man astronaut; U+1F468 U+200D U+1F680 +👩🚀 woman astronaut; U+1F469 U+200D U+1F680 +👨🚒 man firefighter; U+1F468 U+200D U+1F692 +👩🚒 woman firefighter; U+1F469 U+200D U+1F692 +👮 police officer; U+1F46E +👮♂️ man police officer; U+1F46E U+200D U+2642 U+FE0F +👮♀️ woman police officer; U+1F46E U+200D U+2640 U+FE0F +🕵 detective; U+1F575 +🕵️♂️ man detective; U+1F575 U+FE0F U+200D U+2642 U+FE0F +🕵️♀️ woman detective; U+1F575 U+FE0F U+200D U+2640 U+FE0F +💂 guard; U+1F482 +💂♂️ man guard; U+1F482 U+200D U+2642 U+FE0F +💂♀️ woman guard; U+1F482 U+200D U+2640 U+FE0F +👷 construction worker; U+1F477 +👷♂️ man construction worker; U+1F477 U+200D U+2642 U+FE0F +👷♀️ woman construction worker; U+1F477 U+200D U+2640 U+FE0F +🤴 prince; U+1F934 +👸 princess; U+1F478 +👳 person wearing turban; U+1F473 +👳♂️ man wearing turban; U+1F473 U+200D U+2642 U+FE0F +👳♀️ woman wearing turban; U+1F473 U+200D U+2640 U+FE0F +👲 man with Chinese cap; U+1F472 +🧕 woman with headscarf; U+1F9D5 +🤵 man in tuxedo; U+1F935 +👰 bride with veil; U+1F470 +🤰 pregnant woman; U+1F930 +🤱 breast-feeding; U+1F931 +👼 baby angel; U+1F47C +🎅 Santa Claus; U+1F385 +🤶 Mrs. Claus; U+1F936 +🦸 superhero; U+1F9B8 +🦸♂️ man superhero; U+1F9B8 U+200D U+2642 U+FE0F +🦸♀️ woman superhero; U+1F9B8 U+200D U+2640 U+FE0F +🦹 supervillain; U+1F9B9 +🦹♂️ man supervillain; U+1F9B9 U+200D U+2642 U+FE0F +🦹♀️ woman supervillain; U+1F9B9 U+200D U+2640 U+FE0F +🧙 mage; U+1F9D9 +🧙♂️ man mage; U+1F9D9 U+200D U+2642 U+FE0F +🧙♀️ woman mage; U+1F9D9 U+200D U+2640 U+FE0F +🧚 fairy; U+1F9DA +🧚♂️ man fairy; U+1F9DA U+200D U+2642 U+FE0F +🧚♀️ woman fairy; U+1F9DA U+200D U+2640 U+FE0F +🧛 vampire; U+1F9DB +🧛♂️ man vampire; U+1F9DB U+200D U+2642 U+FE0F +🧛♀️ woman vampire; U+1F9DB U+200D U+2640 U+FE0F +🧜 merperson; U+1F9DC +🧜♂️ merman; U+1F9DC U+200D U+2642 U+FE0F +🧜♀️ mermaid; U+1F9DC U+200D U+2640 U+FE0F +🧝 elf; U+1F9DD +🧝♂️ man elf; U+1F9DD U+200D U+2642 U+FE0F +🧝♀️ woman elf; U+1F9DD U+200D U+2640 U+FE0F +🧞 genie; U+1F9DE +🧞♂️ man genie; U+1F9DE U+200D U+2642 U+FE0F +🧞♀️ woman genie; U+1F9DE U+200D U+2640 U+FE0F +🧟 zombie; U+1F9DF +🧟♂️ man zombie; U+1F9DF U+200D U+2642 U+FE0F +🧟♀️ woman zombie; U+1F9DF U+200D U+2640 U+FE0F +💆 person getting massage; U+1F486 +💆♂️ man getting massage; U+1F486 U+200D U+2642 U+FE0F +💆♀️ woman getting massage; U+1F486 U+200D U+2640 U+FE0F +💇 person getting haircut; U+1F487 +💇♂️ man getting haircut; U+1F487 U+200D U+2642 U+FE0F +💇♀️ woman getting haircut; U+1F487 U+200D U+2640 U+FE0F +🚶 person walking; U+1F6B6 +🚶♂️ man walking; U+1F6B6 U+200D U+2642 U+FE0F +🚶♀️ woman walking; U+1F6B6 U+200D U+2640 U+FE0F +🏃 person running; U+1F3C3 +🏃♂️ man running; U+1F3C3 U+200D U+2642 U+FE0F +🏃♀️ woman running; U+1F3C3 U+200D U+2640 U+FE0F +💃 woman dancing; U+1F483 +🕺 man dancing; U+1F57A +🕴 man in suit levitating; U+1F574 +👯 people with bunny ears; U+1F46F +👯♂️ men with bunny ears; U+1F46F U+200D U+2642 U+FE0F +👯♀️ women with bunny ears; U+1F46F U+200D U+2640 U+FE0F +🧖 person in steamy room; U+1F9D6 +🧖♂️ man in steamy room; U+1F9D6 U+200D U+2642 U+FE0F +🧖♀️ woman in steamy room; U+1F9D6 U+200D U+2640 U+FE0F +🧗 person climbing; U+1F9D7 +🧗♂️ man climbing; U+1F9D7 U+200D U+2642 U+FE0F +🧗♀️ woman climbing; U+1F9D7 U+200D U+2640 U+FE0F +🤺 person fencing; U+1F93A +🏇 horse racing; U+1F3C7 +⛷ skier; U+26F7 +🏂 snowboarder; U+1F3C2 +🏌 person golfing; U+1F3CC +🏌️♂️ man golfing; U+1F3CC U+FE0F U+200D U+2642 U+FE0F +🏌️♀️ woman golfing; U+1F3CC U+FE0F U+200D U+2640 U+FE0F +🏄 person surfing; U+1F3C4 +🏄♂️ man surfing; U+1F3C4 U+200D U+2642 U+FE0F +🏄♀️ woman surfing; U+1F3C4 U+200D U+2640 U+FE0F +🚣 person rowing boat; U+1F6A3 +🚣♂️ man rowing boat; U+1F6A3 U+200D U+2642 U+FE0F +🚣♀️ woman rowing boat; U+1F6A3 U+200D U+2640 U+FE0F +🏊 person swimming; U+1F3CA +🏊♂️ man swimming; U+1F3CA U+200D U+2642 U+FE0F +🏊♀️ woman swimming; U+1F3CA U+200D U+2640 U+FE0F +⛹ person bouncing ball; U+26F9 +⛹️♂️ man bouncing ball; U+26F9 U+FE0F U+200D U+2642 U+FE0F +⛹️♀️ woman bouncing ball; U+26F9 U+FE0F U+200D U+2640 U+FE0F +🏋 person lifting weights; U+1F3CB +🏋️♂️ man lifting weights; U+1F3CB U+FE0F U+200D U+2642 U+FE0F +🏋️♀️ woman lifting weights; U+1F3CB U+FE0F U+200D U+2640 U+FE0F +🚴 person biking; U+1F6B4 +🚴♂️ man biking; U+1F6B4 U+200D U+2642 U+FE0F +🚴♀️ woman biking; U+1F6B4 U+200D U+2640 U+FE0F +🚵 person mountain biking; U+1F6B5 +🚵♂️ man mountain biking; U+1F6B5 U+200D U+2642 U+FE0F +🚵♀️ woman mountain biking; U+1F6B5 U+200D U+2640 U+FE0F +🤸 person cartwheeling; U+1F938 +🤸♂️ man cartwheeling; U+1F938 U+200D U+2642 U+FE0F +🤸♀️ woman cartwheeling; U+1F938 U+200D U+2640 U+FE0F +🤼 people wrestling; U+1F93C +🤼♂️ men wrestling; U+1F93C U+200D U+2642 U+FE0F +🤼♀️ women wrestling; U+1F93C U+200D U+2640 U+FE0F +🤽 person playing water polo; U+1F93D +🤽♂️ man playing water polo; U+1F93D U+200D U+2642 U+FE0F +🤽♀️ woman playing water polo; U+1F93D U+200D U+2640 U+FE0F +🤾 person playing handball; U+1F93E +🤾♂️ man playing handball; U+1F93E U+200D U+2642 U+FE0F +🤾♀️ woman playing handball; U+1F93E U+200D U+2640 U+FE0F +🤹 person juggling; U+1F939 +🤹♂️ man juggling; U+1F939 U+200D U+2642 U+FE0F +🤹♀️ woman juggling; U+1F939 U+200D U+2640 U+FE0F +🧘 person in lotus position; U+1F9D8 +🧘♂️ man in lotus position; U+1F9D8 U+200D U+2642 U+FE0F +🧘♀️ woman in lotus position; U+1F9D8 U+200D U+2640 U+FE0F +🛀 person taking bath; U+1F6C0 +🛌 person in bed; U+1F6CC +👭 women holding hands; U+1F46D +👫 woman and man holding hands; U+1F46B +👬 men holding hands; U+1F46C +💏 kiss; U+1F48F +👩❤️💋👨 kiss: woman, man; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 +👨❤️💋👨 kiss: man, man; U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 +👩❤️💋👩 kiss: woman, woman; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 +💑 couple with heart; U+1F491 +👩❤️👨 couple with heart: woman, man; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468 +👨❤️👨 couple with heart: man, man; U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468 +👩❤️👩 couple with heart: woman, woman; U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469 +👪 family; U+1F46A +👨👩👦 family: man, woman, boy; U+1F468 U+200D U+1F469 U+200D U+1F466 +👨👩👧 family: man, woman, girl; U+1F468 U+200D U+1F469 U+200D U+1F467 +👨👩👧👦 family: man, woman, girl, boy; U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 +👨👩👦👦 family: man, woman, boy, boy; U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 +👨👩👧👧 family: man, woman, girl, girl; U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 +👨👨👦 family: man, man, boy; U+1F468 U+200D U+1F468 U+200D U+1F466 +👨👨👧 family: man, man, girl; U+1F468 U+200D U+1F468 U+200D U+1F467 +👨👨👧👦 family: man, man, girl, boy; U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466 +👨👨👦👦 family: man, man, boy, boy; U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466 +👨👨👧👧 family: man, man, girl, girl; U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467 +👩👩👦 family: woman, woman, boy; U+1F469 U+200D U+1F469 U+200D U+1F466 +👩👩👧 family: woman, woman, girl; U+1F469 U+200D U+1F469 U+200D U+1F467 +👩👩👧👦 family: woman, woman, girl, boy; U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 +👩👩👦👦 family: woman, woman, boy, boy; U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 +👩👩👧👧 family: woman, woman, girl, girl; U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 +👨👦 family: man, boy; U+1F468 U+200D U+1F466 +👨👦👦 family: man, boy, boy; U+1F468 U+200D U+1F466 U+200D U+1F466 +👨👧 family: man, girl; U+1F468 U+200D U+1F467 +👨👧👦 family: man, girl, boy; U+1F468 U+200D U+1F467 U+200D U+1F466 +👨👧👧 family: man, girl, girl; U+1F468 U+200D U+1F467 U+200D U+1F467 +👩👦 family: woman, boy; U+1F469 U+200D U+1F466 +👩👦👦 family: woman, boy, boy; U+1F469 U+200D U+1F466 U+200D U+1F466 +👩👧 family: woman, girl; U+1F469 U+200D U+1F467 +👩👧👦 family: woman, girl, boy; U+1F469 U+200D U+1F467 U+200D U+1F466 +👩👧👧 family: woman, girl, girl; U+1F469 U+200D U+1F467 U+200D U+1F467 +🗣 speaking head; U+1F5E3 +👤 bust in silhouette; U+1F464 +👥 busts in silhouette; U+1F465 +👣 footprints; U+1F463 +🦰 red hair; U+1F9B0 +🦱 curly hair; U+1F9B1 +🦳 white hair; U+1F9B3 +🦲 bald; U+1F9B2 +🐵 monkey face; U+1F435 +🐒 monkey; U+1F412 +🦍 gorilla; U+1F98D +🐶 dog face; U+1F436 +🐕 dog; U+1F415 +🐩 poodle; U+1F429 +🐺 wolf face; U+1F43A +🦊 fox face; U+1F98A +🦝 raccoon; U+1F99D +🐱 cat face; U+1F431 +🐈 cat; U+1F408 +🦁 lion face; U+1F981 +🐯 tiger face; U+1F42F +🐅 tiger; U+1F405 +🐆 leopard; U+1F406 +🐴 horse face; U+1F434 +🐎 horse; U+1F40E +🦄 unicorn face; U+1F984 +🦓 zebra; U+1F993 +🦌 deer; U+1F98C +🐮 cow face; U+1F42E +🐂 ox; U+1F402 +🐃 water buffalo; U+1F403 +🐄 cow; U+1F404 +🐷 pig face; U+1F437 +🐖 pig; U+1F416 +🐗 boar; U+1F417 +🐽 pig nose; U+1F43D +🐏 ram; U+1F40F +🐑 ewe; U+1F411 +🐐 goat; U+1F410 +🐪 camel; U+1F42A +🐫 two-hump camel; U+1F42B +🦙 llama; U+1F999 +🦒 giraffe; U+1F992 +🐘 elephant; U+1F418 +🦏 rhinoceros; U+1F98F +🦛 hippopotamus; U+1F99B +🐭 mouse face; U+1F42D +🐁 mouse; U+1F401 +🐀 rat; U+1F400 +🐹 hamster face; U+1F439 +🐰 rabbit face; U+1F430 +🐇 rabbit; U+1F407 +🐿 chipmunk; U+1F43F +🦔 hedgehog; U+1F994 +🦇 bat; U+1F987 +🐻 bear face; U+1F43B +🐨 koala; U+1F428 +🐼 panda face; U+1F43C +🦘 kangaroo; U+1F998 +🦡 badger; U+1F9A1 +🐾 paw prints; U+1F43E +🦃 turkey; U+1F983 +🐔 chicken; U+1F414 +🐓 rooster; U+1F413 +🐣 hatching chick; U+1F423 +🐤 baby chick; U+1F424 +🐥 front-facing baby chick; U+1F425 +🐦 bird; U+1F426 +🐧 penguin; U+1F427 +🕊 dove; U+1F54A +🦅 eagle; U+1F985 +🦆 duck; U+1F986 +🦢 swan; U+1F9A2 +🦉 owl; U+1F989 +🦚 peacock; U+1F99A +🦜 parrot; U+1F99C +🐸 frog face; U+1F438 +🐊 crocodile; U+1F40A +🐢 turtle; U+1F422 +🦎 lizard; U+1F98E +🐍 snake; U+1F40D +🐲 dragon face; U+1F432 +🐉 dragon; U+1F409 +🦕 sauropod; U+1F995 +🦖 T-Rex; U+1F996 +🐳 spouting whale; U+1F433 +🐋 whale; U+1F40B +🐬 dolphin; U+1F42C +🐟 fish; U+1F41F +🐠 tropical fish; U+1F420 +🐡 blowfish; U+1F421 +🦈 shark; U+1F988 +🐙 octopus; U+1F419 +🐚 spiral shell; U+1F41A +🐌 snail; U+1F40C +🦋 butterfly; U+1F98B +🐛 bug; U+1F41B +🐜 ant; U+1F41C +🐝 honeybee; U+1F41D +🐞 lady beetle; U+1F41E +🦗 cricket; U+1F997 +🕷 spider; U+1F577 +🕸 spider web; U+1F578 +🦂 scorpion; U+1F982 +🦟 mosquito; U+1F99F +🦠 microbe; U+1F9A0 +💐 bouquet; U+1F490 +🌸 cherry blossom; U+1F338 +💮 white flower; U+1F4AE +🏵 rosette; U+1F3F5 +🌹 rose; U+1F339 +🥀 wilted flower; U+1F940 +🌺 hibiscus; U+1F33A +🌻 sunflower; U+1F33B +🌼 blossom; U+1F33C +🌷 tulip; U+1F337 +🌱 seedling; U+1F331 +🌲 evergreen tree; U+1F332 +🌳 deciduous tree; U+1F333 +🌴 palm tree; U+1F334 +🌵 cactus; U+1F335 +🌾 sheaf of rice; U+1F33E +🌿 herb; U+1F33F +☘ shamrock; U+2618 +🍀 four leaf clover; U+1F340 +🍁 maple leaf; U+1F341 +🍂 fallen leaf; U+1F342 +🍃 leaf fluttering in wind; U+1F343 +🍇 grapes; U+1F347 +🍈 melon; U+1F348 +🍉 watermelon; U+1F349 +🍊 tangerine; U+1F34A +🍋 lemon; U+1F34B +🍌 banana; U+1F34C +🍍 pineapple; U+1F34D +🥭 mango; U+1F96D +🍎 red apple; U+1F34E +🍏 green apple; U+1F34F +🍐 pear; U+1F350 +🍑 peach; U+1F351 +🍒 cherries; U+1F352 +🍓 strawberry; U+1F353 +🥝 kiwi fruit; U+1F95D +🍅 tomato; U+1F345 +🥥 coconut; U+1F965 +🥑 avocado; U+1F951 +🍆 eggplant; U+1F346 +🥔 potato; U+1F954 +🥕 carrot; U+1F955 +🌽 ear of corn; U+1F33D +🌶 hot pepper; U+1F336 +🥒 cucumber; U+1F952 +🥬 leafy green; U+1F96C +🥦 broccoli; U+1F966 +🍄 mushroom; U+1F344 +🥜 peanuts; U+1F95C +🌰 chestnut; U+1F330 +🍞 bread; U+1F35E +🥐 croissant; U+1F950 +🥖 baguette bread; U+1F956 +🥨 pretzel; U+1F968 +🥯 bagel; U+1F96F +🥞 pancakes; U+1F95E +🧀 cheese wedge; U+1F9C0 +🍖 meat on bone; U+1F356 +🍗 poultry leg; U+1F357 +🥩 cut of meat; U+1F969 +🥓 bacon; U+1F953 +🍔 hamburger; U+1F354 +🍟 french fries; U+1F35F +🍕 pizza; U+1F355 +🌭 hot dog; U+1F32D +🥪 sandwich; U+1F96A +🌮 taco; U+1F32E +🌯 burrito; U+1F32F +🥙 stuffed flatbread; U+1F959 +🥚 egg; U+1F95A +🍳 cooking; U+1F373 +🥘 shallow pan of food; U+1F958 +🍲 pot of food; U+1F372 +🥣 bowl with spoon; U+1F963 +🥗 green salad; U+1F957 +🍿 popcorn; U+1F37F +🧂 salt; U+1F9C2 +🥫 canned food; U+1F96B +🍱 bento box; U+1F371 +🍘 rice cracker; U+1F358 +🍙 rice ball; U+1F359 +🍚 cooked rice; U+1F35A +🍛 curry rice; U+1F35B +🍜 steaming bowl; U+1F35C +🍝 spaghetti; U+1F35D +🍠 roasted sweet potato; U+1F360 +🍢 oden; U+1F362 +🍣 sushi; U+1F363 +🍤 fried shrimp; U+1F364 +🍥 fish cake with swirl; U+1F365 +🥮 moon cake; U+1F96E +🍡 dango; U+1F361 +🥟 dumpling; U+1F95F +🥠 fortune cookie; U+1F960 +🥡 takeout box; U+1F961 +🦀 crab; U+1F980 +🦞 lobster; U+1F99E +🦐 shrimp; U+1F990 +🦑 squid; U+1F991 +🍦 soft ice cream; U+1F366 +🍧 shaved ice; U+1F367 +🍨 ice cream; U+1F368 +🍩 doughnut; U+1F369 +🍪 cookie; U+1F36A +🎂 birthday cake; U+1F382 +🍰 shortcake; U+1F370 +🧁 cupcake; U+1F9C1 +🥧 pie; U+1F967 +🍫 chocolate bar; U+1F36B +🍬 candy; U+1F36C +🍭 lollipop; U+1F36D +🍮 custard; U+1F36E +🍯 honey pot; U+1F36F +🍼 baby bottle; U+1F37C +🥛 glass of milk; U+1F95B +☕ hot beverage; U+2615 +🍵 teacup without handle; U+1F375 +🍶 sake; U+1F376 +🍾 bottle with popping cork; U+1F37E +🍷 wine glass; U+1F377 +🍸 cocktail glass; U+1F378 +🍹 tropical drink; U+1F379 +🍺 beer mug; U+1F37A +🍻 clinking beer mugs; U+1F37B +🥂 clinking glasses; U+1F942 +🥃 tumbler glass; U+1F943 +🥤 cup with straw; U+1F964 +🥢 chopsticks; U+1F962 +🍽 fork and knife with plate; U+1F37D +🍴 fork and knife; U+1F374 +🥄 spoon; U+1F944 +🔪 kitchen knife; U+1F52A +🏺 amphora; U+1F3FA +🌍 globe showing Europe-Africa; U+1F30D +🌎 globe showing Americas; U+1F30E +🌏 globe showing Asia-Australia; U+1F30F +🌐 globe with meridians; U+1F310 +🗺 world map; U+1F5FA +🗾 map of Japan; U+1F5FE +🧭 compass; U+1F9ED +🏔 snow-capped mountain; U+1F3D4 +⛰ mountain; U+26F0 +🌋 volcano; U+1F30B +🗻 mount fuji; U+1F5FB +🏕 camping; U+1F3D5 +🏖 beach with umbrella; U+1F3D6 +🏜 desert; U+1F3DC +🏝 desert island; U+1F3DD +🏞 national park; U+1F3DE +🏟 stadium; U+1F3DF +🏛 classical building; U+1F3DB +🏗 building construction; U+1F3D7 +🧱 brick; U+1F9F1 +🏘 houses; U+1F3D8 +🏚 derelict house; U+1F3DA +🏠 house; U+1F3E0 +🏡 house with garden; U+1F3E1 +🏢 office building; U+1F3E2 +🏣 Japanese post office; U+1F3E3 +🏤 post office; U+1F3E4 +🏥 hospital; U+1F3E5 +🏦 bank; U+1F3E6 +🏨 hotel; U+1F3E8 +🏩 love hotel; U+1F3E9 +🏪 convenience store; U+1F3EA +🏫 school; U+1F3EB +🏬 department store; U+1F3EC +🏭 factory; U+1F3ED +🏯 Japanese castle; U+1F3EF +🏰 castle; U+1F3F0 +💒 wedding; U+1F492 +🗼 Tokyo tower; U+1F5FC +🗽 Statue of Liberty; U+1F5FD +⛪ church; U+26EA +🕌 mosque; U+1F54C +🕍 synagogue; U+1F54D +⛩ shinto shrine; U+26E9 +🕋 kaaba; U+1F54B +⛲ fountain; U+26F2 +⛺ tent; U+26FA +🌁 foggy; U+1F301 +🌃 night with stars; U+1F303 +🏙 cityscape; U+1F3D9 +🌄 sunrise over mountains; U+1F304 +🌅 sunrise; U+1F305 +🌆 cityscape at dusk; U+1F306 +🌇 sunset; U+1F307 +🌉 bridge at night; U+1F309 +♨ hot springs; U+2668 +🌌 milky way; U+1F30C +🎠 carousel horse; U+1F3A0 +🎡 ferris wheel; U+1F3A1 +🎢 roller coaster; U+1F3A2 +💈 barber pole; U+1F488 +🎪 circus tent; U+1F3AA +🚂 locomotive; U+1F682 +🚃 railway car; U+1F683 +🚄 high-speed train; U+1F684 +🚅 bullet train; U+1F685 +🚆 train; U+1F686 +🚇 metro; U+1F687 +🚈 light rail; U+1F688 +🚉 station; U+1F689 +🚊 tram; U+1F68A +🚝 monorail; U+1F69D +🚞 mountain railway; U+1F69E +🚋 tram car; U+1F68B +🚌 bus; U+1F68C +🚍 oncoming bus; U+1F68D +🚎 trolleybus; U+1F68E +🚐 minibus; U+1F690 +🚑 ambulance; U+1F691 +🚒 fire engine; U+1F692 +🚓 police car; U+1F693 +🚔 oncoming police car; U+1F694 +🚕 taxi; U+1F695 +🚖 oncoming taxi; U+1F696 +🚗 automobile; U+1F697 +🚘 oncoming automobile; U+1F698 +🚙 sport utility vehicle; U+1F699 +🚚 delivery truck; U+1F69A +🚛 articulated lorry; U+1F69B +🚜 tractor; U+1F69C +🏎 racing car; U+1F3CE +🏍 motorcycle; U+1F3CD +🛵 motor scooter; U+1F6F5 +🚲 bicycle; U+1F6B2 +🛴 kick scooter; U+1F6F4 +🛹 skateboard; U+1F6F9 +🚏 bus stop; U+1F68F +🛣 motorway; U+1F6E3 +🛤 railway track; U+1F6E4 +🛢 oil drum; U+1F6E2 +⛽ fuel pump; U+26FD +🚨 police car light; U+1F6A8 +🚥 horizontal traffic light; U+1F6A5 +🚦 vertical traffic light; U+1F6A6 +🛑 stop sign; U+1F6D1 +🚧 construction; U+1F6A7 +⚓ anchor; U+2693 +⛵ sailboat; U+26F5 +🛶 canoe; U+1F6F6 +🚤 speedboat; U+1F6A4 +🛳 passenger ship; U+1F6F3 +⛴ ferry; U+26F4 +🛥 motor boat; U+1F6E5 +🚢 ship; U+1F6A2 +✈ airplane; U+2708 +🛩 small airplane; U+1F6E9 +🛫 airplane departure; U+1F6EB +🛬 airplane arrival; U+1F6EC +💺 seat; U+1F4BA +🚁 helicopter; U+1F681 +🚟 suspension railway; U+1F69F +🚠 mountain cableway; U+1F6A0 +🚡 aerial tramway; U+1F6A1 +🛰 satellite; U+1F6F0 +🚀 rocket; U+1F680 +🛸 flying saucer; U+1F6F8 +🛎 bellhop bell; U+1F6CE +🧳 luggage; U+1F9F3 +⌛ hourglass done; U+231B +⏳ hourglass not done; U+23F3 +⌚ watch; U+231A +⏰ alarm clock; U+23F0 +⏱ stopwatch; U+23F1 +⏲ timer clock; U+23F2 +🕰 mantelpiece clock; U+1F570 +🕛 twelve o’clock; U+1F55B +🕧 twelve-thirty; U+1F567 +🕐 one o’clock; U+1F550 +🕜 one-thirty; U+1F55C +🕑 two o’clock; U+1F551 +🕝 two-thirty; U+1F55D +🕒 three o’clock; U+1F552 +🕞 three-thirty; U+1F55E +🕓 four o’clock; U+1F553 +🕟 four-thirty; U+1F55F +🕔 five o’clock; U+1F554 +🕠 five-thirty; U+1F560 +🕕 six o’clock; U+1F555 +🕡 six-thirty; U+1F561 +🕖 seven o’clock; U+1F556 +🕢 seven-thirty; U+1F562 +🕗 eight o’clock; U+1F557 +🕣 eight-thirty; U+1F563 +🕘 nine o’clock; U+1F558 +🕤 nine-thirty; U+1F564 +🕙 ten o’clock; U+1F559 +🕥 ten-thirty; U+1F565 +🕚 eleven o’clock; U+1F55A +🕦 eleven-thirty; U+1F566 +🌑 new moon; U+1F311 +🌒 waxing crescent moon; U+1F312 +🌓 first quarter moon; U+1F313 +🌔 waxing gibbous moon; U+1F314 +🌕 full moon; U+1F315 +🌖 waning gibbous moon; U+1F316 +🌗 last quarter moon; U+1F317 +🌘 waning crescent moon; U+1F318 +🌙 crescent moon; U+1F319 +🌚 new moon face; U+1F31A +🌛 first quarter moon face; U+1F31B +🌜 last quarter moon face; U+1F31C +🌡 thermometer; U+1F321 +☀ sun; U+2600 +🌝 full moon face; U+1F31D +🌞 sun with face; U+1F31E +⭐ star; U+2B50 +🌟 glowing star; U+1F31F +🌠 shooting star; U+1F320 +☁ cloud; U+2601 +⛅ sun behind cloud; U+26C5 +⛈ cloud with lightning and rain; U+26C8 +🌤 sun behind small cloud; U+1F324 +🌥 sun behind large cloud; U+1F325 +🌦 sun behind rain cloud; U+1F326 +🌧 cloud with rain; U+1F327 +🌨 cloud with snow; U+1F328 +🌩 cloud with lightning; U+1F329 +🌪 tornado; U+1F32A +🌫 fog; U+1F32B +🌬 wind face; U+1F32C +🌀 cyclone; U+1F300 +🌈 rainbow; U+1F308 +🌂 closed umbrella; U+1F302 +☂ umbrella; U+2602 +☔ umbrella with rain drops; U+2614 +⛱ umbrella on ground; U+26F1 +⚡ high voltage; U+26A1 +❄ snowflake; U+2744 +☃ snowman; U+2603 +⛄ snowman without snow; U+26C4 +☄ comet; U+2604 +🔥 fire; U+1F525 +💧 droplet; U+1F4A7 +🌊 water wave; U+1F30A +🎃 jack-o-lantern; U+1F383 +🎄 Christmas tree; U+1F384 +🎆 fireworks; U+1F386 +🎇 sparkler; U+1F387 +🧨 firecracker; U+1F9E8 +✨ sparkles; U+2728 +🎈 balloon; U+1F388 +🎉 party popper; U+1F389 +🎊 confetti ball; U+1F38A +🎋 tanabata tree; U+1F38B +🎍 pine decoration; U+1F38D +🎎 Japanese dolls; U+1F38E +🎏 carp streamer; U+1F38F +🎐 wind chime; U+1F390 +🎑 moon viewing ceremony; U+1F391 +🧧 red envelope; U+1F9E7 +🎀 ribbon; U+1F380 +🎁 wrapped gift; U+1F381 +🎗 reminder ribbon; U+1F397 +🎟 admission tickets; U+1F39F +🎫 ticket; U+1F3AB +🎖 military medal; U+1F396 +🏆 trophy; U+1F3C6 +🏅 sports medal; U+1F3C5 +1st place medal; U+1F947 🥇 +2nd place medal; U+1F948 🥈 +3rd place medal; U+1F949 🥉 +⚽ soccer ball; U+26BD +⚾ baseball; U+26BE +🥎 softball; U+1F94E +🏀 basketball; U+1F3C0 +🏐 volleyball; U+1F3D0 +🏈 american football; U+1F3C8 +🏉 rugby football; U+1F3C9 +🎾 tennis; U+1F3BE +🥏 flying disc; U+1F94F +🎳 bowling; U+1F3B3 +🏏 cricket game; U+1F3CF +🏑 field hockey; U+1F3D1 +🏒 ice hockey; U+1F3D2 +🥍 lacrosse; U+1F94D +🏓 ping pong; U+1F3D3 +🏸 badminton; U+1F3F8 +🥊 boxing glove; U+1F94A +🥋 martial arts uniform; U+1F94B +🥅 goal net; U+1F945 +⛳ flag in hole; U+26F3 +⛸ ice skate; U+26F8 +🎣 fishing pole; U+1F3A3 +🎽 running shirt; U+1F3BD +🎿 skis; U+1F3BF +🛷 sled; U+1F6F7 +🥌 curling stone; U+1F94C +🎯 direct hit; U+1F3AF +🎱 pool 8 ball; U+1F3B1 +🔮 crystal ball; U+1F52E +🧿 nazar amulet; U+1F9FF +🎮 video game; U+1F3AE +🕹 joystick; U+1F579 +🎰 slot machine; U+1F3B0 +🎲 game die; U+1F3B2 +🧩 jigsaw; U+1F9E9 +🧸 teddy bear; U+1F9F8 +♠ spade suit; U+2660 +♥ heart suit; U+2665 +♦ diamond suit; U+2666 +♣ club suit; U+2663 +♟ chess pawn; U+265F +🃏 joker; U+1F0CF +🀄 mahjong red dragon; U+1F004 +🎴 flower playing cards; U+1F3B4 +🎭 performing arts; U+1F3AD +🖼 framed picture; U+1F5BC +🎨 artist palette; U+1F3A8 +🧵 thread; U+1F9F5 +🧶 yarn; U+1F9F6 +👓 glasses; U+1F453 +🕶 sunglasses; U+1F576 +🥽 goggles; U+1F97D +🥼 lab coat; U+1F97C +👔 necktie; U+1F454 +👕 t-shirt; U+1F455 +👖 jeans; U+1F456 +🧣 scarf; U+1F9E3 +🧤 gloves; U+1F9E4 +🧥 coat; U+1F9E5 +🧦 socks; U+1F9E6 +👗 dress; U+1F457 +👘 kimono; U+1F458 +👙 bikini; U+1F459 +👚 woman’s clothes; U+1F45A +👛 purse; U+1F45B +👜 handbag; U+1F45C +👝 clutch bag; U+1F45D +🛍 shopping bags; U+1F6CD +🎒 backpack; U+1F392 +👞 man’s shoe; U+1F45E +👟 running shoe; U+1F45F +🥾 hiking boot; U+1F97E +🥿 flat shoe; U+1F97F +👠 high-heeled shoe; U+1F460 +👡 woman’s sandal; U+1F461 +👢 woman’s boot; U+1F462 +👑 crown; U+1F451 +👒 woman’s hat; U+1F452 +🎩 top hat; U+1F3A9 +🎓 graduation cap; U+1F393 +🧢 billed cap; U+1F9E2 +⛑ rescue worker’s helmet; U+26D1 +📿 prayer beads; U+1F4FF +💄 lipstick; U+1F484 +💍 ring; U+1F48D +💎 gem stone; U+1F48E +🔇 muted speaker; U+1F507 +🔈 speaker low volume; U+1F508 +🔉 speaker medium volume; U+1F509 +🔊 speaker high volume; U+1F50A +📢 loudspeaker; U+1F4E2 +📣 megaphone; U+1F4E3 +📯 postal horn; U+1F4EF +🔔 bell; U+1F514 +🔕 bell with slash; U+1F515 +🎼 musical score; U+1F3BC +🎵 musical note; U+1F3B5 +🎶 musical notes; U+1F3B6 +🎙 studio microphone; U+1F399 +🎚 level slider; U+1F39A +🎛 control knobs; U+1F39B +🎤 microphone; U+1F3A4 +🎧 headphone; U+1F3A7 +📻 radio; U+1F4FB +🎷 saxophone; U+1F3B7 +🎸 guitar; U+1F3B8 +🎹 musical keyboard; U+1F3B9 +🎺 trumpet; U+1F3BA +🎻 violin; U+1F3BB +🥁 drum; U+1F941 +📱 mobile phone; U+1F4F1 +📲 mobile phone with arrow; U+1F4F2 +☎ telephone; U+260E +📞 telephone receiver; U+1F4DE +📟 pager; U+1F4DF +📠 fax machine; U+1F4E0 +🔋 battery; U+1F50B +🔌 electric plug; U+1F50C +💻 laptop computer; U+1F4BB +🖥 desktop computer; U+1F5A5 +🖨 printer; U+1F5A8 +⌨ keyboard; U+2328 +🖱 computer mouse; U+1F5B1 +🖲 trackball; U+1F5B2 +💽 computer disk; U+1F4BD +💾 floppy disk; U+1F4BE +💿 optical disk; U+1F4BF +📀 dvd; U+1F4C0 +🧮 abacus; U+1F9EE +🎥 movie camera; U+1F3A5 +🎞 film frames; U+1F39E +📽 film projector; U+1F4FD +🎬 clapper board; U+1F3AC +📺 television; U+1F4FA +📷 camera; U+1F4F7 +📸 camera with flash; U+1F4F8 +📹 video camera; U+1F4F9 +📼 videocassette; U+1F4FC +🔍 magnifying glass tilted left; U+1F50D +🔎 magnifying glass tilted right; U+1F50E +🕯 candle; U+1F56F +💡 light bulb; U+1F4A1 +🔦 flashlight; U+1F526 +🏮 red paper lantern; U+1F3EE +📔 notebook with decorative cover; U+1F4D4 +📕 closed book; U+1F4D5 +📖 open book; U+1F4D6 +📗 green book; U+1F4D7 +📘 blue book; U+1F4D8 +📙 orange book; U+1F4D9 +📚 books; U+1F4DA +📓 notebook; U+1F4D3 +📒 ledger; U+1F4D2 +📃 page with curl; U+1F4C3 +📜 scroll; U+1F4DC +📄 page facing up; U+1F4C4 +📰 newspaper; U+1F4F0 +🗞 rolled-up newspaper; U+1F5DE +📑 bookmark tabs; U+1F4D1 +🔖 bookmark; U+1F516 +🏷 label; U+1F3F7 +💰 money bag; U+1F4B0 +💴 yen banknote; U+1F4B4 +💵 dollar banknote; U+1F4B5 +💶 euro banknote; U+1F4B6 +💷 pound banknote; U+1F4B7 +💸 money with wings; U+1F4B8 +💳 credit card; U+1F4B3 +🧾 receipt; U+1F9FE +💹 chart increasing with yen; U+1F4B9 +💱 currency exchange; U+1F4B1 +💲 heavy dollar sign; U+1F4B2 +✉ envelope; U+2709 +📧 e-mail; U+1F4E7 +📨 incoming envelope; U+1F4E8 +📩 envelope with arrow; U+1F4E9 +📤 outbox tray; U+1F4E4 +📥 inbox tray; U+1F4E5 +📦 package; U+1F4E6 +📫 closed mailbox with raised flag; U+1F4EB +📪 closed mailbox with lowered flag; U+1F4EA +📬 open mailbox with raised flag; U+1F4EC +📭 open mailbox with lowered flag; U+1F4ED +📮 postbox; U+1F4EE +🗳 ballot box with ballot; U+1F5F3 +✏ pencil; U+270F +✒ black nib; U+2712 +🖋 fountain pen; U+1F58B +🖊 pen; U+1F58A +🖌 paintbrush; U+1F58C +🖍 crayon; U+1F58D +📝 memo; U+1F4DD +💼 briefcase; U+1F4BC +📁 file folder; U+1F4C1 +📂 open file folder; U+1F4C2 +🗂 card index dividers; U+1F5C2 +📅 calendar; U+1F4C5 +📆 tear-off calendar; U+1F4C6 +🗒 spiral notepad; U+1F5D2 +🗓 spiral calendar; U+1F5D3 +📇 card index; U+1F4C7 +📈 chart increasing; U+1F4C8 +📉 chart decreasing; U+1F4C9 +📊 bar chart; U+1F4CA +📋 clipboard; U+1F4CB +📌 pushpin; U+1F4CC +📍 round pushpin; U+1F4CD +📎 paperclip; U+1F4CE +🖇 linked paperclips; U+1F587 +📏 straight ruler; U+1F4CF +📐 triangular ruler; U+1F4D0 +✂ scissors; U+2702 +🗃 card file box; U+1F5C3 +🗄 file cabinet; U+1F5C4 +🗑 wastebasket; U+1F5D1 +🔒 locked; U+1F512 +🔓 unlocked; U+1F513 +🔏 locked with pen; U+1F50F +🔐 locked with key; U+1F510 +🔑 key; U+1F511 +🗝 old key; U+1F5DD +🔨 hammer; U+1F528 +⛏ pick; U+26CF +⚒ hammer and pick; U+2692 +🛠 hammer and wrench; U+1F6E0 +🗡 dagger; U+1F5E1 +⚔ crossed swords; U+2694 +🔫 pistol; U+1F52B +🏹 bow and arrow; U+1F3F9 +🛡 shield; U+1F6E1 +🔧 wrench; U+1F527 +🔩 nut and bolt; U+1F529 +⚙ gear; U+2699 +🗜 clamp; U+1F5DC +⚖ balance scale; U+2696 +🔗 link; U+1F517 +⛓ chains; U+26D3 +🧰 toolbox; U+1F9F0 +🧲 magnet; U+1F9F2 +⚗ alembic; U+2697 +🧪 test tube; U+1F9EA +🧫 petri dish; U+1F9EB +🧬 dna; U+1F9EC +🔬 microscope; U+1F52C +🔭 telescope; U+1F52D +📡 satellite antenna; U+1F4E1 +💉 syringe; U+1F489 +💊 pill; U+1F48A +🚪 door; U+1F6AA +🛏 bed; U+1F6CF +🛋 couch and lamp; U+1F6CB +🚽 toilet; U+1F6BD +🚿 shower; U+1F6BF +🛁 bathtub; U+1F6C1 +🧴 lotion bottle; U+1F9F4 +🧷 safety pin; U+1F9F7 +🧹 broom; U+1F9F9 +🧺 basket; U+1F9FA +🧻 roll of paper; U+1F9FB +🧼 soap; U+1F9FC +🧽 sponge; U+1F9FD +🧯 fire extinguisher; U+1F9EF +🛒 shopping cart; U+1F6D2 +🚬 cigarette; U+1F6AC +⚰ coffin; U+26B0 +⚱ funeral urn; U+26B1 +🗿 moai; U+1F5FF +🏧 ATM sign; U+1F3E7 +🚮 litter in bin sign; U+1F6AE +🚰 potable water; U+1F6B0 +♿ wheelchair symbol; U+267F +🚹 men’s room; U+1F6B9 +🚺 women’s room; U+1F6BA +🚻 restroom; U+1F6BB +🚼 baby symbol; U+1F6BC +🚾 water closet; U+1F6BE +🛂 passport control; U+1F6C2 +🛃 customs; U+1F6C3 +🛄 baggage claim; U+1F6C4 +🛅 left luggage; U+1F6C5 +⚠ warning; U+26A0 +🚸 children crossing; U+1F6B8 +⛔ no entry; U+26D4 +🚫 prohibited; U+1F6AB +🚳 no bicycles; U+1F6B3 +🚭 no smoking; U+1F6AD +🚯 no littering; U+1F6AF +🚱 non-potable water; U+1F6B1 +🚷 no pedestrians; U+1F6B7 +📵 no mobile phones; U+1F4F5 +🔞 no one under eighteen; U+1F51E +☢ radioactive; U+2622 +☣ biohazard; U+2623 +⬆ up arrow; U+2B06 +↗ up-right arrow; U+2197 +➡ right arrow; U+27A1 +↘ down-right arrow; U+2198 +⬇ down arrow; U+2B07 +↙ down-left arrow; U+2199 +⬅ left arrow; U+2B05 +↖ up-left arrow; U+2196 +↕ up-down arrow; U+2195 +↔ left-right arrow; U+2194 +↩ right arrow curving left; U+21A9 +↪ left arrow curving right; U+21AA +⤴ right arrow curving up; U+2934 +⤵ right arrow curving down; U+2935 +🔃 clockwise vertical arrows; U+1F503 +🔄 counterclockwise arrows button; U+1F504 +🔙 BACK arrow; U+1F519 +🔚 END arrow; U+1F51A +🔛 ON! arrow; U+1F51B +🔜 SOON arrow; U+1F51C +🔝 TOP arrow; U+1F51D +🛐 place of worship; U+1F6D0 +⚛ atom symbol; U+269B +🕉 om; U+1F549 +✡ star of David; U+2721 +☸ wheel of dharma; U+2638 +☯ yin yang; U+262F +✝ latin cross; U+271D +☦ orthodox cross; U+2626 +☪ star and crescent; U+262A +☮ peace symbol; U+262E +🕎 menorah; U+1F54E +🔯 dotted six-pointed star; U+1F52F +♈ Aries; U+2648 +♉ Taurus; U+2649 +♊ Gemini; U+264A +♋ Cancer; U+264B +♌ Leo; U+264C +♍ Virgo; U+264D +♎ Libra; U+264E +♏ Scorpio; U+264F +♐ Sagittarius; U+2650 +♑ Capricorn; U+2651 +♒ Aquarius; U+2652 +♓ Pisces; U+2653 +⛎ Ophiuchus; U+26CE +🔀 shuffle tracks button; U+1F500 +🔁 repeat button; U+1F501 +🔂 repeat single button; U+1F502 +▶ play button; U+25B6 +⏩ fast-forward button; U+23E9 +⏭ next track button; U+23ED +⏯ play or pause button; U+23EF +◀ reverse button; U+25C0 +⏪ fast reverse button; U+23EA +⏮ last track button; U+23EE +🔼 upwards button; U+1F53C +⏫ fast up button; U+23EB +🔽 downwards button; U+1F53D +⏬ fast down button; U+23EC +⏸ pause button; U+23F8 +⏹ stop button; U+23F9 +⏺ record button; U+23FA +⏏ eject button; U+23CF +🎦 cinema; U+1F3A6 +🔅 dim button; U+1F505 +🔆 bright button; U+1F506 +📶 antenna bars; U+1F4F6 +📳 vibration mode; U+1F4F3 +📴 mobile phone off; U+1F4F4 +♀ female sign; U+2640 +♂ male sign; U+2642 +⚕ medical symbol; U+2695 +♾ infinity; U+267E +♻ recycling symbol; U+267B +⚜ fleur-de-lis; U+269C +🔱 trident emblem; U+1F531 +📛 name badge; U+1F4DB +🔰 Japanese symbol for beginner; U+1F530 +⭕ heavy large circle; U+2B55 +✅ white heavy check mark; U+2705 +☑ ballot box with check; U+2611 +✔ heavy check mark; U+2714 +✖ heavy multiplication x; U+2716 +❌ cross mark; U+274C +❎ cross mark button; U+274E +➕ heavy plus sign; U+2795 +➖ heavy minus sign; U+2796 +➗ heavy division sign; U+2797 +➰ curly loop; U+27B0 +➿ double curly loop; U+27BF +〽 part alternation mark; U+303D +✳ eight-spoked asterisk; U+2733 +✴ eight-pointed star; U+2734 +❇ sparkle; U+2747 +‼ double exclamation mark; U+203C +⁉ exclamation question mark; U+2049 +❓ question mark; U+2753 +❔ white question mark; U+2754 +❕ white exclamation mark; U+2755 +❗ exclamation mark; U+2757 +〰 wavy dash; U+3030 +© copyright; U+00A9 +® registered; U+00AE +™ trade mark; U+2122 +#️⃣ keycap: #; U+0023 U+FE0F U+20E3 +*️⃣ keycap: *; U+002A U+FE0F U+20E3 +0️⃣ keycap: 0; U+0030 U+FE0F U+20E3 +1️⃣ keycap: 1; U+0031 U+FE0F U+20E3 +2️⃣ keycap: 2; U+0032 U+FE0F U+20E3 +3️⃣ keycap: 3; U+0033 U+FE0F U+20E3 +4️⃣ keycap: 4; U+0034 U+FE0F U+20E3 +5️⃣ keycap: 5; U+0035 U+FE0F U+20E3 +6️⃣ keycap: 6; U+0036 U+FE0F U+20E3 +7️⃣ keycap: 7; U+0037 U+FE0F U+20E3 +8️⃣ keycap: 8; U+0038 U+FE0F U+20E3 +9️⃣ keycap: 9; U+0039 U+FE0F U+20E3 +🔟 keycap: 10; U+1F51F +🔠 input latin uppercase; U+1F520 +🔡 input latin lowercase; U+1F521 +🔢 input numbers; U+1F522 +🔣 input symbols; U+1F523 +🔤 input latin letters; U+1F524 +🅰 A button (blood type); U+1F170 +🆎 AB button (blood type); U+1F18E +🅱 B button (blood type); U+1F171 +🆑 CL button; U+1F191 +🆒 COOL button; U+1F192 +🆓 FREE button; U+1F193 +ℹ information; U+2139 +🆔 ID button; U+1F194 +Ⓜ circled M; U+24C2 +🆕 NEW button; U+1F195 +🆖 NG button; U+1F196 +🅾 O button (blood type); U+1F17E +🆗 OK button; U+1F197 +🅿 P button; U+1F17F +🆘 SOS button; U+1F198 +🆙 UP! button; U+1F199 +🆚 VS button; U+1F19A +🈁 Japanese “here” button; U+1F201 +🈂 Japanese “service charge” button; U+1F202 +🈷 Japanese “monthly amount” button; U+1F237 +🈶 Japanese “not free of charge” button; U+1F236 +🈯 Japanese “reserved” button; U+1F22F +🉐 Japanese “bargain” button; U+1F250 +🈹 Japanese “discount” button; U+1F239 +🈚 Japanese “free of charge” button; U+1F21A +🈲 Japanese “prohibited” button; U+1F232 +🉑 Japanese “acceptable” button; U+1F251 +🈸 Japanese “application” button; U+1F238 +🈴 Japanese “passing grade” button; U+1F234 +🈳 Japanese “vacancy” button; U+1F233 +㊗ Japanese “congratulations” button; U+3297 +㊙ Japanese “secret” button; U+3299 +🈺 Japanese “open for business” button; U+1F23A +🈵 Japanese “no vacancy” button; U+1F235 +🔴 red circle; U+1F534 +🔵 blue circle; U+1F535 +⚪ white circle; U+26AA +⚫ black circle; U+26AB +⬜ white large square; U+2B1C +⬛ black large square; U+2B1B +◼ black medium square; U+25FC +◻ white medium square; U+25FB +◽ white medium-small square; U+25FD +◾ black medium-small square; U+25FE +▫ white small square; U+25AB +▪ black small square; U+25AA +🔶 large orange diamond; U+1F536 +🔷 large blue diamond; U+1F537 +🔸 small orange diamond; U+1F538 +🔹 small blue diamond; U+1F539 +🔺 red triangle pointed up; U+1F53A +🔻 red triangle pointed down; U+1F53B +💠 diamond with a dot; U+1F4A0 +🔘 radio button; U+1F518 +🔲 black square button; U+1F532 +🔳 white square button; U+1F533 +🏁 chequered flag; U+1F3C1 +🚩 triangular flag; U+1F6A9 +🎌 crossed flags; U+1F38C +🏴 black flag; U+1F3F4 +🏳 white flag; U+1F3F3 +🏳️🌈 rainbow flag; U+1F3F3 U+FE0F U+200D U+1F308 +🏴☠️ pirate flag; U+1F3F4 U+200D U+2620 U+FE0F +🇦🇨 flag: Ascension Island; U+1F1E6 U+1F1E8 +🇦🇩 flag: Andorra; U+1F1E6 U+1F1E9 +🇦🇪 flag: United Arab Emirates; U+1F1E6 U+1F1EA +🇦🇫 flag: Afghanistan; U+1F1E6 U+1F1EB +🇦🇬 flag: Antigua & Barbuda; U+1F1E6 U+1F1EC +🇦🇮 flag: Anguilla; U+1F1E6 U+1F1EE +🇦🇱 flag: Albania; U+1F1E6 U+1F1F1 +🇦🇲 flag: Armenia; U+1F1E6 U+1F1F2 +🇦🇴 flag: Angola; U+1F1E6 U+1F1F4 +🇦🇶 flag: Antarctica; U+1F1E6 U+1F1F6 +🇦🇷 flag: Argentina; U+1F1E6 U+1F1F7 +🇦🇸 flag: American Samoa; U+1F1E6 U+1F1F8 +🇦🇹 flag: Austria; U+1F1E6 U+1F1F9 +🇦🇺 flag: Australia; U+1F1E6 U+1F1FA +🇦🇼 flag: Aruba; U+1F1E6 U+1F1FC +🇦🇽 flag: Åland Islands; U+1F1E6 U+1F1FD +🇦🇿 flag: Azerbaijan; U+1F1E6 U+1F1FF +🇧🇦 flag: Bosnia & Herzegovina; U+1F1E7 U+1F1E6 +🇧🇧 flag: Barbados; U+1F1E7 U+1F1E7 +🇧🇩 flag: Bangladesh; U+1F1E7 U+1F1E9 +🇧🇪 flag: Belgium; U+1F1E7 U+1F1EA +🇧🇫 flag: Burkina Faso; U+1F1E7 U+1F1EB +🇧🇬 flag: Bulgaria; U+1F1E7 U+1F1EC +🇧🇭 flag: Bahrain; U+1F1E7 U+1F1ED +🇧🇮 flag: Burundi; U+1F1E7 U+1F1EE +🇧🇯 flag: Benin; U+1F1E7 U+1F1EF +🇧🇱 flag: St. Barthélemy; U+1F1E7 U+1F1F1 +🇧🇲 flag: Bermuda; U+1F1E7 U+1F1F2 +🇧🇳 flag: Brunei; U+1F1E7 U+1F1F3 +🇧🇴 flag: Bolivia; U+1F1E7 U+1F1F4 +🇧🇶 flag: Caribbean Netherlands; U+1F1E7 U+1F1F6 +🇧🇷 flag: Brazil; U+1F1E7 U+1F1F7 +🇧🇸 flag: Bahamas; U+1F1E7 U+1F1F8 +🇧🇹 flag: Bhutan; U+1F1E7 U+1F1F9 +🇧🇻 flag: Bouvet Island; U+1F1E7 U+1F1FB +🇧🇼 flag: Botswana; U+1F1E7 U+1F1FC +🇧🇾 flag: Belarus; U+1F1E7 U+1F1FE +🇧🇿 flag: Belize; U+1F1E7 U+1F1FF +🇨🇦 flag: Canada; U+1F1E8 U+1F1E6 +🇨🇨 flag: Cocos (Keeling) Islands; U+1F1E8 U+1F1E8 +🇨🇩 flag: Congo - Kinshasa; U+1F1E8 U+1F1E9 +🇨🇫 flag: Central African Republic; U+1F1E8 U+1F1EB +🇨🇬 flag: Congo - Brazzaville; U+1F1E8 U+1F1EC +🇨🇭 flag: Switzerland; U+1F1E8 U+1F1ED +🇨🇮 flag: Côte d’Ivoire; U+1F1E8 U+1F1EE +🇨🇰 flag: Cook Islands; U+1F1E8 U+1F1F0 +🇨🇱 flag: Chile; U+1F1E8 U+1F1F1 +🇨🇲 flag: Cameroon; U+1F1E8 U+1F1F2 +🇨🇳 flag: China; U+1F1E8 U+1F1F3 +🇨🇴 flag: Colombia; U+1F1E8 U+1F1F4 +🇨🇵 flag: Clipperton Island; U+1F1E8 U+1F1F5 +🇨🇷 flag: Costa Rica; U+1F1E8 U+1F1F7 +🇨🇺 flag: Cuba; U+1F1E8 U+1F1FA +🇨🇻 flag: Cape Verde; U+1F1E8 U+1F1FB +🇨🇼 flag: Curaçao; U+1F1E8 U+1F1FC +🇨🇽 flag: Christmas Island; U+1F1E8 U+1F1FD +🇨🇾 flag: Cyprus; U+1F1E8 U+1F1FE +🇨🇿 flag: Czechia; U+1F1E8 U+1F1FF +🇩🇪 flag: Germany; U+1F1E9 U+1F1EA +🇩🇬 flag: Diego Garcia; U+1F1E9 U+1F1EC +🇩🇯 flag: Djibouti; U+1F1E9 U+1F1EF +🇩🇰 flag: Denmark; U+1F1E9 U+1F1F0 +🇩🇲 flag: Dominica; U+1F1E9 U+1F1F2 +🇩🇴 flag: Dominican Republic; U+1F1E9 U+1F1F4 +🇩🇿 flag: Algeria; U+1F1E9 U+1F1FF +🇪🇦 flag: Ceuta & Melilla; U+1F1EA U+1F1E6 +🇪🇨 flag: Ecuador; U+1F1EA U+1F1E8 +🇪🇪 flag: Estonia; U+1F1EA U+1F1EA +🇪🇬 flag: Egypt; U+1F1EA U+1F1EC +🇪🇭 flag: Western Sahara; U+1F1EA U+1F1ED +🇪🇷 flag: Eritrea; U+1F1EA U+1F1F7 +🇪🇸 flag: Spain; U+1F1EA U+1F1F8 +🇪🇹 flag: Ethiopia; U+1F1EA U+1F1F9 +🇪🇺 flag: European Union; U+1F1EA U+1F1FA +🇫🇮 flag: Finland; U+1F1EB U+1F1EE +🇫🇯 flag: Fiji; U+1F1EB U+1F1EF +🇫🇰 flag: Falkland Islands; U+1F1EB U+1F1F0 +🇫🇲 flag: Micronesia; U+1F1EB U+1F1F2 +🇫🇴 flag: Faroe Islands; U+1F1EB U+1F1F4 +🇫🇷 flag: France; U+1F1EB U+1F1F7 +🇬🇦 flag: Gabon; U+1F1EC U+1F1E6 +🇬🇧 flag: United Kingdom; U+1F1EC U+1F1E7 +🇬🇩 flag: Grenada; U+1F1EC U+1F1E9 +🇬🇪 flag: Georgia; U+1F1EC U+1F1EA +🇬🇫 flag: French Guiana; U+1F1EC U+1F1EB +🇬🇬 flag: Guernsey; U+1F1EC U+1F1EC +🇬🇭 flag: Ghana; U+1F1EC U+1F1ED +🇬🇮 flag: Gibraltar; U+1F1EC U+1F1EE +🇬🇱 flag: Greenland; U+1F1EC U+1F1F1 +🇬🇲 flag: Gambia; U+1F1EC U+1F1F2 +🇬🇳 flag: Guinea; U+1F1EC U+1F1F3 +🇬🇵 flag: Guadeloupe; U+1F1EC U+1F1F5 +🇬🇶 flag: Equatorial Guinea; U+1F1EC U+1F1F6 +🇬🇷 flag: Greece; U+1F1EC U+1F1F7 +🇬🇸 flag: South Georgia & South Sandwich Islands; U+1F1EC U+1F1F8 +🇬🇹 flag: Guatemala; U+1F1EC U+1F1F9 +🇬🇺 flag: Guam; U+1F1EC U+1F1FA +🇬🇼 flag: Guinea-Bissau; U+1F1EC U+1F1FC +🇬🇾 flag: Guyana; U+1F1EC U+1F1FE +🇭🇰 flag: Hong Kong SAR China; U+1F1ED U+1F1F0 +🇭🇲 flag: Heard & McDonald Islands; U+1F1ED U+1F1F2 +🇭🇳 flag: Honduras; U+1F1ED U+1F1F3 +🇭🇷 flag: Croatia; U+1F1ED U+1F1F7 +🇭🇹 flag: Haiti; U+1F1ED U+1F1F9 +🇭🇺 flag: Hungary; U+1F1ED U+1F1FA +🇮🇨 flag: Canary Islands; U+1F1EE U+1F1E8 +🇮🇩 flag: Indonesia; U+1F1EE U+1F1E9 +🇮🇪 flag: Ireland; U+1F1EE U+1F1EA +🇮🇱 flag: Israel; U+1F1EE U+1F1F1 +🇮🇲 flag: Isle of Man; U+1F1EE U+1F1F2 +🇮🇳 flag: India; U+1F1EE U+1F1F3 +🇮🇴 flag: British Indian Ocean Territory; U+1F1EE U+1F1F4 +🇮🇶 flag: Iraq; U+1F1EE U+1F1F6 +🇮🇷 flag: Iran; U+1F1EE U+1F1F7 +🇮🇸 flag: Iceland; U+1F1EE U+1F1F8 +🇮🇹 flag: Italy; U+1F1EE U+1F1F9 +🇯🇪 flag: Jersey; U+1F1EF U+1F1EA +🇯🇲 flag: Jamaica; U+1F1EF U+1F1F2 +🇯🇴 flag: Jordan; U+1F1EF U+1F1F4 +🇯🇵 flag: Japan; U+1F1EF U+1F1F5 +🇰🇪 flag: Kenya; U+1F1F0 U+1F1EA +🇰🇬 flag: Kyrgyzstan; U+1F1F0 U+1F1EC +🇰🇭 flag: Cambodia; U+1F1F0 U+1F1ED +🇰🇮 flag: Kiribati; U+1F1F0 U+1F1EE +🇰🇲 flag: Comoros; U+1F1F0 U+1F1F2 +🇰🇳 flag: St. Kitts & Nevis; U+1F1F0 U+1F1F3 +🇰🇵 flag: North Korea; U+1F1F0 U+1F1F5 +🇰🇷 flag: South Korea; U+1F1F0 U+1F1F7 +🇰🇼 flag: Kuwait; U+1F1F0 U+1F1FC +🇰🇾 flag: Cayman Islands; U+1F1F0 U+1F1FE +🇰🇿 flag: Kazakhstan; U+1F1F0 U+1F1FF +🇱🇦 flag: Laos; U+1F1F1 U+1F1E6 +🇱🇧 flag: Lebanon; U+1F1F1 U+1F1E7 +🇱🇨 flag: St. Lucia; U+1F1F1 U+1F1E8 +🇱🇮 flag: Liechtenstein; U+1F1F1 U+1F1EE +🇱🇰 flag: Sri Lanka; U+1F1F1 U+1F1F0 +🇱🇷 flag: Liberia; U+1F1F1 U+1F1F7 +🇱🇸 flag: Lesotho; U+1F1F1 U+1F1F8 +🇱🇹 flag: Lithuania; U+1F1F1 U+1F1F9 +🇱🇺 flag: Luxembourg; U+1F1F1 U+1F1FA +🇱🇻 flag: Latvia; U+1F1F1 U+1F1FB +🇱🇾 flag: Libya; U+1F1F1 U+1F1FE +🇲🇦 flag: Morocco; U+1F1F2 U+1F1E6 +🇲🇨 flag: Monaco; U+1F1F2 U+1F1E8 +🇲🇩 flag: Moldova; U+1F1F2 U+1F1E9 +🇲🇪 flag: Montenegro; U+1F1F2 U+1F1EA +🇲🇫 flag: St. Martin; U+1F1F2 U+1F1EB +🇲🇬 flag: Madagascar; U+1F1F2 U+1F1EC +🇲🇭 flag: Marshall Islands; U+1F1F2 U+1F1ED +🇲🇰 flag: Macedonia; U+1F1F2 U+1F1F0 +🇲🇱 flag: Mali; U+1F1F2 U+1F1F1 +🇲🇲 flag: Myanmar (Burma); U+1F1F2 U+1F1F2 +🇲🇳 flag: Mongolia; U+1F1F2 U+1F1F3 +🇲🇴 flag: Macau SAR China; U+1F1F2 U+1F1F4 +🇲🇵 flag: Northern Mariana Islands; U+1F1F2 U+1F1F5 +🇲🇶 flag: Martinique; U+1F1F2 U+1F1F6 +🇲🇷 flag: Mauritania; U+1F1F2 U+1F1F7 +🇲🇸 flag: Montserrat; U+1F1F2 U+1F1F8 +🇲🇹 flag: Malta; U+1F1F2 U+1F1F9 +🇲🇺 flag: Mauritius; U+1F1F2 U+1F1FA +🇲🇻 flag: Maldives; U+1F1F2 U+1F1FB +🇲🇼 flag: Malawi; U+1F1F2 U+1F1FC +🇲🇽 flag: Mexico; U+1F1F2 U+1F1FD +🇲🇾 flag: Malaysia; U+1F1F2 U+1F1FE +🇲🇿 flag: Mozambique; U+1F1F2 U+1F1FF +🇳🇦 flag: Namibia; U+1F1F3 U+1F1E6 +🇳🇨 flag: New Caledonia; U+1F1F3 U+1F1E8 +🇳🇪 flag: Niger; U+1F1F3 U+1F1EA +🇳🇫 flag: Norfolk Island; U+1F1F3 U+1F1EB +🇳🇬 flag: Nigeria; U+1F1F3 U+1F1EC +🇳🇮 flag: Nicaragua; U+1F1F3 U+1F1EE +🇳🇱 flag: Netherlands; U+1F1F3 U+1F1F1 +🇳🇴 flag: Norway; U+1F1F3 U+1F1F4 +🇳🇵 flag: Nepal; U+1F1F3 U+1F1F5 +🇳🇷 flag: Nauru; U+1F1F3 U+1F1F7 +🇳🇺 flag: Niue; U+1F1F3 U+1F1FA +🇳🇿 flag: New Zealand; U+1F1F3 U+1F1FF +🇴🇲 flag: Oman; U+1F1F4 U+1F1F2 +🇵🇦 flag: Panama; U+1F1F5 U+1F1E6 +🇵🇪 flag: Peru; U+1F1F5 U+1F1EA +🇵🇫 flag: French Polynesia; U+1F1F5 U+1F1EB +🇵🇬 flag: Papua New Guinea; U+1F1F5 U+1F1EC +🇵🇭 flag: Philippines; U+1F1F5 U+1F1ED +🇵🇰 flag: Pakistan; U+1F1F5 U+1F1F0 +🇵🇱 flag: Poland; U+1F1F5 U+1F1F1 +🇵🇲 flag: St. Pierre & Miquelon; U+1F1F5 U+1F1F2 +🇵🇳 flag: Pitcairn Islands; U+1F1F5 U+1F1F3 +🇵🇷 flag: Puerto Rico; U+1F1F5 U+1F1F7 +🇵🇸 flag: Palestinian Territories; U+1F1F5 U+1F1F8 +🇵🇹 flag: Portugal; U+1F1F5 U+1F1F9 +🇵🇼 flag: Palau; U+1F1F5 U+1F1FC +🇵🇾 flag: Paraguay; U+1F1F5 U+1F1FE +🇶🇦 flag: Qatar; U+1F1F6 U+1F1E6 +🇷🇪 flag: Réunion; U+1F1F7 U+1F1EA +🇷🇴 flag: Romania; U+1F1F7 U+1F1F4 +🇷🇸 flag: Serbia; U+1F1F7 U+1F1F8 +🇷🇺 flag: Russia; U+1F1F7 U+1F1FA +🇷🇼 flag: Rwanda; U+1F1F7 U+1F1FC +🇸🇦 flag: Saudi Arabia; U+1F1F8 U+1F1E6 +🇸🇧 flag: Solomon Islands; U+1F1F8 U+1F1E7 +🇸🇨 flag: Seychelles; U+1F1F8 U+1F1E8 +🇸🇩 flag: Sudan; U+1F1F8 U+1F1E9 +🇸🇪 flag: Sweden; U+1F1F8 U+1F1EA +🇸🇬 flag: Singapore; U+1F1F8 U+1F1EC +🇸🇭 flag: St. Helena; U+1F1F8 U+1F1ED +🇸🇮 flag: Slovenia; U+1F1F8 U+1F1EE +🇸🇯 flag: Svalbard & Jan Mayen; U+1F1F8 U+1F1EF +🇸🇰 flag: Slovakia; U+1F1F8 U+1F1F0 +🇸🇱 flag: Sierra Leone; U+1F1F8 U+1F1F1 +🇸🇲 flag: San Marino; U+1F1F8 U+1F1F2 +🇸🇳 flag: Senegal; U+1F1F8 U+1F1F3 +🇸🇴 flag: Somalia; U+1F1F8 U+1F1F4 +🇸🇷 flag: Suriname; U+1F1F8 U+1F1F7 +🇸🇸 flag: South Sudan; U+1F1F8 U+1F1F8 +🇸🇹 flag: São Tomé & Príncipe; U+1F1F8 U+1F1F9 +🇸🇻 flag: El Salvador; U+1F1F8 U+1F1FB +🇸🇽 flag: Sint Maarten; U+1F1F8 U+1F1FD +🇸🇾 flag: Syria; U+1F1F8 U+1F1FE +🇸🇿 flag: Swaziland; U+1F1F8 U+1F1FF +🇹🇦 flag: Tristan da Cunha; U+1F1F9 U+1F1E6 +🇹🇨 flag: Turks & Caicos Islands; U+1F1F9 U+1F1E8 +🇹🇩 flag: Chad; U+1F1F9 U+1F1E9 +🇹🇫 flag: French Southern Territories; U+1F1F9 U+1F1EB +🇹🇬 flag: Togo; U+1F1F9 U+1F1EC +🇹🇭 flag: Thailand; U+1F1F9 U+1F1ED +🇹🇯 flag: Tajikistan; U+1F1F9 U+1F1EF +🇹🇰 flag: Tokelau; U+1F1F9 U+1F1F0 +🇹🇱 flag: Timor-Leste; U+1F1F9 U+1F1F1 +🇹🇲 flag: Turkmenistan; U+1F1F9 U+1F1F2 +🇹🇳 flag: Tunisia; U+1F1F9 U+1F1F3 +🇹🇴 flag: Tonga; U+1F1F9 U+1F1F4 +🇹🇷 flag: Turkey; U+1F1F9 U+1F1F7 +🇹🇹 flag: Trinidad & Tobago; U+1F1F9 U+1F1F9 +🇹🇻 flag: Tuvalu; U+1F1F9 U+1F1FB +🇹🇼 flag: Taiwan; U+1F1F9 U+1F1FC +🇹🇿 flag: Tanzania; U+1F1F9 U+1F1FF +🇺🇦 flag: Ukraine; U+1F1FA U+1F1E6 +🇺🇬 flag: Uganda; U+1F1FA U+1F1EC +🇺🇲 flag: U.S. Outlying Islands; U+1F1FA U+1F1F2 +🇺🇳 flag: United Nations; U+1F1FA U+1F1F3 +🇺🇸 flag: United States; U+1F1FA U+1F1F8 +🇺🇾 flag: Uruguay; U+1F1FA U+1F1FE +🇺🇿 flag: Uzbekistan; U+1F1FA U+1F1FF +🇻🇦 flag: Vatican City; U+1F1FB U+1F1E6 +🇻🇨 flag: St. Vincent & Grenadines; U+1F1FB U+1F1E8 +🇻🇪 flag: Venezuela; U+1F1FB U+1F1EA +🇻🇬 flag: British Virgin Islands; U+1F1FB U+1F1EC +🇻🇮 flag: U.S. Virgin Islands; U+1F1FB U+1F1EE +🇻🇳 flag: Vietnam; U+1F1FB U+1F1F3 +🇻🇺 flag: Vanuatu; U+1F1FB U+1F1FA +🇼🇫 flag: Wallis & Futuna; U+1F1FC U+1F1EB +🇼🇸 flag: Samoa; U+1F1FC U+1F1F8 +🇽🇰 flag: Kosovo; U+1F1FD U+1F1F0 +🇾🇪 flag: Yemen; U+1F1FE U+1F1EA +🇾🇹 flag: Mayotte; U+1F1FE U+1F1F9 +🇿🇦 flag: South Africa; U+1F1FF U+1F1E6 +🇿🇲 flag: Zambia; U+1F1FF U+1F1F2 +🇿🇼 flag: Zimbabwe; U+1F1FF U+1F1FC +🏴 flag: England; U+1F3F4 U+E0067 U+E0062 U+E0065 U+E006E U+E0067 U+E007F +🏴 flag: Scotland; U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F +🏴 flag: Wales; U+1F3F4 U+E0067 U+E0062 U+E0077 U+E006C U+E0073 U+E007F diff --git a/dotfiles/.fonts/.uuid b/dotfiles/.fonts/.uuid new file mode 100644 index 0000000..fe2df69 --- /dev/null +++ b/dotfiles/.fonts/.uuid @@ -0,0 +1 @@ +826e4910-7bfe-46d1-9c47-9c65d3a75fdc
\ No newline at end of file diff --git a/dotfiles/.fonts/3270 Semi-Narrow Nerd Font Complete Mono.ttf b/dotfiles/.fonts/3270 Semi-Narrow Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..0c62edd --- /dev/null +++ b/dotfiles/.fonts/3270 Semi-Narrow Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/Anonymice Nerd Font Complete Mono.ttf b/dotfiles/.fonts/Anonymice Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..172c113 --- /dev/null +++ b/dotfiles/.fonts/Anonymice Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/Fantasque Sans Mono Regular Nerd Font Complete Mono.ttf b/dotfiles/.fonts/Fantasque Sans Mono Regular Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..1ba68c6 --- /dev/null +++ b/dotfiles/.fonts/Fantasque Sans Mono Regular Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/Fura Code Regular Nerd Font Complete Mono.ttf b/dotfiles/.fonts/Fura Code Regular Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..9033dbc --- /dev/null +++ b/dotfiles/.fonts/Fura Code Regular Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/Hasklug Black Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Black Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..68ebf8a --- /dev/null +++ b/dotfiles/.fonts/Hasklug Black Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Black Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Black Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..27df2e5 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Black Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Bold Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Bold Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..33424b7 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Bold Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Bold Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Bold Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..5dc6ccb --- /dev/null +++ b/dotfiles/.fonts/Hasklug Bold Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug ExtraLight Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug ExtraLight Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..6df888e --- /dev/null +++ b/dotfiles/.fonts/Hasklug ExtraLight Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug ExtraLight Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug ExtraLight Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..ca3fb41 --- /dev/null +++ b/dotfiles/.fonts/Hasklug ExtraLight Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..22c68c5 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Light Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Light Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..952050a --- /dev/null +++ b/dotfiles/.fonts/Hasklug Light Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Light Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Light Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..607e06b --- /dev/null +++ b/dotfiles/.fonts/Hasklug Light Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Medium Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Medium Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..cb0b6a7 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Medium Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Medium Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Medium Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..d9ffa98 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Medium Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Nerd Font Complete Mono.otf b/dotfiles/.fonts/Hasklug Nerd Font Complete Mono.otf Binary files differnew file mode 100644 index 0000000..6b51271 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Nerd Font Complete Mono.otf diff --git a/dotfiles/.fonts/Hasklug Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..2d41253 --- /dev/null +++ b/dotfiles/.fonts/Hasklug Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Semibold Italic Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Semibold Italic Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..5d1e26b --- /dev/null +++ b/dotfiles/.fonts/Hasklug Semibold Italic Nerd Font Complete.otf diff --git a/dotfiles/.fonts/Hasklug Semibold Nerd Font Complete.otf b/dotfiles/.fonts/Hasklug Semibold Nerd Font Complete.otf Binary files differnew file mode 100644 index 0000000..24398fd --- /dev/null +++ b/dotfiles/.fonts/Hasklug Semibold Nerd Font Complete.otf diff --git a/dotfiles/.fonts/HelveticaNeue BlackCond.ttf b/dotfiles/.fonts/HelveticaNeue BlackCond.ttf Binary files differnew file mode 100644 index 0000000..5c55810 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeue BlackCond.ttf diff --git a/dotfiles/.fonts/HelveticaNeue Bold.ttf b/dotfiles/.fonts/HelveticaNeue Bold.ttf Binary files differnew file mode 100644 index 0000000..9aa746a --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeue Bold.ttf diff --git a/dotfiles/.fonts/HelveticaNeue Light.ttf b/dotfiles/.fonts/HelveticaNeue Light.ttf Binary files differnew file mode 100644 index 0000000..7e9b412 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeue Light.ttf diff --git a/dotfiles/.fonts/HelveticaNeue Medium.ttf b/dotfiles/.fonts/HelveticaNeue Medium.ttf Binary files differnew file mode 100644 index 0000000..373e545 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeue Medium.ttf diff --git a/dotfiles/.fonts/HelveticaNeue Thin.ttf b/dotfiles/.fonts/HelveticaNeue Thin.ttf Binary files differnew file mode 100644 index 0000000..5250b69 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeue Thin.ttf diff --git a/dotfiles/.fonts/HelveticaNeue.ttf b/dotfiles/.fonts/HelveticaNeue.ttf Binary files differnew file mode 100644 index 0000000..db3ad30 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeue.ttf diff --git a/dotfiles/.fonts/HelveticaNeueBd.ttf b/dotfiles/.fonts/HelveticaNeueBd.ttf Binary files differnew file mode 100644 index 0000000..772ab3d --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeueBd.ttf diff --git a/dotfiles/.fonts/HelveticaNeueHv.ttf b/dotfiles/.fonts/HelveticaNeueHv.ttf Binary files differnew file mode 100644 index 0000000..28b1ffc --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeueHv.ttf diff --git a/dotfiles/.fonts/HelveticaNeueIt.ttf b/dotfiles/.fonts/HelveticaNeueIt.ttf Binary files differnew file mode 100644 index 0000000..f0de745 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeueIt.ttf diff --git a/dotfiles/.fonts/HelveticaNeueLt.ttf b/dotfiles/.fonts/HelveticaNeueLt.ttf Binary files differnew file mode 100644 index 0000000..b3f384d --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeueLt.ttf diff --git a/dotfiles/.fonts/HelveticaNeueMed.ttf b/dotfiles/.fonts/HelveticaNeueMed.ttf Binary files differnew file mode 100644 index 0000000..4afb920 --- /dev/null +++ b/dotfiles/.fonts/HelveticaNeueMed.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-Bold.ttf b/dotfiles/.fonts/IBMPlexMono-Bold.ttf Binary files differnew file mode 100644 index 0000000..befdbdc --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-Bold.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-BoldItalic.ttf b/dotfiles/.fonts/IBMPlexMono-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..a70576b --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-BoldItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-ExtraLight.ttf b/dotfiles/.fonts/IBMPlexMono-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..e14a246 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-ExtraLight.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-ExtraLightItalic.ttf b/dotfiles/.fonts/IBMPlexMono-ExtraLightItalic.ttf Binary files differnew file mode 100644 index 0000000..4cc6f6f --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-ExtraLightItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-Italic.ttf b/dotfiles/.fonts/IBMPlexMono-Italic.ttf Binary files differnew file mode 100644 index 0000000..25cc39b --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-Italic.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-Light.ttf b/dotfiles/.fonts/IBMPlexMono-Light.ttf Binary files differnew file mode 100644 index 0000000..7714271 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-Light.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-LightItalic.ttf b/dotfiles/.fonts/IBMPlexMono-LightItalic.ttf Binary files differnew file mode 100644 index 0000000..a734d6f --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-LightItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-Medium.ttf b/dotfiles/.fonts/IBMPlexMono-Medium.ttf Binary files differnew file mode 100644 index 0000000..cd02e15 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-Medium.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-MediumItalic.ttf b/dotfiles/.fonts/IBMPlexMono-MediumItalic.ttf Binary files differnew file mode 100644 index 0000000..593eb16 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-MediumItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-Regular.ttf b/dotfiles/.fonts/IBMPlexMono-Regular.ttf Binary files differnew file mode 100644 index 0000000..f99c8e9 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-Regular.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-SemiBold.ttf b/dotfiles/.fonts/IBMPlexMono-SemiBold.ttf Binary files differnew file mode 100644 index 0000000..e485804 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-SemiBold.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-SemiBoldItalic.ttf b/dotfiles/.fonts/IBMPlexMono-SemiBoldItalic.ttf Binary files differnew file mode 100644 index 0000000..1914629 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-SemiBoldItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-Thin.ttf b/dotfiles/.fonts/IBMPlexMono-Thin.ttf Binary files differnew file mode 100644 index 0000000..3d5cc2a --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-Thin.ttf diff --git a/dotfiles/.fonts/IBMPlexMono-ThinItalic.ttf b/dotfiles/.fonts/IBMPlexMono-ThinItalic.ttf Binary files differnew file mode 100644 index 0000000..fdb3882 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexMono-ThinItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-Bold.ttf b/dotfiles/.fonts/IBMPlexSans-Bold.ttf Binary files differnew file mode 100644 index 0000000..28cd4a2 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-Bold.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-BoldItalic.ttf b/dotfiles/.fonts/IBMPlexSans-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..147dd86 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-BoldItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-ExtraLight.ttf b/dotfiles/.fonts/IBMPlexSans-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..fc8f4d3 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-ExtraLight.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-ExtraLightItalic.ttf b/dotfiles/.fonts/IBMPlexSans-ExtraLightItalic.ttf Binary files differnew file mode 100644 index 0000000..705035c --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-ExtraLightItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-Italic.ttf b/dotfiles/.fonts/IBMPlexSans-Italic.ttf Binary files differnew file mode 100644 index 0000000..044173e --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-Italic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-Light.ttf b/dotfiles/.fonts/IBMPlexSans-Light.ttf Binary files differnew file mode 100644 index 0000000..761e3b7 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-Light.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-LightItalic.ttf b/dotfiles/.fonts/IBMPlexSans-LightItalic.ttf Binary files differnew file mode 100644 index 0000000..bc3b594 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-LightItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-Medium.ttf b/dotfiles/.fonts/IBMPlexSans-Medium.ttf Binary files differnew file mode 100644 index 0000000..e7b9e78 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-Medium.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-MediumItalic.ttf b/dotfiles/.fonts/IBMPlexSans-MediumItalic.ttf Binary files differnew file mode 100644 index 0000000..894f39e --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-MediumItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-Regular.ttf b/dotfiles/.fonts/IBMPlexSans-Regular.ttf Binary files differnew file mode 100644 index 0000000..b43625f --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-Regular.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-SemiBold.ttf b/dotfiles/.fonts/IBMPlexSans-SemiBold.ttf Binary files differnew file mode 100644 index 0000000..c12eded --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-SemiBold.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-SemiBoldItalic.ttf b/dotfiles/.fonts/IBMPlexSans-SemiBoldItalic.ttf Binary files differnew file mode 100644 index 0000000..1195d71 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-SemiBoldItalic.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-Thin.ttf b/dotfiles/.fonts/IBMPlexSans-Thin.ttf Binary files differnew file mode 100644 index 0000000..1dcfac7 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-Thin.ttf diff --git a/dotfiles/.fonts/IBMPlexSans-ThinItalic.ttf b/dotfiles/.fonts/IBMPlexSans-ThinItalic.ttf Binary files differnew file mode 100644 index 0000000..6c84ed2 --- /dev/null +++ b/dotfiles/.fonts/IBMPlexSans-ThinItalic.ttf diff --git a/dotfiles/.fonts/Inconsolata Nerd Font Complete Mono.otf b/dotfiles/.fonts/Inconsolata Nerd Font Complete Mono.otf Binary files differnew file mode 100644 index 0000000..922d42c --- /dev/null +++ b/dotfiles/.fonts/Inconsolata Nerd Font Complete Mono.otf diff --git a/dotfiles/.fonts/Monoid Regular Nerd Font Complete Mono.ttf b/dotfiles/.fonts/Monoid Regular Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..a15b766 --- /dev/null +++ b/dotfiles/.fonts/Monoid Regular Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/Monoisome-Regular.ttf b/dotfiles/.fonts/Monoisome-Regular.ttf Binary files differnew file mode 100644 index 0000000..c813171 --- /dev/null +++ b/dotfiles/.fonts/Monoisome-Regular.ttf diff --git a/dotfiles/.fonts/ProFont IIx Nerd Font Complete Mono.ttf b/dotfiles/.fonts/ProFont IIx Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..3ae1e25 --- /dev/null +++ b/dotfiles/.fonts/ProFont IIx Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/RussoOne-Regular.ttf b/dotfiles/.fonts/RussoOne-Regular.ttf Binary files differnew file mode 100644 index 0000000..ba83727 --- /dev/null +++ b/dotfiles/.fonts/RussoOne-Regular.ttf diff --git a/dotfiles/.fonts/Space Mono Nerd Font Complete Mono.ttf b/dotfiles/.fonts/Space Mono Nerd Font Complete Mono.ttf Binary files differnew file mode 100644 index 0000000..9c8b2b5 --- /dev/null +++ b/dotfiles/.fonts/Space Mono Nerd Font Complete Mono.ttf diff --git a/dotfiles/.fonts/SpaceMono-Bold.ttf b/dotfiles/.fonts/SpaceMono-Bold.ttf Binary files differnew file mode 100644 index 0000000..4acd36a --- /dev/null +++ b/dotfiles/.fonts/SpaceMono-Bold.ttf diff --git a/dotfiles/.fonts/SpaceMono-BoldItalic.ttf b/dotfiles/.fonts/SpaceMono-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..0702475 --- /dev/null +++ b/dotfiles/.fonts/SpaceMono-BoldItalic.ttf diff --git a/dotfiles/.fonts/SpaceMono-Italic.ttf b/dotfiles/.fonts/SpaceMono-Italic.ttf Binary files differnew file mode 100644 index 0000000..8799738 --- /dev/null +++ b/dotfiles/.fonts/SpaceMono-Italic.ttf diff --git a/dotfiles/.fonts/SpaceMono-Regular.ttf b/dotfiles/.fonts/SpaceMono-Regular.ttf Binary files differnew file mode 100644 index 0000000..28d7ff7 --- /dev/null +++ b/dotfiles/.fonts/SpaceMono-Regular.ttf diff --git a/dotfiles/.fonts/icomoon.ttf b/dotfiles/.fonts/icomoon.ttf Binary files differnew file mode 100644 index 0000000..736b689 --- /dev/null +++ b/dotfiles/.fonts/icomoon.ttf diff --git a/dotfiles/.profile b/dotfiles/.profile new file mode 100644 index 0000000..b485088 --- /dev/null +++ b/dotfiles/.profile @@ -0,0 +1,15 @@ +#!/bin/sh + +[[ -f ~/.bashrc ]] && source ~/.bashrc + +if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then + .scripts/swaystart +fi + +export SCROT_DIR=$HOME/Pictures/screenshots/ +export QT_QPA_PLATFORMTHEME="qt5ct" +export BROWSER=qutebrowser + +# User specific environment and startup programs: +export LANG=en_US.UTF-8 +export TERM=termite diff --git a/dotfiles/.scripts/activenv b/dotfiles/.scripts/activenv new file mode 100755 index 0000000..6ffac10 --- /dev/null +++ b/dotfiles/.scripts/activenv @@ -0,0 +1,3 @@ +#!/bin/bash + +source ~/Documents/venvs/$1/bin/activate diff --git a/dotfiles/.scripts/camtoggle b/dotfiles/.scripts/camtoggle new file mode 100755 index 0000000..ba8b0d3 --- /dev/null +++ b/dotfiles/.scripts/camtoggle @@ -0,0 +1,3 @@ +#!/bin/sh + +pkill -f /dev/video || mpv --gpu-context=wayland --no-osc --no-input-default-bindings --input-conf=/dev/null --geometry=-0-0 --autofit=30% --title="mpvfloat" /dev/video2 diff --git a/dotfiles/.scripts/changeoutput b/dotfiles/.scripts/changeoutput new file mode 100755 index 0000000..eab2cf9 --- /dev/null +++ b/dotfiles/.scripts/changeoutput @@ -0,0 +1,18 @@ +#!/bin/sh + +if [ -z "$1" ]; then + echo "Usage: $0 <sinkId/sinkName>" >&2 + echo "Valid sinks:" >&2 + pactl list short sinks >&2 + exit 1 +fi + +newSink="$1" + +pactl list short sink-inputs|while read stream; do + streamId=$(echo $stream|cut '-d ' -f1) + echo "moving stream $streamId" + pactl move-sink-input "$streamId" "$newSink" +done + +pactl set-default-sink $newSink diff --git a/dotfiles/.scripts/ddquakemite b/dotfiles/.scripts/ddquakemite new file mode 100755 index 0000000..16855f4 --- /dev/null +++ b/dotfiles/.scripts/ddquakemite @@ -0,0 +1,12 @@ +#!/bin/sh + +if ! [ -z $(swaymsg -t get_tree | grep 'quakemite') ]; then + if [ -z $(swaymsg -t get_tree | grep -A 42 'quakemite' | tail -n 1 | grep 'true') ]; then + swaymsg '[title="quakemite"] scratchpad show' + else + swaymsg '[title="quakemite"] move scratchpad' + fi +else + $TERMINAL -t "quakemite" -e "$SHELL -c 'TERM=st; TERMINAL=termite; tmux a || tmux'" +fi + diff --git a/dotfiles/.scripts/ddtelegram b/dotfiles/.scripts/ddtelegram new file mode 100755 index 0000000..8ddff22 --- /dev/null +++ b/dotfiles/.scripts/ddtelegram @@ -0,0 +1,12 @@ +#!/bin/sh + +if pidof telegram-desktop > /dev/null; then + if [ -z $(swaymsg -t get_tree | grep -A 1 'telegramdesktop' | tail -n 1 | grep 'true') ]; then + swaymsg '[app_id="telegramdesktop"] scratchpad show' + else + swaymsg '[app_id="telegramdesktop"] move scratchpad' + fi +else + telegram-desktop +fi + diff --git a/dotfiles/.scripts/ddvk b/dotfiles/.scripts/ddvk new file mode 100755 index 0000000..dedd2c9 --- /dev/null +++ b/dotfiles/.scripts/ddvk @@ -0,0 +1,12 @@ +#!/bin/sh + +if pidof vk > /dev/null; then + if [ -z $(swaymsg -t get_tree | grep -B 5 'vk' | head -n 1 | grep 'true') ]; then + swaymsg '[instance="vk"] scratchpad show' + else + swaymsg '[instance="vk"] move scratchpad' + fi +else + xway vk-messenger +fi + diff --git a/dotfiles/.scripts/git-prompt b/dotfiles/.scripts/git-prompt new file mode 100755 index 0000000..048d2d7 --- /dev/null +++ b/dotfiles/.scripts/git-prompt @@ -0,0 +1,484 @@ +# bash/zsh git prompt support +# +# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> +# Distributed under the GNU General Public License, version 2.0. +# +# This script allows you to see repository status in your prompt. +# +# To enable: +# +# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). +# 2) Add the following line to your .bashrc/.zshrc: +# source ~/.git-prompt.sh +# 3a) Change your PS1 to call __git_ps1 as +# command-substitution: +# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' +# ZSH: setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ ' +# the optional argument will be used as format string. +# 3b) Alternatively, for a slightly faster prompt, __git_ps1 can +# be used for PROMPT_COMMAND in Bash or for precmd() in Zsh +# with two parameters, <pre> and <post>, which are strings +# you would put in $PS1 before and after the status string +# generated by the git-prompt machinery. e.g. +# Bash: PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "' +# will show username, at-sign, host, colon, cwd, then +# various status string, followed by dollar and SP, as +# your prompt. +# ZSH: precmd () { __git_ps1 "%n" ":%~$ " "|%s" } +# will show username, pipe, then various status string, +# followed by colon, cwd, dollar and SP, as your prompt. +# Optionally, you can supply a third argument with a printf +# format string to finetune the output of the branch status +# +# The repository status will be displayed only if you are currently in a +# git repository. The %s token is the placeholder for the shown status. +# +# The prompt status always includes the current branch name. +# +# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty value, +# unstaged (*) and staged (+) changes will be shown next to the branch +# name. You can configure this per-repository with the +# bash.showDirtyState variable, which defaults to true once +# GIT_PS1_SHOWDIRTYSTATE is enabled. +# +# You can also see if currently something is stashed, by setting +# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed, +# then a '$' will be shown next to the branch name. +# +# If you would like to see if there're untracked files, then you can set +# GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're untracked +# files, then a '%' will be shown next to the branch name. You can +# configure this per-repository with the bash.showUntrackedFiles +# variable, which defaults to true once GIT_PS1_SHOWUNTRACKEDFILES is +# enabled. +# +# If you would like to see the difference between HEAD and its upstream, +# set GIT_PS1_SHOWUPSTREAM="auto". A "<" indicates you are behind, ">" +# indicates you are ahead, "<>" indicates you have diverged and "=" +# indicates that there is no difference. You can further control +# behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated list +# of values: +# +# verbose show number of commits ahead/behind (+/-) upstream +# name if verbose, then also show the upstream abbrev name +# legacy don't use the '--count' option available in recent +# versions of git-rev-list +# git always compare HEAD to @{upstream} +# svn always compare HEAD to your SVN upstream +# +# By default, __git_ps1 will compare HEAD to your SVN upstream if it can +# find one, or @{upstream} otherwise. Once you have set +# GIT_PS1_SHOWUPSTREAM, you can override it on a per-repository basis by +# setting the bash.showUpstream config variable. +# +# If you would like to see more information about the identity of +# commits checked out as a detached HEAD, set GIT_PS1_DESCRIBE_STYLE +# to one of these values: +# +# contains relative to newer annotated tag (v1.6.3.2~35) +# branch relative to newer tag or branch (master~4) +# describe relative to older annotated tag (v1.6.3.1-13-gdd42c2f) +# default exactly matching tag +# +# If you would like a colored hint about the current dirty state, set +# GIT_PS1_SHOWCOLORHINTS to a nonempty value. The colors are based on +# the colored output of "git status -sb" and are available only when +# using __git_ps1 for PROMPT_COMMAND or precmd. + +# check whether printf supports -v +__git_printf_supports_v= +printf -v __git_printf_supports_v -- '%s' yes >/dev/null 2>&1 + +# stores the divergence from upstream in $p +# used by GIT_PS1_SHOWUPSTREAM +__git_ps1_show_upstream () +{ + local key value + local svn_remote svn_url_pattern count n + local upstream=git legacy="" verbose="" name="" + + svn_remote=() + # get some config options from git-config + local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')" + while read -r key value; do + case "$key" in + bash.showupstream) + GIT_PS1_SHOWUPSTREAM="$value" + if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then + p="" + return + fi + ;; + svn-remote.*.url) + svn_remote[$((${#svn_remote[@]} + 1))]="$value" + svn_url_pattern="$svn_url_pattern\\|$value" + upstream=svn+git # default upstream is SVN if available, else git + ;; + esac + done <<< "$output" + + # parse configuration values + for option in ${GIT_PS1_SHOWUPSTREAM}; do + case "$option" in + git|svn) upstream="$option" ;; + verbose) verbose=1 ;; + legacy) legacy=1 ;; + name) name=1 ;; + esac + done + + # Find our upstream + case "$upstream" in + git) upstream="@{upstream}" ;; + svn*) + # get the upstream from the "git-svn-id: ..." in a commit message + # (git-svn uses essentially the same procedure internally) + local -a svn_upstream + svn_upstream=($(git log --first-parent -1 \ + --grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null)) + if [[ 0 -ne ${#svn_upstream[@]} ]]; then + svn_upstream=${svn_upstream[${#svn_upstream[@]} - 2]} + svn_upstream=${svn_upstream%@*} + local n_stop="${#svn_remote[@]}" + for ((n=1; n <= n_stop; n++)); do + svn_upstream=${svn_upstream#${svn_remote[$n]}} + done + + if [[ -z "$svn_upstream" ]]; then + # default branch name for checkouts with no layout: + upstream=${GIT_SVN_ID:-git-svn} + else + upstream=${svn_upstream#/} + fi + elif [[ "svn+git" = "$upstream" ]]; then + upstream="@{upstream}" + fi + ;; + esac + + # Find how many commits we are ahead/behind our upstream + if [[ -z "$legacy" ]]; then + count="$(git rev-list --count --left-right \ + "$upstream"...HEAD 2>/dev/null)" + else + # produce equivalent output to --count for older versions of git + local commits + if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)" + then + local commit behind=0 ahead=0 + for commit in $commits + do + case "$commit" in + "<"*) ((behind++)) ;; + *) ((ahead++)) ;; + esac + done + count="$behind $ahead" + else + count="" + fi + fi + + # calculate the result + if [[ -z "$verbose" ]]; then + case "$count" in + "") # no upstream + p="" ;; + "0 0") # equal to upstream + p="=" ;; + "0 "*) # ahead of upstream + p=">" ;; + *" 0") # behind upstream + p="<" ;; + *) # diverged from upstream + p="<>" ;; + esac + else + case "$count" in + "") # no upstream + p="" ;; + "0 0") # equal to upstream + p=" u=" ;; + "0 "*) # ahead of upstream + p=" u+${count#0 }" ;; + *" 0") # behind upstream + p=" u-${count% 0}" ;; + *) # diverged from upstream + p=" u+${count#* }-${count% *}" ;; + esac + if [[ -n "$count" && -n "$name" ]]; then + __git_ps1_upstream_name=$(git rev-parse \ + --abbrev-ref "$upstream" 2>/dev/null) + if [ $pcmode = yes ]; then + # see the comments around the + # __git_ps1_branch_name variable below + p="$p \${__git_ps1_upstream_name}" + else + p="$p ${__git_ps1_upstream_name}" + # not needed anymore; keep user's + # environment clean + unset __git_ps1_upstream_name + fi + fi + fi + +} + +# Helper function that is meant to be called from __git_ps1. It +# injects color codes into the appropriate gitstring variables used +# to build a gitstring. +__git_ps1_colorize_gitstring () +{ + if [[ -n ${ZSH_VERSION-} ]]; then + local c_red='%F{red}' + local c_green='%F{green}' + local c_lblue='%F{blue}' + local c_clear='%f' + else + # Using \[ and \] around colors is necessary to prevent + # issues with command line editing/browsing/completion! + local c_red='\[\e[31m\]' + local c_green='\[\e[32m\]' + local c_lblue='\[\e[1;34m\]' + local c_clear='\[\e[0m\]' + fi + local bad_color=$c_red + local ok_color=$c_green + local flags_color="$c_lblue" + + local branch_color="" + if [ $detached = no ]; then + branch_color="$ok_color" + else + branch_color="$bad_color" + fi + c="$branch_color$c" + + z="$c_clear$z" + if [ "$w" = "*" ]; then + w="$bad_color$w" + fi + if [ -n "$i" ]; then + i="$ok_color$i" + fi + if [ -n "$s" ]; then + s="$flags_color$s" + fi + if [ -n "$u" ]; then + u="$bad_color$u" + fi + r="$c_clear$r" +} + +# __git_ps1 accepts 0 or 1 arguments (i.e., format string) +# when called from PS1 using command substitution +# in this mode it prints text to add to bash PS1 prompt (includes branch name) +# +# __git_ps1 requires 2 or 3 arguments when called from PROMPT_COMMAND (pc) +# in that case it _sets_ PS1. The arguments are parts of a PS1 string. +# when two arguments are given, the first is prepended and the second appended +# to the state string when assigned to PS1. +# The optional third parameter will be used as printf format string to further +# customize the output of the git-status string. +# In this mode you can request colored hints using GIT_PS1_SHOWCOLORHINTS=true +__git_ps1 () +{ + local pcmode=no + local detached=no + local ps1pc_start='\u@\h:\w ' + local ps1pc_end='\$ ' + local printf_format=' %s ' + + case "$#" in + 2|3) pcmode=yes + ps1pc_start="$1" + ps1pc_end="$2" + printf_format="${3:-$printf_format}" + ;; + 0|1) printf_format="${1:-$printf_format}" + ;; + *) return + ;; + esac + + local repo_info rev_parse_exit_code + repo_info="$(git rev-parse --git-dir --is-inside-git-dir \ + --is-bare-repository --is-inside-work-tree \ + --short HEAD 2>/dev/null)" + rev_parse_exit_code="$?" + + if [ -z "$repo_info" ]; then + if [ $pcmode = yes ]; then + #In PC mode PS1 always needs to be set + PS1="$ps1pc_start$ps1pc_end" + fi + return + fi + + local short_sha + if [ "$rev_parse_exit_code" = "0" ]; then + short_sha="${repo_info##*$'\n'}" + repo_info="${repo_info%$'\n'*}" + fi + local inside_worktree="${repo_info##*$'\n'}" + repo_info="${repo_info%$'\n'*}" + local bare_repo="${repo_info##*$'\n'}" + repo_info="${repo_info%$'\n'*}" + local inside_gitdir="${repo_info##*$'\n'}" + local g="${repo_info%$'\n'*}" + + local r="" + local b="" + local step="" + local total="" + if [ -d "$g/rebase-merge" ]; then + read b 2>/dev/null <"$g/rebase-merge/head-name" + read step 2>/dev/null <"$g/rebase-merge/msgnum" + read total 2>/dev/null <"$g/rebase-merge/end" + if [ -f "$g/rebase-merge/interactive" ]; then + r="|REBASE-i" + else + r="|REBASE-m" + fi + else + if [ -d "$g/rebase-apply" ]; then + read step 2>/dev/null <"$g/rebase-apply/next" + read total 2>/dev/null <"$g/rebase-apply/last" + if [ -f "$g/rebase-apply/rebasing" ]; then + read b 2>/dev/null <"$g/rebase-apply/head-name" + r="|REBASE" + elif [ -f "$g/rebase-apply/applying" ]; then + r="|AM" + else + r="|AM/REBASE" + fi + elif [ -f "$g/MERGE_HEAD" ]; then + r="|MERGING" + elif [ -f "$g/CHERRY_PICK_HEAD" ]; then + r="|CHERRY-PICKING" + elif [ -f "$g/REVERT_HEAD" ]; then + r="|REVERTING" + elif [ -f "$g/BISECT_LOG" ]; then + r="|BISECTING" + fi + + if [ -n "$b" ]; then + : + elif [ -h "$g/HEAD" ]; then + # symlink symbolic ref + b="$(git symbolic-ref HEAD 2>/dev/null)" + else + local head="" + if ! read head 2>/dev/null <"$g/HEAD"; then + if [ $pcmode = yes ]; then + PS1="$ps1pc_start$ps1pc_end" + fi + return + fi + # is it a symbolic ref? + b="${head#ref: }" + if [ "$head" = "$b" ]; then + detached=yes + b="$( + case "${GIT_PS1_DESCRIBE_STYLE-}" in + (contains) + git describe --contains HEAD ;; + (branch) + git describe --contains --all HEAD ;; + (describe) + git describe HEAD ;; + (* | default) + git describe --tags --exact-match HEAD ;; + esac 2>/dev/null)" || + + b="$short_sha..." + b="($b)" + fi + fi + fi + + if [ -n "$step" ] && [ -n "$total" ]; then + r="$r $step/$total" + fi + + local w="" + local i="" + local s="" + local u="" + local c="" + local p="" + + if [ "true" = "$inside_gitdir" ]; then + if [ "true" = "$bare_repo" ]; then + c="BARE:" + else + b="GIT_DIR!" + fi + elif [ "true" = "$inside_worktree" ]; then + if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ] && + [ "$(git config --bool bash.showDirtyState)" != "false" ] + then + git diff --no-ext-diff --quiet --exit-code || w="*" + if [ -n "$short_sha" ]; then + git diff-index --cached --quiet HEAD -- || i="+" + else + i="#" + fi + fi + if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ] && + [ -r "$g/refs/stash" ]; then + s="$" + fi + + if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ] && + [ "$(git config --bool bash.showUntrackedFiles)" != "false" ] && + git ls-files --others --exclude-standard --error-unmatch -- '*' >/dev/null 2>/dev/null + then + u="%${ZSH_VERSION+%}" + fi + + if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then + __git_ps1_show_upstream + fi + fi + + local z="${GIT_PS1_STATESEPARATOR-" "}" + + # NO color option unless in PROMPT_COMMAND mode + if [ $pcmode = yes ] && [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then + __git_ps1_colorize_gitstring + fi + + b=${b##refs/heads/} + if [ $pcmode = yes ]; then + # In pcmode (and only pcmode) the contents of + # $gitstring are subject to expansion by the shell. + # Avoid putting the raw ref name in the prompt to + # protect the user from arbitrary code execution via + # specially crafted ref names (e.g., a ref named + # '$(IFS=_;cmd=sudo_rm_-rf_/;$cmd)' would execute + # 'sudo rm -rf /' when the prompt is drawn). Instead, + # put the ref name in a new global variable (in the + # __git_ps1_* namespace to avoid colliding with the + # user's environment) and reference that variable from + # PS1. + __git_ps1_branch_name=$b + # note that the $ is escaped -- the variable will be + # expanded later (when it's time to draw the prompt) + b="\${__git_ps1_branch_name}" + fi + + local f="$w$i$s$u" + local gitstring="$c$b${f:+$z$f}$r$p" + + if [ $pcmode = yes ]; then + if [ "${__git_printf_supports_v-}" != yes ]; then + gitstring=$(printf -- "$printf_format" "$gitstring") + else + printf -v gitstring -- "$printf_format" "$gitstring" + fi + PS1="$ps1pc_start$gitstring$ps1pc_end" + else + printf -- "$printf_format" "$gitstring" + fi +} diff --git a/dotfiles/.scripts/i3barbattery b/dotfiles/.scripts/i3barbattery new file mode 100755 index 0000000..edc89c3 --- /dev/null +++ b/dotfiles/.scripts/i3barbattery @@ -0,0 +1,34 @@ +#!/bin/sh +# Taken from Luke Smith's rice +# Takes battery name as an argument (e.g. BAT0) + +case $BLOCK_BUTTON in + 3) notify-send "🔋 Battery module" "🔋: discharging +🛑: not charging +♻: stagnant charge +🔌: charging +⚡: charged +❗: battery very low! +- Text color reflects charge left" ;; +esac + +capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit +status=$(cat /sys/class/power_supply/"$1"/status) + +if [ "$capacity" -ge 75 ]; then + color="#689d6a" +elif [ "$capacity" -ge 50 ]; then + color="#ffffff" +elif [ "$capacity" -ge 25 ]; then + color="#ffff00" +else + color="#ff0000" + warn="❗" +fi + +[ -z $warn ] && warn=" " + +[ "$status" = "Charging" ] && color="#ffffff" + +printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//;s/Discharging/🔋/;s/Not Charging/🛑/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')" + diff --git a/dotfiles/.scripts/i3barmusic b/dotfiles/.scripts/i3barmusic new file mode 100755 index 0000000..5647a81 --- /dev/null +++ b/dotfiles/.scripts/i3barmusic @@ -0,0 +1,18 @@ +#!/bin/sh + +filter() { + sed "/^volume:/d" | tac | sed -e "s/\\&/&/g;s/\\[paused\\].*/<span color=\"gray\" font_style=\"italic\">/g;s/\\[playing\\].*/<span>/g" | tr -d '\n' | sed -e "s/$/<\\/span>/g" + } + +case $BLOCK_BUTTON in + 1) mpc toggle | filter ;; + 2) mpc status | filter && setsid "$TERMINAL" -e ncmpcpp & ;; + 3) mpc status | filter && notify-send "🎵 Music module" "\- Shows mpd song playing. +- Italic when paused. +- Left click opens ncmpcpp. +- Middle click pauses. +- Scroll changes track.";; # right click, pause/unpause + 4) mpc prev | filter ;; # scroll up, previous + 5) mpc next | filter ;; # scroll down, next + *) mpc status | filter ;; +esac; exit diff --git a/dotfiles/.scripts/i3barweather b/dotfiles/.scripts/i3barweather new file mode 100755 index 0000000..5084688 --- /dev/null +++ b/dotfiles/.scripts/i3barweather @@ -0,0 +1,18 @@ +#!/bin/bash + +location="Saint Petersburg" + +if [[ "$location" != "" ]] +then + location="~${location// /+}" +fi + +forecast=$(curl -s wttr.in/$location?format=2) + +if [[ ${#forecast} -gt 30 ]] +then + exit +fi + +echo $forecast + diff --git a/dotfiles/.scripts/i3session b/dotfiles/.scripts/i3session new file mode 100755 index 0000000..17f99ca --- /dev/null +++ b/dotfiles/.scripts/i3session @@ -0,0 +1,35 @@ +#!/bin/sh +# /usr/bin/i3exit + +# on void just sudo +[[ $(cat /proc/1/comm) == "systemd" ]] && logind=systemctl || logind=loginctl + +case "$1" in + lock) + lock-color + ;; + logout) + swaymsg exit + ;; + switch_user) + dm-tool switch-to-greeter + ;; + suspend) + lock-color & sleep 1 && $logind suspend + ;; + hibernate) + lock-color & sleep 1 && $logind hibernate + ;; + reboot) + $logind reboot + ;; + shutdown) + $logind poweroff + ;; + *) + echo "== ! i3exit: missing or invalid argument ! ==" + echo "Try again with: lock | logout | switch_user | suspend | hibernate | reboot | shutdown" + exit 2 +esac + +exit 0 diff --git a/dotfiles/.scripts/linkhandler b/dotfiles/.scripts/linkhandler new file mode 100755 index 0000000..c616d04 --- /dev/null +++ b/dotfiles/.scripts/linkhandler @@ -0,0 +1,22 @@ +#!/bin/sh + +# Feed script a url or file location. +# If an image, it will view in sxiv, +# if a video or gif, it will view in mpv +# if a music file or pdf, it will download, +# otherwise it opens link in browser. + +# If no url given. Opens browser. For using script as $BROWSER. +[ -z "$1" ] && { "$BROWSER"; exit; } + +case "$1" in + *mkv|*webm|*mp4|*youtube.com*|*youtu.be*|*hooktube.com*|*bitchute.com*) + setsid mpv --input-ipc-server=/tmp/mpvsoc$(date +%s) -quiet "$1" >/dev/null 2>&1 & ;; + *png|*jpg|*jpe|*jpeg|*gif) + curl -sL "$1" > "/tmp/$(echo "$1" | sed "s/.*\///")" && sxiv -a "/tmp/$(echo "$1" | sed "s/.*\///")" >/dev/null 2>&1 & ;; + *mp3|*flac|*opus|*mp3?source*) + setsid tsp curl -LO "$1" >/dev/null 2>&1 & ;; + *) + if [ -f "$1" ]; then "$TERMINAL" -e "$EDITOR $1" + else setsid "$BROWSER" "$1" >/dev/null 2>&1 & fi ;; +esac diff --git a/dotfiles/.scripts/listsinks b/dotfiles/.scripts/listsinks new file mode 100755 index 0000000..d76e3e2 --- /dev/null +++ b/dotfiles/.scripts/listsinks @@ -0,0 +1,3 @@ +#!/bin/sh + +pactl list short sinks | awk '{ print $2 }' diff --git a/dotfiles/.scripts/lmc b/dotfiles/.scripts/lmc new file mode 100755 index 0000000..16d04db --- /dev/null +++ b/dotfiles/.scripts/lmc @@ -0,0 +1,20 @@ +#!/bin/sh + +case "$1" in + "up") pamixer --allow-boost -i "$2" || amixer sset Master 2%+ ;; + "down") pamixer --allow-boost -d "$2" || amixer sset Master 2%- ;; + "mute") pamixer --allow-boost -t || amixer sset Master toggle ;; + "truemute") pamixer --allow-boost -m || amixer sset Master mute ;; + "toggle") mpc toggle ; $newmpd ;; + "pause") mpc pause ; $newmpd ;; + "forward") mpc seek +"$2" ; $newmpd ;; + "back") mpc seek -"$2" ; $newmpd ;; + "next") mpc next ; $newmpd ;; + "prev") mpc prev ; $newmpd ;; + "replay") mpc seek 0% ; $newmpd ;; +esac + +kill -44 $(pgrep -x i3blocks) +kill -45 $(pgrep -x i3blocks) + +exit diff --git a/dotfiles/.scripts/lock-color b/dotfiles/.scripts/lock-color new file mode 100755 index 0000000..445d779 --- /dev/null +++ b/dotfiles/.scripts/lock-color @@ -0,0 +1,86 @@ +#!/bin/sh + +#B='#00000000' # blank +#C='#ffffff22' # clear ish +#D='#b58900ff' # default +#T='#fcbd00dd' # text +#W='#880000bb' # wrong +#V='#fcbd00dd' # verifying + +B='#00000000' # blank +C='#ffffff22' # clear ish +D='#ffffffff' # default +T='#dac99dff' # text +W='#880000bb' # wrong +V='#023982dd' # verifying +# Approximate timeout rate in milliseconds (checked every 5 seconds). +timeout="30000" + + +if [ "$(ps cax | grep sway)" ]; then + swaylock & + + swayidle timeout 15 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' & + + while [ "$(pgrep -x swaylock)" ] + do + sleep 1 + done + + pkill -n swayidle + exit +fi +# Take a screenshot: +#scrot /tmp/screen.png + +#cp ~/.config/wall.png /tmp/screen.png +# Create a blur on the shot: +#convert /tmp/screen.png -paint 1 -swirl 360 /tmp/screen.png +#convert /tmp/screen.png -brightness-contrast -20,-20 -paint 1 -noise 0x8 -blur 9,9 /tmp/screen.png + +i3lock \ + --layoutcolor=$T \ + --timecolor=$T \ + --datecolor=$T \ + --verifcolor=$T \ + --wrongcolor=$W \ + --keyhlcolor=$V \ + --insidecolor=$B \ + --ringcolor=$T \ + --linecolor=$B \ + --separatorcolor=$D \ + --insidecolor=$B \ + --insidewrongcolor=$B \ + --insidevercolor=$B \ + --color=#000000 \ + --clock \ + --radius=150 \ + --ring-width=5 \ + --timestr="%H:%M:%S" \ + --datestr="%A %e, %b %Y" \ + --veriftext="Verifying..." \ + --wrongtext="Nope!" \ + --noinputtext="BLANK" \ + --time-font=furacodenerdfontmono \ + --date-font=ibmplexsans \ + --timesize=45 \ + --datesize=24 \ + +# If still locked after $timeout milliseconds, turn off screen. +while [ "$(pgrep -x i3lock)" ] +do + if [ $timeout -lt $(xssstate -i) ] + then + xset dpms force off + fi + sleep 1 +done + +# --blur 7 \ +# --keylayout 2 \ +# --textsize=20 +# --modsize=10 +# --timefont=comic-sans +# --datefont=monofur +# etc + diff --git a/dotfiles/.scripts/mailcheck b/dotfiles/.scripts/mailcheck new file mode 100755 index 0000000..bf49de9 --- /dev/null +++ b/dotfiles/.scripts/mailcheck @@ -0,0 +1,35 @@ +#!/bin/sh +# Sync mail and give notification if there is new mail. + +# Run only if user logged in (prevent cron errors) +w | grep "^$USER\W" >/dev/null || exit + +# Checks for internet connection and set notification script. +ping -q -c 1 1.1.1.1 > /dev/null || exit +command -v notify-send >/dev/null || echo "Note that \`libnotify\` or \`libnotify-send\` should be installed for pop-up mail notifications with this script." + +export DISPLAY=:0.0 + +notify() { + notify-send "📬 Email" "$2 new mail(s) in \`$1\` account." + mplayer $HOME/.soundalerts/mail.mp3 +} + +# Run mbsync. You can feed this script different settings. +if [ $# -eq 0 ]; then + mbsync -a +else + mbsync "$@" +fi + +# Check all accounts/mailboxes for new mail. Notify if there is new content. +for account in "$HOME/.local/share/mail/"* +do + acc="$(echo "$account" | sed "s/.*\///")" + newcount=$(find "$HOME/.local/share/mail/$acc/INBOX/new/" "$HOME/.local/share/mail/$acc/Inbox/new/" "$HOME/.local/share/mail/$acc/inbox/new/" -type f -newer "$HOME/.config/mutt/.mailsynclastrun" 2> /dev/null | wc -l) + [ "$newcount" -gt "0" ] && notify "$acc" "$newcount" & +done +notmuch new 2>/dev/null + +#Create a touch file that indicates the time of the last run of mailsync +touch "$HOME/.config/mutt/.mailsynclastrun" diff --git a/dotfiles/.scripts/mako_launch b/dotfiles/.scripts/mako_launch new file mode 100755 index 0000000..7ee10cc --- /dev/null +++ b/dotfiles/.scripts/mako_launch @@ -0,0 +1,9 @@ +#!/bin/sh + +# Terminate already running mako instance +killall -q mako + +# Wait until the processes have been shut down +while pgrep -u $UID -x mako >/dev/null; do sleep 1; done + +mako --background-color "#1a1a1acc" --border-color "#000000" --default-timeout 5000 --height 300 diff --git a/dotfiles/.scripts/menudisplay b/dotfiles/.scripts/menudisplay new file mode 100755 index 0000000..626f97c --- /dev/null +++ b/dotfiles/.scripts/menudisplay @@ -0,0 +1,14 @@ +#!/bin/sh + +# Source settings from .bemenurc +. $HOME/.bemenurc + +display=$(swaymsg -t get_outputs | grep -E "name" | sed "s/^.*\"name\": \"//g;s/\",$//g;" | bemenu -p "Select output: " $BEMENU_OPTIONS) + +if [ -z $display ]; then + exit 0 +fi + +action=$(printf "enable\ndisable\n" | bemenu -p "Choose action: " $BEMENU_OPTIONS) + +swaymsg output $display $action diff --git a/dotfiles/.scripts/menuducksearch b/dotfiles/.scripts/menuducksearch new file mode 100755 index 0000000..6965b69 --- /dev/null +++ b/dotfiles/.scripts/menuducksearch @@ -0,0 +1,18 @@ +#!/bin/sh + +# Gives a dmenu prompt to search DuckDuckGo. +# Without input, will open DuckDuckGo.com. +# Anything else, it search it. + +# Source settings from .bemenurc +. $HOME/.bemenurc + +pgrep -x dmenu && exit + +choice=$(echo "" | bemenu -i -p "Search DuckDuckGo:" $BEMENU_OPTIONS) || exit 1 + +if [ "$choice" = "" ]; then + $BROWSER "https://duckduckgo.com" +else + $BROWSER "https://duckduckgo.com/?q=$choice&t=ffab&atb=v1-1" +fi diff --git a/dotfiles/.scripts/menuemoji b/dotfiles/.scripts/menuemoji new file mode 100755 index 0000000..c21039f --- /dev/null +++ b/dotfiles/.scripts/menuemoji @@ -0,0 +1,16 @@ +#!/bin/sh +# Give dmenu list of all unicode characters to copy. +# Shows the selected character in dunst if running. + +# Source settings from .bemenurc +. $HOME/.bemenurc + +chosen=$(grep -v "#" ~/.emoji | bemenu -i -l 25 $BEMENU_OPTIONS) + +if [ -z $chosen ]; then + exit 0 +fi + +c=$(echo "$chosen" | sed "s/ .*//") +echo "$c" | tr -d '\n' | wl-copy +notify-send "'$c' copied to clipboard." diff --git a/dotfiles/.scripts/menugrim b/dotfiles/.scripts/menugrim new file mode 100755 index 0000000..6575487 --- /dev/null +++ b/dotfiles/.scripts/menugrim @@ -0,0 +1,33 @@ +#!/bin/sh + +if ! [ -d $SCROT_DIR ]; then + mkdir -p $SCROT_DIR +fi + +# Source settings from .bemenurc +. $HOME/.bemenurc + +notify_saved() { + notify-send "screenshot has been saved in $SCROT_DIR" ; +} + +notify_copied() { + notify-send "screenshot has been copied to clipboard" ; +} + +case "$1" in + --quick|-q) + grim $SCROT_DIR/fullscreen-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;; + *) + case "$(printf "a selected area\ncurrent window\nfull screen\na selected area (copy)\ncurrent window (copy)\nfull screen (copy)\n" | bemenu -l 6 -i -p "Screenshot which area?" $BEMENU_OPTIONS)" in + "a selected area") grim -g "$(slurp)" $SCROT_DIR/selected-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;; + "current window") grim -g "$(swaygetcurrentwindow)" $SCROT_DIR/window-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;; + "full screen") grim $SCROT_DIR/fullscreen-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;; + "a selected area (copy)") grim -g "$(slurp)" - | wl-copy; notify_copied ;; + "current window (copy)") grim -g "$(swaygetcurrentwindow)" - | wl-copy; notify_copied ;; + "full screen (copy)") grim - | wl-copy; notify_copied ;; + *) exit 0 ;; + esac +esac + + diff --git a/dotfiles/.scripts/menuoutput b/dotfiles/.scripts/menuoutput new file mode 100755 index 0000000..e714305 --- /dev/null +++ b/dotfiles/.scripts/menuoutput @@ -0,0 +1,16 @@ +#!/bin/sh +# Change audio output for all streams and set as default using dmenu + +# Source settings from .dmenurc +if ! [ -f "$HOME/.dmenurc" ]; then + cp /usr/share/dmenu/dmenurc $HOME/.dmenurc +fi +. $HOME/.dmenurc + +output=$(listsinks | dmenu -i $DMENU_OPTIONS) + +[ "$output" != "" ] || exit + +changeoutput $output + +notify-send "🔉 Audio output switched" "Audio output switched to '$output'" diff --git a/dotfiles/.scripts/menuprompt b/dotfiles/.scripts/menuprompt new file mode 100755 index 0000000..d744bf6 --- /dev/null +++ b/dotfiles/.scripts/menuprompt @@ -0,0 +1,7 @@ +#!/bin/sh +# A dmenu binary prompt script. +# Gives a dmenu prompt labeled with $1 to perform command $2. +# For example: +# `./prompt "Do you want to shutdown?" "shutdown -h now"` + +[ "$(printf "No\\nYes" | bemenu -i -p "$1" --nb darkred --hb red --hf white -nf gray )" = "Yes" ] && $2 diff --git a/dotfiles/.scripts/menurun b/dotfiles/.scripts/menurun new file mode 100755 index 0000000..900a4c3 --- /dev/null +++ b/dotfiles/.scripts/menurun @@ -0,0 +1,6 @@ +#!/bin/sh + +# Source settings from .bemenurc +. $HOME/.bemenurc + +bemenu-run $BEMENU_OPTIONS diff --git a/dotfiles/.scripts/menusession b/dotfiles/.scripts/menusession new file mode 100755 index 0000000..fc5260b --- /dev/null +++ b/dotfiles/.scripts/menusession @@ -0,0 +1,8 @@ +#!/bin/sh + +# Source settings from .bemenurc +. $HOME/.bemenurc + +action=$(printf "logout\nsuspend\nreboot\nshutdown\n" | bemenu -p "What to do?" $BEMENU_OPTIONS) + +i3session $action diff --git a/dotfiles/.scripts/mopidy_launch b/dotfiles/.scripts/mopidy_launch new file mode 100755 index 0000000..d6bd4cf --- /dev/null +++ b/dotfiles/.scripts/mopidy_launch @@ -0,0 +1,4 @@ +#!/bin/sh + +killall -q mopidy +mopidy diff --git a/dotfiles/.scripts/notistats b/dotfiles/.scripts/notistats new file mode 100755 index 0000000..0da5b7b --- /dev/null +++ b/dotfiles/.scripts/notistats @@ -0,0 +1,10 @@ +#!/bin/sh + +body=$(echo -e "Screen brightness:\t$(xbacklight -get)"; +lscpu | grep 'CPU MHz'; +sensors | grep 'Package id 0' | sed 's/Package id 0/CPU temp/' | awk '{print $1 $2 "\t" $3}'; +sensors | grep 'fan'; +echo print\(\'BAT0 drainage:\\t{}W\'.format\($(grep 'POWER_SUPPLY_POWER_NOW' /sys/class/power_supply/BAT0/uevent | awk -F '=' '{print $2}')/1000000\)\) | python; +echo print\(\'BAT1 drainage:\\t{}W\'.format\($(grep 'POWER_SUPPLY_POWER_NOW' /sys/class/power_supply/BAT1/uevent | awk -F '=' '{print $2}')/1000000\)\) | python) + +notify-send "Hardware status" "$body" diff --git a/dotfiles/.scripts/paccheck b/dotfiles/.scripts/paccheck new file mode 100755 index 0000000..1284134 --- /dev/null +++ b/dotfiles/.scripts/paccheck @@ -0,0 +1,10 @@ +#!/bin/sh + +ping -q -c 1 1.1.1.1 > /dev/null || exit + +notify-send "⬆ Update check" "Checking for updates..." + +sudo pacman -Sy +upno=$(pacman -Qu | wc -l) + +notify-send "⬆ Update Check" "$upno updates are available" diff --git a/dotfiles/.scripts/qmi_setup b/dotfiles/.scripts/qmi_setup new file mode 100755 index 0000000..62fcc82 --- /dev/null +++ b/dotfiles/.scripts/qmi_setup @@ -0,0 +1,104 @@ +#!/bin/bash + +### +# This script automate the setup of QMI supported wwan devices. +# +# Tested on following environment: +# * Lenovo ThinkPad X220 (4286-CTO) +# * Gentoo/Linux, Linux Kernel 3.9.6 +# * NTT Docomo UIM card (Xi LTE SIM) +# * Sierra Wireless, Inc. Gobi 3000 wireless wan module +# (FRU 60Y3257, vendor and device id is 1199:9013) +# memo: +# I recommend to check if your wwan module works fine +# for your mobile broadband provider with Windows +# especially if you imported the device from other country. +# You may have to initialize your device for your region. +# * Required kernel config (other modules may be also required): +# - qmi_wwan (CONFIG_USB_NET_QMI_WWAN) +# - qcserial (CONFIG_USB_SERIAL_QUALCOMM) +# * Required settings: +# - you may have to create /etc/qmi-network.conf. +# My qmi-network.conf has only a line "APN=mopera.net". +# + +# your wwan device name created by qmi_wwan kernel module +# check it with "ip a" or "ifconfig -a". it may be wwan0? +WWAN_DEV=wwp0s20f0u6 +# your cdc_wdm modem location +CDC_WDM=/dev/cdc-wdm0 +# this script uses following qmi commands +QMICLI=/usr/bin/qmicli +QMI_NETWORK=/usr/bin/qmi-network +# the places of following commands vary depending on your distribution +IFCONFIG=/usr/bin/ifconfig +DHCPCD=/usr/bin/dhcpcd +SUDO=/usr/bin/sudo + +function helpmsg { + echo "usage: $0 {start|stop|restart|status}" + exit 1 +} + +function qmi_start { + $COMMAND_PREFIX $IFCONFIG $WWAN_DEV up + $COMMAND_PREFIX $QMICLI -d $CDC_WDM --dms-set-operating-mode=online + if [ $? -ne 0 ]; then + echo "your wwan device may be RFKilled?" + exit 1 + fi + $COMMAND_PREFIX $QMI_NETWORK $CDC_WDM start + $COMMAND_PREFIX $DHCPCD $WWAN_DEV +} + +function qmi_stop { + $COMMAND_PREFIX $QMI_NETWORK $CDC_WDM stop + $COMMAND_PREFIX kill `cat /var/run/dhcpcd-${WWAN_DEV}.pid` + $COMMAND_PREFIX $IFCONFIG $WWAN_DEV down +} + +function qmi_strength { + dbm=`$COMMAND_PREFIX $QMICLI -d $CDC_WDM --nas-get-signal-strength | tr "'" " " | grep Network | head -1 | awk '{print $4}'` + echo -n "Signal strength is " + if [ $dbm -ge -73 ]; then + echo -n 'Excellent' + elif [ $dbm -ge -83 ]; then + echo -n 'Good' + elif [ $dbm -ge -93 ]; then + echo -n 'OK' + elif [ $dbm -ge -109 ]; then + echo -n 'Marginal' + else + echo Unknown + fi + echo " (${dbm} dBm)" +} + +function qmi_status { + $COMMAND_PREFIX $QMI_NETWORK $CDC_WDM status + qmi_strength +} + +# check argument number +if [ $# -ne 1 ] +then + helpmsg +fi + +# check permission +if [ `whoami` != 'root' ] +then + echo "warning: root permission required. setting command prefix to 'sudo'." + COMMAND_PREFIX=$SUDO +fi + +# run commands +case $1 in + start) qmi_start ;; + stop) qmi_stop ;; + restart) qmi_stop; qmi_start ;; + status) qmi_status ;; + *) helpmsg ;; +esac + + diff --git a/dotfiles/.scripts/setbg b/dotfiles/.scripts/setbg new file mode 100755 index 0000000..29a11d7 --- /dev/null +++ b/dotfiles/.scripts/setbg @@ -0,0 +1,3 @@ +#!/bin/sh + +swaymsg output "*" background ~/.config/wall1.png fill diff --git a/dotfiles/.scripts/setbglblur b/dotfiles/.scripts/setbglblur new file mode 100755 index 0000000..8de5e6f --- /dev/null +++ b/dotfiles/.scripts/setbglblur @@ -0,0 +1,8 @@ +#!/bin/sh + +vertical=$(($(xdotool getdisplaygeometry | awk '{print $2}') - newsize)) +horizontal=$(($(xdotool getdisplaygeometry | awk '{print $1}') - newwidth)) + +convert $1 -resize ${horizontal}x${vertical}\> ~/.config/lockwall.png +convert ~/.config/lockwall.png -brightness-contrast -20,-20 -paint 1 -noise 0x8 -blur 9,9 ~/.config/lockwall.png +convert ~/.config/lockwall.png ~/.config/lock.png -gravity center -composite ~/.config/lockwall.png diff --git a/dotfiles/.scripts/setbglsimple b/dotfiles/.scripts/setbglsimple new file mode 100755 index 0000000..ea2c5f2 --- /dev/null +++ b/dotfiles/.scripts/setbglsimple @@ -0,0 +1,7 @@ +#!/bin/sh + +vertical=$(($(xdotool getdisplaygeometry | awk '{print $2}') - newsize)) +horizontal=$(($(xdotool getdisplaygeometry | awk '{print $1}') - newwidth)) + +convert $1 -resize ${horizontal}x${vertical}\> ~/.config/lockwall.png +convert ~/.config/lockwall.png ~/.config/lock.png -gravity center -composite ~/.config/lockwall.png diff --git a/dotfiles/.scripts/swaygetcurrentwindow b/dotfiles/.scripts/swaygetcurrentwindow new file mode 100755 index 0000000..e6403a6 --- /dev/null +++ b/dotfiles/.scripts/swaygetcurrentwindow @@ -0,0 +1,5 @@ +#!/bin/sh + +xydata=$(swaymsg -t get_tree | grep -B 5 '"focused": true' | head -n 4 | tr -d '\n\r' | sed -e 's/[^0-9,]//g' -e 's/,/ /2' -e 's/,/x/2') + +echo $xydata diff --git a/dotfiles/.scripts/swaykbd b/dotfiles/.scripts/swaykbd new file mode 100755 index 0000000..a76f833 --- /dev/null +++ b/dotfiles/.scripts/swaykbd @@ -0,0 +1,20 @@ +#!/bin/sh + +swaymsg -r -t get_inputs | awk '/1:1:AT_Translated_Set_2_keyboard/;/xkb_active_layout_name/' | grep -A1 '\b1:1:AT_Translated_Set_2_keyboard\b' | grep "xkb_active_layout_name" | awk -F '"' '{print $4}' + +swaymsg \ + --type subscribe \ + --monitor \ + --raw \ + '["input"]' | \ + jq \ + --raw-output \ + --unbuffered \ ' + select(.change == "xkb_layout") | + .input.xkb_active_layout_name | + sub(" \\(US\\)"; "") + ' + +case $BLOCK_BUTTON in + 1) echo "TO-DO" ;; +esac; diff --git a/dotfiles/.scripts/swayresize b/dotfiles/.scripts/swayresize new file mode 100755 index 0000000..9ae94c0 --- /dev/null +++ b/dotfiles/.scripts/swayresize @@ -0,0 +1,27 @@ +#!/bin/sh +# This script was made by `goferito` on Github. +# Some cleanup by Luke. + +[ -z "$1" ] && echo "No direction provided" && exit 1 +distanceStr="2 px or 2 ppt" + +moveChoice() { + swaymsg resize "$1" "$2" "$distanceStr" | grep '"success":true' || \ + swaymsg resize "$3" "$4" "$distanceStr" +} + +case $1 in + up) + moveChoice grow up shrink down + ;; + down) + moveChoice shrink up grow down + ;; + left) + moveChoice shrink right grow left + ;; + right) + moveChoice grow right shrink left + ;; +esac + diff --git a/dotfiles/.scripts/swaystart b/dotfiles/.scripts/swaystart new file mode 100755 index 0000000..46f6f0e --- /dev/null +++ b/dotfiles/.scripts/swaystart @@ -0,0 +1,12 @@ +#!/bin/sh + +export SCROT_DIR=$HOME/Pictures/screenshots/ +export GDK_BACKEND=wayland +export EGL_PLATFORM=wayland +export CLUTTER_PLATFORM=wayland +export SDL_VIDEODRIVER=wayland +export QT_QPA_PLATFORM=wayland-egl +export QT_WAYLAND_DISABLE_WINDOWDECORATION=1 +export QT_QPA_PLATFORMTHEME="qt5ct" +export _JAVA_AWT_WM_NONREPARENTING=1 +sway --my-next-gpu-wont-be-nvidia diff --git a/dotfiles/.scripts/sxiv-rifle b/dotfiles/.scripts/sxiv-rifle new file mode 100755 index 0000000..0bdd892 --- /dev/null +++ b/dotfiles/.scripts/sxiv-rifle @@ -0,0 +1,48 @@ +#!/bin/sh +# Compatible with ranger 1.6.0 through 1.7.* +# +# This script searches image files in a directory, opens them all with sxiv and +# sets the first argument to the first image displayed by sxiv. +# +# This is supposed to be used in rifle.conf as a workaround for the fact that +# sxiv takes no file name arguments for the first image, just the number. Copy +# this file somewhere into your $PATH and add this at the top of rifle.conf: +# +# mime ^image, has sxiv, X, flag f = path/to/this/script -- "$@" +# +# Implementation notes: this script is quite slow because of POSIX limitations +# and portability concerns. First calling the shell function 'abspath' is +# quicker than calling 'realpath' because it would fork a whole process, which +# is slow. Second, we need to append a file list to sxiv, which can only be done +# properly in two ways: arrays (which are not POSIX) or \0 sperated +# strings. Unfortunately, assigning \0 to a variable is not POSIX either (will +# not work in dash and others), so we cannot store the result of listfiles to a +# variable. + +if [ $# -eq 0 ]; then + echo "Usage: ${0##*/} PICTURES" + exit +fi + +[ "$1" = '--' ] && shift + +abspath () { + case "$1" in + /*) printf "%s\n" "$1";; + *) printf "%s\n" "$PWD/$1";; + esac +} + +listfiles () { + find -L "$(dirname "$target")" -maxdepth 1 -type f -iregex \ + '.*\(jpe?g\|bmp\|png\|gif\)$' -print0 | sort -z +} + +target="$(abspath "$1")" +count="$(listfiles | grep -m 1 -ZznF "$target" | cut -d: -f1)" + +if [ -n "$count" ]; then + listfiles | xargs -0 sxiv -n "$count" -- +else + sxiv -- "$@" # fallback +fi diff --git a/dotfiles/.scripts/vifm_launch b/dotfiles/.scripts/vifm_launch new file mode 100755 index 0000000..07b6473 --- /dev/null +++ b/dotfiles/.scripts/vifm_launch @@ -0,0 +1,15 @@ +#!/bin/sh +export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}" + +function cleanup { + rm "$FIFO_UEBERZUG" 2>/dev/null + pkill -P $$ 2>/dev/null +} + +rm "$FIFO_UEBERZUG" 2>/dev/null +mkfifo "$FIFO_UEBERZUG" +trap cleanup EXIT +tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser bash & + +vifm +cleanup diff --git a/dotfiles/.scripts/waybar_launch b/dotfiles/.scripts/waybar_launch new file mode 100755 index 0000000..6fc9200 --- /dev/null +++ b/dotfiles/.scripts/waybar_launch @@ -0,0 +1,9 @@ +#!/bin/sh + +# Terminate already running bar instance +killall -q waybar + +# Wait until the processes have been shut down +while pgrep -u $UID -x waybar >/dev/null; do sleep 1; done + +waybar diff --git a/dotfiles/.scripts/xway b/dotfiles/.scripts/xway new file mode 100755 index 0000000..b8e5ab8 --- /dev/null +++ b/dotfiles/.scripts/xway @@ -0,0 +1,10 @@ +#!/bin/sh + +# Certain Xorg apps require certain env variable to correctly work through xwayland + +export GDK_BACKEND=x11 +export EGL_PLATFORM=x11 +export CLUTTER_PLATFORM=x11 +export SDL_VIDEODRIVER=x11 + +$1 diff --git a/dotfiles/.soundalerts/mail.mp3 b/dotfiles/.soundalerts/mail.mp3 Binary files differnew file mode 100644 index 0000000..7e6812d --- /dev/null +++ b/dotfiles/.soundalerts/mail.mp3 diff --git a/dotfiles/.soundalerts/start.ogg b/dotfiles/.soundalerts/start.ogg Binary files differnew file mode 100644 index 0000000..a34ee2a --- /dev/null +++ b/dotfiles/.soundalerts/start.ogg diff --git a/dotfiles/.themes/oomox-materia-dark/COPYING b/dotfiles/.themes/oomox-materia-dark/COPYING new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/COPYING @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/dotfiles/.themes/oomox-materia-dark/chrome/chrome-scrollbar.crx b/dotfiles/.themes/oomox-materia-dark/chrome/chrome-scrollbar.crx Binary files differnew file mode 100644 index 0000000..e9be4cb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/chrome/chrome-scrollbar.crx diff --git a/dotfiles/.themes/oomox-materia-dark/chrome/chrome-theme.crx b/dotfiles/.themes/oomox-materia-dark/chrome/chrome-theme.crx Binary files differnew file mode 100644 index 0000000..e417ef4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/chrome/chrome-theme.crx diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace-active.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace-active.svg new file mode 100644 index 0000000..873d12f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace-active.svg @@ -0,0 +1,130 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-active.svg"> + <defs + id="defs4"> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4154" + x="-0.13200003" + width="1.2640001" + y="-0.020842104" + height="1.0416842"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.6500004" + id="feGaussianBlur4156" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="-19.280981" + inkscape:cy="24.179781" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1280" + inkscape:window-height="734" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="false" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + id="rect4694-5" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.9;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#212121;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#filter4154)" + d="m 7.2000008,858.36215 27.9999992,0 0,190.00005 -27.9999992,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-186.00005 c 0,-1.108 0.892,-2 2,-2 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccssss" /> + <path + id="rect4694" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#009688;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccssss" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" /> + <path + id="rect4804" + transform="translate(0,852.36218)" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#eceff1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" /> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace-hover.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace-hover.svg new file mode 100644 index 0000000..03d20ba --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace-hover.svg @@ -0,0 +1,130 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="add-workspace-hover.svg"> + <defs + id="defs4"> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4154" + x="-0.13200003" + width="1.2640001" + y="-0.020842104" + height="1.0416842"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.6500004" + id="feGaussianBlur4156" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="-37.155981" + inkscape:cy="103.67978" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1280" + inkscape:window-height="734" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="false" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + id="rect4694-5" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.9;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#212121;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#filter4154)" + d="m 7.2000008,858.36215 27.9999992,0 0,190.00005 -27.9999992,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-186.00005 c 0,-1.108 0.892,-2 2,-2 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccssss" /> + <path + id="rect4694" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccssss" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" /> + <path + id="rect4804" + transform="translate(0,852.36218)" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#263238;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" /> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace.svg new file mode 100644 index 0000000..2039811 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/add-workspace.svg @@ -0,0 +1,133 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="35" + height="200" + id="svg2" + version="1.1" + inkscape:version="0.92+devel (unknown)" + sodipodi:docname="add-workspace.svg"> + <defs + id="defs4"> + <filter + inkscape:collect="always" + style="color-interpolation-filters:sRGB" + id="filter4146" + x="-0.088000021" + width="1.176" + y="-0.013894736" + height="1.0277895"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.1000002" + id="feGaussianBlur4148" /> + </filter> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="-35.718481" + inkscape:cy="103.92978" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1029" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + showguides="false" + inkscape:guide-bbox="true" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true" + inkscape:document-rotation="0"> + <inkscape:grid + type="xygrid" + id="grid3040" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="20,100" + id="guide3893" + inkscape:locked="false" /> + <sodipodi:guide + orientation="1,0" + position="18,190" + id="guide3895" + inkscape:locked="false" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Reproduction" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#Distribution" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Notice" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#Attribution" /> + <cc:permits + rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> + <cc:requires + rdf:resource="http://creativecommons.org/ns#ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-852.36218)"> + <path + id="rect4694-5" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.9;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#212121;fill-opacity:0.34;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4146);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 7.2000004,858.16209 27.9999996,0 0,190.00011 -27.9999996,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-186.00011 c 0,-1.108 0.892,-2 2,-2 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccssss" /> + <path + id="rect4694" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="sccssss" /> + <g + transform="translate(0,-0.9999969)" + id="g3917-7" + style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" /> + <path + id="rect4804" + transform="translate(0,852.36218)" + style="color:#212121;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#212121;solid-opacity:1;fill:#263238;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" /> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/calendar-arrow-left.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/calendar-arrow-left.svg new file mode 100644 index 0000000..74886ce --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M10 3v10L5 8z" fill="#212121" opacity="0.54"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/calendar-arrow-right.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/calendar-arrow-right.svg new file mode 100644 index 0000000..7fcff13 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M6 3v10l5-5z" fill="#212121" opacity="0.54"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/checkbox-off.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/checkbox-off.svg new file mode 100644 index 0000000..e020c04 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/checkbox-off.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#212121" opacity="0.54"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/checkbox.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/checkbox.svg new file mode 100644 index 0000000..198939b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/checkbox.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="#009688"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/close-window.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/close-window.svg new file mode 100644 index 0000000..140a14d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/close-window.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"> + <circle cx="18" cy="18" r="18" fill="#EA4335"/> + <circle cx="18" cy="18" r="18" fill="#eeeeee" opacity="0"/> + <path d="M23 14.41L21.59 13 18 16.59 14.41 13 13 14.41 16.59 18 13 21.59 14.41 23 18 19.41 21.59 23 23 21.59 19.41 18z" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/corner-ripple.png b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/corner-ripple.png Binary files differnew file mode 100644 index 0000000..35d95ff --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/corner-ripple.png diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/radiobutton-off.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/radiobutton-off.svg new file mode 100644 index 0000000..73c0256 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/radiobutton-off.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#212121" opacity="0.54"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/radiobutton.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/radiobutton.svg new file mode 100644 index 0000000..303d63a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/radiobutton.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#009688"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/toggle-off.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/toggle-off.svg new file mode 100644 index 0000000..02c7505 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/toggle-off.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20"> + <rect x="2" y="2" width="36" height="16" ry="8" fill="#212121" opacity="0.26"/> + <circle cx="10" cy="10" r="6" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/toggle-on.svg b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/toggle-on.svg new file mode 100644 index 0000000..8ca9959 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/toggle-on.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20"> + <rect x="2" y="2" width="36" height="16" ry="8" fill="#009688"/> + <circle cx="30" cy="10" r="6" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/trash-icon.png b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/trash-icon.png Binary files differnew file mode 100644 index 0000000..270fe2e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/assets/trash-icon.png diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/cinnamon.css b/dotfiles/.themes/oomox-materia-dark/cinnamon/cinnamon.css new file mode 100644 index 0000000..6e1b378 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/cinnamon.css @@ -0,0 +1,1713 @@ +.notification-button, .modal-dialog-button { + color: #fafafa; + background-color: #424242; + border-color: transparent; + box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12); + text-shadow: none; + icon-shadow: none; + font-size: 10.5pt; + font-weight: 500; + min-height: 32px; + padding: 0 16px; + border-radius: 2px; +} + +.notification-button:focus, .modal-dialog-button:focus { + color: #eeeeee; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.notification-button:hover, .modal-dialog-button:hover, .notification-button:checked, .modal-dialog-button:checked { + color: #eeeeee; + background-color: #424242; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.notification-button:active, .modal-dialog-button:active { + color: #eeeeee; + background-color: #6b6b6b; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.notification-button:insensitive, .modal-dialog-button:insensitive { + color: rgba(238, 238, 238, 0.3); + background-color: rgba(238, 238, 238, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.notification-icon-button, .keyboard-key, .sound-player StButton { + color: #fafafa; + background-color: #424242; + border-color: transparent; + box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12); + text-shadow: none; + icon-shadow: none; + min-height: 32px; + min-width: 32px; + padding: 6px; + border-radius: 2px; +} + +.notification-icon-button:focus, .keyboard-key:focus, .sound-player StButton:focus { + color: #eeeeee; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.notification-icon-button:hover, .keyboard-key:hover, .sound-player StButton:hover, .notification-icon-button:checked, .keyboard-key:checked, .sound-player StButton:checked { + color: #eeeeee; + background-color: #424242; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.notification-icon-button:active, .keyboard-key:active, .sound-player StButton:active { + color: #eeeeee; + background-color: #6b6b6b; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.notification-icon-button:insensitive, .keyboard-key:insensitive, .sound-player StButton:insensitive { + color: rgba(238, 238, 238, 0.3); + background-color: rgba(238, 238, 238, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.slider, .popup-slider-menu-item, .sound-player .slider { + height: 20px; + color: #009688; + -slider-height: 2px; + -slider-background-color: rgba(238, 238, 238, 0.3); + -slider-border-color: transparent; + -slider-active-background-color: #009688; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 6px; +} + +.separator, .popup-separator-menu-item { + -gradient-height: 1px; + -gradient-start: rgba(0, 0, 0, 0.26); + -gradient-end: rgba(0, 0, 0, 0.26); + -margin-horizontal: 4px; + height: 1.5em; +} + +#notification StEntry, .run-dialog-entry, #menu-search-entry { + background-color: rgba(0, 0, 0, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); + width: 320px; + padding: 4px 8px; + border-radius: 0; + color: rgba(238, 238, 238, 0.5); + caret-color: rgba(238, 238, 238, 0.5); + selection-background-color: rgba(238, 238, 238, 0.3); + selected-color: #eeeeee; +} + +#notification StEntry:focus, .run-dialog-entry:focus, #menu-search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #eeeeee; + padding: 4px 8px; + border-width: 0; + color: #eeeeee; +} + +.desklet-with-borders, .desklet-with-borders-and-header, .desklet-header, .photoframe-box { + color: #eeeeee; + border: none; + padding: 12px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5); +} + +.calendar-change-month-back, .calendar-change-month-forward { + width: 16px; + height: 16px; + border-radius: 999px; + transition-duration: 100ms; +} + +.calendar-change-month-back:active, .calendar-change-month-forward:active { + background-color: rgba(238, 238, 238, 0.3); +} + +.menu, .popup-combo-menu { + background-color: #212121; + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 2px; + color: #eeeeee; + box-shadow: 14px 14px 14px rgba(0, 0, 0, 0.5); +} + +.menu-application-button-label:ltr, .menu-category-button-label:ltr { + padding-left: 4px; +} + +.menu-application-button-label:rtl, .menu-category-button-label:rtl { + padding-right: 4px; +} + +.show-processes-dialog-subject, .mount-question-dialog-subject { + font-weight: bold; + color: #eeeeee; + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; +} + +.show-processes-dialog-subject:rtl, .mount-question-dialog-subject:rtl { + padding-left: 0; + padding-right: 17px; +} + +.show-processes-dialog-description, .mount-question-dialog-description { + color: #eeeeee; + padding-left: 17px; + width: 28em; +} + +.check-box StBin, .check-box:focus StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url(assets/checkbox-off.svg); +} + +.radiobutton StBin, .radiobutton:focus StBin { + width: 20px; + height: 20px; + padding: 6px; + border-radius: 100px; + background-image: url(assets/radiobutton-off.svg); +} + +.tile-preview, .tile-hud { + background-color: rgba(0, 0, 0, 0.3); + border: 2px solid rgba(0, 0, 0, 0.26); +} + +.tile-preview.snap, .tile-hud.snap { + background-color: rgba(0, 0, 0, 0.3); + border: 2px solid #009688; +} + +.info-osd, .workspace-osd, #LookingGlassDialog, .switcher-list, .modal-dialog, .osd-window { + color: #eeeeee; + background-color: #212121; + border: none; + border-radius: 2px; + padding: 12px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5); +} + +.info-osd, .workspace-osd { + font-size: 15pt; + font-weight: 500; + text-align: center; + padding: 8px 10px; +} + +stage { + font-size: 10.5pt; + font-weight: 400; + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + color: #eeeeee; +} + +.cinnamon-link { + color: #3d82ff; + font-style: italic; +} + +.cinnamon-link:hover { + color: #eeeeee; +} + +.label-shadow { + color: transparent; +} + +StScrollBar { + padding: 0px; +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + background-color: rgba(238, 238, 238, 0.5); + border-radius: 100px; + margin: 4px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(238, 238, 238, 0.7); +} + +StScrollBar StBin#trough { + margin: 4px; + border-radius: 100px; + background-color: rgba(238, 238, 238, 0.12); +} + +StScrollView.vfade { + -st-vfade-offset: 32px; +} + +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} + +#Tooltip { + font-size: 9pt; + font-weight: 400; + padding: 6px 8px; + color: #e0e0e0; + text-align: center; + border-radius: 2px; + background-color: rgba(33, 33, 33, 0.9); +} + +.menu { + min-width: 100px; + margin: 4px; +} + +.popup-sub-menu { + background-color: #212121; +} + +.popup-menu-arrow { + icon-size: 1.14em; +} + +.popup-combo-menu { + padding: 8px; +} + +.popup-menu-content { + padding: 8px; +} + +.popup-menu-item { + padding: 0.4em 4px; + transition-duration: 100ms; +} + +.popup-menu-item:active { + background-color: rgba(238, 238, 238, 0.3); + color: #eeeeee; + transition-duration: 150ms; +} + +.popup-menu-item:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.popup-image-menu-item { + color: rgba(238, 238, 238, 0.7); +} + +.popup-combobox-item { + padding: 0.4em 4px; +} + +.popup-device-menu-item { + spacing: .5em; +} + +.popup-inactive-menu-item { + color: #eeeeee; +} + +.popup-inactive-menu-item:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.popup-subtitle-menu-item { + font-size: 10.5pt; + font-weight: 500; +} + +.popup-menu-icon { + icon-size: 1.14em; + padding: 0px 4px; +} + +.popup-alternating-menu-item:alternate { + font-size: 10.5pt; + font-weight: 500; +} + +.toggle-switch { + width: 40px; + height: 20px; +} + +.toggle-switch-us, .toggle-switch-intl { + background-image: url(assets/toggle-off.svg); +} + +.toggle-switch-us:checked, .toggle-switch-intl:checked { + background-image: url(assets/toggle-on.svg); +} + +.nm-menu-item-icons { + spacing: .5em; + icon-size: 1.14em; +} + +#panel { + color: rgba(224, 224, 224, 0.7); + background-color: rgba(0, 0, 0, 0.6); + height: 2.5em; + width: 3.2em; +} + +#panel:highlight { + background-color: rgba(224, 224, 224, 0.3); +} + +.panel-dummy { + background-color: rgba(255, 0, 0, 0.6); +} + +.panel-dummy:entered { + background-color: rgba(0, 255, 0, 0.6); +} + +.panelLeft { + spacing: 4px; +} + +.panelLeft:dnd { + background-color: rgba(255, 0, 0, 0.6); +} + +.panelLeft:ltr { + padding-right: 4px; +} + +.panelLeft:rtl { + padding-left: 4px; +} + +.panelLeft.vertical { + padding: 0; +} + +.panelCenter { + spacing: 4px; +} + +.panelCenter:dnd { + background-color: rgba(0, 255, 0, 0.6); +} + +.panelCenter.vertical { + padding-left: 0; + padding-right: 0; +} + +.panelRight { + spacing: 4px; +} + +.panelRight:dnd { + background-color: rgba(0, 0, 255, 0.6); +} + +.panelRight:ltr { + padding-left: 0; + spacing: 0; +} + +.panelRight:rtl { + padding-right: 0; + spacing: 0; +} + +.panelRight.vertical { + padding: 0; +} + +.panel-top .window-list-item-box:hover { + box-shadow: 0 3px 0 0 #009688 inset; +} + +.panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus { + background-color: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.panel-top .window-list-item-box:active:hover, .panel-top .window-list-item-box:checked:hover, .panel-top .window-list-item-box:focus:hover { + box-shadow: 0 3px 0 0 #009688 inset; +} + +.panel-top .workspace-switcher, .panel-top .workspace-graph, .panel-top .workspace-button { + padding: 1px 4px; +} + +.panel-top .workspace-graph:hover, .panel-top .workspace-button:hover { + box-shadow: 0 3px 0 0 #009688 inset; +} + +.panel-top .applet-box { + padding: 1px 4px; + margin: 1px 0; +} + +.panel-top .applet-box:hover { + box-shadow: 0 3px 0 0 #009688 inset; +} + +.panel-top .panel-launchers .launcher:hover { + box-shadow: 0 3px 0 0 #009688 inset; +} + +.panel-top .applet-separator { + padding: 3px 4px; +} + +.panel-top .systray:hover { + box-shadow: 0 4px 0 0 #009688 inset; +} + +.panel-bottom .window-list-item-box:hover { + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.panel-bottom .window-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus { + background-color: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.panel-bottom .window-list-item-box:active:hover, .panel-bottom .window-list-item-box:checked:hover, .panel-bottom .window-list-item-box:focus:hover { + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.panel-bottom .workspace-switcher, .panel-bottom .workspace-graph, .panel-bottom .workspace-button { + padding: 1px 4px; +} + +.panel-bottom .workspace-graph:hover, .panel-bottom .workspace-button:hover { + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.panel-bottom .applet-box { + padding: 1px 4px; + margin: 1px 0; +} + +.panel-bottom .applet-box:hover { + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.panel-bottom .panel-launchers .launcher:hover { + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.panel-bottom .applet-separator { + padding: 3px 4px; +} + +.panel-bottom .systray:hover { + box-shadow: 0 4px 0 0 #009688 inset; +} + +.panel-left .window-list-item-box:hover { + box-shadow: 3px 0 0 0 #009688 inset; +} + +.panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus { + background-color: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.panel-left .window-list-item-box:active:hover, .panel-left .window-list-item-box:checked:hover, .panel-left .window-list-item-box:focus:hover { + box-shadow: 3px 0 0 0 #009688 inset; +} + +.panel-left .workspace-switcher, .panel-left .workspace-graph, .panel-left .workspace-button { + padding: 1px 4px; +} + +.panel-left .workspace-graph:hover, .panel-left .workspace-button:hover { + box-shadow: 3px 0 0 0 #009688 inset; +} + +.panel-left .applet-box { + padding: 4px 1px; + margin: 0 1px; +} + +.panel-left .applet-box:hover { + box-shadow: 3px 0 0 0 #009688 inset; +} + +.panel-left .panel-launchers .launcher:hover { + box-shadow: 3px 0 0 0 #009688 inset; +} + +.panel-left .applet-separator { + padding: 4px 3px; +} + +.panel-left .systray:hover { + box-shadow: 4px 0 0 0 #009688 inset; +} + +.panel-right .window-list-item-box:hover { + box-shadow: -3px 0 0 0 #009688 inset; +} + +.panel-right .window-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus { + background-color: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.panel-right .window-list-item-box:active:hover, .panel-right .window-list-item-box:checked:hover, .panel-right .window-list-item-box:focus:hover { + box-shadow: -3px 0 0 0 #009688 inset; +} + +.panel-right .workspace-switcher, .panel-right .workspace-graph, .panel-right .workspace-button { + padding: 1px 4px; +} + +.panel-right .workspace-graph:hover, .panel-right .workspace-button:hover { + box-shadow: -3px 0 0 0 #009688 inset; +} + +.panel-right .applet-box { + padding: 4px 1px; + margin: 0 1px; +} + +.panel-right .applet-box:hover { + box-shadow: -3px 0 0 0 #009688 inset; +} + +.panel-right .panel-launchers .launcher:hover { + box-shadow: -3px 0 0 0 #009688 inset; +} + +.panel-right .applet-separator { + padding: 4px 3px; +} + +.panel-right .systray:hover { + box-shadow: -4px 0 0 0 #009688 inset; +} + +.panel-status-button { + font-size: 10.5pt; + font-weight: 500; + -natural-hpadding: 4px; + -minimum-hpadding: 4px; + color: rgba(224, 224, 224, 0.7); +} + +.panel-status-button:hover { + color: #e0e0e0; +} + +.system-status-icon { + icon-size: 1.14em; + padding: 0; + spacing: 0; +} + +.system-status-icon.warning { + color: #bc742d; +} + +.system-status-icon.error { + color: #d8645a; +} + +#overview { + spacing: 12px; +} + +.window-caption { + font-size: 9pt; + font-weight: 400; + background-color: rgba(0, 0, 0, 0.01); + color: rgba(224, 224, 224, 0.7); + padding: 4px 6px; + text-align: center; + height: 1.5em; + -cinnamon-caption-spacing: 12px; +} + +.window-caption#selected { + color: #e0e0e0; + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.workspace-controls { + visible-height: 32px; +} + +.workspace-thumbnails-background { + color: rgba(224, 224, 224, 0.7); + background-color: rgba(255, 255, 255, 0.1); + border: none; + padding: 8px; + border-radius: 2px 0 0 2px; +} + +.workspace-thumbnails-background:rtl { + border-radius: 0 2px 2px 0; +} + +.workspace-thumbnails { + spacing: 32px; +} + +.workspace-add-button { + background-image: url(assets/add-workspace.svg); + height: 200px; + width: 35px; + transition-duration: shorter_duration; +} + +.workspace-add-button:hover { + background-image: url(assets/add-workspace-hover.svg); +} + +.workspace-add-button:active { + background-image: url(assets/add-workspace-active.svg); +} + +.workspace-close-button, .window-close { + background-image: url(assets/close-window.svg); + height: 32px; + width: 32px; + -cinnamon-close-overlap: 20px; +} + +.workspace-close-button:rtl, .window-close:rtl { + -st-background-image-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); +} + +.window-close-area { + background-image: url(assets/trash-icon.png); + background-size: 100px; + background-color: rgba(0, 0, 0, 0.3); + border: 1px solid rgba(0, 0, 0, 0.26); + border-bottom-width: 0; + border-radius: 20px 20px 0 0; + height: 120px; + width: 400px; +} + +.expo-background { + background-color: rgba(0, 0, 0, 0.6); +} + +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.6); +} + +.expo-workspace-thumbnail-frame { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.expo-workspace-thumbnail-frame#active { + border: 1px solid #009688; +} + +#LookingGlassDialog { + spacing: 4px; + padding: 8px; +} + +.calendar { + padding: 4px 8px; + spacing-rows: 2px; + spacing-columns: 4px; +} + +.datemenu-date-label { + font-size: 15pt; + font-weight: 500; + height: 24px; + margin: 2px; + padding: 6px 16px; + border-radius: 2px; + color: #eeeeee; + text-align: center; +} + +.datemenu-date-label:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.calendar-month-label { + font-size: 10.5pt; + font-weight: 500; + height: 16px; + margin: 2px; + padding: 6px 16px; + border-radius: 2px; + color: #eeeeee; + text-align: center; +} + +.calendar-month-label:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.calendar-change-month-back { + background-image: url(assets/calendar-arrow-left.svg); +} + +.calendar-change-month-back:rtl { + background-image: url(assets/calendar-arrow-right.svg); +} + +.calendar-change-month-forward { + background-image: url(assets/calendar-arrow-right.svg); +} + +.calendar-change-month-forward:rtl { + background-image: url(assets/calendar-arrow-left.svg); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; +} + +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(238, 238, 238, 0.3); +} + +.calendar-day-base:active { + color: #fefefe; + background-color: #009688; + border-color: transparent; +} + +.calendar-week-number { + font-size: 9pt; + font-weight: 400; + width: 21px; + height: 28px; + margin: 2px; + padding: 0; + border-radius: 100px; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); + text-align: center; +} + +.calendar-day-heading { + font-size: 9pt; + font-weight: 400; + width: 28px; + height: 21px; + margin: 2px; + padding: 0; + border-radius: 100px; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: #eeeeee; +} + +.calendar-today { + font-weight: bold; + border: none; +} + +.calendar-day-with-events { + color: #3d82ff; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(238, 238, 238, 0.3); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +#notification { + background-color: #212121; + border-radius: 2px; + border: 1px solid rgba(0, 0, 0, 0.26); + padding: 8px; + spacing-rows: 4px; + spacing-columns: 8px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #eeeeee; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24); +} + +#notification.multi-line-notification { + padding-bottom: 8px; +} + +#notification .url-highlighter { + link-color: #3d82ff; +} + +.notification-with-image { + min-height: 159px; + color: #eeeeee; +} + +#notification-scrollview { + max-height: 10em; +} + +#notification-scrollview > .top-shadow { + height: 1em; +} + +#notification-scrollview > .bottom-shadow { + height: 1em; +} + +#notification-scrollview:ltr > StScrollBar { + padding-left: 6px; +} + +#notification-scrollview:rtl > StScrollBar { + padding-right: 6px; +} + +#notification-body { + spacing: 4px; +} + +#notification-actions { + spacing: 8px; +} + +.notification-icon-button > StIcon { + icon-size: 1.5em; +} + +#altTabPopup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + transition-duration: 100ms; +} + +.switcher-list .item-box { + padding: 8px; + border-radius: 2px; +} + +.switcher-list .item-box:selected { + background-color: rgba(238, 238, 238, 0.12); +} + +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} + +.switcher-list .thumbnail { + width: 256px; +} + +.switcher-list .separator { + width: 1px; + background: rgba(0, 0, 0, 0.26); +} + +.switcher-list-item-container { + spacing: 8px; +} + +.thumbnail-scroll-gradient-left { + background-gradient-direction: horizontal; + background-gradient-start: #333333; + background-gradient-end: rgba(51, 51, 51, 0); + border-radius: 2px; + border-radius-topright: 0; + border-radius-bottomright: 0; + width: 60px; +} + +.thumbnail-scroll-gradient-right { + background-gradient-direction: horizontal; + background-gradient-start: rgba(51, 51, 51, 0); + background-gradient-end: #333333; + border-radius: 2px; + border-radius-topleft: 0; + border-radius-bottomleft: 0; + width: 60px; +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(238, 238, 238, 0.5); +} + +.switcher-arrow:highlighted { + color: #eeeeee; +} + +.switcher-preview-backdrop { + background-color: rgba(0, 0, 0, 0.6); +} + +.ripple-box { + width: 104px; + height: 104px; + background-image: url(assets/corner-ripple.png); + background-color: #009688; + border-radius: 52px; +} + +.modal-dialog { + padding: 16px 20px; +} + +.modal-dialog-button-box { + spacing: 16px; +} + +.run-dialog-label { + color: rgba(238, 238, 238, 0.5); + padding-bottom: .4em; +} + +.run-dialog-error-label { + color: #d8645a; +} + +.run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.run-dialog-completion-box { + padding-left: 15px; +} + +.run-dialog { + border-radius: 2px; + padding: 16px 20px; +} + +.lightbox { + background-color: rgba(0, 0, 0, 0.3); +} + +.cinnamon-mount-operation-icon { + icon-size: 4.8em; +} + +.mount-password-reask { + color: #bc742d; +} + +.show-processes-dialog { + spacing: 24px; +} + +.mount-question-dialog { + spacing: 24px; +} + +.show-processes-dialog-description:rtl { + padding-right: 17px; +} + +.mount-question-dialog-description:rtl { + padding-right: 17px; +} + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; +} + +.show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; +} + +.show-processes-dialog-app-list-item { + color: #eeeeee; +} + +.show-processes-dialog-app-list-item:hover { + color: #eeeeee; +} + +.show-processes-dialog-app-list-item:ltr { + padding-right: 1em; +} + +.show-processes-dialog-app-list-item:rtl { + padding-left: 1em; +} + +.show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; +} + +.show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; +} + +.magnifier-zoom-region { + border: 3px solid rgba(0, 0, 0, 0.26); +} + +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +#keyboard { + background-color: rgba(0, 0, 0, 0.6); +} + +.keyboard-key { + font-size: 10.5pt; + font-weight: 500; +} + +.keyboard-layout { + spacing: 8px; + padding: 8px; +} + +.keyboard-row { + spacing: 16px; +} + +.keyboard-subkeys { + color: inherit; + padding: 5px; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -boxpointer-gap: 5px; + background-color: #212121; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24); +} + +.menu-favorites-box { + padding: 8px; +} + +.menu-favorites-button { + padding: 0.4em 4px; +} + +.menu-favorites-button:hover { + background-color: rgba(238, 238, 238, 0.12); + border-radius: 2px; + color: #eeeeee; +} + +.menu-categories-box { + padding: 8px; +} + +.menu-applications-inner-box { + padding: 8px; +} + +.menu-applications-outer-box { + padding: 8px; + border-radius: 2px; +} + +.menu-application-button { + padding: 0.4em 4px; +} + +.menu-application-button:highlighted { + font-weight: bold; +} + +.menu-application-button-selected { + padding: 0.4em 4px; + background-color: rgba(238, 238, 238, 0.12); + border-radius: 2px; + color: #eeeeee; +} + +.menu-application-button-selected:highlighted { + font-weight: bold; +} + +.menu-category-button { + padding: 0.4em 4px; +} + +.menu-category-button-greyed { + padding: 0.4em 4px; + color: rgba(238, 238, 238, 0.7); + font-style: italic; +} + +.menu-category-button-selected { + padding: 0.4em 4px; + background-color: rgba(238, 238, 238, 0.12); + border-radius: 2px; + color: #eeeeee; +} + +.menu-selected-app-box { + padding: 8px; + margin-bottom: 4px; + text-align: right; +} + +.menu-selected-app-box:rtl { + text-align: left; +} + +.menu-selected-app-title { + font-size: 9pt; + font-weight: 400; +} + +.menu-selected-app-description { + font-size: 9pt; + font-weight: 400; + max-width: 150px; +} + +.menu-search-box:ltr { + padding-left: 30px; + padding-bottom: 5px; + padding-top: 5px; +} + +.menu-search-box:rtl { + padding-right: 30px; + padding-bottom: 5px; + padding-top: 5px; +} + +.menu-search-entry-icon { + icon-size: 1em; + padding: 0 0; + color: rgba(238, 238, 238, 0.5); +} + +.window-list-box { + font-size: 9pt; + font-weight: 400; + spacing: 4px; + padding: 0 3px; +} + +.window-list-box.vertical { + spacing: 4px; + padding: 3px 0; +} + +.window-list-box:highlight { + background: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.window-list-item-box { + background-color: rgba(0, 0, 0, 0.01); + transition-duration: 100ms; +} + +.window-list-item-box:hover { + color: #e0e0e0; +} + +.window-list-item-box .progress { + background-color: #0095a2; +} + +.window-list-item-demands-attention { + background-color: #8b71ff; + color: rgba(224, 224, 224, 0.7); +} + +.window-list-preview { + background-color: #212121; + border-radius: 2px; + padding: 10px 15px; + spacing: 1em; + color: #eeeeee; +} + +.sound-player StButton:small { + min-width: 24px; + min-height: 24px; + padding: 4px; +} + +.sound-player StButton:small StIcon { + icon-size: 1em; +} + +.sound-player StButton StIcon { + icon-size: 1.5em; +} + +.sound-player .slider { + height: 5px; +} + +.sound-player StBoxLayout { + spacing: 0.5em; +} + +.sound-player > StBoxLayout { + padding: 5px; +} + +.sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); +} + +.sound-player-overlay { + background-color: #212121; + min-width: 300px; + padding: 12px 16px; + spacing: 0.5em; + color: rgba(238, 238, 238, 0.7); +} + +.workspace-button { + background-color: #010101; + width: 2em; + height: 1em; + color: rgba(224, 224, 224, 0.7); + margin: 2px; +} + +.workspace-button:outlined { + background-color: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.workspace-graph { + background-color: rgba(0, 0, 0, 0.6); +} + +.workspace-graph .workspace { + background-color: #010101; + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.workspace-graph .workspace:active { + background-color: rgba(224, 224, 224, 0.3); + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(255, 255, 255, 0.8); + -active-window-border: rgba(0, 0, 0, 0.9); + -inactive-window-background: rgba(140, 140, 140, 0.8); + -inactive-window-border: rgba(0, 0, 0, 0.7); +} + +.workspace-graph .workspace .windows { + -active-window-background: rgba(140, 140, 140, 0.8); + -active-window-border: rgba(0, 0, 0, 0.7); + -inactive-window-background: rgba(140, 140, 140, 0.8); + -inactive-window-border: rgba(0, 0, 0, 0.7); +} + +.panel-launchers { + padding: 0 4px; + spacing: 4px; + transition-duration: 100ms; +} + +.panel-launchers .launcher { + background-color: rgba(0, 0, 0, 0.01); +} + +.panel-launchers.vertical { + padding: 4px 0; + spacing: 4px; +} + +.panel-launchers.vertical .launcher .icon-box { + padding-top: 0; +} + +.applet-separator-line, .applet-separator-line-vertical { + width: 2px; + background: rgba(224, 224, 224, 0.12); +} + +.applet-spacer:highlight { + background: rgba(255, 255, 255, 0.1); +} + +.applet-box { + background-color: rgba(0, 0, 0, 0.01); + color: rgba(224, 224, 224, 0.7); + transition-duration: 100ms; +} + +.applet-box:checked { + color: #e0e0e0; +} + +.applet-box:checked .applet-label { + color: #e0e0e0; +} + +.applet-box:hover { + color: #e0e0e0; +} + +.applet-box:hover .applet-label { + color: #e0e0e0; +} + +.applet-box:highlight { + background: rgba(224, 224, 224, 0.3); + color: #e0e0e0; +} + +.applet-box:highlight .applet-label { + color: #e0e0e0; +} + +.applet-label { + font-size: 10.5pt; + font-weight: 500; + color: rgba(224, 224, 224, 0.7); +} + +.applet-icon { + color: rgba(224, 224, 224, 0.7); + padding: 0; + spacing: 0; + icon-size: 22px; +} + +.desklet { + font-size: 9pt; + font-weight: 400; + color: #e0e0e0; + border: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5); + padding: 12px; + background-color: rgba(0, 0, 0, 0.3); + border-radius: 2px; +} + +.desklet-with-borders { + font-size: 9pt; + font-weight: 400; + background-color: #212121; + border-radius: 2px; +} + +.desklet-with-borders:highlight { + background-color: rgba(255, 255, 255, 0.1); +} + +.desklet-with-borders-and-header { + font-size: 9pt; + font-weight: 400; + background-color: #212121; + border-radius-bottomleft: 2px; + border-radius-bottomright: 2px; +} + +.desklet-with-borders-and-header:highlight { + background-color: rgba(255, 255, 255, 0.1); +} + +.desklet-header { + font-size: 15pt; + font-weight: 500; + background-color: #212121; + border-radius-topleft: 2px; + border-radius-topright: 2px; +} + +.desklet-header:highlight { + background-color: rgba(255, 255, 255, 0.1); +} + +.photoframe-box { + background-color: #212121; + border-radius: 2px; +} + +.photoframe-box:highlight { + background-color: rgba(255, 255, 255, 0.1); +} + +.desklet-drag-placeholder { + border: 2px solid #009688; + background-color: rgba(0, 0, 0, 0.3); + border-radius: 2px; +} + +.launcher { + padding: 1px; +} + +.launcher .icon-box { + padding-top: 2px; +} + +.about-content { + min-width: 250px; + min-height: 150px; + spacing: 8px; + padding-bottom: 16px; +} + +.about-title { + font-size: 15pt; + font-weight: 500; +} + +.about-uuid { + font-size: 9pt; + font-weight: 400; +} + +.about-icon { + padding-right: 20px; +} + +.about-scrollBox { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 2px; +} + +.about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; +} + +.about-description { + padding-top: 4px; +} + +.about-version { + padding-left: 7px; +} + +.expo-workspaces-name-entry { + font-size: 10.5pt; + font-weight: 400; + background-color: rgba(0, 0, 0, 0.01); + color: rgba(224, 224, 224, 0.7); + padding: 4px 6px; + selection-background-color: rgba(224, 224, 224, 0.3); + selected-color: #e0e0e0; + caret-color: rgba(224, 224, 224, 0.5); + text-align: center; + height: 1.5em; + border-radius: 2px; + -cinnamon-caption-spacing: 12px; +} + +.expo-workspaces-name-entry#selected { + color: #e0e0e0; + background-color: rgba(224, 224, 224, 0.3); +} + +.expo-workspaces-name-entry:focus { + color: #e0e0e0; + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.expo-workspaces-name-entry:hover { + box-shadow: 0 -3px 0 0 #009688 inset; +} + +.notification-applet-padding { + padding: .5em 1em; +} + +.notification-applet-container { + max-height: 100px; +} + +.check-box CinnamonGenericContainer { + spacing: 8px; +} + +.check-box:focus:checked StBin { + background-image: url(assets/checkbox.svg); +} + +.check-box:checked StBin { + background-image: url(assets/checkbox.svg); +} + +.radiobutton CinnamonGenericContainer { + spacing: 8px; +} + +.radiobutton:focus:checked StBin { + background-image: url(assets/radiobutton.svg); +} + +.radiobutton:checked StBin { + background-image: url(assets/radiobutton.svg); +} + +.flashspot { + background-color: #009688; +} + +.osd-window { + spacing: 1em; + padding: 16px; +} + +.osd-window .level { + height: 0.7em; + border-radius: 0.3em; + background-color: rgba(238, 238, 238, 0.3); +} + +.osd-window .level-bar { + border-radius: 0.3em; + background-color: #009688; +} + +.tile-hud:top { + border-top-width: 0; + border-radius: 0 0 10px 10px; +} + +.tile-hud:bottom { + border-bottom-width: 0; + border-radius: 2px 2px 0 0; +} + +.tile-hud:left { + border-left-width: 0; + border-radius: 0 10px 10px 0; +} + +.tile-hud:right { + border-right-width: 0; + border-radius: 10px 0 0 10px; +} + +.tile-hud:top-left { + border-top-width: 0; + border-left-width: 0; + border-radius: 0 0 10px 0; +} + +.tile-hud:top-right { + border-top-width: 0; + border-right-width: 0; + border-radius: 0 0 0 10px; +} + +.tile-hud:bottom-left { + border-bottom-width: 0; + border-left-width: 0; + border-radius: 0 10px 0 0; +} + +.tile-hud:bottom-right { + border-bottom-width: 0; + border-right-width: 0; + border-radius: 10px 0 0 0; +} + +.systray { + spacing: 4px; +} + +.user-box { + padding: 0.4em 1.3em; + spacing: 10px; +} + +.user-icon { + padding: 4px; + border: none; +} + +.user-label { + font-size: 10.5pt; + font-weight: 500; + color: #eeeeee; +} diff --git a/dotfiles/.themes/oomox-materia-dark/cinnamon/thumbnail.png b/dotfiles/.themes/oomox-materia-dark/cinnamon/thumbnail.png Binary files differnew file mode 100644 index 0000000..ac66aa1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/cinnamon/thumbnail.png diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/calendar-arrow-left.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/calendar-arrow-left.svg new file mode 100644 index 0000000..fb4ee9f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M10 3v10L5 8z" fill="#eeeeee" opacity="0.7"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/calendar-arrow-right.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/calendar-arrow-right.svg new file mode 100644 index 0000000..a7bd603 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M6 3v10l5-5z" fill="#eeeeee" opacity="0.7"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/checkbox-off.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/checkbox-off.svg new file mode 100644 index 0000000..3ece7b0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/checkbox-off.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#eeeeee" opacity="0.7"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/checkbox.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/checkbox.svg new file mode 100644 index 0000000..198939b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/checkbox.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="#009688"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/close.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/close.svg new file mode 100644 index 0000000..b207ba4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/close.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M17 8.41L15.59 7 12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12z" fill="#eeeeee" opacity="0.7"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash-placeholder.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash-placeholder.svg new file mode 100644 index 0000000..7e4f260 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash-placeholder.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <circle cx="12" cy="12" r="12" fill="#eeeeee" opacity="0.3"/> + <circle cx="12" cy="12" r="4" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running1-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running1-focused.svg new file mode 100644 index 0000000..18c6649 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running1-focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running1.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running1.svg new file mode 100644 index 0000000..ed300a7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running1.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running2-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running2-focused.svg new file mode 100644 index 0000000..0e0f403 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running2-focused.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="32" cy="66" r="2" fill="#eeeeee"/> + <circle cx="40" cy="66" r="2" fill="#eeeeee"/> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running2.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running2.svg new file mode 100644 index 0000000..d676711 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running2.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="32" cy="66" r="2" fill="#eeeeee"/> + <circle cx="40" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running3-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running3-focused.svg new file mode 100644 index 0000000..38535ea --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running3-focused.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="28" cy="66" r="2" fill="#eeeeee"/> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> + <circle cx="44" cy="66" r="2" fill="#eeeeee"/> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running3.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running3.svg new file mode 100644 index 0000000..cf5c317 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running3.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="28" cy="66" r="2" fill="#eeeeee"/> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> + <circle cx="44" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running4-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running4-focused.svg new file mode 100644 index 0000000..03680a8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running4-focused.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="24" cy="66" r="2" fill="#eeeeee"/> + <circle cx="32" cy="66" r="2" fill="#eeeeee"/> + <circle cx="40" cy="66" r="2" fill="#eeeeee"/> + <circle cx="48" cy="66" r="2" fill="#eeeeee"/> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running4.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running4.svg new file mode 100644 index 0000000..808c0db --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/bottom-running4.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="24" cy="66" r="2" fill="#eeeeee"/> + <circle cx="32" cy="66" r="2" fill="#eeeeee"/> + <circle cx="40" cy="66" r="2" fill="#eeeeee"/> + <circle cx="48" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running1-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running1-focused.svg new file mode 100644 index 0000000..f0410ce --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running1-focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running1.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running1.svg new file mode 100644 index 0000000..7789dd7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running1.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running2-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running2-focused.svg new file mode 100644 index 0000000..fa5f6de --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running2-focused.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="32" r="2" fill="#eeeeee"/> + <circle cx="6" cy="40" r="2" fill="#eeeeee"/> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running2.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running2.svg new file mode 100644 index 0000000..9dc2407 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running2.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="32" r="2" fill="#eeeeee"/> + <circle cx="6" cy="40" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running3-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running3-focused.svg new file mode 100644 index 0000000..8098b23 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running3-focused.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="28" r="2" fill="#eeeeee"/> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> + <circle cx="6" cy="44" r="2" fill="#eeeeee"/> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running3.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running3.svg new file mode 100644 index 0000000..7bd7ae0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running3.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="28" r="2" fill="#eeeeee"/> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> + <circle cx="6" cy="44" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running4-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running4-focused.svg new file mode 100644 index 0000000..f569a9c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running4-focused.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="24" r="2" fill="#eeeeee"/> + <circle cx="6" cy="32" r="2" fill="#eeeeee"/> + <circle cx="6" cy="40" r="2" fill="#eeeeee"/> + <circle cx="6" cy="48" r="2" fill="#eeeeee"/> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running4.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running4.svg new file mode 100644 index 0000000..0d9868a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/left-running4.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="6" cy="24" r="2" fill="#eeeeee"/> + <circle cx="6" cy="32" r="2" fill="#eeeeee"/> + <circle cx="6" cy="40" r="2" fill="#eeeeee"/> + <circle cx="6" cy="48" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running1-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running1-focused.svg new file mode 100644 index 0000000..87c8a1f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running1-focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running1.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running1.svg new file mode 100644 index 0000000..c5d36b7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running1.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running2-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running2-focused.svg new file mode 100644 index 0000000..6fea96e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running2-focused.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="32" r="2" fill="#eeeeee"/> + <circle cx="66" cy="40" r="2" fill="#eeeeee"/> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running2.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running2.svg new file mode 100644 index 0000000..a6b1cf6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running2.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="32" r="2" fill="#eeeeee"/> + <circle cx="66" cy="40" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running3-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running3-focused.svg new file mode 100644 index 0000000..e09ced9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running3-focused.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="28" r="2" fill="#eeeeee"/> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> + <circle cx="66" cy="44" r="2" fill="#eeeeee"/> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running3.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running3.svg new file mode 100644 index 0000000..6a7e678 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running3.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="28" r="2" fill="#eeeeee"/> + <circle cx="66" cy="36" r="2" fill="#eeeeee"/> + <circle cx="66" cy="44" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running4-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running4-focused.svg new file mode 100644 index 0000000..eefc03a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running4-focused.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="24" r="2" fill="#eeeeee"/> + <circle cx="66" cy="32" r="2" fill="#eeeeee"/> + <circle cx="66" cy="40" r="2" fill="#eeeeee"/> + <circle cx="66" cy="48" r="2" fill="#eeeeee"/> + <circle cx="6" cy="36" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running4.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running4.svg new file mode 100644 index 0000000..77b4692 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/right-running4.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="66" cy="24" r="2" fill="#eeeeee"/> + <circle cx="66" cy="32" r="2" fill="#eeeeee"/> + <circle cx="66" cy="40" r="2" fill="#eeeeee"/> + <circle cx="66" cy="48" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running1-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running1-focused.svg new file mode 100644 index 0000000..0132d77 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running1-focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running1.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running1.svg new file mode 100644 index 0000000..7bb0def --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running1.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running2-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running2-focused.svg new file mode 100644 index 0000000..993f0c7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running2-focused.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="32" cy="6" r="2" fill="#eeeeee"/> + <circle cx="40" cy="6" r="2" fill="#eeeeee"/> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running2.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running2.svg new file mode 100644 index 0000000..d6af298 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running2.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="32" cy="6" r="2" fill="#eeeeee"/> + <circle cx="40" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running3-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running3-focused.svg new file mode 100644 index 0000000..c19c11a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running3-focused.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="28" cy="6" r="2" fill="#eeeeee"/> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> + <circle cx="44" cy="6" r="2" fill="#eeeeee"/> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running3.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running3.svg new file mode 100644 index 0000000..5f8464e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running3.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="28" cy="6" r="2" fill="#eeeeee"/> + <circle cx="36" cy="6" r="2" fill="#eeeeee"/> + <circle cx="44" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running4-focused.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running4-focused.svg new file mode 100644 index 0000000..cf1d6cf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running4-focused.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="24" cy="6" r="2" fill="#eeeeee"/> + <circle cx="32" cy="6" r="2" fill="#eeeeee"/> + <circle cx="40" cy="6" r="2" fill="#eeeeee"/> + <circle cx="48" cy="6" r="2" fill="#eeeeee"/> + <circle cx="36" cy="66" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running4.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running4.svg new file mode 100644 index 0000000..1d96e4f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/dash/top-running4.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144" viewBox="0 0 72 72"> + <circle cx="24" cy="6" r="2" fill="#eeeeee"/> + <circle cx="32" cy="6" r="2" fill="#eeeeee"/> + <circle cx="40" cy="6" r="2" fill="#eeeeee"/> + <circle cx="48" cy="6" r="2" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-enter.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-enter.svg new file mode 100644 index 0000000..8b30dc6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-enter.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-hide.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-hide.svg new file mode 100644 index 0000000..580d474 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-hide.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15l4-4H8l4 4z" fill="#eeeeee" opacity="0.8"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-layout.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-layout.svg new file mode 100644 index 0000000..e6f4ede --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-layout.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" fill="#eeeeee" opacity="0.8"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift-latched-uppercase.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift-latched-uppercase.svg new file mode 100644 index 0000000..d9f1008 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift-latched-uppercase.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" fill="#338DD6"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift-uppercase.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift-uppercase.svg new file mode 100644 index 0000000..f7c2d25 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift-uppercase.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" fill="#338DD6"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift.svg new file mode 100644 index 0000000..45459ff --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/key-shift.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" fill="#eeeeee" opacity="0.8"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/more-results.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/more-results.svg new file mode 100644 index 0000000..7ffd0d0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/more-results.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <circle cx="8" cy="8" r="8" fill="#009688"/> + <path d="M7 4v3H4v2h3v3h2V9h3V7H9V4H7z" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/no-events.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/no-events.svg new file mode 100644 index 0000000..3699c0d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/no-events.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"> + <path d="M34 24H24v10h10V24zM32 2v4H16V2h-4v4h-2c-2.21 0-3.98 1.79-3.98 4L6 38c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4h-2V2h-4zm6 36H10V16h28v22z" fill="#eeeeee" opacity="0.5"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/no-notifications.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/no-notifications.svg new file mode 100644 index 0000000..e48ca29 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/no-notifications.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"> + <path d="M24 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm12-12V22c0-6.15-3.27-11.28-9-12.64V8c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36c-5.73 1.36-9 6.49-9 12.64v10l-4 4v2h32v-2l-4-4zm-4 2H16V22c0-4.97 3.03-9 8-9s8 4.03 8 9v12z" fill="#eeeeee" opacity="0.5"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/process-working.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/process-working.svg new file mode 100644 index 0000000..63c8536 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/process-working.svg @@ -0,0 +1,72 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32"> + <defs> + <g id="g" fill="#eeeeee" opacity="0.7"> + <circle cx="8" cy="8" r="8" fill="none"/> + <path d="M8 1a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7h-3a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4V1z"/> + </g> + </defs> + <use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/> + <use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/> + <use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/> + <use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/> + <use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/> + <use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/> + <use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/> + <use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/> + <use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/> + <use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/> + <use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/> + <use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/> + <use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/> + <use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/> + <use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/> + <use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/> + <use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/> + <use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/> + <use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/> + <use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/> + <use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/> + <use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/> + <use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/> + <use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/> + <use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/> + <use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/> + <use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/> + <use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/> + <use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/> + <use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/> + <use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/> + <use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/> + <use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/> + <use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/> + <use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/> + <use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/> + <use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/> + <use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/> + <use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/> + <use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/> + <use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/> + <use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/> + <use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/> + <use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/> + <use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/> + <use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/> + <use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/> + <use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/> + <use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/> + <use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/> + <use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/> + <use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/> + <use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/> + <use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/> + <use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/> + <use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/> + <use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/> + <use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/> + <use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/> + <use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/> + <use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/> + <use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/> + <use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/> + <use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/toggle-off.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/toggle-off.svg new file mode 100644 index 0000000..9e63a4b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/toggle-off.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20"> + <rect x="2" y="2" width="36" height="16" ry="8" fill="#eeeeee" opacity="0.3"/> + <circle cx="10" cy="10" r="6" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/toggle-on.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/toggle-on.svg new file mode 100644 index 0000000..8ca9959 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/toggle-on.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20"> + <rect x="2" y="2" width="36" height="16" ry="8" fill="#009688"/> + <circle cx="30" cy="10" r="6" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/window-close-active.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/window-close-active.svg new file mode 100644 index 0000000..010eba5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/window-close-active.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"> + <circle cx="18" cy="18" r="18" fill="#EA4335"/> + <circle cx="18" cy="18" r="18" fill="#eeeeee" opacity="0.24"/> + <path d="M23 14.41L21.59 13 18 16.59 14.41 13 13 14.41 16.59 18 13 21.59 14.41 23 18 19.41 21.59 23 23 21.59 19.41 18z" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/window-close.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/window-close.svg new file mode 100644 index 0000000..140a14d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/assets/window-close.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"> + <circle cx="18" cy="18" r="18" fill="#EA4335"/> + <circle cx="18" cy="18" r="18" fill="#eeeeee" opacity="0"/> + <path d="M23 14.41L21.59 13 18 16.59 14.41 13 13 14.41 16.59 18 13 21.59 14.41 23 18 19.41 21.59 23 23 21.59 19.41 18z" fill="#eeeeee"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css b/dotfiles/.themes/oomox-materia-dark/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css new file mode 100644 index 0000000..912fa25 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css @@ -0,0 +1,519 @@ +#workspacestodockTriggerSpacer {
+ background-color: none;
+}
+
+#workspacestodockContainerWrapper {
+ background-color: none;
+}
+
+#workspacestodockContainer {
+ background-color: none;
+}
+
+#workspacestodockDockWrapper {
+}
+
+#workspacestodockDock {
+ padding: 0;
+}
+
+#workspacestodockDock .workspace-thumbnails {
+ background-color: #37474F;
+ background-color: rgba(0, 0, 0, 0.6);
+}
+
+#workspacestodockDock:overview .workspace-thumbnails {
+ background-color: rgba(255, 255, 255, 0.1);
+}
+
+#workspacestodockDock.fullheight:overview .workspace-thumbnails {
+ background-color: transparent;
+}
+
+#workspacestodockDock .workspace-thumbnail-indicator {
+ border-left-width: 0;
+}
+
+#workspacestodockDock.right .workspace-thumbnail-indicator {
+ border-left-width: 2px;
+}
+
+#workspacestodockDock.left .workspace-thumbnail-indicator {
+ border-right-width: 2px;
+}
+
+#workspacestodockDock.top .workspace-thumbnail-indicator {
+ border-bottom-width: 2px;
+}
+
+#workspacestodockDock.bottom .workspace-thumbnail-indicator {
+ border-top-width: 2px;
+}
+
+#workspacestodockDock.right .workspace-thumbnails {
+ border-radius: 2px 0 0 2px;
+}
+
+#workspacestodockDock.left .workspace-thumbnails {
+ border-radius: 0 2px 2px 0;
+}
+
+#workspacestodockDock.top .workspace-thumbnails {
+ border-radius: 0 0 2px 2px;
+}
+
+#workspacestodockDock.bottom .workspace-thumbnails {
+ border-radius: 2px 2px 0 0;
+}
+
+#workspacestodockDock.right.inside .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.left.inside .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.top.inside .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.bottom.inside .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.right.fullheight .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.left.fullheight .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.top.fullheight .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock.bottom.fullheight .workspace-thumbnails {
+ border-radius: 0;
+}
+
+#workspacestodockDock .workspacestodock-shortcuts-panel {
+ border: 0 solid rgba(255, 255, 255, 0.12);
+}
+
+#workspacestodockDock.right .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+ padding: 0;
+ spacing: 0;
+ border-left: 1px;
+ border-right: none;
+}
+
+#workspacestodockDock.left .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+ padding: 0;
+ spacing: 0;
+ border-left: none;
+ border-right: 1px;
+}
+
+#workspacestodockDock.top .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+ padding: 0;
+ spacing: 0;
+ border-top: none;
+ border-bottom: 1px;
+}
+
+#workspacestodockDock.bottom .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+ padding: 0;
+ spacing: 0;
+ border-top: 1px;
+ border-bottom: none;
+}
+
+#workspacestodockDock.right.inside .workspacestodock-shortcuts-panel {
+ border-radius: 2px 0 0 2px;
+ padding: 0;
+ spacing: 0;
+ border-left: none;
+ border-right: 1px;
+}
+
+#workspacestodockDock.left.inside .workspacestodock-shortcuts-panel {
+ border-radius: 0 2px 2px 0;
+ padding: 0;
+ spacing: 0;
+ border-left: 1px;
+ border-right: none;
+}
+
+#workspacestodockDock.top.inside .workspacestodock-shortcuts-panel {
+ border-radius: 0 0 2px 2px;
+ padding: 0;
+ spacing: 0;
+ border-top: 1px;
+ border-bottom: none;
+}
+
+#workspacestodockDock.bottom.inside .workspacestodock-shortcuts-panel {
+ border-radius: 2px 2px 0 0;
+ padding: 0;
+ spacing: 0;
+ border-top: none;
+ border-bottom: 1px;
+}
+
+#workspacestodockDock.right.fullheight .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+}
+
+#workspacestodockDock.left.fullheight .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+}
+
+#workspacestodockDock.top.fullheight .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+}
+
+#workspacestodockDock.bottom.fullheight .workspacestodock-shortcuts-panel {
+ border-radius: 0;
+}
+
+#workspacestodockDock .workspacestodock-shortcuts-panel > * {
+ border: 0 !important;
+}
+
+.workspacestodock-shortcuts-panel-popupmenu {
+ padding: 2px;
+ spacing: 0;
+}
+
+.workspacestodock-shortcuts-panel-favorites {
+}
+
+.workspacestodock-shortcuts-panel-running {
+}
+
+.workspacestodock-shortcuts-panel-places {
+}
+
+/* shortcuts panel buttons */
+#workspacestodockDock .app-well-app {
+}
+
+#workspacestodockDock .workspacestodock-shortcuts-panel > StButton {
+ background-size: cover;
+}
+
+#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton,
+#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton {
+ padding: 3px 6px;
+}
+
+#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:first-child,
+#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:first-child {
+ padding: 6px 6px 3px 6px;
+}
+
+#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:last-child,
+#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:last-child {
+ padding: 3px 6px 6px 6px;
+}
+
+#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton,
+#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton {
+ padding: 6px 3px;
+}
+
+#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:first-child,
+#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:first-child {
+ padding: 6px 3px 6px 6px;
+}
+
+#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:last-child,
+#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:last-child {
+ padding: 6px 6px 6px 3px;
+}
+
+.workspacestodock-shortcut-button {
+}
+
+.workspacestodock-shortcut-button-symbolic {
+}
+
+/* shortcuts panel button icons */
+#workspacestodockDock .app-well-app > .overview-icon {
+}
+
+.workspacestodock-shortcut-button-icon {
+ padding: 6px;
+}
+
+.workspacestodock-shortcut-button-symbolic-icon {
+ padding: 8px;
+}
+
+/* shortcuts panel items */
+#workspacestodockDock .popup-separator-menu-item {
+ margin: 0;
+}
+
+.workspacestodock-shortcut-panel-separator {
+ -margin-horizontal: 0;
+}
+
+.workspacestodock-shortcut-panel-filler {
+ -margin-horizontal: 0;
+ height: 0;
+ padding: 0;
+ border: none;
+}
+
+/* shortcuts panel button window count indicators */
+#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-1 {
+ background-image: url("../../assets/dash/right-running1.svg");
+}
+
+#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-1 {
+ background-image: url("../../assets/dash/left-running1.svg");
+}
+
+#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-1 {
+ background-image: url("../../assets/dash/top-running1.svg");
+}
+
+#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-1 {
+ background-image: url("../../assets/dash/bottom-running1.svg");
+}
+
+#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-2 {
+ background-image: url("../../assets/dash/right-running2.svg");
+}
+
+#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-2 {
+ background-image: url("../../assets/dash/left-running2.svg");
+}
+
+#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-2 {
+ background-image: url("../../assets/dash/top-running2.svg");
+}
+
+#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-2 {
+ background-image: url("../../assets/dash/bottom-running2.svg");
+}
+
+#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-3 {
+ background-image: url("../../assets/dash/right-running3.svg");
+}
+
+#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-3 {
+ background-image: url("../../assets/dash/left-running3.svg");
+}
+
+#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-3 {
+ background-image: url("../../assets/dash/top-running3.svg");
+}
+
+#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-3 {
+ background-image: url("../../assets/dash/bottom-running3.svg");
+}
+
+#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-4 {
+ background-image: url("../../assets/dash/right-running4.svg");
+}
+
+#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-4 {
+ background-image: url("../../assets/dash/left-running4.svg");
+}
+
+#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-4 {
+ background-image: url("../../assets/dash/top-running4.svg");
+}
+
+#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-4 {
+ background-image: url("../../assets/dash/bottom-running4.svg");
+}
+
+.workspacestodock-workspace-caption-container {
+ padding: 0;
+}
+
+.workspacestodock-workspace-caption-background {
+ background-color: rgba(0, 0, 0, 0.6);
+ /* border-radius: 0 0 2px 2px; */
+}
+
+.workspacestodock-workspace-caption-background.caption-top {
+ /* border-radius: 2px 2px 0 0; */
+}
+
+.workspacestodock-workspace-caption {
+}
+
+/* caption window apps (taskbar) */
+.workspacestodock-caption-windowapps {
+ padding: 0;
+}
+
+.workspacestodock-caption-windowapps-menu {
+ -boxpointer-gap: 12px;
+}
+
+.workspacestodock-caption-windowapps-menu .popup-menu-item {
+ min-height: 24px;
+ padding-top: 4px;
+ padding-bottom: 4px;
+}
+
+.workspacestodock-caption-windowapps-menu .popup-menu-item:active {
+ background-color: rgba(0, 0, 0, 0.12);
+}
+
+.workspacestodock-caption-windowapps-menu .popup-menu-item.selected:active {
+ background-color: rgba(0, 0, 0, 0.24);
+}
+
+.workspacestodock-caption-windowapps-menu-item {
+ /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */
+}
+
+.workspacestodock-caption-windowapps-menu-item:active {
+ /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */
+}
+
+.workspacestodock-caption-windowapps-menu-icon {
+}
+
+.workspacestodock-caption-windowapps-menu-label {
+ padding: 0 8px;
+}
+
+.workspacestodock-caption-windowapps-menu .window-close {
+ /* GS36+ can override gnome shell class 'window-close' */
+ border-radius: 100px;
+ -st-background-image-shadow: none;
+ background-image: url("../../assets/close.svg");
+ background-size: 24px;
+ height: 24px;
+ width: 24px;
+}
+
+.workspacestodock-caption-windowapps-menu .window-close:hover {
+ background-color: rgba(0, 0, 0, 0.12);
+}
+
+.workspacestodock-caption-windowapps-menu .window-close:active {
+ background-color: rgba(0, 0, 0, 0.24);
+}
+
+.workspacestodock-caption-windowapps-menu-close {
+ /*fallback class for GS34 since it can't override gnome shell class 'window-close' */
+}
+
+.workspacestodock-caption-windowapps-menu-close:hover {
+ /*fallback class for GS34 since it can't override gnome shell class 'window-close' */
+}
+
+.workspacestodock-caption-windowapps-button {
+ padding: 0;
+}
+
+.workspacestodock-caption-windowapps-button-icon {
+ padding: 2px;
+ background-color: rgba(0, 0, 0, 0.01); /* needs to draw box-shadow */
+}
+
+.workspacestodock-caption-windowapps-button:active > .workspacestodock-caption-windowapps-button-icon {
+ box-shadow: inset 0 -2px rgba(255, 255, 255, 0.3);
+}
+
+.workspacestodock-caption-windowapps-button-active > .workspacestodock-caption-windowapps-button-icon {
+ box-shadow: inset 0 -2px #eeeeee;
+}
+
+/* caption workspace number */
+.workspacestodock-caption-number {
+ margin: 1px;
+ padding: 0 10px;
+ border-radius: 0;
+ background-color: rgba(255, 255, 255, 0.3);
+ color: #eeeeee;
+ font-size: 9pt;
+ font-weight: bold;
+ text-align: center;
+}
+
+/* caption workspace name */
+.workspacestodock-caption-name {
+ margin: 0 4px;
+ color: rgba(255, 255, 255, 0.6);
+ font-size: 9pt;
+ text-align: center;
+}
+
+/* caption workspace windowcount */
+.workspacestodock-caption-windowcount {
+ /* min-width: 16px; */
+ margin: 0px 4px;
+ padding: 0px 4px;
+ color: #eeeeee;
+ font-size: 9pt;
+ font-weight: bold;
+ text-align: center;
+}
+
+/* caption workspace windowcount image*/
+.workspacestodock-caption-windowcount-image {
+ width: 20px;
+ height: 20px;
+ margin: 1px;
+ border-radius: 0;
+ background-color: #FF4081;
+ color: #eeeeee;
+ font-size: 9pt;
+ font-weight: bold;
+ text-align: center;
+}
+
+/* The classes below are used in conjunction with the above workspacestodock-caption-windowcount-image
+ * They provide background images that corespond with the window count */
+.workspacestodock-caption-windowcount-image-1 {
+}
+
+.workspacestodock-caption-windowcount-image-2 {
+}
+
+.workspacestodock-caption-windowcount-image-3 {
+}
+
+.workspacestodock-caption-windowcount-image-4 {
+}
+
+/* caption spacer-filler */
+.workspacestodock-caption-spacer {
+ width: 4px;
+}
+
+/* The classes below are used in conjuction with the above classes
+ * They provide additional theming for the current workspace caption */
+.workspacestodock-workspace-caption-background-current {
+}
+
+.workspacestodock-workspace-caption-background-current.caption-top {
+}
+
+.workspacestodock-caption-number-current {
+ /* background-color: #42A5F5; */
+}
+
+.workspacestodock-caption-name-current {
+}
+
+.workspacestodock-caption-windowcount-current {
+}
+
+.workspacestodock-caption-windowcount-image-current {
+}
diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/gnome-shell-theme.gresource.xml b/dotfiles/.themes/oomox-materia-dark/gnome-shell/gnome-shell-theme.gresource.xml new file mode 100644 index 0000000..eab5f37 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/gnome-shell-theme.gresource.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<gresources> + <gresource prefix="/org/gnome/shell/theme"> + <file>assets/dash/bottom-running1.svg</file> + <file>assets/dash/bottom-running1-focused.svg</file> + <file>assets/dash/bottom-running2.svg</file> + <file>assets/dash/bottom-running2-focused.svg</file> + <file>assets/dash/bottom-running3.svg</file> + <file>assets/dash/bottom-running3-focused.svg</file> + <file>assets/dash/bottom-running4.svg</file> + <file>assets/dash/bottom-running4-focused.svg</file> + <file>assets/dash/left-running1.svg</file> + <file>assets/dash/left-running1-focused.svg</file> + <file>assets/dash/left-running2.svg</file> + <file>assets/dash/left-running2-focused.svg</file> + <file>assets/dash/left-running3.svg</file> + <file>assets/dash/left-running3-focused.svg</file> + <file>assets/dash/left-running4.svg</file> + <file>assets/dash/left-running4-focused.svg</file> + <file>assets/dash/right-running1.svg</file> + <file>assets/dash/right-running1-focused.svg</file> + <file>assets/dash/right-running2.svg</file> + <file>assets/dash/right-running2-focused.svg</file> + <file>assets/dash/right-running3.svg</file> + <file>assets/dash/right-running3-focused.svg</file> + <file>assets/dash/right-running4.svg</file> + <file>assets/dash/right-running4-focused.svg</file> + <file>assets/dash/top-running1.svg</file> + <file>assets/dash/top-running1-focused.svg</file> + <file>assets/dash/top-running2.svg</file> + <file>assets/dash/top-running2-focused.svg</file> + <file>assets/dash/top-running3.svg</file> + <file>assets/dash/top-running3-focused.svg</file> + <file>assets/dash/top-running4.svg</file> + <file>assets/dash/top-running4-focused.svg</file> + <file>assets/calendar-arrow-left.svg</file> + <file>assets/calendar-arrow-right.svg</file> + <file>assets/checkbox.svg</file> + <file>assets/checkbox-off.svg</file> + <file>assets/close.svg</file> + <file>assets/dash-placeholder.svg</file> + <file>assets/key-enter.svg</file> + <file>assets/key-hide.svg</file> + <file>assets/key-layout.svg</file> + <file>assets/key-shift.svg</file> + <file>assets/key-shift-uppercase.svg</file> + <file>assets/key-shift-latched-uppercase.svg</file> + <file>assets/more-results.svg</file> + <file>assets/toggle-off.svg</file> + <file>assets/toggle-on.svg</file> + <file>assets/window-close.svg</file> + <file>assets/window-close-active.svg</file> + <file>extensions/workspaces-to-dock/workspaces-to-dock.css</file> + <file>gnome-shell.css</file> + <file alias="icons/message-indicator-symbolic.svg">message-indicator-symbolic.svg</file> + <file>no-events.svg</file> + <file>no-notifications.svg</file> + <file>noise-texture.png</file> + <file>pad-osd.css</file> + <file>process-working.svg</file> + </gresource> +</gresources> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/gnome-shell.css b/dotfiles/.themes/oomox-materia-dark/gnome-shell/gnome-shell.css new file mode 100644 index 0000000..fe61301 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/gnome-shell.css @@ -0,0 +1,3270 @@ +/* This stylesheet is generated, DO NOT EDIT */ +/* Copyright 2009, 2015 Red Hat, Inc. + * + * Portions adapted from Mx's data/style/default.css + * Copyright 2009 Intel Corporation + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU Lesser General Public License, + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + */ +/* GLOBALS */ +* { + transition-duration: 150ms; +} + +stage { + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + font-size: 10.5pt; + font-weight: 400; + color: #eeeeee; +} + +/* WIDGETS */ +/* Buttons */ +.button { + min-height: 32px; + padding: 0 16px; + border-width: 0; + border-radius: 2px; + font-size: 10.5pt; + font-weight: 500; + color: rgba(238, 238, 238, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:focus { + color: #eeeeee; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.button:hover { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:active { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:insensitive { + color: rgba(238, 238, 238, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button { + min-height: 32px; + margin: 4px; + padding: 0 8px; + margin-right: 0; + border-right-width: 0; + border-radius: 2px; + font-size: 10.5pt; + font-weight: 500; + color: rgba(238, 238, 238, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:focus { + color: #eeeeee; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.modal-dialog-linked-button:hover { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:active { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:insensitive { + color: rgba(238, 238, 238, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:first-child { + border-radius: 2px; +} + +.modal-dialog-linked-button:last-child { + margin-right: 4px; + border-right-width: 0px; + border-radius: 2px; +} + +.modal-dialog-linked-button:first-child:last-child { + margin-right: 4px; + border-right-width: 0px; + border-radius: 2px; +} + +/* Entries */ +StEntry { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + border-width: 0; + color: #eeeeee; + selection-background-color: #338DD6; + selected-color: #fefefe; + font-size: 11.25pt; + font-weight: 400; + background-color: rgba(48, 48, 48, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); +} + +StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #338DD6; +} + +StEntry:insensitive { + color: rgba(238, 238, 238, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); +} + +StEntry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #bc742d; + padding: 0 0; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} + +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} + +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} + +StScrollBar StBin#trough { + margin: 4px; + border-radius: 100px; + background-color: rgba(238, 238, 238, 0.12); +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 100px; + background-color: rgba(238, 238, 238, 0.5); + margin: 4px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(238, 238, 238, 0.7); +} + +StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #eeeeee; +} + +#overview StScrollBar StBin#trough, #screenShieldNotifications StScrollBar StBin#trough { + background-color: rgba(254, 254, 254, 0.12); +} + +#overview StScrollBar StButton#vhandle, #screenShieldNotifications StScrollBar StButton#vhandle, #overview StScrollBar StButton#hhandle, #screenShieldNotifications StScrollBar StButton#hhandle { + background-color: rgba(254, 254, 254, 0.5); +} + +#overview StScrollBar StButton#vhandle:hover, #screenShieldNotifications StScrollBar StButton#vhandle:hover, #overview StScrollBar StButton#hhandle:hover, #screenShieldNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(254, 254, 254, 0.7); +} + +#overview StScrollBar StButton#vhandle:active, #screenShieldNotifications StScrollBar StButton#vhandle:active, #overview StScrollBar StButton#hhandle:active, #screenShieldNotifications StScrollBar StButton#hhandle:active { + background-color: #fefefe; +} + +/* Slider */ +.slider { + height: 20px; + color: #009688; + -barlevel-height: 2px; + -barlevel-background-color: rgba(238, 238, 238, 0.3); + -barlevel-border-color: transparent; + -barlevel-active-background-color: #009688; + -barlevel-active-border-color: transparent; + -barlevel-overdrive-color: #d8645a; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -barlevel-border-width: 0; + -slider-handle-radius: 6px; +} + +/* Check Boxes */ +.check-box * { + min-height: 16px; + padding: 8px 0; +} + +.check-box StBoxLayout { + spacing: 8px; +} + +.check-box StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:hover StBin { + background-color: rgba(238, 238, 238, 0.12); +} + +.check-box:active StBin { + background-color: rgba(238, 238, 238, 0.3); +} + +.check-box:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:focus:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:hover:checked StBin { + background-color: rgba(0, 150, 136, 0.12); +} + +.check-box:active:checked StBin { + background-color: rgba(0, 150, 136, 0.24); +} + +/* Switches */ +.toggle-switch { + width: 40px; + height: 20px; + background-size: contain; +} + +.toggle-switch-us { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch-us:checked { + background-image: url("assets/toggle-on.svg"); +} + +.toggle-switch-intl { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch-intl:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* links */ +.shell-link { + border-radius: 2px; + color: #3d82ff; +} + +.shell-link:hover { + color: #3d82ff; + background-color: rgba(61, 130, 255, 0.12); +} + +.shell-link:active { + color: #3d82ff; + background-color: rgba(61, 130, 255, 0.24); +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.modal-dialog { + border-radius: 2px; + color: #eeeeee; + background-color: #303030; + border: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +.modal-dialog .modal-dialog-content-box { + padding: 24px; +} + +.modal-dialog .run-dialog-entry { + width: 20em; + margin-bottom: 0; +} + +.modal-dialog .run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.modal-dialog .run-dialog-button-box { + padding-top: 1em; +} + +.modal-dialog .run-dialog-label { + font-size: 1em; + font-weight: normal; + color: rgba(238, 238, 238, 0.5); + padding-bottom: .4em; +} + +.mount-dialog-subject, +.end-session-dialog-subject { + font-size: 15pt; + font-weight: 500; +} + +/* Message Dialog */ +.message-dialog-main-layout { + padding: 12px 20px 0; + spacing: 12px; +} + +.message-dialog-content { + max-width: 28em; + spacing: 20px; +} + +.message-dialog-icon { + min-width: 48px; + icon-size: 48px; +} + +.message-dialog-title { + font-weight: bold; +} + +.message-dialog-subtitle { + color: rgba(238, 238, 238, 0.7); + font-weight: bold; +} + +/* End Session Dialog */ +.end-session-dialog { + spacing: 42px; + border: none; +} + +.end-session-dialog-list { + padding-top: 20px; +} + +.end-session-dialog-layout { + padding-left: 17px; +} + +.end-session-dialog-layout:rtl { + padding-right: 17px; +} + +.end-session-dialog-description { + width: 28em; + padding-bottom: 10px; +} + +.end-session-dialog-description:rtl { + text-align: right; +} + +.end-session-dialog-warning { + width: 28em; + color: #bc742d; + padding-top: 6px; +} + +.end-session-dialog-warning:rtl { + text-align: right; +} + +.end-session-dialog-logout-icon { + border-radius: 5px; + width: 48px; + height: 48px; + background-size: contain; +} + +.end-session-dialog-shutdown-icon { + color: rgba(238, 238, 238, 0.5); + width: 48px; + height: 48px; +} + +.end-session-dialog-inhibitor-layout { + spacing: 16px; + max-height: 200px; + padding-right: 65px; + padding-left: 65px; +} + +.end-session-dialog-session-list, +.end-session-dialog-app-list { + spacing: 1em; +} + +.end-session-dialog-list-header { + font-weight: bold; +} + +.end-session-dialog-list-header:rtl { + text-align: right; +} + +.end-session-dialog-app-list-item, +.end-session-dialog-session-list-item { + spacing: 1em; +} + +.end-session-dialog-app-list-item-name, +.end-session-dialog-session-list-item-name { + font-weight: bold; +} + +.end-session-dialog-app-list-item-description { + color: rgba(238, 238, 238, 0.5); + font-size: 1em; +} + +/* ShellMountOperation Dialogs */ +.shell-mount-operation-icon { + icon-size: 48px; +} + +.mount-dialog { + spacing: 24px; +} + +.mount-dialog .message-dialog-title { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; + max-width: 34em; +} + +.mount-dialog .message-dialog-title:rtl { + padding-left: 0px; + padding-right: 17px; +} + +.mount-dialog .message-dialog-body { + padding-left: 17px; + width: 28em; +} + +.mount-dialog .message-dialog-body:rtl { + padding-left: 0px; + padding-right: 17px; +} + +.mount-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; +} + +.mount-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; +} + +.mount-dialog-app-list-item { + color: #eeeeee; +} + +.mount-dialog-app-list-item:hover { + color: #eeeeee; +} + +.mount-dialog-app-list-item:ltr { + padding-right: 1em; +} + +.mount-dialog-app-list-item:rtl { + padding-left: 1em; +} + +.mount-dialog-app-list-item-icon:ltr { + padding-right: 17px; +} + +.mount-dialog-app-list-item-icon:rtl { + padding-left: 17px; +} + +.mount-dialog-app-list-item-name { + font-size: 1em; +} + +/* Password or Authentication Dialog */ +.prompt-dialog { + width: 34em; + border: none; +} + +.prompt-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.prompt-dialog .message-dialog-content { + spacing: 16px; +} + +.prompt-dialog .message-dialog-title { + font-size: 15pt; + font-weight: 500; + color: #eeeeee; +} + +.prompt-dialog-description:rtl { + text-align: right; +} + +.prompt-dialog-password-box { + spacing: 1em; + padding-bottom: 1em; +} + +.prompt-dialog-error-label { + font-size: 1em; + color: #d8645a; + padding-bottom: 8px; +} + +.prompt-dialog-info-label { + font-size: 1em; + padding-bottom: 8px; +} + +.hidden { + color: rgba(0, 0, 0, 0); +} + +.prompt-dialog-null-label { + font-size: 1em; + padding-bottom: 8px; +} + +/* Polkit Dialog */ +.polkit-dialog-user-layout { + padding-left: 10px; + spacing: 10px; +} + +.polkit-dialog-user-layout:rtl { + padding-left: 0px; + padding-right: 10px; +} + +.polkit-dialog-user-root-label { + color: #bc742d; +} + +.polkit-dialog-user-icon { + border-radius: 5px; + background-size: contain; + width: 48px; + height: 48px; +} + +/* Audio selection dialog */ +.audio-device-selection-dialog { + spacing: 30px; +} + +.audio-selection-content { + spacing: 20px; + padding: 24px; +} + +.audio-selection-title { + font-weight: bold; + text-align: center; +} + +.audio-selection-box { + spacing: 20px; +} + +.audio-selection-device { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 2px; +} + +.audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { + background-color: #338DD6; +} + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +/* Access Dialog */ +.access-dialog { + spacing: 30px; +} + +/* Geolocation Dialog */ +.geolocation-dialog { + spacing: 30px; +} + +/* Extension Dialog */ +.extension-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.extension-dialog .message-dialog-title { + color: rgba(238, 238, 238, 0.7); +} + +/* Inhibit-Shortcuts Dialog */ +.inhibit-shortcuts-dialog { + spacing: 30px; +} + +/* Network Agent Dialog */ +.network-dialog-secret-table { + spacing-rows: 15px; + spacing-columns: 1em; +} + +.keyring-dialog-control-table { + spacing-rows: 15px; + spacing-columns: 1em; +} + +/* Popovers/Menus */ +.popup-menu { + min-width: 200px; +} + +.popup-menu .popup-sub-menu { + background-color: #212121; + box-shadow: 0 0 transparent; +} + +.popup-menu .popup-menu-content { + padding: 8px 0; +} + +.popup-menu .popup-menu-item { + spacing: 8px; + transition-duration: 100ms; +} + +.popup-menu .popup-menu-item:ltr { + padding: 0.4em 24px 0.4em 0; +} + +.popup-menu .popup-menu-item:rtl { + padding: 0.4em 0 0.4em 24px; +} + +.popup-menu .popup-menu-item:checked { + background-color: #338DD6; + color: #fefefe; + box-shadow: 0 0 transparent; + font-weight: normal; +} + +.popup-menu .popup-menu-item:checked.selected { + background-color: #4b9bdb; + color: #fefefe; +} + +.popup-menu .popup-menu-item:checked:active { + background-color: #64a8e0; + color: #fefefe !important; +} + +.popup-menu .popup-menu-item:checked:insensitive { + color: rgba(254, 254, 254, 0.5); +} + +.popup-menu .popup-menu-item.selected { + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; + transition-duration: 0ms; +} + +.popup-menu .popup-menu-item:active { + background-color: rgba(238, 238, 238, 0.3); + color: #eeeeee; + transition-duration: 150ms; +} + +.popup-menu .popup-menu-item.selected:active { + color: #eeeeee; +} + +.popup-menu .popup-menu-item:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.popup-menu .popup-inactive-menu-item { + color: #eeeeee; +} + +.popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.popup-menu.panel-menu { + -boxpointer-gap: 4px; + margin-bottom: 1.75em; +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} + +.popup-menu-boxpointer, +.candidate-popup-boxpointer { + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-box-shadow: none; + margin: 5px 8px 8px; + background-color: #303030; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.popup-separator-menu-item { + height: 1px; + margin: 8px 40px; + background-color: transparent; + border-color: rgba(0, 0, 0, 0.26); + border-bottom-width: 1px; + border-bottom-style: solid; +} + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0; +} + +/* fallback menu +- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled + app menu inside the main app window itself rather than the top bar +*/ +/* OSD */ +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + margin: 32px; + min-width: 64px; + min-height: 64px; +} + +.osd-window .osd-monitor-label { + font-size: 45px; + font-weight: 400; +} + +.osd-window .level { + height: 8px; + -barlevel-height: 8px; + -barlevel-background-color: rgba(238, 238, 238, 0.12); + -barlevel-active-background-color: #338DD6; + -barlevel-overdrive-color: #d8645a; + -barlevel-overdrive-separator-width: 2px; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: rgba(0, 0, 0, 0.6); +} + +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} + +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 16px; +} + +.switcher-list-item-container { + spacing: 8px; +} + +.switcher-list .item-box { + padding: 8px; + border-radius: 2px; +} + +.switcher-list .item-box:outlined { + padding: 8px; + border: none; + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; +} + +.switcher-list .item-box:selected { + background-color: #338DD6; + color: #fefefe; +} + +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} + +.switcher-list .thumbnail { + width: 256px; +} + +.switcher-list .separator { + width: 1px; + background: rgba(0, 0, 0, 0.26); +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(238, 238, 238, 0.5); +} + +.switcher-arrow:highlighted { + color: #eeeeee; +} + +.input-source-switcher-symbol { + font-size: 45px; + font-weight: 400; + width: 96px; + height: 96px; +} + +/* Window Cycler */ +.cycler-highlight { + border: 4px solid #338DD6; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher { + background: transparent; + border: 0px; + border-radius: 0px; + padding: 0px; + spacing: 8px; +} + +.ws-switcher-active-up, .ws-switcher-active-down { + height: 48px; + background-color: #338DD6; + color: #fefefe; + background-size: 32px; + border-radius: 2px; +} + +.ws-switcher-box { + height: 48px; + border: none; + background: rgba(238, 238, 238, 0.12); + border-radius: 2px; +} + +.osd-window, +.resize-popup, +.switcher-list, .workspace-switcher-container { + color: #eeeeee; + background-color: #303030; + border: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); + border-radius: 2px; + padding: 12px; +} + +/* Tiled window previews */ +.tile-preview { + background-color: rgba(83, 173, 246, 0.3); + border: 1px solid #53adf6; +} + +.tile-preview-left.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +/* TOP BAR */ +#panel { + background-color: rgba(0, 0, 0, 0.6); + /* transition from solid to transparent */ + transition-duration: 250ms; + font-weight: bold; + height: 28px; + font-feature-settings: "tnum"; +} + +#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { + background-color: transparent; +} + +#panel #panelLeft, #panel #panelCenter { + spacing: 0; +} + +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: rgba(0, 0, 0, 0.6); + -panel-corner-border-width: 2px; + -panel-corner-border-color: transparent; +} + +#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { + -panel-corner-border-color: #fefefe; +} + +#panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; +} + +#panel .panel-button { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: rgba(254, 254, 254, 0.7); + text-shadow: none; + transition-duration: 150ms; +} + +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; + margin-left: 4px; + margin-right: 4px; +} + +#panel .panel-button .system-status-icon, +#panel .panel-button .app-menu-icon > StIcon, +#panel .panel-button .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button:hover { + color: #fefefe; + text-shadow: none; +} + +#panel .panel-button:hover .system-status-icon, +#panel .panel-button:hover .app-menu-icon > StIcon, +#panel .panel-button:hover .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + background-color: rgba(0, 0, 0, 0.01); + box-shadow: inset 0 -2px 0px #fefefe; + color: #fefefe; +} + +#panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { + icon-shadow: none; +} + +#panel .panel-button .system-status-icon { + icon-size: 1.14286em; + padding: 0 4px; +} + +.unlock-screen #panel .panel-button, +.login-screen #panel .panel-button, +.lock-screen #panel .panel-button { + color: rgba(254, 254, 254, 0.7); +} + +.unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, +.login-screen #panel .panel-button:focus, +.login-screen #panel .panel-button:hover, +.login-screen #panel .panel-button:active, +.lock-screen #panel .panel-button:focus, +.lock-screen #panel .panel-button:hover, +.lock-screen #panel .panel-button:active { + color: #fefefe; +} + +#panel .panel-status-indicators-box, +#panel .panel-status-menu-box { + spacing: 2px; +} + +#panel .power-status.panel-status-indicators-box { + spacing: 0; +} + +#panel .screencast-indicator { + color: #bc742d; +} + +#panel .remote-access-indicator { + color: #bc742d; +} + +#panel.solid { + background-color: #010101; + /* transition from transparent to solid */ + transition-duration: 250ms; + background-gradient-direction: none; + text-shadow: none; +} + +#panel.solid:overview { + background-color: transparent; +} + +#panel.solid .panel-corner { + -panel-corner-background-color: #010101; +} + +#panel.solid .panel-button { + color: rgba(254, 254, 254, 0.7); + text-shadow: none; +} + +#panel.solid .panel-button:hover, #panel.solid .panel-button:active, #panel.solid .panel-button:overview, #panel.solid .panel-button:focus, #panel.solid .panel-button:checked { + color: #fefefe; +} + +#panel.solid .system-status-icon, +#panel.solid .app-menu-icon > StIcon, +#panel.solid .popup-menu-arrow { + icon-shadow: none; +} + +#calendarArea { + padding: 8px 16px; +} + +.calendar { + margin-bottom: 0; +} + +.calendar, +.datemenu-today-button, +.datemenu-displays-box, +.message-list-sections { + margin: 0 8px; +} + +.datemenu-calendar-column { + spacing: 8px; +} + +.datemenu-displays-section { + padding-bottom: 0; +} + +.datemenu-displays-box { + spacing: 8px; +} + +.datemenu-calendar-column { + border: 0 solid rgba(0, 0, 0, 0.26); +} + +.datemenu-calendar-column:ltr { + border-left-width: 0; +} + +.datemenu-calendar-column:rtl { + border-right-width: 0; +} + +.datemenu-today-button, +.world-clocks-button, +.weather-button, +.events-section-title { + min-height: 20px; + padding: 4px 8px; + border-radius: 2px; +} + +.datemenu-today-button { + min-height: 48px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} + +.message-list-section-list:rtl { + padding-right: 0; +} + +.datemenu-today-button:hover, .datemenu-today-button:focus, +.world-clocks-button:hover, +.world-clocks-button:focus, +.weather-button:hover, +.weather-button:focus, +.events-section-title:hover, +.events-section-title:focus { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.12); +} + +.datemenu-today-button:active, +.world-clocks-button:active, +.weather-button:active, +.events-section-title:active { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.3); +} + +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +.world-clocks-header, +.weather-header, +.events-section-title { + color: rgba(238, 238, 238, 0.7); + font-weight: bold; +} + +.world-clocks-grid { + spacing-rows: 0.4em; +} + +.weather-box { + spacing: 0.4em; +} + +.calendar-month-label { + height: 16px; + margin: 2px; + padding: 6px 16px; + border-radius: 2px; + color: #eeeeee; + font-weight: bold; + text-align: center; +} + +.calendar-month-label:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.pager-button { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 100px; + background-color: transparent; + color: #eeeeee; +} + +.pager-button:hover, .pager-button:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.pager-button:active { + background-color: rgba(238, 238, 238, 0.3); +} + +.calendar-change-month-back { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-change-month-back:rtl { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward:rtl { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; + font-feature-settings: "tnum"; +} + +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.calendar-day-base:active { + color: inherit; + background-color: rgba(238, 238, 238, 0.3); + border-color: transparent; +} + +.calendar-day-base:selected { + color: #fefefe; + background-color: #338DD6; + border-color: transparent; +} + +.calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: #eeeeee; +} + +.calendar-today { + font-weight: bold !important; + border: none; +} + +.calendar-day-with-events { + color: #3d82ff; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(238, 238, 238, 0.3); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +/* Message list */ +.message-list { + width: 420px; +} + +.message-list-clear-button.button { + background-color: transparent; + margin: 8px 8px 0; +} + +.message-list-clear-button.button:hover, .message-list-clear-button.button:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.message-list-clear-button.button:active { + background-color: rgba(238, 238, 238, 0.3); +} + +.message-list-sections { + spacing: 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message { + min-height: 56px; + background-color: transparent; + border-radius: 2px; +} + +.message:hover, .message:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.message:active { + background-color: rgba(238, 238, 238, 0.3); +} + +.message-icon-bin { + padding: 8px 0px 8px 8px; +} + +.message-icon-bin:rtl { + padding: 8px 8px 8px 0px; +} + +.message-icon-bin > StIcon { + color: #eeeeee; + icon-size: 1.14286em; + -st-icon-style: requested; + margin: 4px 0px 4px 4px; +} + +.message-icon-bin > StIcon:rtl { + margin: 4px 4px 4px 0px; +} + +.message-secondary-bin { + padding: 0 8px; +} + +.message-secondary-bin > .event-time { + min-height: 22px; + padding-top: 2px; + color: rgba(238, 238, 238, 0.7); + font-size: 1em; + /* HACK: the label should be baseline-aligned with a 1em label, + fake this with some bottom padding */ + padding-bottom: 0; +} + +.message-secondary-bin > StIcon { + icon-size: 1.14286em; +} + +.message-title { + min-height: 22px; + padding-top: 2px; + color: #eeeeee; + font-weight: bold; + font-size: 1em; +} + +.message-content { + min-height: 40px; + padding: 8px; + color: rgba(238, 238, 238, 0.7); + font-size: 1em; +} + +.message-content * > StIcon { + icon-size: 16px; + border-radius: 16px; + padding: 4px; + color: rgba(238, 238, 238, 0.7); +} + +/* FIXME: how do you do this in sass? */ +.message-content *:hover > StIcon, +.message-content *:focus > StIcon { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.12); +} + +.message-content *:active > StIcon { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.3); +} + +.message-media-control { + margin: 16px 0; + padding: 8px; + border-radius: 100px; + color: rgba(238, 238, 238, 0.7); +} + +.message-media-control:hover, .message-media-control:focus { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.12); +} + +.message-media-control:active { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.3); +} + +.message-media-control:insensitive { + color: rgba(238, 238, 238, 0.3); +} + +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; +} + +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 8px 0px 8px 4px !important; +} + +.media-message-cover-icon:rtl { + margin: 8px 4px 8px 0px !important; +} + +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: none; + border-radius: 2px; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + +.system-switch-user-submenu-icon.user-icon { + icon-size: 20px; + padding: 0 2px; +} + +.system-switch-user-submenu-icon.default-icon { + icon-size: 16px; + padding: 0 4px; +} + +#appMenu { + spinner-image: url("process-working.svg"); + spacing: 4px; +} + +#appMenu .label-shadow { + color: transparent; +} + +.aggregate-menu { + min-width: 280px; +} + +.aggregate-menu .popup-menu-icon { + padding: 0 4px; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + /* 8px spacing + 2*4px padding */ + padding-left: 16px; + margin-left: 1.14286em; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + /* 8px spacing + 2*4px padding */ + padding-right: 16px; + margin-right: 1.14286em; +} + +.system-menu-action { + -st-icon-style: symbolic; + color: rgba(238, 238, 238, 0.7); + border-radius: 100px; + /* wish we could do 50% */ + padding: 12px; + border: none; +} + +.system-menu-action:hover, .system-menu-action:focus { + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; + border: none; + padding: 12px; +} + +.system-menu-action:active { + background-color: rgba(238, 238, 238, 0.3); + color: #eeeeee; +} + +.system-menu-action > StIcon { + icon-size: 16px; +} + +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + background-color: rgba(254, 254, 254, 0.3); + background-image: none; + background-size: auto; +} + +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +.popup-menu-arrow { + width: 16px; + height: 16px; +} + +.popup-menu-icon { + icon-size: 1.14286em; +} + +.window-close { + transition-duration: 0ms; + height: 32px; + width: 32px; + -shell-close-overlap: 16px; + -st-background-image-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + background-image: url("assets/window-close.svg"); + background-size: 32px; +} + +.window-close:hover { + -st-background-image-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + background-image: url("assets/window-close.svg"); +} + +.window-close:active { + background-image: url("assets/window-close-active.svg"); +} + +.window-close:rtl { + -st-background-image-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.window-close:rtl:hover { + -st-background-image-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +/* NETWORK DIALOGS */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-header-hbox { + spacing: 10px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + font-weight: bold; + text-align: center; +} + +.nm-dialog-airplane-text { + color: #eeeeee; +} + +.nm-dialog-header-icon { + icon-size: 32px; +} + +.nm-dialog-scroll-view { + border: none; +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-item { + font-size: 1em; + border-bottom: none; + border-radius: 2px; + padding: 12px; + spacing: 20px; +} + +.nm-dialog-item:hover, .nm-dialog-item:focus { + background-color: rgba(238, 238, 238, 0.12); +} + +.nm-dialog-item:active { + background-color: rgba(238, 238, 238, 0.3); +} + +.nm-dialog-item:selected { + background-color: #338DD6; + color: #fefefe; +} + +.nm-dialog-icons { + spacing: .5em; +} + +.nm-dialog-icon { + icon-size: 16px; +} + +.no-networks-label { + color: rgba(238, 238, 238, 0.5); +} + +.no-networks-box { + spacing: 12px; +} + +/* OVERVIEW */ +#overview { + spacing: 24px; +} + +.overview-controls { + padding-bottom: 32px; +} + +.window-picker { + -horizontal-spacing: 16px; + -vertical-spacing: 16px; + padding: 0 16px 32px; +} + +.window-picker.external-monitor { + padding: 16px; +} + +.window-clone-border { + border: 4px solid rgba(254, 254, 254, 0.3); + border-radius: 2px; + box-shadow: inset 0 0 0 1px rgba(254, 254, 254, 0.3); +} + +.window-caption { + spacing: 25px; + color: #fefefe; + background-color: rgba(0, 0, 0, 0.6); + border-radius: 2px; + padding: 4px 8px; +} + +.search-entry { + width: 304px; + padding: 0 8px; + border-radius: 0; + color: rgba(254, 254, 254, 0.5); + selection-background-color: rgba(254, 254, 254, 0.3); + selected-color: #fefefe; + background-color: rgba(0, 0, 0, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(254, 254, 254, 0.3); +} + +.search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #fefefe; + padding: 0 8px; + border-width: 0; + color: #fefefe; +} + +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 0; + color: rgba(254, 254, 254, 0.5); +} + +.search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { + color: #fefefe; +} + +#searchResultsBin { + max-width: 1000px; +} + +#searchResultsContent { + padding-left: 20px; + padding-right: 20px; + spacing: 16px; +} + +.search-section { + spacing: 16px; +} + +.search-section-content { + spacing: 32px; +} + +.list-search-results { + spacing: 3px; +} + +.search-section-separator { + height: 1px; + background-color: rgba(254, 254, 254, 0.12); +} + +.list-search-result-content { + spacing: 30px; +} + +.list-search-result-title { + font-size: 11.25pt; + font-weight: 400; + color: #fefefe; + spacing: 12px; +} + +.list-search-result-description { + color: rgba(254, 254, 254, 0.7); +} + +.list-search-provider-details { + width: 150px; + color: rgba(254, 254, 254, 0.7); + margin-top: 0.24em; +} + +.list-search-provider-content { + spacing: 20px; +} + +.search-provider-icon { + padding: 15px; +} + +/* DASHBOARD */ +#dash { + font-size: 1em; + color: #fefefe; + background-color: rgba(255, 255, 255, 0.1); + padding: 3px 0; + border: none; + border-left: 0px; + border-radius: 0px 2px 2px 0px; +} + +#dash:rtl { + border-radius: 2px 0 0 2px; +} + +#dash .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + height: 24px; +} + +#dash .empty-dash-drop-target { + width: 24px; + height: 24px; +} + +.dash-item-container > StWidget { + padding: 3px 6px; +} + +.dash-label { + border-radius: 2px; + padding: 7px 8px; + color: #eeeeee; + background-color: #303030; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-align: center; + -x-offset: 8px; +} + +/* App Vault/Grid */ +.icon-grid { + spacing: 30px; + -shell-grid-horizontal-item-size: 136px; + -shell-grid-vertical-item-size: 136px; +} + +.icon-grid .overview-icon { + icon-size: 96px; +} + +.system-action-icon { + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: #FFFFFF; + border-radius: 99px; + icon-size: 48px; +} + +.app-view-controls { + width: 320px; + padding-bottom: 32px; +} + +.app-view-control { + padding: 0 16px; + font-weight: bold; + color: rgba(254, 254, 254, 0.7); +} + +.app-view-control:hover { + color: #fefefe; + background-color: rgba(254, 254, 254, 0.12) !important; +} + +.app-view-control:active { + color: #fefefe; + background-color: rgba(254, 254, 254, 0.3) !important; +} + +.app-view-control:checked { + color: #fefefe; + background-color: rgba(0, 0, 0, 0.01) !important; + box-shadow: inset 0 2px 0 #fefefe; +} + +.app-view-control:first-child { + border-right-width: 0; + border-radius: 2px; +} + +.app-view-control:first-child:checked { + border-radius: 0; +} + +.app-view-control:last-child { + border-radius: 2px; +} + +.app-view-control:last-child:checked { + border-radius: 0; +} + +.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, +.list-search-result:focus, +.list-search-result:selected, +.list-search-result:hover { + background-color: rgba(254, 254, 254, 0.12); + transition-duration: 0ms; +} + +.search-provider-icon:active, .search-provider-icon:checked, +.list-search-result:active, +.list-search-result:checked { + background-color: rgba(254, 254, 254, 0.3); + transition-duration: 150ms; +} + +.app-well-app:hover .overview-icon, +.app-well-app:focus .overview-icon, +.app-well-app:selected .overview-icon, +.app-well-app.app-folder:hover .overview-icon, +.app-well-app.app-folder:focus .overview-icon, +.app-well-app.app-folder:selected .overview-icon, +.show-apps:hover .overview-icon, +.show-apps:focus .overview-icon, +.show-apps:selected .overview-icon, +.grid-search-result:hover .overview-icon, +.grid-search-result:focus .overview-icon, +.grid-search-result:selected .overview-icon { + background-color: rgba(254, 254, 254, 0.12); + transition-duration: 0ms; + border-image: none; + background-image: none; +} + +.app-well-app:active .overview-icon, +.app-well-app:checked .overview-icon, +.app-well-app.app-folder:active .overview-icon, +.app-well-app.app-folder:checked .overview-icon, +.show-apps:active .overview-icon, +.show-apps:checked .overview-icon, +.grid-search-result:active .overview-icon, +.grid-search-result:checked .overview-icon { + background-color: rgba(254, 254, 254, 0.3); + box-shadow: 0 0 transparent; + transition-duration: 150ms; +} + +.app-well-app-running-dot { + width: 32px; + height: 2px; + background-color: #fefefe; + margin-bottom: 0; +} + +.search-provider-icon, +.list-search-result, .app-well-app .overview-icon, +.app-well-app.app-folder .overview-icon, +.show-apps .overview-icon, +.grid-search-result .overview-icon { + color: #fefefe; + border-radius: 2px; + padding: 6px; + border: none; + transition-duration: 150ms; + text-align: center; +} + +.app-well-app.app-folder > .overview-icon { + background-color: rgba(255, 255, 255, 0.1); +} + +.show-apps .show-apps-icon { + color: rgba(254, 254, 254, 0.7); +} + +.show-apps:hover .show-apps-icon, +.show-apps:active .show-apps-icon, +.show-apps:checked .show-apps-icon, +.show-apps:focus .show-apps-icon { + color: #fefefe; + transition-duration: 150ms; +} + +.app-folder-popup { + -arrow-border-radius: 2px; + -arrow-background-color: rgba(255, 255, 255, 0.1); + -arrow-base: 24px; + -arrow-rise: 12px; +} + +.app-folder-popup-bin { + padding: 5px; +} + +.app-folder-icon { + padding: 5px; + spacing-rows: 5px; + spacing-columns: 5px; +} + +.page-indicator { + padding: 15px 20px; +} + +.page-indicator .page-indicator-icon { + width: 12px; + height: 12px; + border-radius: 12px; + background-image: none; + background-color: rgba(254, 254, 254, 0.3); +} + +.page-indicator:hover .page-indicator-icon { + background-image: none; + background-color: rgba(254, 254, 254, 0.5); +} + +.page-indicator:active .page-indicator-icon { + background-image: none; + background-color: rgba(254, 254, 254, 0.7); +} + +.page-indicator:checked .page-indicator-icon { + background-image: none; + background-color: #fefefe; + transition-duration: 0ms; +} + +.page-indicator:checked:active { + background-image: none; +} + +.app-well-app > .overview-icon.overview-icon-with-label, +.grid-search-result .overview-icon.overview-icon-with-label { + padding: 10px 8px 5px 8px; + spacing: 4px; +} + +.workspace-thumbnails { + visible-width: 32px; + spacing: 12px; + padding: 12px; + border-radius: 2px 0 0 2px; +} + +.workspace-thumbnails:rtl { + border-radius: 0 2px 2px 0; +} + +.workspace-thumbnails .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + height: 24px; +} + +.workspace-thumbnail-indicator { + border: 0 solid #fefefe; + border-left-width: 2px; + padding: 6px; + border-radius: 0; +} + +.search-display > StBoxLayout, +.all-apps, +.frequent-apps > StBoxLayout { + padding: 0px 88px 10px 88px; +} + +.workspace-thumbnails { + color: #fefefe; + background-color: rgba(255, 255, 255, 0.1); + border: none; +} + +.search-statustext, .no-frequent-applications-label { + font-size: 45px; + font-weight: 400; + color: rgba(254, 254, 254, 0.5); +} + +/* NOTIFICATIONS & MESSAGE TRAY */ +.url-highlighter { + link-color: #3d82ff; +} + +.notification-banner { + font-size: 1em; + width: 34em; + min-height: 56px; + margin: 5px; + border-radius: 2px; + color: #eeeeee; + background-color: #303030; + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.notification-banner:hover { + background-color: #303030; +} + +.notification-banner:focus { + background-color: #303030; +} + +.notification-banner .notification-icon { + padding: 5px; +} + +.notification-banner .notification-content { + padding: 5px; + spacing: 5px; +} + +.notification-banner .secondary-icon { + icon-size: 1.14286em; +} + +.notification-banner .notification-actions { + background-color: transparent; + padding-top: 0; + padding: 4px; + spacing: 4px; +} + +.notification-banner .notification-button { + min-height: 32px; + padding: 0 8px; + border-radius: 2px; + background-color: transparent; + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +.notification-banner .notification-button:first-child { + border-radius: 2px; +} + +.notification-banner .notification-button:last-child { + border-radius: 2px; +} + +.notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus { + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; +} + +.notification-banner .notification-button:active { + background-color: rgba(238, 238, 238, 0.3); + color: #eeeeee; +} + +.summary-source-counter { + font-size: 1em; + font-weight: bold; + height: 1.6em; + width: 1.6em; + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + background-color: #338DD6; + color: #fefefe; + border: 2px solid #fefefe; + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); + border-radius: 0.9em; +} + +.secondary-icon { + icon-size: 1.14286em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: #eeeeee; +} + +.chat-new-group { + padding-top: 1em; +} + +.chat-received { + padding-left: 4px; +} + +.chat-received:rtl { + padding-left: 0px; + padding-right: 4px; +} + +.chat-sent { + padding-left: 18pt; + color: rgba(238, 238, 238, 0.7); +} + +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + font-size: 9pt; + font-weight: 400; + color: rgba(238, 238, 238, 0.5); +} + +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +.hotplug-transient-box { + spacing: 6px; + padding: 2px 72px 2px 12px; +} + +.hotplug-notification-item { + padding: 2px 10px; +} + +.hotplug-notification-item:focus { + padding: 1px 71px 1px 11px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 2px 5px; +} + +.hotplug-resident-box { + spacing: 8px; +} + +.hotplug-resident-mount { + spacing: 8px; + border-radius: 2px; +} + +.hotplug-resident-mount:hover { + background-color: rgba(238, 238, 238, 0.12); +} + +.hotplug-resident-mount:active { + background-color: rgba(238, 238, 238, 0.3); +} + +.hotplug-resident-mount-label { + color: inherit; + padding-left: 6px; +} + +.hotplug-resident-mount-icon { + icon-size: 24px; + padding-left: 6px; +} + +.hotplug-resident-eject-icon { + icon-size: 16px; +} + +.hotplug-resident-eject-button { + padding: 7px; + border-radius: 2px; + color: #eeeeee; +} + +/* Eeeky things */ +.magnifier-zoom-region { + border: 2px solid #338DD6; +} + +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* On-screen Keyboard */ +.word-suggestions { + font-size: 11.25pt; + font-weight: 400; + spacing: 12px; + min-height: 40px; +} + +#keyboard { + background-color: rgba(0, 0, 0, 0.3); +} + +.key-container { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + min-height: 64px; + min-width: 64px; + font-size: 2em; + font-weight: 500; + border-radius: 2px; + border: none; + color: inherit; + color: #fafafa; + background-color: #424242; + border-color: transparent; + box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.keyboard-key:focus { + color: #eeeeee; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.keyboard-key:hover, .keyboard-key:checked { + color: #eeeeee; + background-color: #424242; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.keyboard-key:active { + color: #eeeeee; + background-color: #6b6b6b; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.keyboard-key:grayed { + background-color: rgba(0, 0, 0, 0.3); + color: #fefefe; + border-color: rgba(0, 0, 0, 0.3); +} + +.keyboard-key.default-key { + border-color: transparent; + background-color: #424242; + background-size: 24px; +} + +.keyboard-key.default-key:active { + background-color: #6b6b6b; +} + +.keyboard-key.enter-key { + border-color: transparent; + background-color: #009688; + background-image: url("assets/key-enter.svg"); +} + +.keyboard-key.enter-key:active { + background-color: #3dafa4; +} + +.keyboard-key.shift-key-lowercase { + background-image: url("assets/key-shift.svg"); +} + +.keyboard-key.shift-key-uppercase { + background-image: url("assets/key-shift-uppercase.svg"); +} + +.keyboard-key.shift-key-uppercase:latched { + background-image: url("assets/key-shift-latched-uppercase.svg"); +} + +.keyboard-key.hide-key { + background-image: url("assets/key-hide.svg"); +} + +.keyboard-key.layout-key { + background-image: url("assets/key-layout.svg"); +} + +.keyboard-subkeys { + color: inherit; + padding: 5px; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -boxpointer-gap: 5px; + background-color: #303030; + border-radius: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(238, 238, 238, 0.5); +} + +.candidate-box:selected .candidate-index { + color: rgba(254, 254, 254, 0.5); +} + +.candidate-box { + transition-duration: 0ms; + min-height: 28px; + padding: 0 8px; + border-radius: 2px; +} + +.candidate-box:hover { + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; +} + +.candidate-box:active { + background-color: rgba(238, 238, 238, 0.3); + color: #eeeeee; +} + +.candidate-box:selected { + background-color: #338DD6; + color: #fefefe; +} + +.candidate-page-button-box { + height: 28px; +} + +.vertical .candidate-page-button-box { + padding-top: 0; +} + +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-radius: 2px; + border-right-width: 0; +} + +.candidate-page-button-next { + border-radius: 2px; +} + +.candidate-page-button-icon { + icon-size: 1.14286em; +} + +/* Auth Dialogs & Screen Shield */ +.framed-user-icon { + background-size: contain; + border: none; + color: #fefefe; + border-radius: 2px; +} + +.framed-user-icon:hover { + border-color: #fefefe; + color: #fefefe; +} + +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog { + border: none; + background-color: transparent; +} + +.login-dialog StEntry { + color: #fefefe; + selection-background-color: rgba(254, 254, 254, 0.3); + selected-color: #fefefe; + background-color: rgba(0, 0, 0, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(254, 254, 254, 0.3); +} + +.login-dialog StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #fefefe; +} + +.login-dialog StEntry:insensitive { + color: rgba(238, 238, 238, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(254, 254, 254, 0.12); + color: rgba(254, 254, 254, 0.5); +} + +.login-dialog .modal-dialog-button-box { + spacing: 3px; +} + +.login-dialog .modal-dialog-button { + padding: 0 16px; + color: rgba(254, 254, 254, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:hover, .login-dialog .modal-dialog-button:focus { + color: #fefefe; + background-color: rgba(254, 254, 254, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:active { + color: #fefefe; + background-color: rgba(254, 254, 254, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:insensitive { + color: rgba(254, 254, 254, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default { + color: #fefefe; + background-color: #009688; + border-color: transparent; + box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { + color: #fefefe; + background-color: #009688; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:active { + color: #fefefe; + background-color: #3dafa4; + border-color: transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:insensitive { + color: rgba(254, 254, 254, 0.5); + background-color: rgba(254, 254, 254, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0px; +} + +.login-dialog-banner { + color: rgba(254, 254, 254, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; +} + +.login-dialog-message-warning { + color: #bc742d; +} + +.login-dialog-message-hint { + padding-top: 0; + padding-bottom: 20px; +} + +.login-dialog-user-selection-box { + padding: 100px 0px; +} + +.login-dialog-not-listed-label { + padding-left: 2px; +} + +.login-dialog-not-listed-button:focus .login-dialog-not-listed-label, +.login-dialog-not-listed-button:hover .login-dialog-not-listed-label { + color: #fefefe; +} + +.login-dialog-not-listed-label { + font-size: 1em; + font-weight: bold; + color: rgba(254, 254, 254, 0.7); + padding-top: 1em; +} + +.login-dialog-not-listed-label:hover { + color: #fefefe; +} + +.login-dialog-not-listed-label:focus { + background-color: rgba(254, 254, 254, 0.12); +} + +.login-dialog-user-list-view { + -st-vfade-offset: 1em; +} + +.login-dialog-user-list { + spacing: 12px; + width: 23em; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:selected { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:hover { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:active { + background-color: rgba(254, 254, 254, 0.3); + color: #fefefe; +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #fefefe; +} + +.login-dialog-user-list-item { + border-radius: 2px; + padding: 6px; + color: rgba(254, 254, 254, 0.7); +} + +.login-dialog-user-list-item:ltr .user-widget { + padding-right: 1em; +} + +.login-dialog-user-list-item:rtl .user-widget { + padding-left: 1em; +} + +.login-dialog-user-list-item:hover { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +.login-dialog-user-list-item:active { + background-color: rgba(254, 254, 254, 0.3); + color: #fefefe; +} + +.login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin-top: 6px; + background-color: #fefefe; +} + +.login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { + background-color: #fefefe; +} + +.login-dialog-username, +.user-widget-label { + color: #fefefe; + font-size: 15pt; + font-weight: 500; + text-align: left; + padding-left: 15px; +} + +.user-widget-label:ltr { + padding-left: 14px; +} + +.user-widget-label:rtl { + padding-right: 14px; +} + +.login-dialog-prompt-layout { + padding-top: 24px; + padding-bottom: 12px; + spacing: 8px; + width: 23em; +} + +.login-dialog-prompt-label { + color: rgba(254, 254, 254, 0.5); + font-size: 1em; + padding-top: 1em; +} + +.login-dialog-session-list-button StIcon { + icon-size: 1.25em; +} + +.login-dialog-session-list-button { + color: rgba(254, 254, 254, 0.7); +} + +.login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { + color: #fefefe; +} + +.login-dialog-session-list-button:active { + color: #fefefe; +} + +.screen-shield-arrows { + padding-bottom: 3em; +} + +.screen-shield-arrows Gjs_Arrow { + color: white; + width: 80px; + height: 48px; + -arrow-thickness: 12px; + -arrow-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock { + color: white; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + font-weight: normal; + text-align: center; + padding-bottom: 1.5em; +} + +.screen-shield-clock-time { + font-size: 112px; + font-weight: 300; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + font-feature-settings: "tnum"; +} + +.screen-shield-clock-date { + font-size: 45px; + font-weight: 400; +} + +.screen-shield-notifications-container { + spacing: 6px; + width: 30em; + background-color: transparent; + max-height: 500px; +} + +.screen-shield-notifications-container .summary-notification-stack-scrollview { + padding-top: 0; + padding-bottom: 0; +} + +.screen-shield-notifications-container .notification, +.screen-shield-notifications-container .screen-shield-notification-source { + padding: 8px; + border: none; + background-color: rgba(0, 0, 0, 0.3); + color: #fefefe; + border-radius: 2px; +} + +.screen-shield-notifications-container .notification { + margin-right: 16px; +} + +.screen-shield-notification-label { + min-height: 22px; + padding: 2px 0px 0px 16px; + font-weight: bold; +} + +.screen-shield-notification-count-text { + min-height: 22px; + padding: 2px 0px 0px 16px; + color: rgba(254, 254, 254, 0.7); +} + +#panel.lock-screen { + background-color: rgba(0, 0, 0, 0.3); +} + +.screen-shield-background { + background: black; + box-shadow: 0 19px 19px rgba(0, 0, 0, 0.6), 0 15px 6px rgba(0, 0, 0, 0.44); +} + +#lockDialogGroup { + background: #010101; + background-size: cover; +} + +#LookingGlassDialog { + background-color: #303030; + spacing: 4px; + padding: 0; + border: none; + border-radius: 2px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: none; + border-radius: 0; + background-color: rgba(48, 48, 48, 0.01); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.26); +} + +#LookingGlassDialog .labels { + spacing: 0; +} + +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: rgba(238, 238, 238, 0.5); + transition-duration: 150ms; + padding-left: 16px; + padding-right: 16px; + min-height: 32px; + padding: 0 32px; +} + +#LookingGlassDialog .notebook-tab:hover { + box-shadow: inset 0 -2px 0px rgba(238, 238, 238, 0.3); + color: #eeeeee; + text-shadow: none; +} + +#LookingGlassDialog .notebook-tab:selected { + border-bottom-width: 0; + border-color: transparent; + background-color: rgba(48, 48, 48, 0.01); + box-shadow: inset 0 -2px 0px #338DD6; + color: #eeeeee; + text-shadow: none; +} + +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 4px; + spacing: 4px; +} + +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog StEntry { + selection-background-color: #338DD6; + selected-color: #fefefe; +} + +.lg-dialog .shell-link { + color: #3d82ff; +} + +.lg-dialog .shell-link:hover { + color: #3d82ff; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button { + min-height: 32px; + padding: 0 16px; + border: none; + border-radius: 2px; + font-size: 10.5pt; + font-weight: 500; + color: rgba(238, 238, 238, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:hover { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:active { + color: #eeeeee; + background-color: rgba(238, 238, 238, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:insensitive { + color: rgba(238, 238, 238, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:focus { + color: #eeeeee; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.lg-obj-inspector-button:hover { + border: none; +} + +#lookingGlassExtensions { + padding: 4px; +} + +.lg-extensions-list { + padding: 4px; + spacing: 6px; +} + +.lg-extension { + border: none; + border-radius: 2px; + padding: 4px; +} + +.lg-extension-name { + font-size: 18pt; + font-weight: 400; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + background: #303030; + border: none; + border-radius: 2px; + padding: 6px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +/* Dash to Dock */ +#dashtodockContainer #dash { + background-color: rgba(0, 0, 0, 0.6); +} + +#dashtodockContainer:overview #dash { + background-color: rgba(255, 255, 255, 0.1); +} + +#dashtodockContainer.extended:overview #dash { + background-color: transparent; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.right #dash { + padding: 3px 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.bottom #dash { + padding: 0 3px; +} + +#dashtodockContainer.extended #dash { + padding: 0; + border-radius: 0; +} + +#dashtodockContainer.left .dash-item-container > StWidget, +#dashtodockContainer.right .dash-item-container > StWidget, +#dashtodockContainer.extended.left .dash-item-container > StWidget, +#dashtodockContainer.extended.right .dash-item-container > StWidget { + padding: 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:first-child > StWidget { + padding: 6px 6px 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:last-child > StWidget { + padding: 3px 6px 6px 6px; +} + +#dashtodockContainer.top .dash-item-container > StWidget, +#dashtodockContainer.bottom .dash-item-container > StWidget, +#dashtodockContainer.extended.top .dash-item-container > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container > StWidget { + padding: 6px 3px; +} + +#dashtodockContainer.extended.top .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget { + padding: 6px 3px 6px 6px; +} + +#dashtodockContainer.extended.top .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget { + padding: 6px 6px 6px 3px; +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: transparent; +} + +#dashtodockContainer .dash-item-container > StWidget { + background-size: cover; +} + +#dashtodockContainer.left .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/left-running1.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/left-running1-focused.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/left-running2.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/left-running2-focused.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/left-running3.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/left-running3-focused.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/left-running4.svg"); +} + +#dashtodockContainer.left .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/left-running4-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/right-running1.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/right-running1-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/right-running2.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/right-running2-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/right-running3.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/right-running3-focused.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/right-running4.svg"); +} + +#dashtodockContainer.right .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/right-running4-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/top-running1.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/top-running1-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/top-running2.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/top-running2-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/top-running3.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/top-running3-focused.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/top-running4.svg"); +} + +#dashtodockContainer.top .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/top-running4-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running1 { + background-image: url("assets/dash/bottom-running1.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running1.focused { + background-image: url("assets/dash/bottom-running1-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running2 { + background-image: url("assets/dash/bottom-running2.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running2.focused { + background-image: url("assets/dash/bottom-running2-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running3 { + background-image: url("assets/dash/bottom-running3.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running3.focused { + background-image: url("assets/dash/bottom-running3-focused.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running4 { + background-image: url("assets/dash/bottom-running4.svg"); +} + +#dashtodockContainer.bottom .dash-item-container > StWidget.running4.focused { + background-image: url("assets/dash/bottom-running4-focused.svg"); +} + +/* Simple Dock */ +#dash:desktop { + background-color: rgba(0, 0, 0, 0.6); +} + +/* GPaste */ +.popup-menu .search-entry { + color: #eeeeee; + selection-background-color: #338DD6; + selected-color: #fefefe; + background-color: rgba(48, 48, 48, 0.01); + border-color: transparent; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); +} + +.popup-menu .search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #338DD6; + color: #eeeeee; +} + +.popup-menu .search-entry .search-entry-icon { + color: rgba(238, 238, 238, 0.5); +} + +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: #eeeeee; +} diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/message-indicator-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/message-indicator-symbolic.svg new file mode 100644 index 0000000..a93cc63 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/message-indicator-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <rect x="4" y="4" width="8" height="8" ry="4"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/no-events.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/no-events.svg new file mode 120000 index 0000000..d2fcad0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/no-events.svg @@ -0,0 +1 @@ +assets/no-events.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/no-notifications.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/no-notifications.svg new file mode 120000 index 0000000..175731c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/no-notifications.svg @@ -0,0 +1 @@ +assets/no-notifications.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/noise-texture.png b/dotfiles/.themes/oomox-materia-dark/gnome-shell/noise-texture.png Binary files differnew file mode 100644 index 0000000..ca1563d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/noise-texture.png diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/pad-osd.css b/dotfiles/.themes/oomox-materia-dark/gnome-shell/pad-osd.css new file mode 100644 index 0000000..31c2377 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/pad-osd.css @@ -0,0 +1,30 @@ +.Leader { + stroke-width: .5 !important; + stroke: #535353; + fill: none !important; +} + +.Button { + stroke-width: .25; + stroke: #ededed; + fill: #ededed; +} + +.Ring { + stroke-width: .5 !important; + stroke: #535353 !important; + fill: none !important; +} + +.Label { + stroke: none !important; + stroke-width: .1 !important; + font-size: .1 !important; + fill: transparent !important; +} + +.TouchStrip, .TouchRing { + stroke-width: .1 !important; + stroke: #ededed !important; + fill: #535353 !important; +} diff --git a/dotfiles/.themes/oomox-materia-dark/gnome-shell/process-working.svg b/dotfiles/.themes/oomox-materia-dark/gnome-shell/process-working.svg new file mode 120000 index 0000000..a6586c3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gnome-shell/process-working.svg @@ -0,0 +1 @@ +assets/process-working.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/apps.rc b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/apps.rc new file mode 100644 index 0000000..530e72f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/apps.rc @@ -0,0 +1,92 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g. +# custom widgets, programs giving us a chance to alter their UI to fit more with +# the theme or stuff that is supposed to look different, like panels. + +# TODO: This could really look nicer +style "gimp_spin_scale" { + # Spin background + bg[NORMAL] = @base_color + + engine "pixmap" { + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + } + } +} + +style "chrome_gtk_frame" { + ChromeGtkFrame::frame-color = @titlebar_bg_color + ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::frame-gradient-size = 0 +} + +# Disable spin button assets for GimpSpinScale +class "GimpSpinScale" style "gimp_spin_scale" + +# Chromium lets us define some colours and settings for better integration +class "ChromeGtkFrame" style "chrome_gtk_frame" diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/border.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/border.png Binary files differnew file mode 100644 index 0000000..0a3c4af --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/border.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-active.png Binary files differnew file mode 100644 index 0000000..572c3e3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-disabled.png Binary files differnew file mode 100644 index 0000000..7a89e32 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-hover.png Binary files differnew file mode 100644 index 0000000..dc918a9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button.png Binary files differnew file mode 100644 index 0000000..f34e8fe --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/button.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-active.png Binary files differnew file mode 100644 index 0000000..a420f6e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-disabled.png Binary files differnew file mode 100644 index 0000000..258a832 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-hover.png Binary files differnew file mode 100644 index 0000000..ff55332 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked.png Binary files differnew file mode 100644 index 0000000..4f92bea --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-active.png Binary files differnew file mode 100644 index 0000000..0bccd52 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..832ed6e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-hover.png Binary files differnew file mode 100644 index 0000000..7a8b9e9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed.png Binary files differnew file mode 100644 index 0000000..0e9d89c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-active.png Binary files differnew file mode 100644 index 0000000..cc95cc5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..f1453d9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-hover.png Binary files differnew file mode 100644 index 0000000..c2fdd28 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..6793af8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/checkbox-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-active.png Binary files differnew file mode 100644 index 0000000..0a98801 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-disabled.png Binary files differnew file mode 100644 index 0000000..f42da19 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-hover.png Binary files differnew file mode 100644 index 0000000..8d17995 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button.png Binary files differnew file mode 100644 index 0000000..19e1057 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-button.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry-active.png Binary files differnew file mode 100644 index 0000000..49351ba --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry-disabled.png Binary files differnew file mode 100644 index 0000000..e6614d5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry.png Binary files differnew file mode 100644 index 0000000..474067b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-ltr-entry.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-active.png Binary files differnew file mode 100644 index 0000000..25676eb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-disabled.png Binary files differnew file mode 100644 index 0000000..f263b6d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-hover.png Binary files differnew file mode 100644 index 0000000..4ae2203 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button.png Binary files differnew file mode 100644 index 0000000..c984f15 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-button.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry-active.png Binary files differnew file mode 100644 index 0000000..0641f63 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry-disabled.png Binary files differnew file mode 100644 index 0000000..dcd02ff --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry.png Binary files differnew file mode 100644 index 0000000..cad5364 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/combo-rtl-entry.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-active.png Binary files differnew file mode 100644 index 0000000..b1074d5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-background-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-background-disabled.png Binary files differnew file mode 100644 index 0000000..4fcaa4d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-background-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-background.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-background.png Binary files differnew file mode 100644 index 0000000..fd7d47f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-background.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-disabled.png Binary files differnew file mode 100644 index 0000000..4916b35 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry.png Binary files differnew file mode 100644 index 0000000..1bf1335 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/entry.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-active.png Binary files differnew file mode 100644 index 0000000..3fbaa89 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-disabled.png Binary files differnew file mode 100644 index 0000000..2e3cfdc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-hover.png Binary files differnew file mode 100644 index 0000000..7a89e32 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button.png Binary files differnew file mode 100644 index 0000000..2e3cfdc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/flat-button.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/focus.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/focus.png Binary files differnew file mode 100644 index 0000000..28a14be --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/focus.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame-inline.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame-inline.png Binary files differnew file mode 100644 index 0000000..8c7e57f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame-inline.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame-notebook.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame-notebook.png Binary files differnew file mode 100644 index 0000000..825ef69 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame-notebook.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame.png Binary files differnew file mode 100644 index 0000000..244499a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/frame.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz-active.png Binary files differnew file mode 100644 index 0000000..86c94e4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz-hover.png Binary files differnew file mode 100644 index 0000000..eb58cf9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz.png Binary files differnew file mode 100644 index 0000000..2b988ac --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-horz.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert-active.png Binary files differnew file mode 100644 index 0000000..4092173 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert-hover.png Binary files differnew file mode 100644 index 0000000..232a2af --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert.png Binary files differnew file mode 100644 index 0000000..f2ae2e8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/handle-vert.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png Binary files differnew file mode 100644 index 0000000..d5d6f76 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-checked.png Binary files differnew file mode 100644 index 0000000..1e34e3a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..8870fba --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-mixed.png Binary files differnew file mode 100644 index 0000000..a8b48dd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..4953262 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..9061a04 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-checkbox-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-checked-disabled.png Binary files differnew file mode 100644 index 0000000..efb330f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-checked.png Binary files differnew file mode 100644 index 0000000..b1f1f84 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..b6a79b9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-mixed.png Binary files differnew file mode 100644 index 0000000..26ca291 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..34ab593 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-unchecked.png Binary files differnew file mode 100644 index 0000000..f5f95cc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/menu-radio-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry-active.png Binary files differnew file mode 100644 index 0000000..ee0bfd2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry-disabled.png Binary files differnew file mode 100644 index 0000000..92898db --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry.png Binary files differnew file mode 100644 index 0000000..0872e55 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-ltr-entry.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry-active.png Binary files differnew file mode 100644 index 0000000..328ea2d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry-disabled.png Binary files differnew file mode 100644 index 0000000..1b4659c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry.png Binary files differnew file mode 100644 index 0000000..5037e17 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-combo-rtl-entry.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry-active.png Binary files differnew file mode 100644 index 0000000..5c952d3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry-disabled.png Binary files differnew file mode 100644 index 0000000..6041aed --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry.png Binary files differnew file mode 100644 index 0000000..5cc62ed --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/notebook-entry.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-alt-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-alt-disabled.png Binary files differnew file mode 100644 index 0000000..62dcdf6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-alt-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-alt.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-alt.png Binary files differnew file mode 100644 index 0000000..f2ec11c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-alt.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-disabled.png Binary files differnew file mode 100644 index 0000000..dff2e36 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down.png Binary files differnew file mode 100644 index 0000000..2ace0c6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-down.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-alt-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-alt-disabled.png Binary files differnew file mode 100644 index 0000000..073964d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-alt-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-alt.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-alt.png Binary files differnew file mode 100644 index 0000000..7baf21a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-alt.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-disabled.png Binary files differnew file mode 100644 index 0000000..24baff4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-semi.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-semi.png Binary files differnew file mode 100644 index 0000000..b641aa4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left-semi.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left.png Binary files differnew file mode 100644 index 0000000..a5663e8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-left.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-alt-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-alt-disabled.png Binary files differnew file mode 100644 index 0000000..689f5fb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-alt-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-alt.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-alt.png Binary files differnew file mode 100644 index 0000000..02672a0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-alt.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-disabled.png Binary files differnew file mode 100644 index 0000000..bf76f45 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-semi.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-semi.png Binary files differnew file mode 100644 index 0000000..2313d89 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right-semi.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right.png Binary files differnew file mode 100644 index 0000000..d97888f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-right.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-alt-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-alt-disabled.png Binary files differnew file mode 100644 index 0000000..908d0ab --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-alt-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-alt.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-alt.png Binary files differnew file mode 100644 index 0000000..9494a4c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-alt.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-disabled.png Binary files differnew file mode 100644 index 0000000..faa1bc8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up.png Binary files differnew file mode 100644 index 0000000..43f7b5b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/pan-up.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/progressbar-progress.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/progressbar-progress.png Binary files differnew file mode 100644 index 0000000..c553af8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/progressbar-progress.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/progressbar-trough.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/progressbar-trough.png Binary files differnew file mode 100644 index 0000000..194792c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/progressbar-trough.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-active.png Binary files differnew file mode 100644 index 0000000..8f6040c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-disabled.png Binary files differnew file mode 100644 index 0000000..b1a8f06 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-hover.png Binary files differnew file mode 100644 index 0000000..8af5e3b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked.png Binary files differnew file mode 100644 index 0000000..dd1bd6d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-active.png Binary files differnew file mode 100644 index 0000000..a5b5c11 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..75da869 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-hover.png Binary files differnew file mode 100644 index 0000000..8093a0d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed.png Binary files differnew file mode 100644 index 0000000..adc2460 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-active.png Binary files differnew file mode 100644 index 0000000..1966c83 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..7a084c0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-hover.png Binary files differnew file mode 100644 index 0000000..9f21a59 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked.png Binary files differnew file mode 100644 index 0000000..3eaa832 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/radio-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough-active.png Binary files differnew file mode 100644 index 0000000..5e4e08b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough-disabled.png Binary files differnew file mode 100644 index 0000000..0cbbb3a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough.png Binary files differnew file mode 100644 index 0000000..48fa548 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-horz-trough.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-active.png Binary files differnew file mode 100644 index 0000000..5d40a99 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-disabled.png Binary files differnew file mode 100644 index 0000000..373b64b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-hover.png Binary files differnew file mode 100644 index 0000000..e716819 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider.png Binary files differnew file mode 100644 index 0000000..f6c748a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough-active.png Binary files differnew file mode 100644 index 0000000..d1439ae --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough-disabled.png Binary files differnew file mode 100644 index 0000000..fb4008f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough.png Binary files differnew file mode 100644 index 0000000..9916e10 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scale-vert-trough.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-active.png Binary files differnew file mode 100644 index 0000000..857b828 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png Binary files differnew file mode 100644 index 0000000..1a322d2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png Binary files differnew file mode 100644 index 0000000..8de550e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider.png Binary files differnew file mode 100644 index 0000000..4459ee9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-trough.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-trough.png Binary files differnew file mode 100644 index 0000000..5c077f7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-horz-trough.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png Binary files differnew file mode 100644 index 0000000..3747a4a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png Binary files differnew file mode 100644 index 0000000..3049aae --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png Binary files differnew file mode 100644 index 0000000..d9f5012 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png Binary files differnew file mode 100644 index 0000000..407f681 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png Binary files differnew file mode 100644 index 0000000..5cdb658 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-ltr-trough.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png Binary files differnew file mode 100644 index 0000000..47ce212 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png Binary files differnew file mode 100644 index 0000000..1c92b3d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png Binary files differnew file mode 100644 index 0000000..0707f87 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png Binary files differnew file mode 100644 index 0000000..2dc40cf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png Binary files differnew file mode 100644 index 0000000..7745831 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/scrollbar-vert-rtl-trough.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-active.png Binary files differnew file mode 100644 index 0000000..37f33e9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-disabled.png Binary files differnew file mode 100644 index 0000000..ece1823 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-hover.png Binary files differnew file mode 100644 index 0000000..245ddf8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down.png Binary files differnew file mode 100644 index 0000000..994f833 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-down.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-active.png Binary files differnew file mode 100644 index 0000000..dd6ecb5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-disabled.png Binary files differnew file mode 100644 index 0000000..f24fb8d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-hover.png Binary files differnew file mode 100644 index 0000000..fbd9495 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up.png Binary files differnew file mode 100644 index 0000000..57b4786 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-ltr-up.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-active.png Binary files differnew file mode 100644 index 0000000..f617ca4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-disabled.png Binary files differnew file mode 100644 index 0000000..91dc539 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-hover.png Binary files differnew file mode 100644 index 0000000..d6bce89 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down.png Binary files differnew file mode 100644 index 0000000..1bd8c8b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-down.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-active.png Binary files differnew file mode 100644 index 0000000..0f4e6e3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-disabled.png Binary files differnew file mode 100644 index 0000000..ab46d61 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-hover.png Binary files differnew file mode 100644 index 0000000..ff3073c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up.png Binary files differnew file mode 100644 index 0000000..99bbf69 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/spin-rtl-up.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/tab.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/tab.png Binary files differnew file mode 100644 index 0000000..1c7ba9c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/tab.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button-active.png Binary files differnew file mode 100644 index 0000000..d140acf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button-hover.png Binary files differnew file mode 100644 index 0000000..a8df6d0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button.png Binary files differnew file mode 100644 index 0000000..eb69a31 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-ltr-button.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button-active.png Binary files differnew file mode 100644 index 0000000..e91cbf4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button-hover.png Binary files differnew file mode 100644 index 0000000..948c333 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button.png b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button.png Binary files differnew file mode 100644 index 0000000..1e5a056 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/assets/treeview-rtl-button.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/gtkrc b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/gtkrc new file mode 100644 index 0000000..40996f9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/gtkrc @@ -0,0 +1,34 @@ +# Based on Bridge by ScionicSpectre and Adwaita by GNOME +# vim:set ts=2 sw=2 sts=2 ai et: +# +# This is the GTK+ 2 version of oomox-materia-dark. It's whole purpose is to look as the +# GTK+ 3 version as much as possible until GTK+ 2 dies completely. +# +# Note: comments for explaining styles are on the bottom of each file beside the +# widget matches. + +# Declare the colours used throughout the theme. +# There shouldn't be any fiddling with them in the theme files themselves in +# order to not mess up the dark theme. + +# Text/base +gtk-color-scheme = "text_color:#eeeeee\nbase_color:#303030" +# Foreground/background +gtk-color-scheme = "fg_color:#eeeeee\nbg_color:#212121" +# Selected foreground/background +gtk-color-scheme = "selected_fg_color:#eeeeee\nselected_bg_color:#338DD6" +# Titlebar foreground/background +gtk-color-scheme = "titlebar_fg_color:#eeeeee\ntitlebar_bg_color:#212121" +# Tooltips foreground/background +gtk-color-scheme = "tooltip_fg_color:#eeeeee\ntooltip_bg_color:#616161" +# Links +gtk-color-scheme = "link_color:#338DD6\nvisited_link_color:#E040FB" + +# Set GTK settings +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 + +# And hand over the control to the theme files +include "main.rc" +include "apps.rc" +include "hacks.rc" diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/hacks.rc b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/hacks.rc new file mode 100644 index 0000000..96eb088 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/hacks.rc @@ -0,0 +1,36 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file contains horrible hacks to make this theme work with some programs +# This is mostly due to the limitations of gtk2 but sometimes its the fault of +# the programs themselves. Not going to point fingers. +# +# Either way, it's a WONTFIX for both, hence this horrible file. + +style "toplevel_hack" { + engine "adwaita" {} +} + +style "chrome_entry" { + base[NORMAL] = @base_color + base[INSENSITIVE] = @base_color +} + +style "vim_notebook" { + bg[NORMAL] = @base_color + bg[ACTIVE] = @bg_color +} + +# Vim puts an eventbox between the tab and the label and colours it, +# we need to handle that +widget "vim-main-window*GtkNotebook.GtkEventBox" style "vim_notebook" + +# (he)xchat input box +class "SexySpellEntry" style:highest "normal_entry" + +# Chromium uses base as the fill colour of its own entries +# This would be fine but Gtk+ uses it to fill the surrounding space, so its set to bg +# That results in Chromium using it for the fill, so we need to handle that +widget_class "*Chrom*<GtkEntry>" style "chrome_entry" + +# Hack to be able to match widgets in LibreOffice +class "GtkWindow" style "toplevel_hack" diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-2.0/main.rc b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/main.rc new file mode 100644 index 0000000..49130c4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-2.0/main.rc @@ -0,0 +1,2781 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This is the main theme file, handling all the default widgets and theme +# properties. Since GTK+ 2 is old, we need to overcome some of its limitations, +# which is also mostly done in this file. Sadly not all of them can be overcome +# so there will always be a visible difference between the GTK+ 2 and 3 theme. + +style "default" { + xthickness = 1 + ythickness = 1 + + #################### + # Style Properties # + #################### + + GtkWidget::focus-padding = 0 + GtkWidget::focus-line-width = 2 + GtkWidget::focus-line-pattern = "\2\1" + + GtkToolbar::space-size = 5 # 1 + 2*2 (separator + margins) + GtkToolbar::internal-padding = 2 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 2 + GtkWidget::tooltip-alpha = 230 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @visited_link_color + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkHTML::vlink-color = @visited_link_color + GtkIMHtml::hyperlink-color = @link_color + GtkIMHtml::hyperlink-visited-color = @visited_link_color + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 3 + + GtkButton::child-displacement-y = 0 + + GtkButton::default-border = {0, 0, 0, 0} + GtkButton::default-outside-border = {0, 0, 0, 0} + GtkButton::inner-border = {4, 4, 4, 4} + + GtkEntry::state-hint = 1 + GtkEntry::inner-border = {4, 4, 4, 4} + + GtkPaned::handle-size = 8 + GtkHPaned::handle-size = 8 + GtkVPaned::handle-size = 8 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 17 + GtkRange::stepper-size = 0 + GtkRange::activate-slider = 1 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 32 # 24 + 2*4 (margins) + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 24 + GtkScale::slider_width = 24 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 4 + GtkProgressBar::min-vertical-bar-width = 4 + GtkProgressBar::xspacing = 4 + GtkProgressBar::yspacing = 4 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + # TODO: find out what this comment means: + # ( every window is misaligned for the sake of menus ): + GtkMenuBar::internal-padding = 0 + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 4 + GtkMenu::double-arrows = 0 + GtkMenuItem::arrow-scaling = 1 + GtkMenuItem::toggle-spacing = 12 + + GtkCheckButton::indicator-size = 24 + GtkCheckButton::indicator_spacing = 2 + GtkOptionMenu::indicator_spacing = {10, 10, 6, 6} + + GtkTreeView::expander-size = 16 + GtkTreeView::vertical-separator = 0 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 0 + # Set this because some apps read it + GtkTreeView::odd-row-color = @base_color + GtkTreeView::even-row-color = @base_color + + GtkExpander::expander-size = 16 + + GtkNotebook::tab-overlap = 0 + + ########## + # Colors # + ########## + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = @bg_color + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = mix (0.4, @fg_color, @bg_color) + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = mix (0.4, @text_color, @base_color) + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = mix (0.05, @text_color, @base_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = mix (0.5, @base_color, @bg_color) + base[ACTIVE] = @selected_bg_color + + # For succinctness, all reasonable pixmap options remain here + + # Draw frame around menu in a non-compositied environment + # This needs to go before pixmap because we need to override some stuff + engine "adwaita" {} + + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = IN + overlay_file = "assets/checkbox-checked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-disabled.png" + overlay_stretch = FALSE + } + + ################# + # Radio Buttons # + ################# + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-active.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/radio-checked-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/radio-checked-active.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/radio-checked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-active.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-disabled.png" + overlay_stretch = FALSE + } + + ########## + # Arrows # + ########## + + # Overrides + + # Disable arrows in spinbuttons + image { + function = ARROW + detail = "spinbutton" + } + + # Disable arrows for qt in scrollbars + + image { + function = ARROW + detail = "vscrollbar" + } + + image { + function = ARROW + detail = "hscrollbar" + } + + # Menu arrows + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/pan-left-disabled.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/pan-right-disabled.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_up" + overlay_file = "assets/pan-up-disabled.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_up" + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_down" + overlay_file = "assets/pan-down-disabled.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_down" + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + # Regular arrows + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-left-alt.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-left-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-right-alt.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-right-alt-disabled.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + ###################### + # Option Menu Arrows # + ###################### + + image { + function = TAB + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + } + + ######### + # Lines # + ######### + + image { + function = VLINE + file = "assets/border.png" + border = {1, 0, 0, 0} + } + + image { + function = HLINE + file = "assets/border.png" + border = {0, 0, 1, 0} + } + + ######### + # Focus # + ######### + + image { + function = FOCUS + file = "assets/focus.png" + border = {2, 2, 2, 2} + stretch = TRUE + } + + ########### + # Handles # + ########### + + image { + function = HANDLE + detail = "handlebox" + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + } + + image { + function = HANDLE + state = NORMAL + overlay_file = "assets/handle-horz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = PRELIGHT + overlay_file = "assets/handle-horz-hover.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = ACTIVE + overlay_file = "assets/handle-horz-active.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + + image { + function = HANDLE + state = NORMAL + overlay_file = "assets/handle-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = HANDLE + state = PRELIGHT + overlay_file = "assets/handle-vert-hover.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = HANDLE + state = ACTIVE + overlay_file = "assets/handle-vert-active.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + + image { + function = RESIZE_GRIP + } + + ############# + # Expanders # + ############# + + image { + function = EXPANDER + expander_style = EXPANDED + state = NORMAL + file = "assets/pan-down-alt.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = PRELIGHT + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = ACTIVE + file = "assets/pan-down.png" + } + + image { + function = EXPANDER + expander_style = EXPANDED + state = INSENSITIVE + file = "assets/pan-down-alt-disabled.png" + } + + # LTR + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-right-alt.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-right-alt-disabled.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-right-semi.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-right-semi.png" + direction = LTR + } + + # RTL + + image { + function = EXPANDER + expander_style = COLLAPSED + state = NORMAL + file = "assets/pan-left-alt.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = PRELIGHT + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = ACTIVE + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = COLLAPSED + state = INSENSITIVE + file = "assets/pan-left-alt-disabled.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-left-semi.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-left-semi.png" + direction = RTL + } + + ############# + # Notebooks # + ############# + + # Left + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 1, 0, 0} + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + gap_side = RIGHT + } + + # Right + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {1, 0, 0, 0} + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + gap_side = LEFT + } + + # Up + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 0, 1} + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + gap_side = BOTTOM + } + + # Down + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab.png" + border = {0, 0, 1, 0} + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + gap_side = TOP + } + + # Inner frame + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {1, 0, 0, 0} + gap_side = LEFT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 1, 0, 0} + gap_side = RIGHT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 1, 0} + gap_side = TOP + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab.png" + gap_border = {0, 0, 0, 1} + gap_side = BOTTOM + } + + # Standalone frame + image { + function = BOX + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-horz-trough.png" + border = {0, 0, 1, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-ltr-trough.png" + border = {1, 0, 0, 0} + orientation = VERTICAL + direction = LTR + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-rtl-trough.png" + border = {0, 1, 0, 0} + orientation = VERTICAL + direction = RTL + } + + # Horizontal sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-horz-slider.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-horz-slider-hover.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-active.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-disabled.png" + border = {8, 8, 9, 8 } + stretch = TRUE + orientation = HORIZONTAL + } + + # Vertical sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-hover.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-active.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-ltr-slider-disabled.png" + border = {9, 8, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + # RTL + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-hover.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-active.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + file = "assets/scrollbar-vert-rtl-slider-disabled.png" + border = {8, 9, 8, 8} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + ########## + # Scales # + ########## + + # Troughs, overrided later on. We set them here too because some widgets + # don't specify their orientation. + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-horz-trough-disabled.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-horz-trough-disabled.png" + border = {6, 6, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-upper" + file = "assets/scale-vert-trough-disabled.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + state = INSENSITIVE + detail = "trough-lower" + file = "assets/scale-vert-trough-disabled.png" + border = {0, 0, 6, 6} + stretch = TRUE + orientation = VERTICAL + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + detail = "hscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "hscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "hscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "hscale" + file = "assets/scale-slider-disabled.png" + } + + image { + function = SLIDER + state = NORMAL + detail = "vscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "vscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "vscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "vscale" + file = "assets/scale-slider-disabled.png" + } + + ########### + # Menubar # + ########### + + # image { + # function = BOX + # detail = "menubar" + # file = "assets/border.png" + # border = {0, 0, 0, 1} + # } + + ######### + # Menus # + ######### + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_up" + file = "assets/border.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_up" + file = "assets/border.png" + border = {0, 0, 0, 1} + } + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_down" + file = "assets/border.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_down" + file = "assets/border.png" + border = {0, 0, 1, 0} + } + + ########### + # Entries # + ########### + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = FLAT_BOX + state = ACTIVE + detail = "entry_bg" + file = "assets/entry-background.png" + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/entry-background-disabled.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/entry-background.png" + } + + ######### + # Spins # + ######### + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/spin-ltr-up.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-ltr-up-hover.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-active.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-disabled.png" + border = {0, 8, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/spin-rtl-up.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-disabled.png" + border = {8, 0, 8, 0} + stretch = TRUE + overlay_file = "assets/pan-up-alt-disabled.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/spin-ltr-down.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-ltr-down-hover.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-active.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-disabled.png" + border = {0, 8, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/spin-rtl-down.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-rtl-down-hover.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-active.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-disabled.png" + border = {8, 0, 0, 8} + stretch = TRUE + overlay_file = "assets/pan-down-alt-disabled.png" + overlay_stretch = FALSE + direction = RTL + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-progress.png" + stretch = TRUE + border = {0, 0, 0, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-progress.png" + stretch = TRUE + border = {0, 0, 0, 0} + orientation = VERTICAL + } + + ############# + # Treeviews # + ############# + + # Disable active the column highlight + # We need to match specific cells or we break stuff + # Looking at you deadbeef + + image { + function = FLAT_BOX + detail = "cell_even_sorted" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "cell_odd_sorted" + state = NORMAL + } + + # Disable all the other shadows + # This prevents the Raleigh effect + image { + function = SHADOW + } + } +} + +style "menubar" { + bg[NORMAL] = @titlebar_bg_color + fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color) + fg[PRELIGHT] = @titlebar_fg_color + fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color) + # Needed to fix Firefox's menubar text + bg[SELECTED] = mix(0.15, @titlebar_fg_color, @titlebar_bg_color) + fg[SELECTED] = @titlebar_fg_color +} + +style "menubar_item" { + xthickness = 3 + ythickness = 4 + + fg[NORMAL] = mix(0.7, @titlebar_fg_color, @titlebar_bg_color) + bg[PRELIGHT] = mix(0.15, @titlebar_fg_color, @titlebar_bg_color) + fg[PRELIGHT] = @titlebar_fg_color + fg[INSENSITIVE] = mix(0.3, @titlebar_fg_color, @titlebar_bg_color) +} + +style "menu" { + xthickness = 0 + ythickness = 0 + + bg[NORMAL] = @base_color + bg[INSENSITIVE] = @base_color + bg[PRELIGHT] = @base_color + bg[SELECTED] = mix(0.15, @fg_color, @base_color) +} + +style "menu_item" { + xthickness = 4 + ythickness = 4 + + bg[PRELIGHT] = mix(0.15, @fg_color, @base_color) + fg[PRELIGHT] = @fg_color + # Chromium uses this setting + bg[SELECTED] = mix(0.15, @fg_color, @base_color) + text[SELECTED] = @fg_color + # Some widgets use text, we need to handle that + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + + # Unfortunately we can't tell regular and menu checks/radios apart + # Without the heirarchy + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-unchecked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed-disabled.png" + overlay_stretch = FALSE + } + + ################# + # Radio Buttons # + ################# + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-unchecked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-disabled.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed-disabled.png" + overlay_stretch = FALSE + } + } +} + +style "separator_menu_item" { + xthickness = 0 + ythickness = 2 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + border = {0, 0, 0, 1} + } + } +} + +style "button_label" { + fg[NORMAL] = mix(0.75, @fg_color, @bg_color) + # fg[INSENSITIVE] = mix(0.3, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "checkbutton_label" { + fg[NORMAL] = @fg_color + # fg[INSENSITIVE] = mix(0.4, @fg_color, @bg_color) + + font_name = "Regular" +} + +style "button" { + xthickness = 4 + ythickness = 4 + + # For the sake of sanity style buttons this way + engine "pixmap" { + + ########### + # Buttons # + ########### + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/button-hover.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "link_button" { + # Disable the button effect, leave just the link + engine "pixmap" { + image { + function = BOX + } + } +} + +style "entry" { + # We set this same as the border of the border of the entry + # This way there's no overlap + xthickness = 6 + ythickness = 6 +} + +style "combobox" { + xthickness = 6 + ythickness = 6 + + # This affects only the button beside an entry + GtkButton::inner-border = {0, 0, 0, 0} +} + +style "combobox_cellview" { + text[NORMAL] = mix(0.75, @fg_color, @bg_color) + # text[INSENSITIVE] = mix(0.3, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "combobox_entry" { + # Since one side of the button is missing, we need to shift the arrow a little to the right + GtkButton::inner-border = {0, 2, 0, 0} + + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-ltr-entry.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-ltr-entry-active.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-ltr-entry-disabled.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-rtl-entry.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-rtl-entry-active.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-rtl-entry-disabled.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + ############## + # LTR button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-ltr-button.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-ltr-button-hover.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-ltr-button-active.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-ltr-button-disabled.png" + border = {0, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + ############## + # RTL button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-rtl-button.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-rtl-button-hover.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-rtl-button-active.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-rtl-button-disabled.png" + border = {8, 0, 8, 8} + stretch = TRUE + direction = RTL + } + } +} + +style "combo_button_padding" { + # Since one side of the button is missing, we need to shift the arrow a + # little to the right. + # This is the same thing we've done above but the combo, unlike the combobox, + # uses padding the same way as a button. + GtkButton::inner-border = {3, 6, 3, 3} +} + +style "notebook" { + xthickness = 3 + ythickness = 3 +} + +style "notebook_tab_label" { + fg[ACTIVE] = mix(0.75, @fg_color, @bg_color) + + font_name = "Medium" +} + +style "notebook_viewport" { + bg[NORMAL] = @base_color +} + +style "notebook_bg" { + bg[NORMAL] = @base_color + bg[PRELIGHT] = @base_color + bg[INSENSITIVE] = @base_color +} + +style "notebook_entry" { + engine "pixmap" { + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-entry-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/notebook-entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "normal_bg" { + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[INSENSITIVE] = @bg_color +} + +style "normal_entry" { + engine "pixmap" { + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "notebook_combo" { + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/notebook-combo-ltr-entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-combo-ltr-entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-combo-ltr-entry-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/notebook-combo-rtl-entry.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-combo-rtl-entry-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-combo-rtl-entry-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + direction = RTL + } + } +} + +style "textview" { + bg[NORMAL] = @base_color +} + +style "scale_horz" { + engine "pixmap" { + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {6, 6, 0, 0} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {6, 6, 0, 0} + stretch = TRUE + } + } +} + +style "scale_vert" { + engine "pixmap" { + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 6, 6} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 6, 6} + stretch = TRUE + } + } +} + +style "progressbar" { + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + image { + function = BOX + detail = "trough" + file = "assets/progressbar-trough.png" + border = {0, 0, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/progressbar-trough.png" + border = {0, 0, 0, 0} + stretch = TRUE + orientation = VERTICAL + } + } +} + +style "treeview_header" { + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = mix(0.75, @fg_color, @base_color) + fg[PRELIGHT] = @fg_color + + font_name = "Medium" + + GtkButton::inner-border = {4, 4, 0, 2} + + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/treeview-ltr-button.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-ltr-button-hover.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-ltr-button-active.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = NORMAL + file = "assets/treeview-rtl-button.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + file = "assets/treeview-rtl-button-hover.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + file = "assets/treeview-rtl-button-active.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up-alt.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down-alt.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + } +} + +style "scrolled_window" { + engine "pixmap" { + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + } +} + +style "frame" { + engine "pixmap" { + image { + function = SHADOW + shadow = NONE + } + + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_start_file = "assets/border.png" + gap_end_file = "assets/border.png" + } + } +} + +style "tool_button" { + GtkButton::inner-border = {2, 2, 2, 2} + + # For the sake of sanity style buttons this way + engine "pixmap" { + image { + function = BOX + state = NORMAL + file = "assets/flat-button.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/flat-button-hover.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/flat-button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/flat-button-active.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = OUT + file = "assets/flat-button-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + shadow = IN + file = "assets/button-disabled.png" + border = {8, 8, 8, 8} + stretch = TRUE + } + } +} + +style "toolbar_separator" { + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 1 + + engine "pixmap" { + image { + function = BOX + file = "assets/border.png" + } + } +} + +style "inline_toolbar" { + # GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + image { + function = BOX + file = "assets/frame-inline.png" + border = {1, 1, 0, 1} + stretch = TRUE + } + } +} + +style "tooltip" { + xthickness = 8 + ythickness = 8 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color +} + +style "disable_text_shadow" { + engine "murrine" { + textstyle = 0 + } +} + +style "disable_separator" { + xthickness = 0 + ythickness = 0 + + GtkWidget::wide-separators = 1 +} + +# Default style, containing theme properties and trying to match every widget as +# much as possible, which is not only faster than trying to match every widget +# by its own but also less bug-prune and more consistent. However there is some +# widget specific stuff that needs to be taken care of, which is the point of +# every other style below. +class "GtkWidget" style "default" + +###################################### +# Override padding, style and colour # +###################################### + +class "GtkButton" style "button" +class "GtkLinkButton" style "link_button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkNotebook" style "notebook" +class "GtkHScale" style "scale_horz" +class "GtkVScale" style "scale_vert" +class "GtkProgressBar" style "progressbar" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkSeparatorToolItem" style "toolbar_separator" +class "GtkMenuBar" style "menubar" +class "GtkMenu" style "menu" +class "GtkTextView" style "textview" + +# Menu and menubar items +widget_class "*<GtkMenuItem>*" style "menu_item" +widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar_item" +widget_class "*<GtkSeparatorMenuItem>*" style "separator_menu_item" + +# Treeview buttons +widget_class "*<GtkTreeView>*<GtkButton>*" style "treeview_header" + +# Give the file chooser toolbar a border +widget_class "*<GtkFileChooserDefault>*<GtkToolbar>" style "inline_toolbar" + +# Fix padding on regular comboboxes +widget_class "*<GtkComboBox>.<GtkButton>" style "combobox" + +# And disable separators on them +widget_class "*<GtkComboBox>.<GtkButton>*<GtkSeparator>" style "disable_separator" +widget_class "*<GtkFontButton>*<GtkSeparator>" style "disable_separator" +widget_class "*<GtkFileChooserButton>*<GtkSeparator>" style "disable_separator" + +# Join together the ComboBoxEntry entry and button +widget_class "*<GtkComboBoxEntry>*" style "combobox_entry" + +# Join the Combo entry and button +widget_class "*<GtkCombo>*" style "combobox_entry" + +# Tweak the padding on the button a little bit because it +# uses it a bit differently +widget_class "*<GtkCombo>.<GtkButton>" style "combo_button_padding" + +# Alas we cannot do the same for ComboBoxText because there +# isn't a way to apply the style to only the comboboxes that +# have an entry inside + +# Tool buttons have different styles +widget_class "*<GtkToolButton>*<GtkButton>" style "tool_button" +widget_class "*<GtkVBox>*<GtkEventBox>.<GtkToolbar>*<GtkButton>" style "tool_button" + +# Notebooks +widget_class "*<GtkNotebook>.<GtkLabel>" style "notebook_tab_label" +widget_class "*<GtkNotebook>.<GtkHBox>.<GtkLabel>" style "notebook_tab_label" + +# Notebooks are white, act accordingly +widget_class "*<GtkNotebook>*<GtkEntry>" style "notebook_entry" +widget_class "*<GtkNotebook>*<GtkProgressBar>" style "notebook_bg" +widget_class "*<GtkNotebook>*<GtkSpinButton>" style "notebook_bg" +widget_class "*<GtkNotebook>*<GtkScrolledWindow>*<GtkViewport>" style "notebook_bg" +widget_class "*<GtkNotebook>*<GimpRuler>" style "notebook_bg" +widget_class "*<GtkNotebook>.<GimpDisplayShell>*<GtkEventBox>" style "notebook_bg" +widget_class "*<GtkNotebook>*<GtkComboBoxEntry>*" style "notebook_combo" +widget_class "*<GtkNotebook>*<GtkCombo>*" style "notebook_combo" + +# However, stuff inside eventboxes inside notebooks is grey +# again, react +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkEntry>" style "normal_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkProgressBar>" style "normal_bg" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkSpinButton>" style "normal_bg" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkComboBoxEntry>*" style "combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkCombo>*" style "combobox_entry" +widget_class "*<GtkNotebook>*<GtkEventBox>*<GtkCombo>.<GtkButton>" style "combo_button_padding" + +# Button labels +widget_class "*<GtkButton>*<GtkLabel>" style "button_label" + +# Checkbutton labels +widget_class "*<GtkCheckButton>.<GtkLabel>" style "checkbutton_label" + +# ComboBoxes tend to draw the button label with text[] +# instead of fg[], we need to fix that +widget_class "*<GtkComboBox>*<GtkCellView>" style "combobox_cellview" + +# Disable white text shadows +widget_class "*<GtkLabel>" style "disable_text_shadow" +widget_class "*<GtkCellView>" style "disable_text_shadow" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltip" diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-3.0/assets b/dotfiles/.themes/oomox-materia-dark/gtk-3.0/assets new file mode 120000 index 0000000..ac77667 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-3.0/assets @@ -0,0 +1 @@ +../gtk-assets
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-3.0/gtk.css b/dotfiles/.themes/oomox-materia-dark/gtk-3.0/gtk.css new file mode 100644 index 0000000..72498a4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-3.0/gtk.css @@ -0,0 +1,3267 @@ +@keyframes ripple_effect { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, transparent); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.12)); + } +} + +@keyframes flat_ripple_effect { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.12)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.12)); + } +} + +@keyframes list_ripple_effect { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, transparent); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, transparent); + } +} + +* { + padding: 0; + background-clip: padding-box; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #d8645a; + -GtkCheckButton-indicator-size: 24; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #3d82ff; + -GtkWidget-visited-link-color: #c366cf; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 20; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-style: solid; + outline-width: 2px; + outline-color: alpha(currentColor, 0.24); + outline-offset: -4px; + outline-radius: 4px; +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #212121; + color: #eeeeee; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; +} + +.gtkstyle-fallback { + background-color: #212121; + color: #eeeeee; +} + +.gtkstyle-fallback:prelight { + background-color: #141414; + color: #eeeeee; +} + +.gtkstyle-fallback:active { + background-color: #080808; + color: #eeeeee; +} + +.gtkstyle-fallback:insensitive { + background-color: #212121; + color: rgba(238, 238, 238, 0.5); +} + +.gtkstyle-fallback:selected { + background-color: #338DD6; + color: #fefefe; +} + +.view { + background-color: #303030; + color: #eeeeee; +} + +.view:hover, .view:active, .view:selected, GtkCalendar:selected { + border-radius: 4px; +} + +.view:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { + border: 1px solid #53adf6; + background-color: rgba(83, 173, 246, 0.3); +} + +.label.separator { + color: #eeeeee; +} + +.label:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.dim-label, .label.separator, .titlebar .subtitle, +.header-bar .subtitle { + opacity: 0.6; +} + +GtkAssistant .sidebar { + padding: 6px 0; +} + +GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +GtkAssistant .sidebar .label { + opacity: 0.5; + padding: 5px 12px 6px; + font-weight: 500; +} + +GtkAssistant .sidebar .label.highlight { + opacity: 1; +} + +GtkTextView { + background-color: #2a2a2a; +} + +.grid-child { + padding: 4px; + border-radius: 4px; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +.spinner { + background-color: blue; + background-image: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); +} + +.spinner:active { + opacity: 1; + animation: spin 1s linear infinite; +} + +.spinner:active:insensitive { + opacity: 0.5; +} + +/**************** + * Text Entries * + ****************/ +.entry { + padding: 7px 8px 8px; + border-radius: 4px; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: #eeeeee; +} + +.entry:focus { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.entry:insensitive { + color: rgba(238, 238, 238, 0.5); + background-color: #2a2a2a; +} + +.entry.flat, .notebook GtkGrid > .entry { + border-radius: 0; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#338DD6), to(transparent)) 0 0 0/0 0 0px; + border-radius: 0; + box-shadow: inset 0 -1px alpha(currentColor, 0.24); + background-color: transparent; + color: #eeeeee; +} + +.entry.flat:focus, .notebook GtkGrid > .entry:focus { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#338DD6), to(transparent)) 0 0 2/0 0 2px; + box-shadow: inset 0 -2px #338DD6; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0 250ms; +} + +.entry.flat:insensitive, .notebook GtkGrid > .entry:insensitive { + box-shadow: inset 0 -1px alpha(currentColor, 0.24); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +.entry.image.left { + padding-left: 2px; +} + +.entry.image.right { + padding-right: 2px; +} + +.entry.progressbar, GtkTreeView.view.progressbar, GtkTreeView.view.trough { + margin: 2px; + border-style: none none solid; + border-width: 2px; + border-color: #338DD6; + border-radius: 0; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +.linked > .entry.flat, .notebook GtkGrid.linked > .entry, +.linked.vertical > .entry.flat, +.notebook GtkGrid.linked.vertical > .entry { + border-radius: 0; +} + +.entry.error { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #d8645a; + color: #fefefe; +} + +.entry.error:focus { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.entry.error:insensitive { + color: rgba(238, 238, 238, 0.5); + background-color: #2a2a2a; +} + +.entry.error.flat, .notebook GtkGrid > .error.entry { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#d8645a), to(transparent)) 0 0 0/0 0 0px; + border-radius: 0; + box-shadow: inset 0 -1px #d8645a; + background-color: transparent; + color: #eeeeee; +} + +.entry.error.flat:focus, .notebook GtkGrid > .error.entry:focus { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#d8645a), to(transparent)) 0 0 2/0 0 2px; + box-shadow: inset 0 -2px #d8645a; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0 250ms; +} + +.entry.error.flat:insensitive, .notebook GtkGrid > .error.entry:insensitive { + box-shadow: inset 0 -1px alpha(currentColor, 0.24); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +.entry.warning { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #bc742d; + color: #fefefe; +} + +.entry.warning:focus { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.entry.warning:insensitive { + color: rgba(238, 238, 238, 0.5); + background-color: #2a2a2a; +} + +.entry.warning.flat, .notebook GtkGrid > .warning.entry { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#bc742d), to(transparent)) 0 0 0/0 0 0px; + border-radius: 0; + box-shadow: inset 0 -1px #bc742d; + background-color: transparent; + color: #eeeeee; +} + +.entry.warning.flat:focus, .notebook GtkGrid > .warning.entry:focus { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#bc742d), to(transparent)) 0 0 2/0 0 2px; + box-shadow: inset 0 -2px #bc742d; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0 250ms; +} + +.entry.warning.flat:insensitive, .notebook GtkGrid > .warning.entry:insensitive { + box-shadow: inset 0 -1px alpha(currentColor, 0.24); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +.entry.image:not(:hover):not(:active) { + color: alpha(currentColor, 0.7); +} + +.entry.image:insensitive { + color: alpha(currentColor, 0.5); +} + +GtkTreeView .entry:not(:selected), GtkTreeView .entry:not(:selected):focus { + padding: 2px; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: #303030; +} + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#009688), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#009688), to(transparent)); + } +} + + +.button { + padding: 7px 10px 8px; + border-radius: 4px; + background-repeat: no-repeat; + background-position: center, center; + background-size: 90px 90px, auto; + font-weight: 500; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #424242; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, transparent); + color: #fafafa; +} + + +.button:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, transparent); + color: #eeeeee; +} + + +.button:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1), background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + color: #eeeeee; +} + + +.button:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.24); + color: rgba(238, 238, 238, 0.3); +} + + +.button:insensitive > .label { + color: inherit; +} + + +.button:checked { + background-color: #338DD6; + color: #fefefe; +} + + +.button:checked:insensitive { + background-color: rgba(51, 141, 214, 0.3); + color: rgba(51, 141, 214, 0.5); +} + + +.button:checked:insensitive > .label { + color: inherit; +} + +.spinbutton .button, .popover .linked > .button, .notebook tab .button, GtkCalendar.button, .message-dialog.csd .dialog-action-area .button, .sidebar-button.button, .toolbar:not(.search-bar) .button, .titlebar .button:not(.suggested-action):not(.destructive-action), +.header-bar .button:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:not(.suggested-action):not(.destructive-action), .app-notification .button, +.app-notification.frame .button, +.button.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: none; + background-color: transparent; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, transparent); + color: alpha(currentColor, 0.7); +} + +.spinbutton .button:hover, .popover .linked > .button:hover, .notebook tab .button:hover, GtkCalendar.button:hover, .message-dialog.csd .dialog-action-area .button:hover, .sidebar-button.button:hover, .toolbar:not(.search-bar) .button:hover, .titlebar .button:hover:not(.suggested-action):not(.destructive-action), +.header-bar .button:hover:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:hover:not(.suggested-action):not(.destructive-action), .app-notification .button:hover, +.button.flat:hover { + box-shadow: none; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.12)); + color: currentColor; +} + +.spinbutton .button:active, .popover .linked > .button:active, .notebook tab .button:active, GtkCalendar.button:active, .message-dialog.csd .dialog-action-area .button:active, .sidebar-button.button:active, .toolbar:not(.search-bar) .button:active, .titlebar .button:active:not(.suggested-action):not(.destructive-action), +.header-bar .button:active:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:active:not(.suggested-action):not(.destructive-action), .app-notification .button:active, +.button.flat:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-image 0; + animation: flat_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: none; + color: currentColor; +} + +.spinbutton .button:insensitive, .popover .linked > .button:insensitive, .notebook tab .button:insensitive, GtkCalendar.button:insensitive, .message-dialog.csd .dialog-action-area .button:insensitive, .sidebar-button.button:insensitive, .toolbar:not(.search-bar) .button:insensitive, .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .button:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .button:insensitive, +.button.flat:insensitive { + box-shadow: none; + background-color: transparent; + color: alpha(currentColor, 0.3); +} + +.spinbutton .button:insensitive > .label, .popover .linked > .button:insensitive > .label, .notebook tab .button:insensitive > .label, GtkCalendar.button:insensitive > .label, .message-dialog.csd .dialog-action-area .button:insensitive > .label, .sidebar-button.button:insensitive > .label, .toolbar:not(.search-bar) .button:insensitive > .label, .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .button:insensitive > .label, +.button.flat:insensitive > .label { + color: inherit; +} + +.toolbar:not(.search-bar) .button:checked, .titlebar .button:checked:not(.suggested-action):not(.destructive-action), +.header-bar .button:checked:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:checked:not(.suggested-action):not(.destructive-action), .app-notification .button:checked, +.button.flat:checked { + background-color: alpha(currentColor, 0.24); + color: currentColor; +} + +.toolbar:not(.search-bar) .button:checked:insensitive, .titlebar .button:checked:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .button:checked:insensitive, +.button.flat:checked:insensitive { + background-color: alpha(currentColor, 0.24); + color: alpha(currentColor, 0.5); +} + +.toolbar:not(.search-bar) .button:checked:insensitive > .label, .titlebar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .button:checked:insensitive > .label, +.button.flat:checked:insensitive > .label { + color: inherit; +} + + +.button.osd.image-button { + padding: 16px; + background-size: 60px 60px, auto; +} + + +.button.osd:insensitive { + opacity: 0; +} + + +.button.suggested-action { + background-color: #009688; + color: #fefefe; +} + + +.button.suggested-action:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.24); + color: rgba(238, 238, 238, 0.5); +} + + +.button.suggested-action:insensitive > .label { + color: inherit; +} + + +.button.suggested-action:checked { + background-color: #4cb5ab; +} + +.toolbar:not(.search-bar) .suggested-action.button, .titlebar .suggested-action.button:not(.suggested-action):not(.destructive-action), +.header-bar .suggested-action.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .suggested-action.button:not(.suggested-action):not(.destructive-action), .app-notification .suggested-action.button, +.button.suggested-action.flat { + background-color: transparent; + color: #009688; +} + +.toolbar:not(.search-bar) .suggested-action.button:insensitive, .titlebar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .suggested-action.button:insensitive, +.button.suggested-action.flat:insensitive { + box-shadow: none; + background-color: transparent; + color: alpha(currentColor, 0.5); +} + +.toolbar:not(.search-bar) .suggested-action.button:insensitive > .label, .titlebar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .suggested-action.button:insensitive > .label, +.button.suggested-action.flat:insensitive > .label { + color: inherit; +} + +.toolbar:not(.search-bar) .suggested-action.button:checked, .titlebar .suggested-action.button:checked:not(.suggested-action):not(.destructive-action), +.header-bar .suggested-action.button:checked:not(.suggested-action):not(.destructive-action), .frame.action-bar .suggested-action.button:checked:not(.suggested-action):not(.destructive-action), .app-notification .suggested-action.button:checked, +.button.suggested-action.flat:checked { + background-color: alpha(currentColor, 0.24); +} + + +.button.destructive-action { + background-color: #d8645a; + color: #fefefe; +} + + +.button.destructive-action:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.24); + color: rgba(238, 238, 238, 0.5); +} + + +.button.destructive-action:insensitive > .label { + color: inherit; +} + + +.button.destructive-action:checked { + background-color: #e3928b; +} + +.toolbar:not(.search-bar) .destructive-action.button, .titlebar .destructive-action.button:not(.suggested-action):not(.destructive-action), +.header-bar .destructive-action.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .destructive-action.button:not(.suggested-action):not(.destructive-action), .app-notification .destructive-action.button, +.button.destructive-action.flat { + background-color: transparent; + color: #d8645a; +} + +.toolbar:not(.search-bar) .destructive-action.button:insensitive, .titlebar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), +.header-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), .frame.action-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), .app-notification .destructive-action.button:insensitive, +.button.destructive-action.flat:insensitive { + box-shadow: none; + background-color: transparent; + color: alpha(currentColor, 0.5); +} + +.toolbar:not(.search-bar) .destructive-action.button:insensitive > .label, .titlebar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .header-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .frame.action-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action) > .label, .app-notification .destructive-action.button:insensitive > .label, +.button.destructive-action.flat:insensitive > .label { + color: inherit; +} + +.toolbar:not(.search-bar) .destructive-action.button:checked, .titlebar .destructive-action.button:checked:not(.suggested-action):not(.destructive-action), +.header-bar .destructive-action.button:checked:not(.suggested-action):not(.destructive-action), .frame.action-bar .destructive-action.button:checked:not(.suggested-action):not(.destructive-action), .app-notification .destructive-action.button:checked, +.button.destructive-action.flat:checked { + background-color: alpha(currentColor, 0.24); +} + + +.button.text-button, +GtkScaleButton.button.text-button, +GtkVolumeButton.button.text-button { + padding-left: 16px; + padding-right: 16px; +} + + +.button.text-button.image-button { + padding: 7px 10px 8px; + outline-radius: 4px; + border-radius: 4px; + background-size: 90px 90px, auto; +} + + +.button.text-button.image-button .label:first-child { + padding-left: 6px; +} + + +.button.text-button.image-button .label:last-child { + padding-right: 6px; +} + +.stack-switcher > +.button { + outline-offset: -4px; +} + +.stack-switcher > +.button > .label { + padding-left: 6px; + padding-right: 6px; +} + +.stack-switcher > +.button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; +} + +.stack-switcher > .button.text-button { + padding: 7px 10px 8px; +} + +.stack-switcher > +.button.image-button { + padding: 7px 4px; +} + +.stack-switcher > +.button.needs-attention:checked > .label, +.stack-switcher > +.button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; +} + +.primary-toolbar +.button { + icon-shadow: none; +} + +.toolbar:not(.search-bar) .linked > .button, .titlebar .linked > .button:not(.suggested-action):not(.destructive-action), +.header-bar .linked > .button:not(.suggested-action):not(.destructive-action), .frame.action-bar .linked > .button:not(.suggested-action):not(.destructive-action), .app-notification .linked > .button, +.toolbar:not(.search-bar) .linked.vertical > .button, +.titlebar .linked.vertical > .button:not(.suggested-action):not(.destructive-action), +.header-bar .linked.vertical > .button:not(.suggested-action):not(.destructive-action), +.frame.action-bar .linked.vertical > .button:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > .button, .linked > +.button.flat, +.linked.vertical > +.button.flat { + border-radius: 4px; +} + +.toolbar:not(.search-bar) .linked > .image-button.button, .titlebar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), .app-notification .linked > .image-button.button, +.toolbar:not(.search-bar) .linked.vertical > .image-button.button, +.titlebar .linked.vertical > .image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked.vertical > .image-button.button:not(.suggested-action):not(.destructive-action), +.frame.action-bar .linked.vertical > .image-button.button:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > .image-button.button, .linked > +.button.flat.image-button, +.linked.vertical > +.button.flat.image-button { + outline-radius: 9999px; + border-radius: 9999px; +} + +.toolbar:not(.search-bar) .linked > .text-button.image-button.button, .titlebar .linked > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), .frame.action-bar .linked > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), .app-notification .linked > .text-button.image-button.button, +.toolbar:not(.search-bar) .linked.vertical > .text-button.image-button.button, +.titlebar .linked.vertical > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.header-bar .linked.vertical > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.frame.action-bar .linked.vertical > .text-button.image-button.button:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > .text-button.image-button.button, .linked > .button.flat.text-button.image-button, +.linked.vertical > .button.flat.text-button.image-button { + outline-radius: 4px; + border-radius: 4px; +} + + +.button.image-button, .inline-toolbar .button, .spinbutton .button, .notebook tab .button, GtkScaleButton.button, +GtkVolumeButton.button, .header-bar .button.titlebutton, +.titlebar .button.titlebutton, .nautilus-circular-button { + padding: 10px; + outline-radius: 100px; + border-radius: 100px; + background-size: 45px 45px, auto; +} + +.stack-switcher > .button.needs-attention > .label, +.stack-switcher > .button.needs-attention > GtkImage, .sidebar-item.needs-attention > .label { + animation: needs_attention 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.stack-switcher > .button.needs-attention > .label:dir(rtl), +.stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .sidebar-item.needs-attention > .label:dir(rtl) { + background-position: left 3px; +} + +.linked > .entry, .linked > .button, .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) { + outline-radius: 4px; + border-radius: 0; +} + +.linked > .entry:first-child, .linked > .button:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +.linked > .entry:last-child, .linked > .button:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.linked > .entry:only-child, .linked > .button:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox { + border-radius: 4px; +} + +.linked.vertical > .entry, .linked.vertical > .button, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox { + outline-radius: 4px; + border-radius: 0; +} + +.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { + border-radius: 4px; +} + +/* menu buttons */ +GtkColorButton.button { + padding: 7px 8px 8px; +} + +GtkColorButton.button GtkColorSwatch:first-child:last-child { + border-radius: 4px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +/********* + * Links * + *********/ +*:link, .button:link, .button:visited { + color: #3d82ff; +} + +*:link:hover, .button:hover:link, .button:hover:visited, *:link:active, .button:active:link, .button:active:visited { + color: #3d82ff; +} + +*:link:visited, .button:visited { + color: #c366cf; +} + +*:link:visited:hover, .button:visited:hover, *:link:visited:active, .button:visited:active { + color: #c366cf; +} + +*:selected *:link:visited, *:selected .button:visited { + color: #add1ee; +} + +*:link:selected, .button:selected:link, .button:selected:visited, .titlebar.selection-mode .subtitle:link, +.header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { + color: #d5e7f6; +} + +.button:link > .label, .button:visited > .label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton .button { + padding: 4px; + border: solid 6px transparent; + color: rgba(238, 238, 238, 0.7); +} + +.spinbutton .button:hover, .spinbutton .button:active { + color: #eeeeee; +} + +.spinbutton .button:insensitive { + color: rgba(238, 238, 238, 0.3); +} + +.spinbutton .button:active { + background-color: alpha(currentColor, 0.24); +} + +.spinbutton.vertical .button { + padding-top: 10px; + padding-bottom: 10px; + border: none; +} + +.spinbutton.vertical .button:first-child { + border-radius: 4px 4px 0 0; +} + +.spinbutton.vertical .button:last-child { + border-radius: 0 0 4px 4px; +} + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; +} + +GtkComboBox > .the-button-in-the-combobox { + padding: 5px 6px 6px; +} + +GtkComboBox .menu { + padding: 2px 0; +} + +GtkComboBox .menu .menuitem { + padding: 5px 6px 6px; +} + +GtkComboBox .separator.vertical { + -GtkWidget-wide-separators: true; +} + +GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +GtkComboBox.combobox-entry .button { + padding: 10px; +} + +GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +/************ + * Toolbars * + ************/ +.toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #212121; +} + +.osd .toolbar, .toolbar.osd, .app-notification, +.app-notification.frame { + transition: border-image 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-style: solid; + border-width: 8px; + border-image: -gtk-scaled(url("assets/box-shadow-dark.png"), url("assets/box-shadow-dark@2.png")) 10/10px stretch; + border-radius: 4px; + background-color: #303030; +} + +.osd .toolbar:backdrop, .toolbar.osd:backdrop, .app-notification:backdrop { + border-image: -gtk-scaled(url("assets/box-shadow-backdrop-dark.png"), url("assets/box-shadow-backdrop-dark@2.png")) 10/10px stretch; +} + +.inline-toolbar { + padding: 6px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #2a2a2a; +} + +.search-bar, .location-bar { + padding: 6px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #212121; + background-clip: border-box; +} + +/*************** + * Header bars * + ***************/ +.titlebar, +.header-bar { + transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 6px; + border-radius: 4px 4px 0 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; + color: #e0e0e0; +} + +.titlebar:backdrop, +.header-bar:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar .title, +.header-bar .title { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + padding-left: 12px; + padding-right: 12px; + font-weight: bold; +} + +.titlebar .subtitle, +.header-bar .subtitle { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + padding-left: 12px; + padding-right: 12px; + font-size: smaller; +} + +.titlebar .header-bar-separator, +.titlebar > GtkBox > .separator.vertical, +.header-bar .header-bar-separator, +.header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + border-style: solid; + border-width: 0 1px; + border-color: rgba(0, 0, 0, 0.26); +} + +.titlebar .button:not(.suggested-action):not(.destructive-action), +.header-bar .button:not(.suggested-action):not(.destructive-action) { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(currentColor), to(transparent)) 0 0 0/0 0 0px; +} + +.titlebar .button:not(.suggested-action):not(.destructive-action):checked, +.header-bar .button:not(.suggested-action):not(.destructive-action):checked { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(currentColor), to(transparent)) 0 0 2/0 0 2px; +} + +.titlebar .button:not(.suggested-action):not(.destructive-action):checked, .titlebar .button:not(.suggested-action):not(.destructive-action):checked:insensitive, +.header-bar .button:not(.suggested-action):not(.destructive-action):checked, +.header-bar .button:not(.suggested-action):not(.destructive-action):checked:insensitive { + background-color: transparent; +} + +.titlebar .button.suggested-action:insensitive, .titlebar .button.destructive-action:insensitive, +.header-bar .button.suggested-action:insensitive, +.header-bar .button.destructive-action:insensitive { + color: alpha(currentColor, 0.5); +} + +.titlebar .button.suggested-action:insensitive > .label, .titlebar .button.destructive-action:insensitive > .label, +.header-bar .button.suggested-action:insensitive > .label, +.header-bar .button.destructive-action:insensitive > .label { + color: inherit; +} + +.titlebar.selection-mode, +.header-bar.selection-mode { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #338DD6; + color: #fefefe; +} + +.titlebar.selection-mode:backdrop, +.header-bar.selection-mode:backdrop { + color: rgba(254, 254, 254, 0.7); +} + +.titlebar.selection-mode .button, +.header-bar.selection-mode .button { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#fefefe), to(transparent)) 0 0 0/0 0 0px; + color: rgba(254, 254, 254, 0.7); +} + +.titlebar.selection-mode .button:hover, .titlebar.selection-mode .button:active, .titlebar.selection-mode .button:checked, +.header-bar.selection-mode .button:hover, +.header-bar.selection-mode .button:active, +.header-bar.selection-mode .button:checked { + color: #fefefe; +} + +.titlebar.selection-mode .button:checked, +.header-bar.selection-mode .button:checked { + border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#fefefe), to(transparent)) 0 0 2/0 0 2px; + color: #fefefe; +} + +.titlebar.selection-mode .button:checked:insensitive, +.header-bar.selection-mode .button:checked:insensitive { + color: rgba(254, 254, 254, 0.5); +} + +.titlebar.selection-mode .button:checked:insensitive > .label, +.header-bar.selection-mode .button:checked:insensitive > .label { + color: inherit; +} + +.titlebar.selection-mode .button.suggested-action, +.header-bar.selection-mode .button.suggested-action { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #424242; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, transparent); + color: #fafafa; +} + +.titlebar.selection-mode .button.suggested-action:hover, +.header-bar.selection-mode .button.suggested-action:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, transparent); + color: #eeeeee; +} + +.titlebar.selection-mode .button.suggested-action:active, +.header-bar.selection-mode .button.suggested-action:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1), background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + color: #eeeeee; +} + +.titlebar.selection-mode .button.suggested-action:insensitive, +.header-bar.selection-mode .button.suggested-action:insensitive { + box-shadow: none; + background-color: alpha(currentColor, 0.24); + color: rgba(238, 238, 238, 0.3); +} + +.titlebar.selection-mode .button.suggested-action:insensitive > .label, +.header-bar.selection-mode .button.suggested-action:insensitive > .label { + color: inherit; +} + +.titlebar.selection-mode .selection-menu, +.header-bar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.titlebar.selection-mode .selection-menu GtkArrow, +.header-bar.selection-mode .selection-menu GtkArrow { + -GtkArrow-arrow-scaling: 1; +} + +.titlebar.selection-mode .selection-menu .arrow, +.header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar, .maximized .titlebar, .tiled +.header-bar, .maximized +.header-bar { + border-radius: 0; + box-shadow: none; +} + +.titlebar.default-decoration, +.header-bar.default-decoration { + padding: 6px; + border-width: 0; +} + +.titlebar.default-decoration .button, +.header-bar.default-decoration .button { + padding: 4px; +} + +/************ + * Pathbars * + ************/ +.path-bar .button { + padding: 7px 6px 8px; +} + +.path-bar .button .label:last-child { + padding-left: 2px; +} + +.path-bar .button .label:first-child { + padding-right: 2px; +} + +.path-bar .button GtkImage { + padding-top: 1px; +} + +.path-bar .button GtkImage:only-child { + padding-right: 4px; + padding-left: 4px; +} + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: alpha(currentColor, 0.24); + border-top-color: rgba(0, 0, 0, 0.26); + border-radius: 0; +} + +GtkTreeView.view:hover, GtkTreeView.view:active, GtkTreeView.view:selected { + border-radius: 0; +} + +GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #91bee2; +} + +GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +GtkTreeView.view.expander:selected { + color: rgba(254, 254, 254, 0.7); +} + +GtkTreeView.view.expander:selected:hover, GtkTreeView.view.expander:selected:active { + color: #fefefe; +} + +GtkTreeView.view.progressbar { + border-width: 4px; +} + +GtkTreeView.view.progressbar:selected { + border-color: currentColor; +} + +GtkTreeView.view.trough { + border-width: 4px; + border-color: rgba(51, 141, 214, 0.3); +} + +GtkTreeView.view.trough:selected { + border-color: alpha(currentColor, 0.24); +} + +column-header .button { + padding: 3px 6px 4px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; + background-color: #303030; +} + +column-header .button:hover, column-header .button:active { + box-shadow: none; +} + +column-header .button:insensitive { + background-color: #303030; +} + +column-header:last-child .button, column-header:last-child.button { + border-right-style: none; +} + +column-header.button.dnd, column-header .button.dnd { + border-left-style: solid; + background-clip: border-box; + color: #338DD6; +} + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #212121; +} + +.menubar > .menuitem { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px 8px; + color: rgba(224, 224, 224, 0.7); +} + +.menubar > .menuitem:hover { + transition: none; + background-color: rgba(224, 224, 224, 0.12); + color: #e0e0e0; +} + +.menubar > .menuitem:insensitive { + color: rgba(224, 224, 224, 0.3); + box-shadow: none; +} + +.menu { + margin: 4px 0; + padding: 4px 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.csd .menu { + border: none; + border-radius: 4px; +} + +.menu .menuitem { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 3px 4px 4px; + font: initial; + text-shadow: none; +} + +.menu .menuitem:hover { + transition: none; + background-color: rgba(238, 238, 238, 0.12); +} + +.menu .menuitem:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +.menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +.menu.button { + border-style: none; + border-radius: 0; + box-shadow: none; +} + +.menu.button.top { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +.menu.button.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.menu.button:hover { + background-color: rgba(238, 238, 238, 0.12); +} + +.menu.button:insensitive { + background-color: transparent; + border-color: transparent; +} + +.menuitem .accelerator { + color: rgba(238, 238, 238, 0.7); +} + +.csd.popup { + border-radius: 4px; +} + +/*************** + * Popovers * + ***************/ +.popover { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + border: 1px solid; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 5px; + background-color: #303030; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.popover:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.popover > .list, +.popover > .view, +.popover > .toolbar, +.popover.osd > .toolbar { + border-style: none; + border-image: none; + background-color: transparent; +} + +.popover .button.flat { + padding: 5px 8px 6px; + background-color: transparent; + background-size: 160px 160px, auto; + color: #eeeeee; + font: initial; +} + +.popover .linked > .button { + border-radius: 4px; +} + +.popover .linked > .button:checked { + background-color: #338DD6; + color: #fefefe; +} + +.popover .linked > .button.image-button { + padding: 8px; + background-size: 90px 90px, auto; +} + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + padding: 0; + background-color: #303030; + -GtkNotebook-initial-gap: 8; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: 1; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; +} + +.notebook.frame { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.notebook.frame.top { + border-top-width: 0; +} + +.notebook.frame.bottom { + border-bottom-width: 0; +} + +.notebook.frame.right { + border-right-width: 0; +} + +.notebook.frame.left { + border-left-width: 0; +} + +.notebook.header { + background-color: #212121; +} + +.notebook.header.frame { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.notebook.header.frame.top { + border-bottom-width: 0; +} + +.notebook.header.frame.bottom { + border-top-width: 0; +} + +.notebook.header.frame.right { + border-left-width: 0; +} + +.notebook.header.frame.left { + border-right-width: 0; +} + +.notebook.header.top { + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26); +} + +.notebook.header.bottom { + box-shadow: inset 0 1px rgba(0, 0, 0, 0.26); +} + +.notebook.header.right { + box-shadow: inset 1px 0 rgba(0, 0, 0, 0.26); +} + +.notebook.header.left { + box-shadow: inset -1px 0 rgba(0, 0, 0, 0.26); +} + +.notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + outline-offset: 0; + /* works for testnotebookdnd, but there's a superfluous border + in gedit or web, commented out for now, needs gtk fixes + &.reorderable-page { + &.top { + padding-top: ($vt_vpadding - 1px); + border-top-width: 1px; + border-left-width: 1px; + border-right-width: 1px; + } + &.bottom { + padding-bottom: ($vt_vpadding - 1px); + border-bottom-width: 1px; + border-left-width: 1px; + border-right-width: 1px; + } + &.left { + padding-left: ($ht_hpadding - 1px); + border-left-width: 1px; + border-top-width: 1px; + border-bottom-width: 1px; + } + &.right { + padding-right: ($ht_hpadding - 1px); + border-right-width: 1px; + border-top-width: 1px; + border-bottom-width: 1px; + } + } + */ +} + +.notebook tab.top, .notebook tab.bottom { + padding: 8px 12px; +} + +.notebook tab.left, .notebook tab.right { + padding: 8px 12px; +} + +.notebook tab.reorderable-page { + -GtkNotebook-tab-overlap: 1; +} + +.notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; + border-left-width: 1px; + border-right-width: 1px; +} + +.notebook tab.reorderable-page.left, .notebook tab.reorderable-page.right { + border-bottom-width: 1px; + border-top-width: 1px; +} + +.notebook tab.top:hover, .notebook tab.top.prelight-page { + box-shadow: inset 0 -2px alpha(currentColor, 0.24); +} + +.notebook tab.top:active, .notebook tab.top.active-page { + box-shadow: inset 0 -2px #338DD6; +} + +.notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { + box-shadow: inset 0 2px alpha(currentColor, 0.24); +} + +.notebook tab.bottom:active, .notebook tab.bottom.active-page { + box-shadow: inset 0 2px #338DD6; +} + +.notebook tab.left:hover, .notebook tab.left.prelight-page { + box-shadow: inset -2px 0 alpha(currentColor, 0.24); +} + +.notebook tab.left:active, .notebook tab.left.active-page { + box-shadow: inset -2px 0 #338DD6; +} + +.notebook tab.right:hover, .notebook tab.right.prelight-page { + box-shadow: inset 2px 0 alpha(currentColor, 0.24); +} + +.notebook tab.right:active, .notebook tab.right.active-page { + box-shadow: inset 2px 0 #338DD6; +} + +.notebook tab.reorderable-page.top { + border-color: transparent; +} + +.notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page { + border-color: rgba(0, 0, 0, 0.26); + border-bottom-width: 0; + border-bottom-color: transparent; + background-color: #2a2a2a; +} + +.notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page { + border-color: rgba(0, 0, 0, 0.26); + border-bottom-width: 0; + border-bottom-color: transparent; + background-color: #303030; +} + +.notebook tab.reorderable-page.bottom { + border-color: transparent; +} + +.notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page { + border-color: rgba(0, 0, 0, 0.26); + border-top-width: 0; + border-top-color: transparent; + background-color: #2a2a2a; +} + +.notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page { + border-color: rgba(0, 0, 0, 0.26); + border-top-width: 0; + border-top-color: transparent; + background-color: #303030; +} + +.notebook tab.reorderable-page.left { + border-color: transparent; +} + +.notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page { + border-color: rgba(0, 0, 0, 0.26); + border-right-width: 0; + border-right-color: transparent; + background-color: #2a2a2a; +} + +.notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page { + border-color: rgba(0, 0, 0, 0.26); + border-right-width: 0; + border-right-color: transparent; + background-color: #303030; +} + +.notebook tab.reorderable-page.right { + border-color: transparent; +} + +.notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page { + border-color: rgba(0, 0, 0, 0.26); + border-left-width: 0; + border-left-color: transparent; + background-color: #2a2a2a; +} + +.notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page { + border-color: rgba(0, 0, 0, 0.26); + border-left-width: 0; + border-left-color: transparent; + background-color: #303030; +} + +.notebook tab .label { + padding: 0 2px; + font-weight: 500; + color: rgba(238, 238, 238, 0.7); +} + +.notebook tab .prelight-page .label, .notebook tab .label.prelight-page { + color: #eeeeee; +} + +.notebook tab .active-page .label, .notebook tab .label.active-page { + color: #eeeeee; +} + +.notebook tab .button { + padding: 0; + background-size: 30px 30px, auto; +} + +.notebook tab .button > GtkImage { + padding: 4px; +} + +.notebook.arrow:not(:hover):not(:active) { + color: rgba(238, 238, 238, 0.7); +} + +.notebook.arrow:insensitive { + color: rgba(238, 238, 238, 0.3); +} + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 17px; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 32px; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; +} + +.scrollbar .button { + border: none; +} + +.scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + -GtkRange-slider-width: 12px; +} + +.scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 3px; + border: 1px solid rgba(48, 48, 48, 0.3); +} + +.scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; +} + +.scrollbar.overlay-indicator.dragging .trough, .scrollbar.overlay-indicator.hovering .trough { + background-color: rgba(48, 48, 48, 0.9); +} + +.scrollbar .trough { + border: 1px none rgba(0, 0, 0, 0.26); + background-color: #303030; + background-clip: border-box; +} + +.scrollbar .slider { + background-color: rgba(238, 238, 238, 0.5); +} + +.scrollbar .slider:hover { + background-color: rgba(238, 238, 238, 0.7); +} + +.scrollbar .slider:active { + background-color: #eeeeee; +} + +.scrollbar .slider:insensitive { + opacity: 0.5; +} + +.scrollbar .slider { + border-radius: 100px; + margin: 4px; +} + +.scrollbar.fine-tune .slider { + margin: 6px; +} + +.scrollbar.vertical .slider { + margin-left: 5px; +} + +.scrollbar.vertical .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; +} + +.scrollbar.vertical.fine-tune .slider { + margin-left: 7px; +} + +.scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 6px; + margin-right: 7px; +} + +.scrollbar.vertical .trough { + border-left-style: solid; +} + +.scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; +} + +.scrollbar.horizontal .slider { + margin-top: 5px; +} + +.scrollbar.horizontal.fine-tune .slider { + margin-top: 7px; +} + +.scrollbar.horizontal .trough { + border-top-style: solid; +} + +.scrollbars-junction, +.scrollbars-junction.frame { + border-style: solid none none solid; + background-color: #303030; +} + +.scrollbars-junction:dir(rtl), +.scrollbars-junction.frame:dir(rtl) { + border-style: solid solid none none; +} + +/********** + * Switch * + **********/ +GtkSwitch { + -GtkSwitch-slider-width: 20px; + -GtkSwitch-slider-height: 20px; + outline-offset: -4px; + outline-radius: 100px; + font-size: 0; +} + +GtkSwitch.trough { + border: 8px solid transparent; + border-radius: 100px; + background-color: rgba(238, 238, 238, 0.3); +} + +GtkSwitch.trough:insensitive { + color: rgba(238, 238, 238, 0.12); +} + +GtkSwitch.trough:active { + background-color: rgba(0, 150, 136, 0.5); +} + +GtkSwitch.trough:active:insensitive { + background-color: rgba(0, 150, 136, 0.3); +} + +GtkSwitch.slider { + padding: 5px 4px; + border-radius: 100px; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: #eeeeee; +} + +GtkSwitch.slider:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +GtkSwitch.slider:active { + background-color: #009688; +} + +GtkSwitch.slider:insensitive { + color: rgba(238, 238, 238, 0.5); + background-color: #2a2a2a; +} + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); +} + +.check:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover-dark.png"), url("assets/checkbox-unchecked-hover-dark@2.png")); +} + +.check:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active-dark.png"), url("assets/checkbox-unchecked-active-dark@2.png")); +} + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-disabled-dark.png"), url("assets/checkbox-unchecked-disabled-dark@2.png")); +} + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); +} + +.check:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover-dark.png"), url("assets/checkbox-mixed-hover-dark@2.png")); +} + +.check:inconsistent:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active-dark.png"), url("assets/checkbox-mixed-active-dark@2.png")); +} + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-disabled-dark.png"), url("assets/checkbox-mixed-disabled-dark@2.png")); +} + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); +} + +.check:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover-dark.png"), url("assets/checkbox-checked-hover-dark@2.png")); +} + +.check:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-dark.png"), url("assets/checkbox-checked-active-dark@2.png")); +} + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-disabled-dark.png"), url("assets/checkbox-checked-disabled-dark@2.png")); +} + +.menu .menuitem.check { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-unchecked-dark.png"), url("assets/menu-checkbox-unchecked-dark@2.png")); +} + +.menu .menuitem.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-unchecked-disabled-dark.png"), url("assets/menu-checkbox-unchecked-disabled-dark@2.png")); +} + +.menu .menuitem.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-mixed-dark.png"), url("assets/menu-checkbox-mixed-dark@2.png")); +} + +.menu .menuitem.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-mixed-disabled-dark.png"), url("assets/menu-checkbox-mixed-disabled-dark@2.png")); +} + +.menu .menuitem.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-checked-dark.png"), url("assets/menu-checkbox-checked-dark@2.png")); +} + +.menu .menuitem.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-checkbox-checked-disabled-dark.png"), url("assets/menu-checkbox-checked-disabled-dark@2.png")); +} + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); +} + +.radio:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover-dark.png"), url("assets/radio-unchecked-hover-dark@2.png")); +} + +.radio:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active-dark.png"), url("assets/radio-unchecked-active-dark@2.png")); +} + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-disabled-dark.png"), url("assets/radio-unchecked-disabled-dark@2.png")); +} + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); +} + +.radio:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover-dark.png"), url("assets/radio-mixed-hover-dark@2.png")); +} + +.radio:inconsistent:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active-dark.png"), url("assets/radio-mixed-active-dark@2.png")); +} + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-disabled-dark.png"), url("assets/radio-mixed-disabled-dark@2.png")); +} + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); +} + +.radio:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover-dark.png"), url("assets/radio-checked-hover-dark@2.png")); +} + +.radio:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active-dark.png"), url("assets/radio-checked-active-dark@2.png")); +} + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-disabled-dark.png"), url("assets/radio-checked-disabled-dark@2.png")); +} + +.menu .menuitem.radio { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-unchecked-dark.png"), url("assets/menu-radio-unchecked-dark@2.png")); +} + +.menu .menuitem.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-unchecked-disabled-dark.png"), url("assets/menu-radio-unchecked-disabled-dark@2.png")); +} + +.menu .menuitem.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-mixed-dark.png"), url("assets/menu-radio-mixed-dark@2.png")); +} + +.menu .menuitem.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-mixed-disabled-dark.png"), url("assets/menu-radio-mixed-disabled-dark@2.png")); +} + +.menu .menuitem.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-checked-dark.png"), url("assets/menu-radio-checked-dark@2.png")); +} + +.menu .menuitem.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/menu-radio-checked-disabled-dark.png"), url("assets/menu-radio-checked-disabled-dark@2.png")); +} + +.view.content-view.check:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); + background-color: transparent; + icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:not(.list):hover, .view.content-view.check:not(.list):active { + icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.view.content-view.check:checked:not(.list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); + background-color: transparent; + icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:checked:not(.list):hover, .view.content-view.check:checked:not(.list):active { + icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 2px 4px; + outline-offset: 0; +} + +/************ + * GtkScale * + ************/ +.scale, +.scale.scale-has-marks-above.scale-has-marks-below, +.scale.vertical.scale-has-marks-above.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 20; + -GtkRange-trough-border: 2; + outline-offset: -8px; + outline-radius: 100px; +} + +.scale.fine-tune.slider, +.scale.scale-has-marks-above.scale-has-marks-below.fine-tune.slider, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.fine-tune.slider { + background-size: 60%; +} + +.scale.slider.slider, +.scale.scale-has-marks-above.scale-has-marks-below.slider.slider, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + background-size: 70%; + box-shadow: none; +} + +.scale.slider.slider:insensitive, +.scale.scale-has-marks-above.scale-has-marks-below.slider.slider:insensitive, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + background-size: 70%; + box-shadow: none; +} + +.scale.slider:hover, +.scale.scale-has-marks-above.scale-has-marks-below.slider:hover, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:hover { + background-size: 80%; +} + +.scale.slider:active, +.scale.scale-has-marks-above.scale-has-marks-below.slider:active, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:active { + background-size: 90%; +} + +.scale.trough, +.scale.scale-has-marks-above.scale-has-marks-below.trough, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough { + margin: 11px 12px; + background-color: alpha(currentColor, 0.24); +} + +.scale.trough.highlight, +.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight { + background-color: #009688; +} + +.scale.trough.highlight:insensitive, +.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive { + background-color: alpha(currentColor, 0.24); +} + +.scale.trough:insensitive, +.scale.scale-has-marks-above.scale-has-marks-below.trough:insensitive, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +.scale.trough.vertical, +.scale.scale-has-marks-above.scale-has-marks-below.trough.vertical, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.vertical { + margin: 12px 11px; +} + +.scale.separator, +.scale.scale-has-marks-above.scale-has-marks-below.separator, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.separator { + color: alpha(currentColor, 0.24); +} + +.scale.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.scale-has-marks-below.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-below.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-above { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.scale-has-marks-above.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-above.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.vertical.scale-has-marks-below.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-below.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-above { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 25; + -GtkRange-trough-border: 2; +} + +.scale.vertical.scale-has-marks-above.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.vertical.scale-has-marks-above.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; +} + +.scale.scale-has-marks-above .trough { + margin: 16px 12px 11px; +} + +.scale.scale-has-marks-below .trough { + margin: 11px 12px 16px; +} + +.scale.vertical.scale-has-marks-above .trough { + margin: 12px 11px 12px 16px; +} + +.scale.vertical.scale-has-marks-below .trough { + margin: 12px 16px 12px 11px; +} + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + -GtkProgressBar-min-horizontal-bar-height: 4; + -GtkProgressBar-min-vertical-bar-width: 4; + padding: 0; + font-size: smaller; + color: rgba(238, 238, 238, 0.5); +} + +GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 4; +} + +GtkProgressBar.trough { + border-radius: 0; + background-color: rgba(51, 141, 214, 0.3); +} + +GtkProgressBar.trough.osd { + border-style: none; + box-shadow: none; +} + +.progressbar { + border-radius: 0; + background-color: #338DD6; +} + +.progressbar.left { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.progressbar.right { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.progressbar.left.right { + box-shadow: none; +} + +.progressbar.vertical.bottom { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: none; +} + +.progressbar.vertical.top { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.progressbar.osd { + background-image: none; + background-color: #338DD6; + border-style: none; + border-radius: 0; +} + +/************* + * Level Bar * + *************/ +.level-bar { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + color: rgba(238, 238, 238, 0.5); + -GtkLevelBar-min-block-width: 36; + -GtkLevelBar-min-block-height: 4; +} + +.level-bar.vertical { + -GtkLevelBar-min-block-width: 4; + -GtkLevelBar-min-block-height: 36; +} + +.level-bar.trough { + padding: 2px; + border-radius: 4px; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: #eeeeee; +} + +.level-bar.trough:insensitive { + color: rgba(238, 238, 238, 0.5); + background-color: #2a2a2a; +} + +.level-bar.trough.indicator-discrete.horizontal { + padding: 2px 1px; +} + +.level-bar.trough.indicator-discrete.vertical { + padding: 1px 2px; +} + +.level-bar.fill-block { + background-color: #338DD6; + border-radius: 0; + box-shadow: none; +} + +.level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; +} + +.level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; +} + +.level-bar.fill-block.level-high { + background-color: #0095a2; +} + +.level-bar.fill-block.level-low { + background-color: #bc742d; +} + +.level-bar.fill-block.empty-fill-block { + background-color: alpha(currentColor, 0.24); +} + +/********** + * Frames * + **********/ +.frame { + border: 1px solid rgba(0, 0, 0, 0.26); + padding: 0; +} + +.frame.flat { + border-style: none; +} + +.frame.action-bar { + padding: 6px; + border-width: 1px 0 0; +} + +GtkScrolledWindow GtkViewport.frame { + border-style: none; +} + +.separator { + color: rgba(0, 0, 0, 0.26); +} + +GtkFileChooserButton .separator.vertical, +GtkFontButton .separator.vertical { + -GtkWidget-wide-separators: true; +} + +/********* + * Lists * + *********/ +.list { + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +.list-row, +.grid-child { + padding: 2px; +} + +.list-row.activatable, .view, column-header .button { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0; + box-shadow: inset 0 0 0 10000px transparent; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(transparent), to(transparent)), linear-gradient(to bottom, transparent); + background-repeat: no-repeat; + background-position: center, center; + background-size: 240px 240px, auto; +} + +.list-row.activatable:hover, .view:hover, column-header .button:hover { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0; + box-shadow: inset 0 0 0 10000px alpha(currentColor, 0.06); +} + +.list-row.activatable:active, .view:active, column-header .button:active, GtkPlacesSidebar.sidebar .has-open-popup { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-image 0; + animation: list_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 10000px alpha(currentColor, 0.12); +} + +.list-row:selected .button:insensitive { + color: rgba(254, 254, 254, 0.3); +} + +.list-row:selected .button.flat { + color: rgba(254, 254, 254, 0.7); +} + +.list-row:selected .button.flat:hover, .list-row:selected .button.flat:active { + color: #fefefe; +} + +.list-row:selected .button.flat:insensitive { + color: rgba(254, 254, 254, 0.3); +} + +/********************* + * App Notifications * + *********************/ +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); +} + +.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.expander:not(:hover):not(:active) { + color: alpha(currentColor, 0.7); +} + +.expander:selected { + color: #fefefe; +} + +/************ + * Calendar * + ***********/ +GtkCalendar { + padding: 1px; + border: 1px solid rgba(0, 0, 0, 0.26); + color: #eeeeee; +} + +GtkCalendar:insensitive { + color: rgba(238, 238, 238, 0.5); +} + +GtkCalendar:selected { + border-radius: 5px; +} + +GtkCalendar.header { + border-style: none none solid; + border-radius: 0; +} + +GtkCalendar:inconsistent { + color: rgba(238, 238, 238, 0.3); +} + +GtkCalendar.highlight { + font-size: smaller; + color: rgba(238, 238, 238, 0.7); +} + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; +} + +.message-dialog.background { + background-color: #303030; +} + +.message-dialog .titlebar { + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +.message-dialog.csd.background { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +.message-dialog.csd .dialog-action-area .button { + padding: 9px 16px 10px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; + background-size: 240px 240px, auto; +} + +.message-dialog.csd .dialog-action-area .button:first-child { + border-radius: 0 0 0 4px; +} + +.message-dialog.csd .dialog-action-area .button:last-child { + border-radius: 0 0 4px 0; +} + +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #2a2a2a; +} + +GtkSidebarRow.list-row { + padding: 0px; +} + +GtkSidebarRow .sidebar-revealer { + padding: 4px 14px 4px 12px; +} + +GtkSidebarRow .sidebar-icon { + opacity: 0.7; +} + +GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; +} + +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; +} + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #338DD6; +} + +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + color: #009688; +} + +.sidebar-button.button.image-button { + padding: 4px; +} + +.sidebar-item { + padding: 10px 4px; +} + +.sidebar-item > .label { + padding-left: 6px; + padding-right: 6px; +} + +/**************** + * File chooser * + ****************/ +GtkPlacesView .server-list-button > GtkImage { + -gtk-icon-transform: rotate(0turn); +} + +GtkPlacesView .server-list-button:checked > GtkImage { + -gtk-icon-transform: rotate(-0.5turn); +} + +/********* + * Paned * + *********/ +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; +} + +GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; +} + +GtkPaned .pane-separator { + background-color: rgba(0, 0, 0, 0.26); +} + +GtkPaned.wide { + -GtkPaned-handle-size: 6; + margin: 0; +} + +GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: rgba(0, 0, 0, 0.26); + border-width: 1px; +} + +GtkPaned.wide.vertical .pane-separator { + border-style: solid none; +} + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; +} + +.info { + background-color: #8b71ff; +} + +.question { + background-color: #8b71ff; +} + +.warning { + background-color: #bc742d; +} + +.error { + background-color: #d8645a; +} + +.info, +.question, +.warning, +.error { + color: #fefefe; +} + +.info .button:insensitive, +.question .button:insensitive, +.warning .button:insensitive, +.error .button:insensitive { + color: rgba(254, 254, 254, 0.3); +} + +/************ + * Tooltips * + ************/ +.tooltip { + color: #e0e0e0; + padding: 4px; + /* not working */ + border-radius: 4px; + box-shadow: none; +} + +.tooltip.background { + background-color: rgba(33, 33, 33, 0.9); +} + +.tooltip.window-frame.csd { + background-color: transparent; +} + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; +} + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +GtkColorSwatch:insensitive { + opacity: 0.5; + box-shadow: none; +} + +GtkColorSwatch.top { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +GtkColorSwatch.bottom { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +GtkColorSwatch.left, GtkColorSwatch:first-child:not(.overlay):not(.top) { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +GtkColorSwatch.right, GtkColorSwatch:last-child:not(.overlay):not(.bottom) { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +GtkColorSwatch:only-child:not(.overlay) { + border-radius: 4px; +} + +GtkColorSwatch.top > .overlay { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +GtkColorSwatch.bottom > .overlay { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +GtkColorSwatch:first-child:not(.top) > .overlay { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +GtkColorSwatch:last-child:not(.bottom) > .overlay { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +GtkColorSwatch:only-child > .overlay { + border-radius: 4px; +} + +GtkColorSwatch:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +GtkColorEditor GtkColorSwatch { + border-radius: 4px; +} + +GtkColorEditor GtkColorSwatch:hover { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +GtkColorSwatch.color-dark { + color: #212121; +} + +GtkColorSwatch.color-light { + color: #eeeeee; +} + +GtkColorSwatch#add-color-button { + background-image: linear-gradient(to right, #d8645a 25%, #bc742d 25%, #bc742d 50%, #8b71ff 50%, #8b71ff 75%, #8b71ff 75%); + color: #212121; +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #212121; +} + +.scale-popup .button { + padding: 10px; +} + +/********************** + * Window Decorations * + *********************/ +.window-frame { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 4px 4px 0 0; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); + /* this is used for the resize cursor area */ + margin: 8px; +} + +.window-frame:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.tiled { + border-radius: 0; +} + +.window-frame.popup { + box-shadow: none; +} + +.window-frame.ssd { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.window-frame.csd.popup { + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.csd.tooltip { + border-radius: 4px; + box-shadow: none; +} + +.window-frame.csd.message-dialog { + border-radius: 4px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +.window-frame.csd.message-dialog:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.window-frame.solid-csd { + border-radius: 0; + margin: 0; + background-color: #212121; + box-shadow: none; +} + +.header-bar .button.titlebutton:active, +.titlebar .button.titlebutton:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.12)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.12)); +} + +.view:selected, GtkCalendar:selected, .label:selected, .grid-child:selected, .entry:selected, .menuitem.button.flat:selected, .list-row:selected, .sidebar:selected { + background-color: #338DD6; + color: #fefefe; +} + +.view:insensitive:selected, GtkCalendar:insensitive:selected, .label:insensitive:selected, .grid-child:insensitive:selected, .entry:insensitive:selected, .menuitem.button.flat:insensitive:selected, .list-row:insensitive:selected, .sidebar:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label { + color: rgba(254, 254, 254, 0.5); +} + +.monospace { + font: Monospace; +} + +/********************** + * Touch Copy & Paste * + *********************/ +.entry.cursor-handle, +.cursor-handle { + background-color: #009688; + background-image: none; + box-shadow: none; + border-style: none; +} + +.entry.cursor-handle.insertion-cursor:dir(ltr), .entry.cursor-handle.insertion-cursor:dir(rtl), +.cursor-handle.insertion-cursor:dir(ltr), +.cursor-handle.insertion-cursor:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +.entry.cursor-handle.insertion-cursor:dir(ltr), .entry.cursor-handle.insertion-cursor:dir(rtl), +.cursor-handle.insertion-cursor:dir(ltr), +.cursor-handle.insertion-cursor:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +/* Decouple the font of context menus from their entry/textview */ +.context-menu { + font: initial; +} + +.touch-selection { + font: initial; + color: #eeeeee; + background-color: #303030; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.touch-selection:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; +} + +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; +} + +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +.floating-bar { + padding: 3px 0 4px; + border-width: 1px; + border-style: solid solid none; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 5px 5px 0 0; + background-color: rgba(48, 48, 48, 0.9); + background-clip: border-box; +} + +.floating-bar.left { + border-left-style: none; + border-top-left-radius: 0; +} + +.floating-bar.right { + border-right-style: none; + border-top-right-radius: 0; +} + +.floating-bar .button { + padding: 4px; +} + +/************ + * Nautilus * + ************/ +EelEditableLabel.entry { + transition: none; +} + +.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .titlebar .nautilus-canvas-item.subtitle, +.header-bar .nautilus-canvas-item.subtitle, +.nautilus-list-dim-label { + color: rgba(238, 238, 238, 0.7); +} + +.nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .titlebar .nautilus-canvas-item.subtitle:selected, +.header-bar .nautilus-canvas-item.subtitle:selected, +.nautilus-list-dim-label:selected { + color: rgba(254, 254, 254, 0.7); +} + +.nautilus-desktop.nautilus-canvas-item { + color: #fefefe; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.nautilus-desktop.nautilus-canvas-item:selected { + text-shadow: none; +} + +/* Toolbar */ +@keyframes needs_attention_keyframes { + 0% { + background-color: transparent; + } + 50% { + background-color: alpha(currentColor, 0.24); + } + 100% { + background-color: transparent; + } +} + +.nautilus-operations-button-needs-attention { + color: #009688; + animation: needs_attention_keyframes 2s cubic-bezier(0.4, 0, 0.2, 1); +} + +.nautilus-operations-button-needs-attention-multiple { + color: #009688; + animation: needs_attention_keyframes 2s cubic-bezier(0.4, 0, 0.2, 1); + animation-iteration-count: 2; +} + +.disk-space-display.unknown { + background-color: #bc742d; +} + +.disk-space-display.used { + background-color: #338DD6; +} + +.disk-space-display.free { + background-color: alpha(currentColor, 0.24); + color: rgba(238, 238, 238, 0.5); +} + +/* View */ +/******** + * Nemo * + *******/ +NemoWindow .nemo-inactive-pane .view, NemoWindow .nemo-inactive-pane iconview { + background-color: #2a2a2a; + color: #eeeeee; +} + +NemoWindow .sidebar .cell { + background-color: #212121; + color: #eeeeee; +} + +NemoWindow .sidebar .cell:selected { + color: #fefefe; + background-color: #338DD6; +} + +.nemo-desktop.nemo-canvas-item { + color: #fefefe; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.nemo-desktop.nemo-canvas-item:selected { + text-shadow: none; +} + +/************** + * Tweak Tool * + **************/ +.tweak-categories { + background-color: #2a2a2a; + background-image: linear-gradient(to bottom, #2a2a2a); +} + +.tweak-categories .separator { + -GtkWidget-wide-separators: true; + color: transparent; +} + +/************ + * Software * + ************/ +.button.install-progress:insensitive { + background-color: alpha(currentColor, 0.24); +} + +/*********** + * Builder * + ***********/ +GbTerminalView { + background-color: #303030; +} + +/*********** + * Firefox * + ***********/ +.menubar { + color: rgba(224, 224, 224, 0.7); +} + +.menubar:hover { + color: #e0e0e0; +} + +/*********** + * Synapse * + ***********/ +SynapseGuiMatchListView GtkWidget:selected { + background-color: #338DD6; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #338DD6; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration.top { + padding: 0 2px; + border-style: none; + border-radius: 4px 4px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; + color: #e0e0e0; +} + +UnityDecoration.top:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +UnityDecoration.menuitem, +UnityDecoration .menuitem { + color: rgba(224, 224, 224, 0.7); +} + +UnityDecoration.menubar.menuitem:hover, +UnityDecoration.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #e0e0e0; +} + +.background:not(.csd) :not(.titlebar) .header-bar { + border-radius: 0; + box-shadow: none; +} + +.background:not(.csd) :not(.titlebar) .header-bar.inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #010101; + background-image: linear-gradient(to bottom, #010101); + color: #e0e0e0; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(224, 224, 224, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #e0e0e0; +} + +@keyframes playbackmenuitem_spinner { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: playbackmenuitem_spinner 1s infinite linear; + color: #338DD6; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #eeeeee; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #eeeeee; +/* +widget base background color */ +@define-color theme_bg_color #212121; +/* +text widgets and the like base background color */ +@define-color theme_base_color #303030; +/* +base background color of selections */ +@define-color theme_selected_bg_color #338DD6; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #fefefe; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #212121; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(238, 238, 238, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2a2a2a; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #eeeeee; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #eeeeee; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #212121; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #303030; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #338DD6; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #fefefe; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(238, 238, 238, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(0, 0, 0, 0.26); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(0, 0, 0, 0.26); +/* +these are pretty self explicative */ +@define-color warning_color #bc742d; +@define-color error_color #d8645a; +@define-color success_color #0095a2; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #e0e0e0; +@define-color wm_unfocused_title rgba(224, 224, 224, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.1); +@define-color wm_bg #212121; +/* +FIXME this is really an API */ +@define-color content_view_bg #303030; +@define-color placeholder_text_color #b5b5b5; diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-3.20/assets b/dotfiles/.themes/oomox-materia-dark/gtk-3.20/assets new file mode 120000 index 0000000..ac77667 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-3.20/assets @@ -0,0 +1 @@ +../gtk-assets
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-3.20/gtk.css b/dotfiles/.themes/oomox-materia-dark/gtk-3.20/gtk.css new file mode 100644 index 0000000..1d7676f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-3.20/gtk.css @@ -0,0 +1,5963 @@ +@keyframes ripple_effect { + to { + background-size: 1000% 1000%; + } +} + +@keyframes scale_ripple_effect { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes header_ripple_effect { + from { + background-image: radial-gradient(circle farthest-corner at center, #338DD6 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle farthest-corner at center, #338DD6 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #d8645a; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 4px; + -gtk-secondary-caret-color: #338DD6; +} + +notebook:focus tab, +*:focus { + outline-color: alpha(currentColor, 0.24); +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #212121; + color: #eeeeee; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #212121; + color: #eeeeee; +} + +.gtkstyle-fallback:hover { + background-color: #141414; + color: #eeeeee; +} + +.gtkstyle-fallback:active { + background-color: #080808; + color: #eeeeee; +} + +.gtkstyle-fallback:disabled { + background-color: #212121; + color: rgba(238, 238, 238, 0.5); +} + +.gtkstyle-fallback:selected { + background-color: #338DD6; + color: #fefefe; +} + +.view { + background-color: #303030; + color: #eeeeee; +} + +.view:disabled { + color: rgba(238, 238, 238, 0.5); +} + +.view:hover, .view:active, .view:selected { + border-radius: 4px; +} + +textview text { + background-color: #303030; +} + +textview border { + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband { + border: 1px solid #53adf6; + background-color: rgba(83, 173, 246, 0.3); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 4px; +} + +.content-view .tile:selected { + background-color: transparent; + color: inherit; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: #eeeeee; +} + +label selection { + background-color: #338DD6; + color: #fefefe; +} + +label:disabled { + color: rgba(238, 238, 238, 0.5); +} + +tab label:disabled, +button label:disabled { + color: inherit; +} + +.dim-label, label.separator, .titlebar:not(headerbar) .subtitle, +headerbar .subtitle, .budgie-notification .notification-body, .budgie-switcher .notification-body { + opacity: 0.6; +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 32px; + padding: 0 12px; + color: rgba(238, 238, 238, 0.5); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: #eeeeee; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +spinner { + background: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); +} + +spinner:checked { + opacity: 1; + animation: spin 1s linear infinite; +} + +spinner:checked:disabled { + opacity: 0.5; +} + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 4px; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: #eeeeee; +} + +spinbutton:focus:not(.vertical), +entry:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search), +notebook > stack:not(:only-child) spinbutton:not(.vertical), messagedialog entry, colorchooser .popover.osd spinbutton:not(.vertical), layoutpane entry.search, editortweak entry.search, .raven .raven-background spinbutton:not(.vertical), #login_window entry, +entry.flat { + border-radius: 0; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); + background-color: transparent; + color: #eeeeee; +} + +spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search), +notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), messagedialog entry:focus, colorchooser .popover.osd spinbutton:focus:not(.vertical), layoutpane entry.search:focus, editortweak entry.search:focus, .raven .raven-background spinbutton:focus:not(.vertical), #login_window entry:focus, +entry.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); +} + +spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), messagedialog entry:disabled, colorchooser .popover.osd spinbutton:disabled:not(.vertical), layoutpane entry.search:disabled, editortweak entry.search:disabled, .raven .raven-background spinbutton:disabled:not(.vertical), #login_window entry:disabled, +entry.flat:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton:not(.vertical) image, +entry image { + color: rgba(238, 238, 238, 0.7); +} + +spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #eeeeee; +} + +spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(238, 238, 238, 0.5); +} + +spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} + +spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} + +spinbutton:not(.vertical) undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +spinbutton:not(.vertical) undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +spinbutton.error:not(.vertical), +entry.error { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #d8645a; + color: #fefefe; +} + +spinbutton.error:focus:not(.vertical), +entry.error:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search), +notebook > stack:not(:only-child) spinbutton.error:not(.vertical), messagedialog entry.error, colorchooser .popover.osd spinbutton.error:not(.vertical), layoutpane entry.error.search, editortweak entry.error.search, .raven .raven-background spinbutton.error:not(.vertical), #login_window entry.error, +entry.error.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8645a 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #d8645a; + background-color: transparent; + color: #eeeeee; +} + +spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), messagedialog entry.error:focus, colorchooser .popover.osd spinbutton.error:focus:not(.vertical), layoutpane entry.error.search:focus, editortweak entry.error.search:focus, .raven .raven-background spinbutton.error:focus:not(.vertical), #login_window entry.error:focus, +entry.error.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8645a 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #d8645a; +} + +spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), messagedialog entry.error:disabled, colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, .raven .raven-background spinbutton.error:disabled:not(.vertical), #login_window entry.error:disabled, +entry.error.flat:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.error:not(.vertical) image, +entry.error image { + color: rgba(254, 254, 254, 0.7); +} + +spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active, +entry.error image:hover, +entry.error image:active { + color: #fefefe; +} + +spinbutton.error:not(.vertical) image:disabled, +entry.error image:disabled { + color: rgba(254, 254, 254, 0.5); +} + +spinbutton.warning:not(.vertical), +entry.warning { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #bc742d; + color: #fefefe; +} + +spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), messagedialog entry.warning, colorchooser .popover.osd spinbutton.warning:not(.vertical), layoutpane entry.warning.search, editortweak entry.warning.search, .raven .raven-background spinbutton.warning:not(.vertical), #login_window entry.warning, +entry.warning.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #bc742d; + background-color: transparent; + color: #eeeeee; +} + +spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), messagedialog entry.warning:focus, colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, .raven .raven-background spinbutton.warning:focus:not(.vertical), #login_window entry.warning:focus, +entry.warning.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #bc742d; +} + +spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), messagedialog entry.warning:disabled, colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, .raven .raven-background spinbutton.warning:disabled:not(.vertical), #login_window entry.warning:disabled, +entry.warning.flat:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.warning:not(.vertical) image, +entry.warning image { + color: rgba(254, 254, 254, 0.7); +} + +spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active, +entry.warning image:hover, +entry.warning image:active { + color: #fefefe; +} + +spinbutton.warning:not(.vertical) image:disabled, +entry.warning image:disabled { + color: rgba(254, 254, 254, 0.5); +} + +spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -6px; + border-bottom: 2px solid #338DD6; + background-color: transparent; +} + +.linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search), +notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), messagedialog .linked:not(.vertical) > entry, colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, .raven .raven-background .linked:not(.vertical) > spinbutton:not(.vertical), #login_window .linked:not(.vertical) > entry, +.linked.vertical > spinbutton.flat:not(.vertical), +notebook > stack:not(:only-child) .linked.vertical > entry:not(.search), +notebook > stack:not(:only-child) .linked.vertical > spinbutton:not(.vertical), +messagedialog .linked.vertical > entry, +colorchooser .popover.osd .linked.vertical > spinbutton:not(.vertical), +layoutpane .linked.vertical > entry.search, +editortweak .linked.vertical > entry.search, +.raven .raven-background .linked.vertical > spinbutton:not(.vertical), +#login_window .linked.vertical > entry, .linked:not(.vertical) > +entry.flat, +.linked.vertical > +entry.flat { + border-radius: 0; +} + +notebook > stack:not(:only-child) treeview entry.flat:not(.search), +notebook > stack:not(:only-child) treeview spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) treeview entry:not(.search), +notebook > stack:not(:only-child) treeview spinbutton:not(.vertical), +treeview entry.flat, +treeview entry { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: #303030; +} + +notebook > stack:not(:only-child) treeview entry.flat:not(.search), +notebook > stack:not(:only-child) treeview spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) treeview entry.flat:focus:not(.search), +notebook > stack:not(:only-child) treeview spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) treeview entry:not(.search), +notebook > stack:not(:only-child) treeview spinbutton:not(.vertical), notebook > stack:not(:only-child) treeview entry:focus:not(.search), +notebook > stack:not(:only-child) treeview spinbutton:focus:not(.vertical), +treeview entry.flat, +treeview entry.flat:focus, +treeview entry, +treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; +} + +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + background-image: image(rgba(238, 238, 238, 0.12)); +} + +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) { + color: rgba(238, 238, 238, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#009688), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#009688), to(transparent)); + } +} + + +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 4px; + font-weight: 500; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 9999px transparent; + background-color: #424242; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #fafafa; +} + + +button:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px transparent; + color: #eeeeee; +} + + +button:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px alpha(currentColor, 0.12); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #eeeeee; +} + + +button:disabled { + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.3); +} + + +button:checked { + background-color: #338DD6; + color: #fefefe; +} + + +button:checked:disabled { + background-color: rgba(51, 141, 214, 0.3); + color: rgba(51, 141, 214, 0.5); +} + +modelbutton.flat, +.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button, +popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check, +radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider .linked > button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .raven .raven-header:not(.top) button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) .path-bar button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button, .nemo-window .toolbar button, +button.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(238, 238, 238, 0.7); +} + +modelbutton.flat:hover, +.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover, +popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover, +radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider .linked > button:hover, #mate-menu button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, .raven .raven-header:not(.top) button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar) .path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action), +headerbar button:hover:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:hover, .nemo-window .toolbar button:hover, +button.flat:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); + color: #eeeeee; +} + +modelbutton.flat:active, +.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active, +popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active, +radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider .linked > button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .raven .raven-header:not(.top) button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar) .path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action), +headerbar button:active:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:active, .nemo-window .toolbar button:active, +button.flat:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #eeeeee; +} + +modelbutton.flat:disabled, +.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled, +popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled, +radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider .linked > button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .raven .raven-header:not(.top) button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar) .path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:disabled, .nemo-window .toolbar button:disabled, +button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(238, 238, 238, 0.3); +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action), +headerbar button:checked:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked, .nemo-window .toolbar button:checked, +button.flat:checked { + background-color: alpha(currentColor, 0.24); + color: #eeeeee; +} + +:not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) .path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked:disabled, .nemo-window .toolbar button:checked:disabled, +button.flat:checked:disabled { + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + + +button.text-button { + padding-left: 16px; + padding-right: 16px; +} + + +button.image-button { + min-width: 24px; + padding: 4px; +} + + +button.text-button.image-button { + border-radius: 4px; + -gtk-outline-radius: 4px; +} + + +button.text-button.image-button label:first-child { + margin-left: 12px; +} + + +button.text-button.image-button label:last-child { + margin-right: 12px; +} + + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button, .nemo-window .toolbar .linked > button, +toolbar .linked.vertical > button, +.titlebar:not(headerbar) .linked.vertical > button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button, +.nemo-window .toolbar .linked.vertical > button, .linked > +button.flat, +.linked.vertical > +button.flat { + border-radius: 4px; +} + +toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.text-button.image-button, .nemo-window .toolbar .linked > button.text-button.image-button, +toolbar .linked.vertical > button.text-button.image-button, +.titlebar:not(headerbar) .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button.text-button.image-button, +.nemo-window .toolbar .linked.vertical > button.text-button.image-button, .linked > +button.flat.text-button.image-button, +.linked.vertical > +button.flat.text-button.image-button { + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected +button:disabled { + background-color: rgba(254, 254, 254, 0.12); + color: rgba(254, 254, 254, 0.3); +} + +row:selected button.sidebar-button, infobar.info button.flat, infobar.question button.flat, infobar.warning button.flat, infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .raven-mpris button.image-button, row:selected +button.flat { + color: rgba(254, 254, 254, 0.7); +} + +row:selected button.sidebar-button:hover, infobar.info button.flat:hover, infobar.question button.flat:hover, infobar.warning button.flat:hover, infobar.error button.flat:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, .raven-mpris button.image-button:hover, row:selected button.sidebar-button:active, infobar.info button.flat:active, infobar.question button.flat:active, infobar.warning button.flat:active, infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .raven-mpris button.image-button:active, row:selected +button.flat:hover, row:selected +button.flat:active { + color: #fefefe; +} + +row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.question button.flat:disabled, infobar.warning button.flat:disabled, infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .raven-mpris button.image-button:disabled, row:selected +button.flat:disabled { + color: rgba(254, 254, 254, 0.3); +} + +row:selected button.sidebar-button:checked, infobar.info button.flat:checked, infobar.question button.flat:checked, infobar.warning button.flat:checked, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .raven-mpris button.image-button:checked, row:selected +button.flat:checked { + background-color: rgba(254, 254, 254, 0.3); + color: #fefefe; +} + +row:selected button.sidebar-button:checked:disabled, infobar.info button.flat:checked:disabled, infobar.question button.flat:checked:disabled, infobar.warning button.flat:checked:disabled, infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .raven-mpris button.image-button:checked:disabled, row:selected +button.flat:checked:disabled { + background-color: rgba(254, 254, 254, 0.12); + color: rgba(254, 254, 254, 0.5); +} + + +button.osd { + padding: 8px 12px; +} + + +button.osd.image-button { + padding: 8px; +} + + +button.osd:disabled { + opacity: 0; +} + + +button.suggested-action { + background-color: #009688; + color: #fefefe; +} + + +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + + +button.suggested-action:checked { + background-color: #4cb5ab; +} + + +button.suggested-action.flat { + background-color: transparent; + color: #009688; +} + + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + + +button.suggested-action.flat:checked { + background-color: rgba(0, 150, 136, 0.3); +} + + +button.destructive-action { + background-color: #d8645a; + color: #fefefe; +} + + +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + + +button.destructive-action:checked { + background-color: #e3928b; +} + + +button.destructive-action.flat { + background-color: transparent; + color: #d8645a; +} + + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + + +button.destructive-action.flat:checked { + background-color: rgba(216, 100, 90, 0.3); +} + +.stack-switcher > +button { + outline-offset: -4px; +} + +.stack-switcher > +button > label { + padding-left: 6px; + padding-right: 6px; +} + +.stack-switcher > +button > image { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; +} + +.stack-switcher > +button.text-button { + padding-left: 10px; + padding-right: 10px; +} + +.stack-switcher > +button.image-button { + padding-left: 2px; + padding-right: 2px; +} + +.stack-switcher > +button.needs-attention:checked > label, +.stack-switcher > +button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar +button { + -gtk-icon-shadow: none; +} + + +button.image-button, toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.image-button, .nemo-window .toolbar .linked > button.image-button, toolbar .linked.vertical > button.image-button, +headerbar .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), .app-notification .linked.vertical > button.image-button, .nemo-window .toolbar .linked.vertical > button.image-button, .linked > button.flat.image-button, +.linked.vertical > button.flat.image-button, .inline-toolbar button:not(.text-button), check, +radio, button.titlebutton, .nautilus-window headerbar > revealer > button, .raven .raven-header:not(.top) button.image-button, .raven .expander-button, +button.close, +button.circular { + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +spinbutton:not(.vertical) button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked > button, .pluma-window paned.horizontal box.vertical box.horizontal button.flat { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +.stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { + animation: needs_attention 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.stack-switcher > button.needs-attention > label:dir(rtl), +.stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { + background-position: left 3px; +} + +.linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button, .linked:not(.vertical) > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 4px; +} + +.linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +.linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo { + border-radius: 4px; +} + +.linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button, .linked.vertical > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 4px; +} + +.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo { + border-radius: 4px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 4px; + color: inherit; +} + +modelbutton.flat arrow { + background: none; +} + +modelbutton.flat arrow:hover { + background: none; +} + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 4px; +} + +/********* + * Links * + *********/ +*:link, button:link, +button:visited, *:link:hover, button:hover:link, +button:hover:visited, *:link:active, button:active:link, +button:active:visited { + color: #3d82ff; +} + +*:link:visited, +button:visited, *:link:visited:hover, +button:visited:hover, *:link:visited:active, +button:visited:active { + color: #c366cf; +} + +infobar.info *:link, infobar.info button:link, +infobar.info button:visited, infobar.question *:link, infobar.question button:link, +infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, +infobar.warning button:visited, infobar.error *:link, infobar.error button:link, +infobar.error button:visited, *:link:selected, button:selected:link, +button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link, +headerbar.selection-mode .subtitle:link, +*:selected *:link, +*:selected button:link, +*:selected button:visited { + color: #fefefe; +} + +button:link > label, +button:visited > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled, +spinbutton:not(.vertical) entry { + min-width: 24px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 4px transparent; +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -2px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -2px; +} + +spinbutton.vertical:disabled { + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.vertical:drop(active) { + box-shadow: none; +} + +spinbutton.vertical entry { + min-height: 32px; + min-width: 40px; + padding: 0; +} + +spinbutton.vertical button { + min-height: 32px; + min-width: 40px; + padding: 0; +} + +spinbutton.vertical button.up { + border-radius: 4px 4px 0 0; +} + +spinbutton.vertical button.down { + border-radius: 0 0 4px 4px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration, +combobox button.combo:checked { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: 0px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: 0px; +} + +combobox #gtk-combobox-popup-menu { + padding: 2px 0; +} + +combobox #gtk-combobox-popup-menu menuitem { + min-height: 28px; + padding: 0 8px; +} + +combobox #gtk-combobox-popup-menu > arrow.top { + margin-top: -2px; +} + +combobox #gtk-combobox-popup-menu > arrow.bottom { + margin-top: 4px; + margin-bottom: -6px; +} + +combobox:drop(active) { + box-shadow: none; +} + +notebook > stack:not(:only-child) button.combo, .raven .raven-background button.combo, #login_window #user_combobox button { + border-radius: 0; + background-image: none; + font-weight: inherit; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); + background-color: transparent; + color: #eeeeee; +} + +notebook > stack:not(:only-child) button.combo:hover, .raven .raven-background button.combo:hover, #login_window #user_combobox button:hover { + box-shadow: inset 0 -2px rgba(238, 238, 238, 0.5); +} + +notebook > stack:not(:only-child) button.combo:checked, .raven .raven-background button.combo:checked, #login_window #user_combobox button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 100%, transparent 0%) 0 0 2/0 0 2px; +} + +notebook > stack:not(:only-child) button.combo:disabled, .raven .raven-background button.combo:disabled, #login_window #user_combobox button:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #212121; +} + +.osd toolbar { + background-color: transparent; +} + +toolbar.osd, .app-notification, frame.documents-dropdown { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); +} + +toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + border-radius: 0; +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 6px 2px; +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #2a2a2a; +} + +searchbar > revealer > box, +.location-bar { + padding: 4px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #212121; + background-clip: border-box; +} + +searchbar > revealer > box { + margin: -6px; + padding: 4px; +} + +/*************** + * Header bars * + ***************/ +.titlebar:not(headerbar), +headerbar { + transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1), color 250ms cubic-bezier(0, 0, 0.2, 1); + min-height: 40px; + padding: 0 4px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; + color: #e0e0e0; +} + +.titlebar:disabled:not(headerbar) :not(button) > label, +headerbar:disabled :not(button) > label { + color: rgba(224, 224, 224, 0.5); +} + +.titlebar:backdrop:not(headerbar), +headerbar:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:backdrop:disabled:not(headerbar) :not(button) > label, +headerbar:backdrop:disabled :not(button) > label { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) .title, +headerbar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar:not(headerbar) .subtitle, +headerbar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar:not(headerbar) .linked:not(.vertical) > entry:not(.flat), +headerbar .linked:not(.vertical) > entry:not(.flat) { + border-radius: 4px; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active, +headerbar button:not(.suggested-action):not(.destructive-action):hover, +headerbar button:not(.suggested-action):not(.destructive-action):active { + color: #e0e0e0; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: #e0e0e0; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(224, 224, 224, 0.5); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(224, 224, 224, 0.5); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:active, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled, +headerbar button.suggested-action:disabled, +headerbar button.destructive-action:disabled { + background-color: rgba(224, 224, 224, 0.12); + color: rgba(224, 224, 224, 0.5); +} + +.selection-mode.titlebar:not(headerbar), +headerbar.selection-mode { + transition: background-color 0.00001s 250ms, color 250ms cubic-bezier(0, 0, 0.2, 1); + animation: header_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #338DD6; + color: #fefefe; +} + +.selection-mode.titlebar:backdrop:not(headerbar), +headerbar.selection-mode:backdrop { + color: rgba(254, 254, 254, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: #fefefe; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(254, 254, 254, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: #fefefe; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(254, 254, 254, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(254, 254, 254, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(254, 254, 254, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.selection-mode.titlebar:not(headerbar) .selection-menu, +headerbar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu arrow, +headerbar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu .arrow, +headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar:not(headerbar), +.tiled-top .titlebar:not(headerbar), +.tiled-right .titlebar:not(headerbar), +.tiled-bottom .titlebar:not(headerbar), +.tiled-left .titlebar:not(headerbar), +.maximized .titlebar:not(headerbar), +.fullscreen .titlebar:not(headerbar), .tiled +headerbar, +.tiled-top +headerbar, +.tiled-right +headerbar, +.tiled-bottom +headerbar, +.tiled-left +headerbar, +.maximized +headerbar, +.fullscreen +headerbar { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.default-decoration.titlebar:not(headerbar), +headerbar.default-decoration { + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); +} + +.tiled .default-decoration.titlebar:not(headerbar), +.maximized .default-decoration.titlebar:not(headerbar), +.fullscreen .default-decoration.titlebar:not(headerbar), .tiled +headerbar.default-decoration, +.maximized +headerbar.default-decoration, +.fullscreen +headerbar.default-decoration { + box-shadow: none; +} + +.default-decoration.titlebar:not(headerbar) button.titlebutton, +headerbar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} + +.background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd) +headerbar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 4px; + margin-bottom: 4px; +} + +headerbar switch { + margin-top: 8px; + margin-bottom: 8px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +headerbar .entry-tag, headerbar .documents-entry-tag, headerbar .photos-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +.background .titlebar { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.background.tiled .titlebar, +.background.tiled-top .titlebar, +.background.tiled-right .titlebar, +.background.tiled-bottom .titlebar, +.background.tiled-left .titlebar, +.background.maximized .titlebar, +.background.solid-csd .titlebar { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window separator:first-child + headerbar, +window headerbar:first-child { + border-top-left-radius: 4px; +} + +window headerbar:last-child { + border-top-right-radius: 4px; +} + +window stack headerbar:first-child, window stack headerbar:last-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +window.tiled headerbar, window.tiled headerbar:first-child, window.tiled headerbar:last-child, window.tiled headerbar:only-child, +window.tiled-top headerbar, +window.tiled-top headerbar:first-child, +window.tiled-top headerbar:last-child, +window.tiled-top headerbar:only-child, +window.tiled-right headerbar, +window.tiled-right headerbar:first-child, +window.tiled-right headerbar:last-child, +window.tiled-right headerbar:only-child, +window.tiled-bottom headerbar, +window.tiled-bottom headerbar:first-child, +window.tiled-bottom headerbar:last-child, +window.tiled-bottom headerbar:only-child, +window.tiled-left headerbar, +window.tiled-left headerbar:first-child, +window.tiled-left headerbar:last-child, +window.tiled-left headerbar:only-child, +window.maximized headerbar, +window.maximized headerbar:first-child, +window.maximized headerbar:last-child, +window.maximized headerbar:only-child, +window.fullscreen headerbar, +window.fullscreen headerbar:first-child, +window.fullscreen headerbar:last-child, +window.fullscreen headerbar:only-child, +window.solid-csd headerbar, +window.solid-csd headerbar:first-child, +window.solid-csd headerbar:last-child, +window.solid-csd headerbar:only-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window.csd > .titlebar:not(headerbar) { + padding: 0; + background-color: transparent; + background-image: none; + border-style: none; + box-shadow: none; +} + +.titlebar:not(headerbar) > separator { + background-color: #212121; + background-image: image(rgba(0, 0, 0, 0.26)); +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar button { + padding-left: 4px; + padding-right: 4px; +} + +.caja-pathbar button label:not(:only-child):first-child, +.path-bar button label:not(:only-child):first-child { + margin-left: 4px; +} + +.caja-pathbar button label:not(:only-child):last-child, +.path-bar button label:not(:only-child):last-child { + margin-right: 4px; +} + +.caja-pathbar button.slider-button, +.path-bar button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) +.path-bar button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 4px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) +.path-bar button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 100%, transparent 0%) 0 0 2/0 0 2px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) +.path-bar button:checked, :not(headerbar) +.path-bar button:checked:disabled { + background-color: transparent; +} + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: rgba(238, 238, 238, 0.3); + border-top-color: rgba(0, 0, 0, 0.26); +} + +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; +} + +treeview.view:selected { + border-left-color: rgba(254, 254, 254, 0.3); +} + +treeview.view:hover, treeview.view:active, treeview.view:selected { + border-radius: 0; +} + +treeview.view.separator { + min-height: 5px; + color: rgba(0, 0, 0, 0.26); +} + +treeview.view:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: #009688; +} + +treeview.view:drop(active).after { + border-top-style: none; +} + +treeview.view:drop(active).before { + border-bottom-style: none; +} + +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(238, 238, 238, 0.7); +} + +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, treeview.view.expander:active { + color: #eeeeee; +} + +treeview.view.expander:disabled { + color: rgba(238, 238, 238, 0.3); +} + +treeview.view.expander:selected { + color: rgba(254, 254, 254, 0.7); +} + +treeview.view.expander:selected:hover, treeview.view.expander:selected:active { + color: #fefefe; +} + +treeview.view.expander:selected:disabled { + color: rgba(254, 254, 254, 0.3); +} + +treeview.view.progressbar { + border-bottom: 4px solid #338DD6; + box-shadow: none; + background-color: transparent; +} + +treeview.view.progressbar:selected { + border-bottom-color: #fefefe; +} + +treeview.view.trough { + border-bottom: 4px solid rgba(51, 141, 214, 0.3); + box-shadow: none; + background-color: transparent; +} + +treeview.view.trough:selected { + border-bottom-color: rgba(254, 254, 254, 0.3); +} + +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button, treeview.view header button:hover, treeview.view header button:active { + box-shadow: none; +} + +treeview.view header button, treeview.view header button:disabled { + background-color: #303030; +} + +treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; + background-color: #303030; + background-clip: border-box; + color: #338DD6; +} + +treeview.view acceleditor > label { + background-color: #338DD6; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #212121; +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(224, 224, 224, 0.7); +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: rgba(224, 224, 224, 0.12); + color: #e0e0e0; +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(224, 224, 224, 0.3); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +.csd.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 4px 0; + padding: 4px 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.csd menu, .csd +.menu, .csd +.context-menu { + border: none; + border-radius: 4px; +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; + font: initial; + text-shadow: none; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: rgba(238, 238, 238, 0.12); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(238, 238, 238, 0.5); +} + +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; +} + +menu menuitem arrow:dir(ltr), +.menu menuitem arrow:dir(ltr), +.context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 8px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 8px; +} + +menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), +.menu menuitem label:dir(rtl), +.menu menuitem label:dir(ltr), +.context-menu menuitem label:dir(rtl), +.context-menu menuitem label:dir(ltr) { + color: inherit; +} + +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #303030; + color: rgba(238, 238, 238, 0.7); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 4px 4px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0 0 4px 4px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(rgba(238, 238, 238, 0.12)); + color: #eeeeee; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 4px 0; +} + +menuitem accelerator { + color: rgba(238, 238, 238, 0.7); +} + +.popup:not(.csd) menu menuitem { + color: #eeeeee; +} + +.popup:not(.csd) menu menuitem:hover { + background-color: #474747; +} + +.popup:not(.csd) menu menuitem:disabled { + color: #8f8f8f; +} + +.popup:not(.csd) menu accelerator { + color: #b5b5b5; +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #303030; +} + +popover.background:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +popover.background, .csd popover.background { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 5px; +} + +popover.background > stack { + margin: -4px; +} + +popover.background > toolbar { + margin: -2px; +} + +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 4px; +} + +popover.background separator { + margin: 4px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +notebook > header { + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #212121; + background-clip: border-box; +} + +notebook > header.top { + border-bottom-style: solid; +} + +notebook > header.top > tabs { + margin-bottom: -1px; +} + +notebook > header.top > tabs > tab:hover { + box-shadow: inset 0 -2px rgba(238, 238, 238, 0.3); +} + +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #338DD6; +} + +notebook > header.bottom { + border-top-style: solid; +} + +notebook > header.bottom > tabs { + margin-top: -1px; +} + +notebook > header.bottom > tabs > tab:hover { + box-shadow: inset 0 2px rgba(238, 238, 238, 0.3); +} + +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #338DD6; +} + +notebook > header.left { + border-right-style: solid; +} + +notebook > header.left > tabs { + margin-right: -1px; +} + +notebook > header.left > tabs > tab:hover { + box-shadow: inset -2px 0 rgba(238, 238, 238, 0.3); +} + +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #338DD6; +} + +notebook > header.right { + border-left-style: solid; +} + +notebook > header.right > tabs { + margin-left: -1px; +} + +notebook > header.right > tabs > tab:hover { + box-shadow: inset 2px 0 rgba(238, 238, 238, 0.3); +} + +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #338DD6; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: -8px; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: -8px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: -8px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: -8px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; +} + +notebook > header tab { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 24px; + min-width: 24px; + padding: 4px 12px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #338DD6 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +notebook > header tab:hover { + color: #eeeeee; +} + +notebook > header tab:hover.reorderable-page { + border-color: rgba(0, 0, 0, 0.26); + background-color: #2a2a2a; +} + +notebook > header tab:disabled { + color: rgba(238, 238, 238, 0.3); +} + +notebook > header tab:checked { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 250ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #eeeeee; +} + +notebook > header tab:checked:disabled { + color: rgba(238, 238, 238, 0.5); +} + +notebook > header tab:checked.reorderable-page { + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +notebook > header tab button.flat:last-child { + margin-left: 4px; + margin-right: -8px; +} + +notebook > header tab button.flat:first-child { + margin-left: -8px; + margin-right: 4px; +} + +notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 8px; + padding-right: 8px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + margin: 0 -1px; + border-style: none solid; +} + +notebook > header.left tabs, notebook > header.right tabs { + padding-top: 8px; + padding-bottom: 8px; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + margin: -1px 0; + border-style: solid none; +} + +notebook > stack:not(:only-child) { + background-color: #303030; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: #303030; + background-clip: border-box; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar.left { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar.right { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar slider { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0; + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(238, 238, 238, 0.5); +} + +scrollbar slider:hover { + background-color: rgba(238, 238, 238, 0.7); +} + +scrollbar slider:active { + background-color: #eeeeee; +} + +scrollbar slider:disabled { + background-color: rgba(238, 238, 238, 0.3); +} + +scrollbar.fine-tune slider { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0; + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(48, 48, 48, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(48, 48, 48, 0.3); + border-radius: 9999px; + background-color: rgba(238, 238, 238, 0.5); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(238, 238, 238, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} + +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: rgba(48, 48, 48, 0.9); +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1), opacity 250ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(238, 238, 238, 0.3); + background-clip: padding-box; + font-size: 0; +} + +switch:checked { + background-color: rgba(0, 150, 136, 0.5); +} + +switch:disabled { + opacity: 0.5; +} + +switch slider { + transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + box-shadow: 0 0 0 10px transparent, 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: rgba(238, 238, 238, 0.7); +} + +switch:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.16), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +switch:focus slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.2), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +switch:focus:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.24), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +switch:checked slider { + background-color: #009688; + color: #009688; +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + -gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; +} + +check:focus, +radio:focus { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.2); +} + +check:hover, +radio:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #009688; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(0, 150, 136, 0.5); +} + +row:selected check:not(:checked):not(:indeterminate), row:selected +radio:not(:checked):not(:indeterminate) { + color: rgba(254, 254, 254, 0.7); +} + +row:selected check:not(:checked):not(:indeterminate):hover, row:selected check:not(:checked):not(:indeterminate):active, row:selected +radio:not(:checked):not(:indeterminate):hover, row:selected +radio:not(:checked):not(:indeterminate):active { + color: #fefefe; +} + +row:selected check:not(:checked):not(:indeterminate):disabled, row:selected +radio:not(:checked):not(:indeterminate):disabled { + color: rgba(254, 254, 254, 0.3); +} + +popover check, popover check:focus, popover check:hover, popover check:active, popover check:disabled, popover +radio, popover +radio:focus, popover +radio:hover, popover +radio:active, popover +radio:disabled { + transition: none; + box-shadow: none; + background-image: none; +} + +popover check:not(:checked):not(:indeterminate):not(:disabled), popover +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(238, 238, 238, 0.7); +} + +popover check.left:dir(rtl), popover +radio.left:dir(rtl) { + margin-left: -12px; + margin-right: -4px; +} + +popover check.right:dir(ltr), popover +radio.right:dir(ltr) { + margin-left: -4px; + margin-right: -12px; +} + +menu menuitem check, menu menuitem +radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem +radio:dir(ltr) { + margin-right: 8px; +} + +menu menuitem check:dir(rtl), menu menuitem +radio:dir(rtl) { + margin-left: 8px; +} + +menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(238, 238, 238, 0.7); +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem +radio, menu menuitem +radio:hover, menu menuitem +radio:disabled { + box-shadow: none; +} + + +check { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")); +} + + +check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")); +} + + +radio { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")); +} + + +radio { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#009688), to(transparent)); +} + + +radio:checked:not(:indeterminate) { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(#009688), to(transparent)); +} + + +radio:checked:not(:indeterminate):disabled { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(rgba(0, 150, 136, 0.5)), to(transparent)); +} + +window.background:not(.csd) > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 4px; + -gtk-outline-radius: 4px; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")); +} + +window.background:not(.csd) > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")); +} + +window.background:not(.csd) > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")); +} + +window.background:not(.csd) > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")); +} + +window.background:not(.csd) > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")); +} + +window.background:not(.csd) > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +check:not(:checked):indeterminate:active, +radio:not(:checked):indeterminate:active { + -gtk-icon-transform: scaleX(-1); +} + +check:not(:checked), +radio:not(:checked) { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0; +} + +check:not(:checked):active, +radio:not(:checked):active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0; +} + +menu menuitem check:not(:checked), menu menuitem +radio:not(:checked) { + transition: none; +} + +treeview.view check, +treeview.view radio { + padding: 0; +} + +treeview.view check:hover, +treeview.view radio:hover { + box-shadow: inset 0 0 0 9999px alpha(#eeeeee, 0.05); +} + +treeview.view check:hover:disabled, +treeview.view radio:hover:disabled { + box-shadow: none; +} + +treeview.view check:hover:selected, +treeview.view radio:hover:selected { + box-shadow: inset 0 0 0 9999px alpha(#fefefe, 0.05); +} + +treeview.view check, +treeview.view radio { + color: rgba(238, 238, 238, 0.7); +} + +treeview.view check:hover, treeview.view check:active, +treeview.view radio:hover, +treeview.view radio:active { + color: #eeeeee; +} + +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(238, 238, 238, 0.3); +} + +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #009688; +} + +treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, +treeview.view radio:checked:disabled, +treeview.view radio:indeterminate:disabled { + color: rgba(0, 150, 136, 0.5); +} + +treeview.view check:selected, +treeview.view radio:selected { + color: rgba(254, 254, 254, 0.7); +} + +treeview.view check:selected:hover, treeview.view check:selected:active, +treeview.view radio:selected:hover, +treeview.view radio:selected:active { + color: #fefefe; +} + +treeview.view check:selected:disabled, +treeview.view radio:selected:disabled { + color: rgba(254, 254, 254, 0.3); +} + +treeview.view check:selected:checked, treeview.view check:selected:indeterminate, +treeview.view radio:selected:checked, +treeview.view radio:selected:indeterminate { + color: #009688; +} + +treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled, +treeview.view radio:selected:checked:disabled, +treeview.view radio:selected:indeterminate:disabled { + color: rgba(0, 150, 136, 0.5); +} + +treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); + border-image: none; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 15px 12px; +} + +scale.vertical { + padding: 12px 15px; +} + +scale slider { + min-height: 32px; + min-width: 32px; + margin: -15px; +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} + +scale.fine-tune slider { + margin: -14px; +} + +scale trough { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(238, 238, 238, 0.3); +} + +scale trough:disabled { + background-color: rgba(238, 238, 238, 0.12); +} + +scale highlight { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: #009688; +} + +scale highlight:disabled { + background-color: transparent; +} + +scale fill { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(238, 238, 238, 0.3); +} + +scale fill:disabled { + background-color: transparent; +} + +scale slider { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + border-radius: 50%; + color: transparent; +} + +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale slider:focus { + background-color: rgba(0, 150, 136, 0.16); +} + +scale slider:hover { + background-color: rgba(0, 150, 136, 0.12); +} + +scale slider:active { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: scale_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: rgba(0, 150, 136, 0.12); + color: rgba(0, 150, 136, 0.12); +} + +scale marks label, +scale value { + color: rgba(238, 238, 238, 0.5); +} + +scale marks { + color: rgba(238, 238, 238, 0.3); +} + +scale marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale marks.left { + margin-right: 7px; + margin-left: -15px; +} + +scale marks.right { + margin-left: 7px; + margin-right: -15px; +} + +scale.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.fine-tune marks.left { + margin-right: 6px; + margin-left: -14px; +} + +scale.fine-tune marks.right { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -24px; + margin-top: 8px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(238, 238, 238, 0.5); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 4px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 4px; +} + +progressbar trough { + background-color: rgba(51, 141, 214, 0.3); +} + +progressbar progress { + background-color: #338DD6; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 4px; +} + +levelbar.horizontal.discrete block { + min-width: 32px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 4px; +} + +levelbar.vertical.discrete block { + min-height: 32px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar block.low { + background-color: #bc742d; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #338DD6; +} + +levelbar block.full { + background-color: #0095a2; +} + +levelbar block.empty { + background-color: rgba(238, 238, 238, 0.12); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.26); + background-color: #303030; + color: #eeeeee; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; +} + +frame > border.flat, +.frame.flat, +frame.flat > border { + border-style: none; +} + +actionbar > revealer > box { + padding: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +scrolledwindow viewport.frame { + border-style: none; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; +} + +undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; +} + +undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(0, 0, 0, 0.26); +} + + +button.font separator, +button.file separator, .tweak-categories separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +list { + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +list row { + padding: 2px; +} + +row.activatable, .view, treeview.view header button, .budgie-menu button { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +row.activatable:hover, .view:hover, treeview.view header button:hover, .budgie-menu button:hover { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0, background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.06); +} + +row.activatable.has-open-popup, .has-open-popup.view, treeview.view header button.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:active, .view:active, treeview.view header button:active, .budgie-menu button:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 8px; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander title > arrow { + transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(238, 238, 238, 0.7); +} + +expander title > arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander title > arrow:checked { + -gtk-icon-transform: unset; +} + +expander title > arrow:hover, expander title > arrow:active { + color: #eeeeee; +} + +expander title > arrow:disabled { + color: rgba(238, 238, 238, 0.3); +} + +expander title > arrow:selected { + color: rgba(254, 254, 254, 0.7); +} + +expander title > arrow:selected:hover, expander title > arrow:selected:active { + color: #fefefe; +} + +expander title > arrow:selected:disabled { + color: rgba(254, 254, 254, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 1px; + border: 1px solid rgba(0, 0, 0, 0.26); + color: #eeeeee; +} + +calendar:disabled { + color: rgba(238, 238, 238, 0.5); +} + +calendar:selected { + border-radius: 5px; +} + +calendar.header { + border-style: none none solid; + border-radius: 0; +} + +calendar.highlight { + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(238, 238, 238, 0.3); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #303030; +} + +messagedialog .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; + color: #eeeeee; +} + +messagedialog .titlebar:backdrop { + color: rgba(238, 238, 238, 0.7); +} + +messagedialog.csd.background { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +messagedialog.csd .dialog-action-area { + margin-top: -4px; + padding: 4px; +} + +messagedialog.csd .dialog-action-area button { + border-radius: 4px; +} + +messagedialog.csd .dialog-action-area button:not(:last-child) { + margin-right: 4px; +} + +messagedialog.csd .dialog-action-area button.suggested-action:not(:disabled) { + color: #009688; +} + +messagedialog.csd .dialog-action-area button.destructive-action:not(:disabled) { + color: #d8645a; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +filechooserbutton:drop(active) { + box-shadow: none; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #2a2a2a; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { + border-right: 1px solid rgba(0, 0, 0, 0.26); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { + border-left: 1px solid rgba(0, 0, 0, 0.26); + border-right-style: none; +} + +.sidebar list { + background-color: transparent; +} + +paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; +} + +stacksidebar row { + padding: 10px 4px; +} + +stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + color: rgba(238, 238, 238, 0.7); +} + +row:selected image.sidebar-icon { + color: rgba(254, 254, 254, 0.7); +} + +placessidebar > viewport.frame { + border-style: none; +} + +placessidebar list { + padding: 1px 0 4px; +} + +placessidebar row { + min-height: 32px; + margin: -1px 0; + padding: 0; +} + +placessidebar row > revealer { + padding: 0 12px; +} + +placessidebar row:selected { + color: #fefefe; +} + +placessidebar row:disabled { + color: rgba(238, 238, 238, 0.5); +} + +placessidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar row.sidebar-placeholder-row { + min-height: 2px; + padding: 0 8px; + background-image: image(#009688); + background-clip: content-box; +} + +placessidebar row.sidebar-new-bookmark-row { + color: #009688; +} + +placessidebar row:drop(active):not(:disabled) { + box-shadow: inset 0 0 0 2px #009688; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.26)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #212121; + background-image: image(rgba(0, 0, 0, 0.26)), image(rgba(0, 0, 0, 0.26)); + background-size: 1px 1px, 1px 1px; +} + +paned.horizontal > separator { + background-repeat: repeat-y; +} + +paned.horizontal > separator:dir(ltr) { + margin: 0 -8px 0 0; + padding: 0 8px 0 0; + background-position: left; +} + +paned.horizontal > separator:dir(rtl) { + margin: 0 0 0 -8px; + padding: 0 0 0 8px; + background-position: right; +} + +paned.horizontal > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-y, repeat-y; + background-position: left, right; +} + +paned.vertical > separator { + margin: 0 0 -8px 0; + padding: 0 0 8px 0; + background-repeat: repeat-x; + background-position: top; +} + +paned.vertical > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-x, repeat-x; + background-position: bottom, top; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; +} + +infobar.info { + background-color: #8b71ff; +} + +infobar.question { + background-color: #8b71ff; +} + +infobar.warning { + background-color: #bc742d; +} + +infobar.error { + background-color: #d8645a; +} + +infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error { + color: #fefefe; +} + +/************ + * Tooltips * + ************/ +tooltip { + border-radius: 4px; + box-shadow: none; +} + +tooltip.background { + background-color: rgba(33, 33, 33, 0.9); + color: #e0e0e0; +} + +tooltip decoration { + background-color: transparent; +} + +tooltip label { + min-height: 20px; + padding: 0 2px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 4.5px; + border-top-right-radius: 4.5px; +} + +colorswatch.top overlay { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +colorswatch.bottom { + border-bottom-left-radius: 4.5px; + border-bottom-right-radius: 4.5px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 4.5px; + border-bottom-left-radius: 4.5px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 4.5px; + border-bottom-right-radius: 4.5px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +colorswatch.dark { + color: #212121; +} + +colorswatch.light { + color: #eeeeee; +} + +colorswatch:drop(active) { + box-shadow: none; +} + +colorswatch:drop(active).light overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #009688; +} + +colorswatch:drop(active).dark overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #009688; +} + +colorswatch overlay { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +colorswatch overlay:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +colorswatch#add-color-button { + border-radius: 4px 4px 0 0; + color: #212121; +} + +colorswatch#add-color-button:only-child { + border-radius: 4px; +} + +colorswatch#add-color-button overlay { + background-image: linear-gradient(to right, #d8645a 25%, #bc742d 25%, #bc742d 50%, #8b71ff 50%, #8b71ff 75%, #8b71ff 75%); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 4.5px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 4px; +} + +colorchooser .popover.osd { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #212121; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 4px 4px 0 0; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent; +} + +.maximized decoration, +.fullscreen decoration, +.tiled decoration, +.tiled-top decoration, +.tiled-right decoration, +.tiled-bottom decoration, +.tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; +} + +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.csd.popup decoration { + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +tooltip.csd decoration { + border-radius: 4px; + box-shadow: none; +} + +messagedialog.csd decoration { + border-radius: 4px; +} + +.solid-csd decoration { + margin: 0; + border-radius: 0; + box-shadow: none; + background-color: #212121; +} + +.view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + background-color: #338DD6; +} + +row:selected label, label:selected, .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + color: #fefefe; +} + +row:selected label:disabled, label:disabled:selected, .view selection:disabled, .view:disabled:selected, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled, +entry selection:disabled, modelbutton.flat:disabled:selected, +.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked, +popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected, text:disabled:selected, .budgie-menu button:disabled:checked { + color: rgba(254, 254, 254, 0.5); +} + +.monospace { + font-family: monospace; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + border-radius: 9999px; + background-color: #009688; + background-image: none; +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + padding-left: 6px; + border-top-right-radius: 0; +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + padding-right: 6px; + border-top-left-radius: 0; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 30; + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: inset 0 -2px rgba(0, 0, 0, 0.26); + background-color: #303030; + color: #eeeeee; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 2px #009688; + caret-color: #009688; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: none; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +button.emoji-section { + margin-top: -1px; + padding: 0 8px; + min-width: 24px; + min-height: 32px; + border-radius: 0; + outline-offset: -6px; + box-shadow: none; +} + +button.emoji-section:hover { + box-shadow: inset 0 2px rgba(238, 238, 238, 0.3); +} + +button.emoji-section:active { + box-shadow: inset 0 2px #338DD6; + background-image: radial-gradient(circle farthest-corner at center, rgba(51, 141, 214, 0.7) 10%, transparent 0%); +} + +button.emoji-section:checked { + box-shadow: inset 0 2px #338DD6; + background-color: transparent; +} + +button.emoji-section:first-child { + margin-left: 4px; +} + +button.emoji-section:last-child { + margin-right: 4px; +} + +.emoji { + min-width: 3em; + min-height: 3em; + padding: 0; +} + +.emoji widget { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); +} + +.emoji widget:hover { + font-size: larger; +} + +/************ + * Nautilus * + ************/ +.nautilus-window, +.nautilus-window notebook, +.nautilus-window notebook > stack { + background-color: #303030; +} + +.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, +headerbar .nautilus-canvas-item.subtitle, .budgie-notification .nautilus-canvas-item.notification-body, .budgie-switcher .nautilus-canvas-item.notification-body, +.nautilus-list-dim-label { + color: rgba(238, 238, 238, 0.7); +} + +.nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, +headerbar .nautilus-canvas-item.subtitle:selected, .budgie-notification .nautilus-canvas-item.notification-body:selected, .budgie-switcher .nautilus-canvas-item.notification-body:selected, +.nautilus-list-dim-label:selected { + color: rgba(254, 254, 254, 0.7); +} + +.nautilus-desktop.nautilus-canvas-item:not(:selected), .caja-desktop.caja-canvas-item:not(:selected), .nemo-desktop.nemo-canvas-item:not(:selected) { + color: #fefefe; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +@keyframes needs_attention_keyframes { + to { + background-color: alpha(currentColor, 0.24); + } +} + +.nautilus-operations-button-needs-attention { + animation: needs_attention_keyframes 250ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: needs_attention_keyframes 250ms cubic-bezier(0.4, 0, 0.2, 1) 4 alternate; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + border-style: solid solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 5px 5px 0 0; + background-color: rgba(48, 48, 48, 0.9); + background-clip: border-box; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), border-width 0; +} + +.nautilus-window .floating-bar.bottom.left { + margin-right: 7px; + border-left-style: none; + border-top-left-radius: 0; +} + +.nautilus-window .floating-bar.bottom.right { + margin-left: 7px; + border-right-style: none; + border-top-right-radius: 0; +} + +.nautilus-window .floating-bar button { + margin: 4px; +} + +.disk-space-display.unknown { + background-color: rgba(238, 238, 238, 0.3); +} + +.disk-space-display.used { + background-color: #338DD6; +} + +.disk-space-display.free { + background-color: rgba(238, 238, 238, 0.12); +} + +.nautilus-window paned > separator { + background-color: #212121; +} + +/********* + * gedit * + *********/ +.open-document-selector-path-label { + color: rgba(238, 238, 238, 0.7); + font-size: smaller; +} + +.open-document-selector-path-label:selected { + color: rgba(254, 254, 254, 0.7); +} + +.gedit-document-panel { + background-color: #2a2a2a; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} + +.gedit-search-slider .linked > entry { + border-radius: 4px; +} + +.gedit-search-slider .linked > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(238, 238, 238, 0.5); +} + +.gedit-search-slider .linked > entry:dir(ltr) { + margin-right: -60px; + padding-right: 60px; +} + +.gedit-search-slider .linked > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 4px; +} + +.gedit-search-slider .linked > entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider .linked > entry:dir(rtl) { + margin-left: -60px; + padding-left: 60px; +} + +.gedit-search-slider .linked > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 4px; +} + +.gedit-search-slider .linked > entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider .linked > entry:not(.error) { + background-color: #303030; +} + +.gedit-search-slider .linked > entry.error ~ button { + color: rgba(254, 254, 254, 0.7); +} + +.gedit-search-slider .linked > entry.error ~ button:hover, .gedit-search-slider .linked > entry.error ~ button:active { + color: #fefefe; +} + +.gedit-search-slider .linked > entry.error ~ button:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.gedit-search-slider .linked > button { + border: solid 4px transparent; + border-radius: 9999px; +} + +.gedit-search-slider .linked > button:last-child:dir(ltr), .gedit-search-slider .linked > button:not(:first-child):dir(rtl) { + margin-left: -2px; +} + +.gedit-search-slider .linked > button:first-child:dir(rtl), .gedit-search-slider .linked > button:not(:last-child):dir(ltr) { + margin-right: -2px; +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/************** + * Tweak Tool * + **************/ +.tweak-categories { + background-image: image(#2a2a2a); +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#303030); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#303030); +} + +.tweak-group-startup { + background-image: image(#303030); + border: 1px solid rgba(0, 0, 0, 0.26); +} + +/*********** + * Builder * + ***********/ +workbench stack.titlebar { + padding: 0; +} + +workbench:not(.tiled):not(.maximized):not(.fullscreen) stack.titlebar headerbar { + border-radius: 4px 4px 0 0; +} + +perspectiveswitcher { + background-color: #212121; +} + +perspectiveswitcher button:checked { + color: #338DD6; +} + +layouttabbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + box-shadow: inset 0 -2px #338DD6; + background-color: #303030; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(0, 0, 0, 0.26); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #d8645a; + color: #fefefe; +} + +workbench treeview.image { + color: rgba(238, 238, 238, 0.7); +} + +workbench treeview.image:selected { + color: rgba(254, 254, 254, 0.7); +} + +dockbin { + border: 1px solid rgba(0, 0, 0, 0.26); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +docktab { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 24px; + min-width: 24px; + margin-bottom: -1px; + padding: 4px 6px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #338DD6 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +docktab:hover { + box-shadow: inset 0 -2px rgba(238, 238, 238, 0.3); + color: #eeeeee; +} + +docktab:checked { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 250ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #338DD6; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #eeeeee; +} + +dockoverlayedge { + background-color: #212121; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:hover { + box-shadow: inset -2px 0 rgba(238, 238, 238, 0.3); +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #338DD6; +} + +dockoverlayedge.right-edge docktab:hover { + box-shadow: inset 2px 0 rgba(238, 238, 238, 0.3); +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #338DD6; +} + +pillbox { + background-color: #212121; + border-radius: 4px; +} + +buildperspective row { + padding: 10px; +} + +layoutpane entry.search { + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; +} + +frame.gb-search-frame { + border-bottom-right-radius: 5px; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #009688; + color: #fefefe; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(0, 0, 0, 0.26); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(0, 0, 0, 0.26); +} + +.side-panel .view { + background-image: image(#2a2a2a); +} + +.side-panel .view:hover { + background-image: image(#343434); +} + +.side-panel .view:selected { + background-image: image(#338DD6); +} + +.side-panel .view:selected:hover { + background-image: image(#3d93d8); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.06)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical:not(.titlebar) > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +box.vertical:not(.titlebar) > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/********* + * To Do * + *********/ +task-row { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -4px; +} + +task-row:hover { + transition: none; +} + +task-row label { + margin: 0 8px; +} + +task-row image { + margin: 0 4px; +} + +task-list-view > box > revealer > box > button { + min-height: 32px; + margin: -4px; + padding: 0 12px; +} + +task-list-view > box > revealer > box > button label { + margin: 0 8px; +} + +task-list-view > box > revealer > box > button image { + margin: 0 4px; +} + +/******* + * eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +#eog-thumb-nav button { + -gtk-outline-radius: 4px; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/******** + * gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +list.categories { + background-image: image(#2a2a2a); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 4px; + background-color: rgba(0, 0, 0, 0.6); + color: #fefefe; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 32px; +} + +/********* + * Geary * + *********/ +.geary-titlebar-left:dir(ltr) { + margin-right: 5px; + padding-right: 0; +} + +.geary-titlebar-left:dir(rtl) { + margin-left: 5px; + padding-left: 0; +} + +.geary-titlebar-left > separator { + background-color: rgba(0, 0, 0, 0.05); +} + +.geary-titlebar-right:dir(ltr) { + margin-left: -5px; +} + +.geary-titlebar-right:dir(rtl) { + margin-right: -5px; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, +overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#303030); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 28px; +} + +/************** + * Terminator * + **************/ +.terminator-terminal-window paned > separator { + background-color: #212121; +} + +.terminator-terminal-window notebook.frame { + border-style: none; +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 4px; +} + +/************ + * Chromium * + ************/ +window.background.chromium { + background-color: #303030; +} + +window.background.chromium entry, +window.background.chromium > button:not(.suggested-action):not(.destructive-action) { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +window.background.chromium > button { + box-shadow: none; + background-size: auto; +} + +window.background.chromium > button:hover { + background-image: image(alpha(currentColor, 0.06)); +} + +window.background.chromium > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +window.background.chromium headerbar button:active { + background-size: 1000% 1000%; +} + +window.background.chromium spinner { + color: #338DD6; +} + +window.background.chromium textview { + background-color: #303030; +} + +tooltip.background.chromium { + background-color: #212121; +} + +/*********** + * Firefox * + ***********/ +window.background:not(.csd) > widget > separator { + color: rgba(0, 0, 0, 0.26); +} + +window.background:not(.csd) > widget > scrollbar { + background-clip: border-box; +} + +window.background:not(.csd) > widget > scrollbar, +window.background:not(.csd) > widget > frame > border { + border-color: rgba(0, 0, 0, 0.26); +} + +window.background:not(.csd) > widget > entry, +window.background:not(.csd) > widget > button > button { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: none; +} + +window.background:not(.csd) > widget > entry { + min-height: 30px; +} + +window.background:not(.csd) > widget > entry:focus { + border-color: #338DD6; +} + +window.background:not(.csd) > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +window.background:not(.csd) > widget > button > button:hover { + background-image: image(alpha(currentColor, 0.06)); +} + +window.background:not(.csd) > widget > button > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +window.background:not(.csd) > widget > checkbutton > check:not(:checked), +window.background:not(.csd) > widget > radiobutton > radio:not(:checked) { + color: #757575; +} + +window.background:not(.csd) > widget > checkbutton > check:not(:checked):hover, window.background:not(.csd) > widget > checkbutton > check:not(:checked):active, +window.background:not(.csd) > widget > radiobutton > radio:not(:checked):hover, +window.background:not(.csd) > widget > radiobutton > radio:not(:checked):active { + color: #212121; +} + +window.background:not(.csd) > widget > checkbutton > check:not(:checked):disabled, +window.background:not(.csd) > widget > radiobutton > radio:not(:checked):disabled { + color: rgba(117, 117, 117, 0.5); +} + +window.background:not(.csd) > window > menu, +window.background:not(.csd) > menu > menu { + border: none; +} + +window.background:not(.csd) > widget > menubar { + color: rgba(224, 224, 224, 0.7); +} + +window.background:not(.csd) > widget > menubar:hover { + color: #e0e0e0; +} + +window.background:not(.csd) > widget > menubar:disabled { + color: rgba(224, 224, 224, 0.3); +} + +window.background:not(.csd) > widget > frame { + color: rgba(0, 0, 0, 0.26); +} + +window.background:not(.csd) > widget > checkbutton > check, +window.background:not(.csd) > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +window.background:not(.csd) > window.background > menu > separator { + color: rgba(0, 0, 0, 0.26); +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +/*********** + * Synapse * + ***********/ +box.vertical > widget > widget:selected { + background-color: #338DD6; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #338DD6; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 4px 4px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; + color: #e0e0e0; +} + +UnityDecoration .top:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +UnityDecoration .menuitem { + color: rgba(224, 224, 224, 0.7); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #e0e0e0; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #010101; + color: #e0e0e0; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(224, 224, 224, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #e0e0e0; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #338DD6; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #010101; + font-weight: 500; +} + +.mate-panel-menu-bar:not(.popup) { + color: rgba(254, 254, 254, 0.7); +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.mate-panel-menu-bar button:checked { + background-color: rgba(254, 254, 254, 0.12); +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(254, 254, 254, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(254, 254, 254, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(254, 254, 254, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #53adf6; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: rgba(254, 254, 254, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: rgba(254, 254, 254, 0.3); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #338DD6; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(0, 0, 0, 0.26); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +#mate-menu { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #eeeeee; + font-weight: normal; +} + +#mate-menu button label:not(:first-child) { + color: rgba(238, 238, 238, 0.7); +} + +#mate-menu entry { + margin: 0 0 8px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 8px; + padding: 4px; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 4px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #303030; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border-radius: 4px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.1); +} + +.lock-dialog frame > border { + border-style: none; +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 4px; + background-color: rgba(33, 33, 33, 0.9); + color: #e0e0e0; +} + +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(254, 254, 254, 0.12); +} + +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #338DD6; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 5px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #303030; +} + +.budgie-popover .container { + padding: 2px; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row { + padding: 0; +} + +.budgie-popover row:hover { + box-shadow: none; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #eeeeee; + font-weight: normal; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button):disabled { + color: rgba(238, 238, 238, 0.5); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.user-menu .container { + padding: 8px; +} + +.budgie-popover.user-menu separator { + margin: 4px 0; +} + +.budgie-popover.sound-popover separator { + margin: 3px 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 8px; +} + +.budgie-popover.places-menu .container { + padding: 8px; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover .container { + padding: 2px 8px 8px; +} + +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(254, 254, 254, 0.12); +} + +.top .workspace-switcher .workspace-layout:dir(ltr), +.bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; +} + +.top .workspace-switcher .workspace-layout:dir(rtl), +.bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; +} + +.left .workspace-switcher .workspace-layout, +.right .workspace-switcher .workspace-layout { + border-top-width: 1px; +} + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(254, 254, 254, 0.12); +} + +.top .workspace-switcher .workspace-item:dir(ltr), +.bottom .workspace-switcher .workspace-item:dir(ltr), .top +.workspace-switcher .workspace-add-button:dir(ltr), +.bottom +.workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; +} + +.top .workspace-switcher .workspace-item:dir(rtl), +.bottom .workspace-switcher .workspace-item:dir(rtl), .top +.workspace-switcher .workspace-add-button:dir(rtl), +.bottom +.workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; +} + +.left .workspace-switcher .workspace-item, +.right .workspace-switcher .workspace-item, .left +.workspace-switcher .workspace-add-button, +.right +.workspace-switcher .workspace-add-button { + border-bottom-width: 1px; +} + +.workspace-switcher .workspace-item { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: rgba(254, 254, 254, 0.12); +} + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; +} + +.workspace-switcher .workspace-add-button:active { + background-image: none; +} + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; +} + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 4px; +} + +.budgie-menu.background { + padding: 0; + background-color: #303030; +} + +.budgie-menu scrollbar, +.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-menu entry.search { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-menu .categories:dir(ltr) { + border-bottom-left-radius: 4px; +} + +.budgie-menu .categories:dir(rtl) { + border-bottom-right-radius: 4px; +} + +.budgie-menu button { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + color: #eeeeee; + font-weight: normal; +} + +.budgie-menu button:disabled { + color: rgba(238, 238, 238, 0.5); +} + +.budgie-menu button:checked:disabled { + background-color: #338DD6; +} + +.budgie-menu row { + padding: 0; +} + +.budgie-menu row:hover { + box-shadow: none; +} + +popover.background.user-menu { + padding: 8px; +} + +popover.background.user-menu .content-box { + background-color: transparent; +} + +popover.background.user-menu separator { + margin: 4px 0; +} + +popover.background.user-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +popover.background.places-menu { + padding: 8px; +} + +popover.background.places-menu .name-button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +popover.background.places-menu .name-button.text-button image:dir(ltr) { + margin-right: 3px; +} + +popover.background.places-menu .name-button.text-button image:dir(rtl) { + margin-left: 3px; +} + +popover.background.places-menu .places-section-header > image:dir(ltr) { + margin: 0 -2px 0 5px; +} + +popover.background.places-menu .places-section-header > image:dir(rtl) { + margin: 0 5px 0 -2px; +} + +popover.background.places-menu .places-list { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + background-color: transparent; +} + +popover.background.places-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +.budgie-panel { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: #010101; + color: rgba(254, 254, 254, 0.7); + font-weight: 500; +} + +.budgie-panel.transparent { + background-color: rgba(0, 0, 0, 0.6); +} + +.budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button:checked { + background-color: rgba(254, 254, 254, 0.12); +} + +.budgie-panel.horizontal button { + padding: 0 4px; +} + +.budgie-panel.vertical button { + padding: 4px 0; +} + +.budgie-panel separator { + background-color: rgba(254, 254, 254, 0.3); +} + +.budgie-panel .alert { + color: #d8645a; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(254, 254, 254, 0.5); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(254, 254, 254, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(254, 254, 254, 0.3); +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher:checked, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, +.top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher:checked, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, +.bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher:checked, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, +.left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher:checked, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, +.right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #303030; +} + +.raven > box { + margin-bottom: -10px; +} + +.raven > stack { + margin-bottom: -10px; +} + +.raven stackswitcher.linked > button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 0; +} + +.raven stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} + +.raven .raven-header { + min-height: 32px; + padding: 3px; +} + +.raven .raven-header:not(.top) { + margin-top: -6px; +} + +.raven .raven-header.top { + padding: 2px 0; + background-color: #338DD6; + color: #fefefe; +} + +.raven .raven-header.top stackswitcher button { + margin: -4px 0; + min-height: 32px; +} + +.raven .raven-header.top button.image-button:dir(ltr) { + margin-right: 2px; +} + +.raven .raven-header.top button.image-button:dir(rtl) { + margin-left: 2px; +} + +.raven .raven-header.top > image { + margin: 0 8px; +} + +.raven .raven-header.top > label { + margin: 0 -8px; + font-weight: bold; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.raven viewport.frame .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +.raven .raven-background.frame { + border-style: solid none; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(238, 238, 238, 0.12); +} + +.raven .raven-background grid > label:first-child { + min-height: 32px; +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .raven-header.top + .raven-background { + border-style: none; + background-color: #338DD6; + color: #fefefe; +} + +.raven .raven-header.top + .raven-background stackswitcher button { + margin: -4px 0; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 8px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 4px; + background-color: #338DD6; +} + +.raven-mpris { + background-color: rgba(0, 0, 0, 0.6); + color: #fefefe; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 8px; +} + +.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +.drop-shadow .linked > button { + border-radius: 4px; +} + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 4px; + background-color: #303030; +} + +.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 4px; +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 4px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 4px; +} + +.budgie-polkit-dialog .message { + color: rgba(238, 238, 238, 0.5); +} + +.budgie-polkit-dialog .failure { + color: #d8645a; +} + +.budgie-run-dialog { + background-color: #303030; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 4px 12px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: transparent; +} + +.budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle, +.budgie-run-dialog list headerbar .subtitle, headerbar .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body { + opacity: 1; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: rgba(0, 0, 0, 0.3); + color: #fefefe; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(254, 254, 254, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: #fefefe; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(254, 254, 254, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +#content_frame { + padding-bottom: 20px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame button { + margin: -16px; +} + +#greeter_infobar { + margin-top: -1px; +} + +/******** + * Nemo * + ********/ +.nemo-window .primary-toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +.nemo-window .primary-toolbar entry { + min-height: 0; + margin: 0; +} + +.nemo-window .primary-toolbar button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} + +.nemo-window scrolledwindow.frame { + border-style: none; +} + +.nemo-window scrolledwindow.frame .view:not(:selected) { + background-color: transparent; +} + +.nemo-window infobar { + margin-top: -6px; +} + +.nemo-window .nemo-inactive-pane .view:not(:selected) { + background-color: #2a2a2a; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #eeeeee; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #eeeeee; +/* +widget base background color */ +@define-color theme_bg_color #212121; +/* +text widgets and the like base background color */ +@define-color theme_base_color #303030; +/* +base background color of selections */ +@define-color theme_selected_bg_color #338DD6; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #fefefe; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #212121; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(238, 238, 238, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2a2a2a; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #eeeeee; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #eeeeee; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #212121; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #303030; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #338DD6; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #fefefe; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(238, 238, 238, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(0, 0, 0, 0.26); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(0, 0, 0, 0.26); +/* +these are pretty self explicative */ +@define-color warning_color #bc742d; +@define-color error_color #d8645a; +@define-color success_color #0095a2; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #e0e0e0; +@define-color wm_unfocused_title rgba(224, 224, 224, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.1); +@define-color wm_bg #212121; +/* +FIXME this is really an API */ +@define-color content_view_bg #303030; +@define-color placeholder_text_color #b5b5b5; diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-3.22/assets b/dotfiles/.themes/oomox-materia-dark/gtk-3.22/assets new file mode 120000 index 0000000..ac77667 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-3.22/assets @@ -0,0 +1 @@ +../gtk-assets
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-3.22/gtk.css b/dotfiles/.themes/oomox-materia-dark/gtk-3.22/gtk.css new file mode 100644 index 0000000..4d85c61 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-3.22/gtk.css @@ -0,0 +1,6256 @@ +@keyframes ripple_effect { + to { + background-size: 1000% 1000%; + } +} + +@keyframes scale_ripple_effect { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes header_ripple_effect { + from { + background-image: radial-gradient(circle farthest-corner at center, #338DD6 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle farthest-corner at center, #338DD6 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #d8645a; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 4px; + -gtk-secondary-caret-color: #338DD6; +} + +notebook:focus tab, +*:focus { + outline-color: alpha(currentColor, 0.24); +} + +/*************** + * Base States * + ***************/ +.background { + background-color: #212121; + color: #eeeeee; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #212121; + color: #eeeeee; +} + +.gtkstyle-fallback:hover { + background-color: #141414; + color: #eeeeee; +} + +.gtkstyle-fallback:active { + background-color: #080808; + color: #eeeeee; +} + +.gtkstyle-fallback:disabled { + background-color: #212121; + color: rgba(238, 238, 238, 0.5); +} + +.gtkstyle-fallback:selected { + background-color: #338DD6; + color: #fefefe; +} + +.view { + background-color: #303030; + color: #eeeeee; +} + +.view:disabled { + color: rgba(238, 238, 238, 0.5); +} + +.view:hover, .view:active, .view:selected { + border-radius: 4px; +} + +textview text { + background-color: #303030; +} + +textview border { + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband { + border: 1px solid #53adf6; + background-color: rgba(83, 173, 246, 0.3); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 4px; +} + +.content-view .tile:selected { + background-color: transparent; + color: inherit; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: #eeeeee; +} + +label selection { + background-color: #338DD6; + color: #fefefe; +} + +label:disabled { + color: rgba(238, 238, 238, 0.5); +} + +tab label:disabled, +button label:disabled { + color: inherit; +} + +.dim-label, label.separator, .titlebar:not(headerbar) .subtitle, +headerbar .subtitle, .budgie-notification .notification-body, .budgie-switcher .notification-body { + opacity: 0.6; +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 32px; + padding: 0 12px; + color: rgba(238, 238, 238, 0.5); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: #eeeeee; +} + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); + } +} + +spinner { + background: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); +} + +spinner:checked { + opacity: 1; + animation: spin 1s linear infinite; +} + +spinner:checked:disabled { + opacity: 0.5; +} + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 4px; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: #eeeeee; +} + +spinbutton:focus:not(.vertical), +entry:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton:disabled:not(.vertical), +entry:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search), +notebook > stack:not(:only-child) spinbutton:not(.vertical), messagedialog entry, colorchooser .popover.osd spinbutton:not(.vertical), entry.preferences-search, layoutpane entry.search, editortweak entry.search, .raven .raven-background spinbutton:not(.vertical), #login_window entry, +entry.flat { + border-radius: 0; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); + background-color: transparent; + color: #eeeeee; +} + +spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search), +notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), messagedialog entry:focus, colorchooser .popover.osd spinbutton:focus:not(.vertical), entry.preferences-search:focus, layoutpane entry.search:focus, editortweak entry.search:focus, .raven .raven-background spinbutton:focus:not(.vertical), #login_window entry:focus, +entry.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); +} + +spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), messagedialog entry:disabled, colorchooser .popover.osd spinbutton:disabled:not(.vertical), entry.preferences-search:disabled, layoutpane entry.search:disabled, editortweak entry.search:disabled, .raven .raven-background spinbutton:disabled:not(.vertical), #login_window entry:disabled, +entry.flat:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton:not(.vertical) image, +entry image { + color: rgba(238, 238, 238, 0.7); +} + +spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, +entry image:hover, +entry image:active { + color: #eeeeee; +} + +spinbutton:not(.vertical) image:disabled, +entry image:disabled { + color: rgba(238, 238, 238, 0.5); +} + +spinbutton:not(.vertical) image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} + +spinbutton:not(.vertical) image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} + +spinbutton:not(.vertical) undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +spinbutton:not(.vertical) undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +spinbutton.error:not(.vertical), +entry.error { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #d8645a; + color: #fefefe; +} + +spinbutton.error:focus:not(.vertical), +entry.error:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.error:disabled:not(.vertical), +entry.error:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search), +notebook > stack:not(:only-child) spinbutton.error:not(.vertical), messagedialog entry.error, colorchooser .popover.osd spinbutton.error:not(.vertical), entry.error.preferences-search, layoutpane entry.error.search, editortweak entry.error.search, .raven .raven-background spinbutton.error:not(.vertical), #login_window entry.error, +entry.error.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8645a 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #d8645a; + background-color: transparent; + color: #eeeeee; +} + +spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), messagedialog entry.error:focus, colorchooser .popover.osd spinbutton.error:focus:not(.vertical), entry.error.preferences-search:focus, layoutpane entry.error.search:focus, editortweak entry.error.search:focus, .raven .raven-background spinbutton.error:focus:not(.vertical), #login_window entry.error:focus, +entry.error.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #d8645a 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #d8645a; +} + +spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), messagedialog entry.error:disabled, colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), entry.error.preferences-search:disabled, layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, .raven .raven-background spinbutton.error:disabled:not(.vertical), #login_window entry.error:disabled, +entry.error.flat:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.error:not(.vertical) image, +entry.error image { + color: rgba(254, 254, 254, 0.7); +} + +spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active, +entry.error image:hover, +entry.error image:active { + color: #fefefe; +} + +spinbutton.error:not(.vertical) image:disabled, +entry.error image:disabled { + color: rgba(254, 254, 254, 0.5); +} + +spinbutton.warning:not(.vertical), +entry.warning { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #bc742d; + color: #fefefe; +} + +spinbutton.warning:focus:not(.vertical), +entry.warning:focus { + border-image: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +spinbutton.warning:disabled:not(.vertical), +entry.warning:disabled { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #2a2a2a; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), messagedialog entry.warning, colorchooser .popover.osd spinbutton.warning:not(.vertical), entry.warning.preferences-search, layoutpane entry.warning.search, editortweak entry.warning.search, .raven .raven-background spinbutton.warning:not(.vertical), #login_window entry.warning, +entry.warning.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px #bc742d; + background-color: transparent; + color: #eeeeee; +} + +spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), messagedialog entry.warning:focus, colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), entry.warning.preferences-search:focus, layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, .raven .raven-background spinbutton.warning:focus:not(.vertical), #login_window entry.warning:focus, +entry.warning.flat:focus { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 100%, transparent 0%) 0 0 2/0 0 2px; + box-shadow: inset 0 -1px #bc742d; +} + +spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search), +notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), messagedialog entry.warning:disabled, colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), entry.warning.preferences-search:disabled, layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, .raven .raven-background spinbutton.warning:disabled:not(.vertical), #login_window entry.warning:disabled, +entry.warning.flat:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.warning:not(.vertical) image, +entry.warning image { + color: rgba(254, 254, 254, 0.7); +} + +spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active, +entry.warning image:hover, +entry.warning image:active { + color: #fefefe; +} + +spinbutton.warning:not(.vertical) image:disabled, +entry.warning image:disabled { + color: rgba(254, 254, 254, 0.5); +} + +spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -6px; + border-bottom: 2px solid #338DD6; + background-color: transparent; +} + +.linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search), +notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), messagedialog .linked:not(.vertical) > entry, colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry.preferences-search, layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, .raven .raven-background .linked:not(.vertical) > spinbutton:not(.vertical), #login_window .linked:not(.vertical) > entry, +.linked.vertical > spinbutton.flat:not(.vertical), +notebook > stack:not(:only-child) .linked.vertical > entry:not(.search), +notebook > stack:not(:only-child) .linked.vertical > spinbutton:not(.vertical), +messagedialog .linked.vertical > entry, +colorchooser .popover.osd .linked.vertical > spinbutton:not(.vertical), +.linked.vertical > entry.preferences-search, +layoutpane .linked.vertical > entry.search, +editortweak .linked.vertical > entry.search, +.raven .raven-background .linked.vertical > spinbutton:not(.vertical), +#login_window .linked.vertical > entry, .linked:not(.vertical) > +entry.flat, +.linked.vertical > +entry.flat { + border-radius: 0; +} + +notebook > stack:not(:only-child) treeview entry.flat:not(.search), +notebook > stack:not(:only-child) treeview spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) treeview entry:not(.search), +notebook > stack:not(:only-child) treeview spinbutton:not(.vertical), +treeview entry.flat, +treeview entry { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: #303030; +} + +notebook > stack:not(:only-child) treeview entry.flat:not(.search), +notebook > stack:not(:only-child) treeview spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) treeview entry.flat:focus:not(.search), +notebook > stack:not(:only-child) treeview spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) treeview entry:not(.search), +notebook > stack:not(:only-child) treeview spinbutton:not(.vertical), notebook > stack:not(:only-child) treeview entry:focus:not(.search), +notebook > stack:not(:only-child) treeview spinbutton:focus:not(.vertical), +treeview entry.flat, +treeview entry.flat:focus, +treeview entry, +treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: #eeeeee; +} + +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + background-image: image(rgba(238, 238, 238, 0.12)); +} + +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) { + color: rgba(238, 238, 238, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#009688), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#009688), to(transparent)); + } +} + + +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 4px; + font-weight: 500; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 9999px transparent; + background-color: #424242; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: #fafafa; +} + + +button:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px transparent; + color: #eeeeee; +} + + +button:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px alpha(currentColor, 0.12); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #eeeeee; +} + + +button:disabled { + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.3); +} + + +button:checked { + background-color: #338DD6; + color: #fefefe; +} + + +button:checked:disabled { + background-color: rgba(51, 141, 214, 0.3); + color: rgba(51, 141, 214, 0.5); +} + +modelbutton.flat, +.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button, +popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check, +radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider .linked > button, popover.messagepopover .popover-action-area button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .raven .raven-header:not(.top) button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) .path-bar button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button, .nemo-window .toolbar button, +button.flat { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(238, 238, 238, 0.7); +} + +modelbutton.flat:hover, +.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover, +popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover, +radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider .linked > button:hover, popover.messagepopover .popover-action-area button:hover, #mate-menu button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, .raven .raven-header:not(.top) button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar) .path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action), +headerbar button:hover:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:hover, .nemo-window .toolbar button:hover, +button.flat:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); + color: #eeeeee; +} + +modelbutton.flat:active, +.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active, +popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active, +radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider .linked > button:active, popover.messagepopover .popover-action-area button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .raven .raven-header:not(.top) button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar) .path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action), +headerbar button:active:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:active, .nemo-window .toolbar button:active, +button.flat:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: #eeeeee; +} + +modelbutton.flat:disabled, +.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled, +popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled, +radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider .linked > button:disabled, popover.messagepopover .popover-action-area button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .raven .raven-header:not(.top) button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar) .path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:disabled, .nemo-window .toolbar button:disabled, +button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(238, 238, 238, 0.3); +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action), +headerbar button:checked:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked, .nemo-window .toolbar button:checked, +button.flat:checked { + background-color: alpha(currentColor, 0.24); + color: #eeeeee; +} + +:not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) .path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action), +headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked:disabled, .nemo-window .toolbar button:checked:disabled, +button.flat:checked:disabled { + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + + +button.text-button { + padding-left: 16px; + padding-right: 16px; +} + + +button.image-button { + min-width: 24px; + padding: 4px; +} + + +button.text-button.image-button { + border-radius: 4px; + -gtk-outline-radius: 4px; +} + + +button.text-button.image-button label:first-child { + margin-left: 12px; +} + + +button.text-button.image-button label:last-child { + margin-right: 12px; +} + + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button, .nemo-window .toolbar .linked > button, +toolbar .linked.vertical > button, +.titlebar:not(headerbar) .linked.vertical > button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button, +.nemo-window .toolbar .linked.vertical > button, .linked > +button.flat, +.linked.vertical > +button.flat { + border-radius: 4px; +} + +toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.text-button.image-button, .nemo-window .toolbar .linked > button.text-button.image-button, +toolbar .linked.vertical > button.text-button.image-button, +.titlebar:not(headerbar) .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), +.app-notification .linked.vertical > button.text-button.image-button, +.nemo-window .toolbar .linked.vertical > button.text-button.image-button, .linked > +button.flat.text-button.image-button, +.linked.vertical > +button.flat.text-button.image-button { + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected +button:disabled { + background-color: rgba(254, 254, 254, 0.12); + color: rgba(254, 254, 254, 0.3); +} + +row:selected button.sidebar-button, infobar.info button.flat, infobar.question button.flat, infobar.warning button.flat, infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .raven-mpris button.image-button, row:selected +button.flat { + color: rgba(254, 254, 254, 0.7); +} + +row:selected button.sidebar-button:hover, infobar.info button.flat:hover, infobar.question button.flat:hover, infobar.warning button.flat:hover, infobar.error button.flat:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, .raven-mpris button.image-button:hover, row:selected button.sidebar-button:active, infobar.info button.flat:active, infobar.question button.flat:active, infobar.warning button.flat:active, infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .raven-mpris button.image-button:active, row:selected +button.flat:hover, row:selected +button.flat:active { + color: #fefefe; +} + +row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.question button.flat:disabled, infobar.warning button.flat:disabled, infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .raven-mpris button.image-button:disabled, row:selected +button.flat:disabled { + color: rgba(254, 254, 254, 0.3); +} + +row:selected button.sidebar-button:checked, infobar.info button.flat:checked, infobar.question button.flat:checked, infobar.warning button.flat:checked, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .raven-mpris button.image-button:checked, row:selected +button.flat:checked { + background-color: rgba(254, 254, 254, 0.3); + color: #fefefe; +} + +row:selected button.sidebar-button:checked:disabled, infobar.info button.flat:checked:disabled, infobar.question button.flat:checked:disabled, infobar.warning button.flat:checked:disabled, infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .raven-mpris button.image-button:checked:disabled, row:selected +button.flat:checked:disabled { + background-color: rgba(254, 254, 254, 0.12); + color: rgba(254, 254, 254, 0.5); +} + + +button.osd { + padding: 8px 12px; +} + + +button.osd.image-button { + padding: 8px; +} + + +button.osd:disabled { + opacity: 0; +} + + +button.suggested-action { + background-color: #009688; + color: #fefefe; +} + + +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + + +button.suggested-action:checked { + background-color: #4cb5ab; +} + + +button.suggested-action.flat { + background-color: transparent; + color: #009688; +} + + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + + +button.suggested-action.flat:checked { + background-color: rgba(0, 150, 136, 0.3); +} + + +button.destructive-action { + background-color: #d8645a; + color: #fefefe; +} + + +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + + +button.destructive-action:checked { + background-color: #e3928b; +} + + +button.destructive-action.flat { + background-color: transparent; + color: #d8645a; +} + + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(238, 238, 238, 0.5); +} + + +button.destructive-action.flat:checked { + background-color: rgba(216, 100, 90, 0.3); +} + +.stack-switcher > +button { + outline-offset: -4px; +} + +.stack-switcher > +button > label { + padding-left: 6px; + padding-right: 6px; +} + +.stack-switcher > +button > image { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; +} + +.stack-switcher > +button.text-button { + padding-left: 10px; + padding-right: 10px; +} + +.stack-switcher > +button.image-button { + padding-left: 2px; + padding-right: 2px; +} + +.stack-switcher > +button.needs-attention:checked > label, +.stack-switcher > +button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar +button { + -gtk-icon-shadow: none; +} + + +button.image-button, toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action), +headerbar .linked > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.image-button, .nemo-window .toolbar .linked > button.image-button, toolbar .linked.vertical > button.image-button, +headerbar .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), .app-notification .linked.vertical > button.image-button, .nemo-window .toolbar .linked.vertical > button.image-button, .linked > button.flat.image-button, +.linked.vertical > button.flat.image-button, .inline-toolbar button:not(.text-button), check, +radio, button.titlebutton, .disclosure-button, .nautilus-window headerbar > revealer > button, .raven .raven-header:not(.top) button.image-button, .raven .expander-button, +button.close, +button.circular { + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +spinbutton:not(.vertical) button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked > button, .pluma-window paned.horizontal box.vertical box.horizontal button.flat { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; + -gtk-outline-radius: 9999px; +} + +.stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { + animation: needs_attention 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.stack-switcher > button.needs-attention > label:dir(rtl), +.stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { + background-position: left 3px; +} + +.linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button, .linked:not(.vertical) > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 4px; +} + +.linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +.linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo { + border-radius: 4px; +} + +.linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button, .linked.vertical > combobox > box > button.combo { + border-radius: 0; + -gtk-outline-radius: 4px; +} + +.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo { + border-radius: 4px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 4px; + color: inherit; +} + +modelbutton.flat arrow { + background: none; +} + +modelbutton.flat arrow:hover { + background: none; +} + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 4px; +} + +/********* + * Links * + *********/ +*:link, button:link, +button:visited, *:link:hover, button:hover:link, +button:hover:visited, *:link:active, button:active:link, +button:active:visited { + color: #3d82ff; +} + +*:link:visited, +button:visited, *:link:visited:hover, +button:visited:hover, *:link:visited:active, +button:visited:active { + color: #c366cf; +} + +infobar.info *:link, infobar.info button:link, +infobar.info button:visited, infobar.question *:link, infobar.question button:link, +infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, +infobar.warning button:visited, infobar.error *:link, infobar.error button:link, +infobar.error button:visited, *:link:selected, button:selected:link, +button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link, +headerbar.selection-mode .subtitle:link, +*:selected *:link, +*:selected button:link, +*:selected button:visited { + color: #fefefe; +} + +button:link > label, +button:visited > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled, +spinbutton:not(.vertical) entry { + min-width: 24px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 4px transparent; +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -2px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -2px; +} + +spinbutton.vertical:disabled { + color: rgba(238, 238, 238, 0.5); +} + +spinbutton.vertical:drop(active) { + box-shadow: none; +} + +spinbutton.vertical entry { + min-height: 32px; + min-width: 40px; + padding: 0; +} + +spinbutton.vertical button { + min-height: 32px; + min-width: 40px; + padding: 0; +} + +spinbutton.vertical button.up { + border-radius: 4px 4px 0 0; +} + +spinbutton.vertical button.down { + border-radius: 0 0 4px 4px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration, +combobox button.combo:checked { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: 0px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: 0px; +} + +combobox #gtk-combobox-popup-menu { + padding: 2px 0; +} + +combobox #gtk-combobox-popup-menu menuitem { + min-height: 28px; + padding: 0 8px; +} + +combobox #gtk-combobox-popup-menu > arrow.top { + margin-top: -2px; +} + +combobox #gtk-combobox-popup-menu > arrow.bottom { + margin-top: 4px; + margin-bottom: -6px; +} + +combobox:drop(active) { + box-shadow: none; +} + +notebook > stack:not(:only-child) button.combo, .raven .raven-background button.combo, #login_window #user_combobox button { + border-radius: 0; + background-image: none; + font-weight: inherit; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 0%, transparent 0%) 0 0 0/0 0 0px; + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.3); + background-color: transparent; + color: #eeeeee; +} + +notebook > stack:not(:only-child) button.combo:hover, .raven .raven-background button.combo:hover, #login_window #user_combobox button:hover { + box-shadow: inset 0 -2px rgba(238, 238, 238, 0.5); +} + +notebook > stack:not(:only-child) button.combo:checked, .raven .raven-background button.combo:checked, #login_window #user_combobox button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 100%, transparent 0%) 0 0 2/0 0 2px; +} + +notebook > stack:not(:only-child) button.combo:disabled, .raven .raven-background button.combo:disabled, #login_window #user_combobox button:disabled { + box-shadow: inset 0 -1px rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.5); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #212121; +} + +.osd toolbar { + background-color: transparent; +} + +toolbar.osd, .app-notification, frame.documents-dropdown { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); +} + +toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + border-radius: 0; +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 6px 2px; +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #2a2a2a; +} + +searchbar > revealer > box, +.location-bar { + padding: 4px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #212121; + background-clip: border-box; +} + +searchbar > revealer > box { + margin: -6px; + padding: 4px; +} + +/*************** + * Header bars * + ***************/ +.titlebar:not(headerbar), +headerbar { + transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1), color 250ms cubic-bezier(0, 0, 0.2, 1); + min-height: 40px; + padding: 0 4px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; + color: #e0e0e0; +} + +.titlebar:disabled:not(headerbar) :not(button) > label, +headerbar:disabled :not(button) > label { + color: rgba(224, 224, 224, 0.5); +} + +.titlebar:backdrop:not(headerbar), +headerbar:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:backdrop:disabled:not(headerbar) :not(button) > label, +headerbar:backdrop:disabled :not(button) > label { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) .title, +headerbar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar:not(headerbar) .subtitle, +headerbar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar:not(headerbar) .linked:not(.vertical) > entry:not(.flat), +headerbar .linked:not(.vertical) > entry:not(.flat) { + border-radius: 4px; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active, +headerbar button:not(.suggested-action):not(.destructive-action):hover, +headerbar button:not(.suggested-action):not(.destructive-action):active { + color: #e0e0e0; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: #e0e0e0; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(224, 224, 224, 0.5); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):checked, +headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(224, 224, 224, 0.5); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:active, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(224, 224, 224, 0.7); +} + +.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(224, 224, 224, 0.3); +} + +.titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled, +headerbar button.suggested-action:disabled, +headerbar button.destructive-action:disabled { + background-color: rgba(224, 224, 224, 0.12); + color: rgba(224, 224, 224, 0.5); +} + +.selection-mode.titlebar:not(headerbar), +headerbar.selection-mode { + transition: background-color 0.00001s 250ms, color 250ms cubic-bezier(0, 0, 0.2, 1); + animation: header_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #338DD6; + color: #fefefe; +} + +.selection-mode.titlebar:backdrop:not(headerbar), +headerbar.selection-mode:backdrop { + color: rgba(254, 254, 254, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action), +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: #fefefe; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(254, 254, 254, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: #fefefe; +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(254, 254, 254, 0.5); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(254, 254, 254, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(254, 254, 254, 0.7); +} + +.selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled, +headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.selection-mode.titlebar:not(headerbar) .selection-menu, +headerbar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu arrow, +headerbar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.selection-mode.titlebar:not(headerbar) .selection-menu .arrow, +headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.tiled .titlebar:not(headerbar), +.tiled-top .titlebar:not(headerbar), +.tiled-right .titlebar:not(headerbar), +.tiled-bottom .titlebar:not(headerbar), +.tiled-left .titlebar:not(headerbar), +.maximized .titlebar:not(headerbar), +.fullscreen .titlebar:not(headerbar), .tiled +headerbar, +.tiled-top +headerbar, +.tiled-right +headerbar, +.tiled-bottom +headerbar, +.tiled-left +headerbar, +.maximized +headerbar, +.fullscreen +headerbar { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.default-decoration.titlebar:not(headerbar), +headerbar.default-decoration { + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); +} + +.tiled .default-decoration.titlebar:not(headerbar), +.maximized .default-decoration.titlebar:not(headerbar), +.fullscreen .default-decoration.titlebar:not(headerbar), .tiled +headerbar.default-decoration, +.maximized +headerbar.default-decoration, +.fullscreen +headerbar.default-decoration { + box-shadow: none; +} + +.default-decoration.titlebar:not(headerbar) button.titlebutton, +headerbar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} + +.background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd) +headerbar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 4px; + margin-bottom: 4px; +} + +headerbar switch { + margin-top: 8px; + margin-bottom: 8px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +headerbar .entry-tag, headerbar .documents-entry-tag, headerbar .photos-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +.background .titlebar { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.background.tiled .titlebar, +.background.tiled-top .titlebar, +.background.tiled-right .titlebar, +.background.tiled-bottom .titlebar, +.background.tiled-left .titlebar, +.background.maximized .titlebar, +.background.solid-csd .titlebar { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window separator:first-child + headerbar, +window headerbar:first-child { + border-top-left-radius: 4px; +} + +window headerbar:last-child { + border-top-right-radius: 4px; +} + +window stack headerbar:first-child, window stack headerbar:last-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +window.tiled headerbar, window.tiled headerbar:first-child, window.tiled headerbar:last-child, window.tiled headerbar:only-child, +window.tiled-top headerbar, +window.tiled-top headerbar:first-child, +window.tiled-top headerbar:last-child, +window.tiled-top headerbar:only-child, +window.tiled-right headerbar, +window.tiled-right headerbar:first-child, +window.tiled-right headerbar:last-child, +window.tiled-right headerbar:only-child, +window.tiled-bottom headerbar, +window.tiled-bottom headerbar:first-child, +window.tiled-bottom headerbar:last-child, +window.tiled-bottom headerbar:only-child, +window.tiled-left headerbar, +window.tiled-left headerbar:first-child, +window.tiled-left headerbar:last-child, +window.tiled-left headerbar:only-child, +window.maximized headerbar, +window.maximized headerbar:first-child, +window.maximized headerbar:last-child, +window.maximized headerbar:only-child, +window.fullscreen headerbar, +window.fullscreen headerbar:first-child, +window.fullscreen headerbar:last-child, +window.fullscreen headerbar:only-child, +window.solid-csd headerbar, +window.solid-csd headerbar:first-child, +window.solid-csd headerbar:last-child, +window.solid-csd headerbar:only-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +window.csd > .titlebar:not(headerbar) { + padding: 0; + background-color: transparent; + background-image: none; + border-style: none; + box-shadow: none; +} + +.titlebar:not(headerbar) > separator { + background-color: #212121; + background-image: image(rgba(0, 0, 0, 0.26)); +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar button { + padding-left: 4px; + padding-right: 4px; +} + +.caja-pathbar button label:not(:only-child):first-child, +.path-bar button label:not(:only-child):first-child { + margin-left: 4px; +} + +.caja-pathbar button label:not(:only-child):last-child, +.path-bar button label:not(:only-child):last-child { + margin-right: 4px; +} + +.caja-pathbar button.slider-button, +.path-bar button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +:not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) +.path-bar button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 4px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) +.path-bar button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #338DD6 100%, transparent 0%) 0 0 2/0 0 2px; +} + +:not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) +.path-bar button:checked, :not(headerbar) +.path-bar button:checked:disabled { + background-color: transparent; +} + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: rgba(238, 238, 238, 0.3); + border-top-color: rgba(0, 0, 0, 0.26); +} + +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; +} + +treeview.view:selected { + border-left-color: rgba(254, 254, 254, 0.3); +} + +treeview.view:hover, treeview.view:active, treeview.view:selected { + border-radius: 0; +} + +treeview.view.separator { + min-height: 5px; + color: rgba(0, 0, 0, 0.26); +} + +treeview.view:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: #009688; +} + +treeview.view:drop(active).after { + border-top-style: none; +} + +treeview.view:drop(active).before { + border-bottom-style: none; +} + +treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(238, 238, 238, 0.7); +} + +treeview.view.expander:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, treeview.view.expander:active { + color: #eeeeee; +} + +treeview.view.expander:disabled { + color: rgba(238, 238, 238, 0.3); +} + +treeview.view.expander:selected { + color: rgba(254, 254, 254, 0.7); +} + +treeview.view.expander:selected:hover, treeview.view.expander:selected:active { + color: #fefefe; +} + +treeview.view.expander:selected:disabled { + color: rgba(254, 254, 254, 0.3); +} + +treeview.view.progressbar { + border-bottom: 4px solid #338DD6; + box-shadow: none; + background-color: transparent; +} + +treeview.view.progressbar:selected { + border-bottom-color: #fefefe; +} + +treeview.view.trough { + border-bottom: 4px solid rgba(51, 141, 214, 0.3); + box-shadow: none; + background-color: transparent; +} + +treeview.view.trough:selected { + border-bottom-color: rgba(254, 254, 254, 0.3); +} + +treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button, treeview.view header button:hover, treeview.view header button:active { + box-shadow: none; +} + +treeview.view header button, treeview.view header button:disabled { + background-color: #303030; +} + +treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, +treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; + background-color: #303030; + background-clip: border-box; + color: #338DD6; +} + +treeview.view acceleditor > label { + background-color: #338DD6; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #212121; +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(224, 224, 224, 0.7); +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: rgba(224, 224, 224, 0.12); + color: #e0e0e0; +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(224, 224, 224, 0.3); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +.csd.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 4px 0; + padding: 4px 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; + border: 1px solid rgba(0, 0, 0, 0.26); +} + +.csd menu, .csd +.menu, .csd +.context-menu { + border: none; + border-radius: 4px; +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; + font: initial; + text-shadow: none; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: rgba(238, 238, 238, 0.12); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(238, 238, 238, 0.5); +} + +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; +} + +menu menuitem arrow:dir(ltr), +.menu menuitem arrow:dir(ltr), +.context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 8px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 8px; +} + +menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), +.menu menuitem label:dir(rtl), +.menu menuitem label:dir(ltr), +.context-menu menuitem label:dir(rtl), +.context-menu menuitem label:dir(ltr) { + color: inherit; +} + +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #303030; + color: rgba(238, 238, 238, 0.7); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 4px 4px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0 0 4px 4px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(rgba(238, 238, 238, 0.12)); + color: #eeeeee; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 4px 0; +} + +menuitem accelerator { + color: rgba(238, 238, 238, 0.7); +} + +.popup:not(.csd) menu menuitem { + color: #eeeeee; +} + +.popup:not(.csd) menu menuitem:hover { + background-color: #474747; +} + +.popup:not(.csd) menu menuitem:disabled { + color: #8f8f8f; +} + +.popup:not(.csd) menu accelerator { + color: #b5b5b5; +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #303030; +} + +popover.background:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +popover.background, .csd popover.background { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 5px; +} + +popover.background > stack { + margin: -4px; +} + +popover.background > toolbar { + margin: -2px; +} + +popover.background > list, +popover.background > .view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 4px; +} + +popover.background separator { + margin: 4px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +notebook > header { + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #212121; + background-clip: border-box; +} + +notebook > header.top { + border-bottom-style: solid; +} + +notebook > header.top > tabs { + margin-bottom: -1px; +} + +notebook > header.top > tabs > tab:hover { + box-shadow: inset 0 -2px rgba(238, 238, 238, 0.3); +} + +notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -2px #338DD6; +} + +notebook > header.bottom { + border-top-style: solid; +} + +notebook > header.bottom > tabs { + margin-top: -1px; +} + +notebook > header.bottom > tabs > tab:hover { + box-shadow: inset 0 2px rgba(238, 238, 238, 0.3); +} + +notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 2px #338DD6; +} + +notebook > header.left { + border-right-style: solid; +} + +notebook > header.left > tabs { + margin-right: -1px; +} + +notebook > header.left > tabs > tab:hover { + box-shadow: inset -2px 0 rgba(238, 238, 238, 0.3); +} + +notebook > header.left > tabs > tab:checked { + box-shadow: inset -2px 0 #338DD6; +} + +notebook > header.right { + border-left-style: solid; +} + +notebook > header.right > tabs { + margin-left: -1px; +} + +notebook > header.right > tabs > tab:hover { + box-shadow: inset 2px 0 rgba(238, 238, 238, 0.3); +} + +notebook > header.right > tabs > tab:checked { + box-shadow: inset 2px 0 #338DD6; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: -8px; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: -8px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: -8px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: -8px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; +} + +notebook > header tab { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 24px; + min-width: 24px; + padding: 4px 12px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #338DD6 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +notebook > header tab:hover { + color: #eeeeee; +} + +notebook > header tab:hover.reorderable-page { + border-color: rgba(0, 0, 0, 0.26); + background-color: #2a2a2a; +} + +notebook > header tab:disabled { + color: rgba(238, 238, 238, 0.3); +} + +notebook > header tab:checked { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 250ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1); + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #eeeeee; +} + +notebook > header tab:checked:disabled { + color: rgba(238, 238, 238, 0.5); +} + +notebook > header tab:checked.reorderable-page { + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +notebook > header tab button.flat:last-child { + margin-left: 4px; + margin-right: -8px; +} + +notebook > header tab button.flat:first-child { + margin-left: -8px; + margin-right: 4px; +} + +notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 8px; + padding-right: 8px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + margin: 0 -1px; + border-style: none solid; +} + +notebook > header.left tabs, notebook > header.right tabs { + padding-top: 8px; + padding-bottom: 8px; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + margin: -1px 0; + border-style: solid none; +} + +notebook > stack:not(:only-child) { + background-color: #303030; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: #303030; + background-clip: border-box; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar.left { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar.right { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +scrollbar slider { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0; + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(238, 238, 238, 0.5); +} + +scrollbar slider:hover { + background-color: rgba(238, 238, 238, 0.7); +} + +scrollbar slider:active { + background-color: #eeeeee; +} + +scrollbar slider:disabled { + background-color: rgba(238, 238, 238, 0.3); +} + +scrollbar.fine-tune slider { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0; + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(48, 48, 48, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(48, 48, 48, 0.3); + border-radius: 9999px; + background-color: rgba(238, 238, 238, 0.5); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(238, 238, 238, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} + +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: rgba(48, 48, 48, 0.9); +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1), opacity 250ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(238, 238, 238, 0.3); + background-clip: padding-box; + font-size: 0; +} + +switch:checked { + background-color: rgba(0, 150, 136, 0.5); +} + +switch:disabled { + opacity: 0.5; +} + +switch slider { + transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + box-shadow: 0 0 0 10px transparent, 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + background-color: #303030; + color: rgba(238, 238, 238, 0.7); +} + +switch:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.16), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +switch:focus slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.2), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +switch:focus:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.24), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +switch:checked slider { + background-color: #009688; + color: #009688; +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + -gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +.view.content-view.check:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; +} + +check:focus, +radio:focus { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.2); +} + +check:hover, +radio:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #009688; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(0, 150, 136, 0.5); +} + +row:selected check:not(:checked):not(:indeterminate), row:selected +radio:not(:checked):not(:indeterminate) { + color: rgba(254, 254, 254, 0.7); +} + +row:selected check:not(:checked):not(:indeterminate):hover, row:selected check:not(:checked):not(:indeterminate):active, row:selected +radio:not(:checked):not(:indeterminate):hover, row:selected +radio:not(:checked):not(:indeterminate):active { + color: #fefefe; +} + +row:selected check:not(:checked):not(:indeterminate):disabled, row:selected +radio:not(:checked):not(:indeterminate):disabled { + color: rgba(254, 254, 254, 0.3); +} + +popover check, popover check:focus, popover check:hover, popover check:active, popover check:disabled, popover +radio, popover +radio:focus, popover +radio:hover, popover +radio:active, popover +radio:disabled { + transition: none; + box-shadow: none; + background-image: none; +} + +popover check:not(:checked):not(:indeterminate):not(:disabled), popover +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(238, 238, 238, 0.7); +} + +popover check.left:dir(rtl), popover +radio.left:dir(rtl) { + margin-left: -12px; + margin-right: -4px; +} + +popover check.right:dir(ltr), popover +radio.right:dir(ltr) { + margin-left: -4px; + margin-right: -12px; +} + +menu menuitem check, menu menuitem +radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem +radio:dir(ltr) { + margin-right: 8px; +} + +menu menuitem check:dir(rtl), menu menuitem +radio:dir(rtl) { + margin-left: 8px; +} + +menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(238, 238, 238, 0.7); +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem +radio, menu menuitem +radio:hover, menu menuitem +radio:disabled { + box-shadow: none; +} + + +check { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")); +} + + +check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")); +} + + +radio { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")); +} + + +radio { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#009688), to(transparent)); +} + + +radio:checked:not(:indeterminate) { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(#009688), to(transparent)); +} + + +radio:checked:not(:indeterminate):disabled { + border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(rgba(0, 150, 136, 0.5)), to(transparent)); +} + +window.background:not(.csd) > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 4px; + -gtk-outline-radius: 4px; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")); +} + +window.background:not(.csd) > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")); +} + +window.background:not(.csd) > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")); +} + +window.background:not(.csd) > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")); +} + +window.background:not(.csd) > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")); +} + +window.background:not(.csd) > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")); +} + +check:not(:checked):active { + -gtk-icon-transform: rotate(90deg); +} + +check:not(:checked):indeterminate:active, +radio:not(:checked):indeterminate:active { + -gtk-icon-transform: scaleX(-1); +} + +check:not(:checked), +radio:not(:checked) { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0; +} + +check:not(:checked):active, +radio:not(:checked):active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0; +} + +menu menuitem check:not(:checked), menu menuitem +radio:not(:checked) { + transition: none; +} + +treeview.view check, +treeview.view radio { + padding: 0; +} + +treeview.view check:hover, +treeview.view radio:hover { + box-shadow: inset 0 0 0 9999px alpha(#eeeeee, 0.05); +} + +treeview.view check:hover:disabled, +treeview.view radio:hover:disabled { + box-shadow: none; +} + +treeview.view check:hover:selected, +treeview.view radio:hover:selected { + box-shadow: inset 0 0 0 9999px alpha(#fefefe, 0.05); +} + +treeview.view check, +treeview.view radio { + color: rgba(238, 238, 238, 0.7); +} + +treeview.view check:hover, treeview.view check:active, +treeview.view radio:hover, +treeview.view radio:active { + color: #eeeeee; +} + +treeview.view check:disabled, +treeview.view radio:disabled { + color: rgba(238, 238, 238, 0.3); +} + +treeview.view check:checked, treeview.view check:indeterminate, +treeview.view radio:checked, +treeview.view radio:indeterminate { + color: #009688; +} + +treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, +treeview.view radio:checked:disabled, +treeview.view radio:indeterminate:disabled { + color: rgba(0, 150, 136, 0.5); +} + +treeview.view check:selected, +treeview.view radio:selected { + color: rgba(254, 254, 254, 0.7); +} + +treeview.view check:selected:hover, treeview.view check:selected:active, +treeview.view radio:selected:hover, +treeview.view radio:selected:active { + color: #fefefe; +} + +treeview.view check:selected:disabled, +treeview.view radio:selected:disabled { + color: rgba(254, 254, 254, 0.3); +} + +treeview.view check:selected:checked, treeview.view check:selected:indeterminate, +treeview.view radio:selected:checked, +treeview.view radio:selected:indeterminate { + color: #009688; +} + +treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled, +treeview.view radio:selected:checked:disabled, +treeview.view radio:selected:indeterminate:disabled { + color: rgba(0, 150, 136, 0.5); +} + +treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); + border-image: none; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 15px 12px; +} + +scale.vertical { + padding: 12px 15px; +} + +scale slider { + min-height: 32px; + min-width: 32px; + margin: -15px; +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} + +scale.fine-tune slider { + margin: -14px; +} + +scale trough { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(238, 238, 238, 0.3); +} + +scale trough:disabled { + background-color: rgba(238, 238, 238, 0.12); +} + +scale highlight { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: #009688; +} + +scale highlight:disabled { + background-color: transparent; +} + +scale fill { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(238, 238, 238, 0.3); +} + +scale fill:disabled { + background-color: transparent; +} + +scale slider { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + border-radius: 50%; + color: transparent; +} + +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale slider:focus { + background-color: rgba(0, 150, 136, 0.16); +} + +scale slider:hover { + background-color: rgba(0, 150, 136, 0.12); +} + +scale slider:active { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + animation: scale_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-size: auto, 0% 0%; + background-color: rgba(0, 150, 136, 0.12); + color: rgba(0, 150, 136, 0.12); +} + +scale marks label, +scale value { + color: rgba(238, 238, 238, 0.5); +} + +scale marks { + color: rgba(238, 238, 238, 0.3); +} + +scale marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale marks.left { + margin-right: 7px; + margin-left: -15px; +} + +scale marks.right { + margin-left: 7px; + margin-right: -15px; +} + +scale.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.fine-tune marks.left { + margin-right: 6px; + margin-left: -14px; +} + +scale.fine-tune marks.right { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -24px; + margin-top: 8px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(238, 238, 238, 0.5); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 4px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 4px; +} + +progressbar trough { + background-color: rgba(51, 141, 214, 0.3); +} + +progressbar progress { + background-color: #338DD6; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 4px; +} + +levelbar.horizontal.discrete block { + min-width: 32px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 4px; +} + +levelbar.vertical.discrete block { + min-height: 32px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar block.low { + background-color: #bc742d; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #338DD6; +} + +levelbar block.full { + background-color: #0095a2; +} + +levelbar block.empty { + background-color: rgba(238, 238, 238, 0.12); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.26); + background-color: #303030; + color: #eeeeee; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; +} + +frame > border.flat, +.frame.flat, +frame.flat > border { + border-style: none; +} + +actionbar > revealer > box { + padding: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +scrolledwindow viewport.frame { + border-style: none; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; +} + +overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(83, 173, 246, 0.3)), to(transparent)); + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; +} + +undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; +} + +undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; +} + +undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; +} + +undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(48, 48, 48, 0.3) 50%, rgba(238, 238, 238, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(0, 0, 0, 0.26); +} + + +button.font separator, +button.file separator, .tweak-categories separator, preferences stacksidebar.sidebar list separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +list { + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +list row { + padding: 2px; +} + +row.activatable, .view, treeview.view header button, .budgie-menu button { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +row.activatable:hover, .view:hover, treeview.view header button:hover, .budgie-menu button:hover { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0, background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.06); +} + +row.activatable.has-open-popup, .has-open-popup.view, treeview.view header button.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:active, .view:active, treeview.view header button:active, .budgie-menu button:active { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0; + animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12); + background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 8px; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander title > arrow { + transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(238, 238, 238, 0.7); +} + +expander title > arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander title > arrow:checked { + -gtk-icon-transform: unset; +} + +expander title > arrow:hover, expander title > arrow:active { + color: #eeeeee; +} + +expander title > arrow:disabled { + color: rgba(238, 238, 238, 0.3); +} + +expander title > arrow:selected { + color: rgba(254, 254, 254, 0.7); +} + +expander title > arrow:selected:hover, expander title > arrow:selected:active { + color: #fefefe; +} + +expander title > arrow:selected:disabled { + color: rgba(254, 254, 254, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 1px; + border: 1px solid rgba(0, 0, 0, 0.26); + color: #eeeeee; +} + +calendar:disabled { + color: rgba(238, 238, 238, 0.5); +} + +calendar:selected { + border-radius: 5px; +} + +calendar.header { + border-style: none none solid; + border-radius: 0; +} + +calendar.highlight { + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(238, 238, 238, 0.3); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #303030; +} + +messagedialog .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; + color: #eeeeee; +} + +messagedialog .titlebar:backdrop { + color: rgba(238, 238, 238, 0.7); +} + +messagedialog.csd.background { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +messagedialog.csd .dialog-action-area { + margin-top: -4px; + padding: 4px; +} + +messagedialog.csd .dialog-action-area button { + border-radius: 4px; +} + +messagedialog.csd .dialog-action-area button:not(:last-child) { + margin-right: 4px; +} + +messagedialog.csd .dialog-action-area button.suggested-action:not(:disabled) { + color: #009688; +} + +messagedialog.csd .dialog-action-area button.destructive-action:not(:disabled) { + color: #d8645a; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +filechooserbutton:drop(active) { + box-shadow: none; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #2a2a2a; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { + border-right: 1px solid rgba(0, 0, 0, 0.26); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { + border-left: 1px solid rgba(0, 0, 0, 0.26); + border-right-style: none; +} + +.sidebar list { + background-color: transparent; +} + +paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; +} + +stacksidebar row { + padding: 10px 4px; +} + +stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + color: rgba(238, 238, 238, 0.7); +} + +row:selected image.sidebar-icon { + color: rgba(254, 254, 254, 0.7); +} + +placessidebar > viewport.frame { + border-style: none; +} + +placessidebar list { + padding: 1px 0 4px; +} + +placessidebar row { + min-height: 32px; + margin: -1px 0; + padding: 0; +} + +placessidebar row > revealer { + padding: 0 12px; +} + +placessidebar row:selected { + color: #fefefe; +} + +placessidebar row:disabled { + color: rgba(238, 238, 238, 0.5); +} + +placessidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar row.sidebar-placeholder-row { + min-height: 2px; + padding: 0 8px; + background-image: image(#009688); + background-clip: content-box; +} + +placessidebar row.sidebar-new-bookmark-row { + color: #009688; +} + +placessidebar row:drop(active):not(:disabled) { + box-shadow: inset 0 0 0 2px #009688; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.26)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #212121; + background-image: image(rgba(0, 0, 0, 0.26)), image(rgba(0, 0, 0, 0.26)); + background-size: 1px 1px, 1px 1px; +} + +paned.horizontal > separator { + background-repeat: repeat-y; +} + +paned.horizontal > separator:dir(ltr) { + margin: 0 -8px 0 0; + padding: 0 8px 0 0; + background-position: left; +} + +paned.horizontal > separator:dir(rtl) { + margin: 0 0 0 -8px; + padding: 0 0 0 8px; + background-position: right; +} + +paned.horizontal > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-y, repeat-y; + background-position: left, right; +} + +paned.vertical > separator { + margin: 0 0 -8px 0; + padding: 0 0 8px 0; + background-repeat: repeat-x; + background-position: top; +} + +paned.vertical > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-x, repeat-x; + background-position: bottom, top; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; +} + +infobar.info { + background-color: #8b71ff; +} + +infobar.question { + background-color: #8b71ff; +} + +infobar.warning { + background-color: #bc742d; +} + +infobar.error { + background-color: #d8645a; +} + +infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error { + color: #fefefe; +} + +/************ + * Tooltips * + ************/ +tooltip { + border-radius: 4px; + box-shadow: none; +} + +tooltip.background { + background-color: rgba(33, 33, 33, 0.9); + color: #e0e0e0; +} + +tooltip decoration { + background-color: transparent; +} + +tooltip label { + min-height: 20px; + padding: 0 2px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 4.5px; + border-top-right-radius: 4.5px; +} + +colorswatch.top overlay { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +colorswatch.bottom { + border-bottom-left-radius: 4.5px; + border-bottom-right-radius: 4.5px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 4.5px; + border-bottom-left-radius: 4.5px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 4.5px; + border-bottom-right-radius: 4.5px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +colorswatch.dark { + color: #212121; +} + +colorswatch.light { + color: #eeeeee; +} + +colorswatch:drop(active) { + box-shadow: none; +} + +colorswatch:drop(active).light overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #009688; +} + +colorswatch:drop(active).dark overlay { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #009688; +} + +colorswatch overlay { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +colorswatch overlay:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +colorswatch#add-color-button { + border-radius: 4px 4px 0 0; + color: #212121; +} + +colorswatch#add-color-button:only-child { + border-radius: 4px; +} + +colorswatch#add-color-button overlay { + background-image: linear-gradient(to right, #d8645a 25%, #bc742d 25%, #bc742d 50%, #8b71ff 50%, #8b71ff 75%, #8b71ff 75%); +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 4.5px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 4px; +} + +colorchooser .popover.osd { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.1); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #212121; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 4px 4px 0 0; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent; +} + +.maximized decoration, +.fullscreen decoration, +.tiled decoration, +.tiled-top decoration, +.tiled-right decoration, +.tiled-bottom decoration, +.tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; +} + +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.csd.popup decoration { + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); +} + +tooltip.csd decoration { + border-radius: 4px; + box-shadow: none; +} + +messagedialog.csd decoration { + border-radius: 4px; +} + +.solid-csd decoration { + margin: 0; + border-radius: 0; + box-shadow: none; + background-color: #212121; +} + +.view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + background-color: #338DD6; +} + +row:selected label, label:selected, .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, popover.background.menu button:checked, +popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked { + color: #fefefe; +} + +row:selected label:disabled, label:disabled:selected, .view selection:disabled, .view:disabled:selected, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled, +entry selection:disabled, modelbutton.flat:disabled:selected, +.menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked, +popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected, text:disabled:selected, .budgie-menu button:disabled:checked { + color: rgba(254, 254, 254, 0.5); +} + +.monospace { + font-family: monospace; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + border-radius: 9999px; + background-color: #009688; + background-image: none; +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + padding-left: 6px; + border-top-right-radius: 0; +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + padding-right: 6px; + border-top-left-radius: 0; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 30; + -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: inset 0 -2px rgba(0, 0, 0, 0.26); + background-color: #303030; + color: #eeeeee; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 2px #009688; + caret-color: #009688; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: none; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +button.emoji-section { + margin-top: -1px; + padding: 0 8px; + min-width: 24px; + min-height: 32px; + border-radius: 0; + outline-offset: -6px; + box-shadow: none; +} + +button.emoji-section:hover { + box-shadow: inset 0 2px rgba(238, 238, 238, 0.3); +} + +button.emoji-section:active { + box-shadow: inset 0 2px #338DD6; + background-image: radial-gradient(circle farthest-corner at center, rgba(51, 141, 214, 0.7) 10%, transparent 0%); +} + +button.emoji-section:checked { + box-shadow: inset 0 2px #338DD6; + background-color: transparent; +} + +button.emoji-section:first-child { + margin-left: 4px; +} + +button.emoji-section:last-child { + margin-right: 4px; +} + +.emoji { + min-width: 3em; + min-height: 3em; + padding: 0; +} + +.emoji widget { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); +} + +.emoji widget:hover { + font-size: larger; +} + +/************ + * Nautilus * + ************/ +.nautilus-window, +.nautilus-window notebook, +.nautilus-window notebook > stack { + background-color: #303030; +} + +.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, +headerbar .nautilus-canvas-item.subtitle, .budgie-notification .nautilus-canvas-item.notification-body, .budgie-switcher .nautilus-canvas-item.notification-body, +.nautilus-list-dim-label { + color: rgba(238, 238, 238, 0.7); +} + +.nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, +headerbar .nautilus-canvas-item.subtitle:selected, .budgie-notification .nautilus-canvas-item.notification-body:selected, .budgie-switcher .nautilus-canvas-item.notification-body:selected, +.nautilus-list-dim-label:selected { + color: rgba(254, 254, 254, 0.7); +} + +.nautilus-desktop.nautilus-canvas-item:not(:selected), .caja-desktop.caja-canvas-item:not(:selected), .nemo-desktop.nemo-canvas-item:not(:selected) { + color: #fefefe; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +@keyframes needs_attention_keyframes { + to { + background-color: alpha(currentColor, 0.24); + } +} + +.nautilus-operations-button-needs-attention { + animation: needs_attention_keyframes 250ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: needs_attention_keyframes 250ms cubic-bezier(0.4, 0, 0.2, 1) 4 alternate; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + border-style: solid solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + border-radius: 5px 5px 0 0; + background-color: rgba(48, 48, 48, 0.9); + background-clip: border-box; + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), border-width 0; +} + +.nautilus-window .floating-bar.bottom.left { + margin-right: 7px; + border-left-style: none; + border-top-left-radius: 0; +} + +.nautilus-window .floating-bar.bottom.right { + margin-left: 7px; + border-right-style: none; + border-top-right-radius: 0; +} + +.nautilus-window .floating-bar button { + margin: 4px; +} + +.disk-space-display.unknown { + background-color: rgba(238, 238, 238, 0.3); + color: rgba(238, 238, 238, 0.3); +} + +.disk-space-display.used { + background-color: #338DD6; + color: #338DD6; +} + +.disk-space-display.free { + background-color: rgba(238, 238, 238, 0.12); + color: rgba(238, 238, 238, 0.12); +} + +.search-information { + padding: 2px; + background-color: #338DD6; + color: #fefefe; +} + +.conflict-row:not(:selected) { + background-color: #5a442f; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 4px; +} + +.nautilus-window flowboxchild:selected { + background-color: transparent; +} + +.nautilus-window flowboxchild:selected .icon-item-background { + background-color: #338DD6; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame { + border-style: none; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child { + margin: -6px 0 0 -6px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label { + margin: 0 8px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button { + border-radius: 0; +} + +.nautilus-window > popover.menu:not(:last-child) { + padding: 3px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box { + margin-top: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box { + margin-bottom: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked { + margin-top: 1px; +} + +.nautilus-window > popover.menu:not(:last-child) separator { + margin-bottom: -2px; +} + +.nautilus-menu-sort-heading { + margin: 1px 3px; + font-weight: 500; +} + +.nautilus-menu-sort-heading:disabled { + color: rgba(238, 238, 238, 0.5); +} + +.nautilus-window paned > separator { + background-color: #212121; +} + +/********* + * gedit * + *********/ +.open-document-selector-path-label { + color: rgba(238, 238, 238, 0.7); + font-size: smaller; +} + +.open-document-selector-path-label:selected { + color: rgba(254, 254, 254, 0.7); +} + +.gedit-document-panel { + background-color: #2a2a2a; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} + +.gedit-search-slider .linked > entry { + border-radius: 4px; +} + +.gedit-search-slider .linked > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(238, 238, 238, 0.5); +} + +.gedit-search-slider .linked > entry:dir(ltr) { + margin-right: -60px; + padding-right: 60px; +} + +.gedit-search-slider .linked > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 4px; +} + +.gedit-search-slider .linked > entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider .linked > entry:dir(rtl) { + margin-left: -60px; + padding-left: 60px; +} + +.gedit-search-slider .linked > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 4px; +} + +.gedit-search-slider .linked > entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider .linked > entry:not(.error) { + background-color: #303030; +} + +.gedit-search-slider .linked > entry.error ~ button { + color: rgba(254, 254, 254, 0.7); +} + +.gedit-search-slider .linked > entry.error ~ button:hover, .gedit-search-slider .linked > entry.error ~ button:active { + color: #fefefe; +} + +.gedit-search-slider .linked > entry.error ~ button:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.gedit-search-slider .linked > button { + border: solid 4px transparent; + border-radius: 9999px; +} + +.gedit-search-slider .linked > button:last-child:dir(ltr), .gedit-search-slider .linked > button:not(:first-child):dir(rtl) { + margin-left: -2px; +} + +.gedit-search-slider .linked > button:first-child:dir(rtl), .gedit-search-slider .linked > button:not(:last-child):dir(ltr) { + margin-right: -2px; +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/********** + * Tweaks * + **********/ +.tweak-categories { + background-image: image(#2a2a2a); +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#303030); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#303030); +} + +.tweak-group-startup { + background-image: image(#303030); + border: 1px solid rgba(0, 0, 0, 0.26); +} + +row#Focus, +row#ClickMethod, +row#StaticWorkspaceTweak, +row#dynamic-workspaces, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.26); +} + +row#Focus row:not(:last-child), +row#ClickMethod row:not(:last-child), +row#StaticWorkspaceTweak row:not(:last-child), +row#dynamic-workspaces row:not(:last-child), +row#PrimaryWorkspaceTweak row:not(:last-child), +row#workspaces-only-on-primary row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +row#Focus.tweak > list, +row#ClickMethod.tweak > list, +row#StaticWorkspaceTweak.tweak > list, +row#dynamic-workspaces.tweak > list, +row#PrimaryWorkspaceTweak.tweak > list, +row#workspaces-only-on-primary.tweak > list { + margin-top: -3px; +} + +row#Focus, +row#ClickMethod, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + margin-top: 4px; +} + +/*********** + * Builder * + ***********/ +layouttabbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + box-shadow: inset 0 -2px #338DD6; + background-color: #303030; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(0, 0, 0, 0.26); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #d8645a; + color: #fefefe; +} + +window.workbench treeview.image { + color: rgba(238, 238, 238, 0.7); +} + +window.workbench treeview.image:selected { + color: rgba(254, 254, 254, 0.7); +} + +popover.popover-selector list { + padding: 6px; +} + +popover.popover-selector list row { + border-radius: 4px; +} + +popover.popover-selector list row image:dir(ltr) { + margin-right: 6px; +} + +popover.popover-selector list row image:dir(rtl) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(ltr) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(rtl) { + margin-right: 6px; +} + +omnibar.linked:not(.vertical) entry { + border-radius: 4px; +} + +omnibar:not(:hover):not(:active) entry { + color: rgba(238, 238, 238, 0.7); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +entry.preferences-search { + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +preferences stacksidebar.sidebar list { + background-color: #2a2a2a; +} + +preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { + border-style: none; +} + +preferences > box > box:dir(ltr) { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +popover.messagepopover.background { + padding: 0; +} + +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; +} + +popover.messagepopover .popover-action-area button:first-child { + border-bottom-left-radius: 4px; +} + +popover.messagepopover .popover-action-area button:last-child { + border-bottom-right-radius: 4px; +} + +popover.messagepopover .popover-content-area { + margin: 16px; +} + +popover.transfers list { + background-color: transparent; +} + +popover.transfers list row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(0, 0, 0, 0.26); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +docktab { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0; + min-height: 24px; + min-width: 24px; + margin-bottom: -1px; + padding: 4px 6px; + outline-offset: -6px; + border-width: 1px; + border-color: transparent; + background-image: radial-gradient(circle farthest-corner at center, #338DD6 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(238, 238, 238, 0.7); + font-weight: 500; +} + +docktab:hover { + box-shadow: inset 0 -2px rgba(238, 238, 238, 0.3); + color: #eeeeee; +} + +docktab:checked { + transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 250ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #338DD6; + background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: #eeeeee; +} + +dockoverlayedge { + background-color: #212121; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:hover { + box-shadow: inset -2px 0 rgba(238, 238, 238, 0.3); +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #338DD6; +} + +dockoverlayedge.right-edge docktab:hover { + box-shadow: inset 2px 0 rgba(238, 238, 238, 0.3); +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #338DD6; +} + +pillbox { + background-color: #212121; + border-radius: 4px; +} + +layoutpane entry.search { + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +window.workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +button.run-arrow-button { + padding-left: 8px; + padding-right: 8px; +} + +button.dzlmenubutton image { + min-width: 26px; +} + +button.dzlmenubutton image.arrow { + min-width: 23px; +} + +button.dzlmenubuttonitem { + color: #eeeeee; + font-weight: normal; +} + +button.dzlmenubuttonitem:disabled { + color: rgba(238, 238, 238, 0.5); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +idelayoutstackheader button:checked { + color: #eeeeee; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #212121; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button { + border-radius: 0; + outline-offset: -6px; + box-shadow: none; + background-color: transparent; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:active { + background-image: radial-gradient(circle farthest-corner at center, rgba(51, 141, 214, 0.7) 10%, transparent 0%); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: #eeeeee; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):hover { + box-shadow: inset -2px 0 rgba(238, 238, 238, 0.3); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):active, ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #338DD6; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):hover { + box-shadow: inset 2px 0 rgba(238, 238, 238, 0.3); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):active, ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #338DD6; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #009688; + color: #fefefe; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(0, 0, 0, 0.26); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(0, 0, 0, 0.26); +} + +.side-panel .view { + background-image: image(#2a2a2a); +} + +.side-panel .view:hover { + background-image: image(#343434); +} + +.side-panel .view:selected { + background-image: image(#338DD6); +} + +.side-panel .view:selected:hover { + background-image: image(#3d93d8); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.06)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-clip: border-box; +} + +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/********* + * To Do * + *********/ +task-list-view taskrow { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -8px; +} + +task-list-view taskrow:hover { + transition: none; +} + +task-list-view taskrow label { + margin: 0 8px; +} + +task-list-view taskrow image.dim-label, task-list-view taskrow .titlebar:not(headerbar) image.subtitle, .titlebar:not(headerbar) task-list-view taskrow image.subtitle, +task-list-view taskrow headerbar image.subtitle, headerbar task-list-view taskrow image.subtitle, task-list-view taskrow .budgie-notification image.notification-body, .budgie-notification task-list-view taskrow image.notification-body, task-list-view taskrow .budgie-switcher image.notification-body, .budgie-switcher task-list-view taskrow image.notification-body { + min-width: 16px; +} + +task-list-view > box > revealer > box > button { + margin: -4px; +} + +task-list-view > box > revealer > box > button .dim-label, task-list-view > box > revealer > box > button label.separator, task-list-view > box > revealer > box > button .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) task-list-view > box > revealer > box > button .subtitle, +task-list-view > box > revealer > box > button headerbar .subtitle, headerbar task-list-view > box > revealer > box > button .subtitle, task-list-view > box > revealer > box > button .budgie-notification .notification-body, .budgie-notification task-list-view > box > revealer > box > button .notification-body, task-list-view > box > revealer > box > button .budgie-switcher .notification-body, .budgie-switcher task-list-view > box > revealer > box > button .notification-body { + opacity: 1; +} + +tasklistview taskrow { + outline: none; +} + +tasklistview taskrow entry, tasklistview taskrow entry:focus, tasklistview taskrow entry:disabled { + box-shadow: none; +} + +tasklistview taskrow image.dim-label, tasklistview taskrow .titlebar:not(headerbar) image.subtitle, .titlebar:not(headerbar) tasklistview taskrow image.subtitle, +tasklistview taskrow headerbar image.subtitle, headerbar tasklistview taskrow image.subtitle, tasklistview taskrow .budgie-notification image.notification-body, .budgie-notification tasklistview taskrow image.notification-body, tasklistview taskrow .budgie-switcher image.notification-body, .budgie-switcher tasklistview taskrow image.notification-body { + min-width: 16px; +} + +tasklistview > box > revealer > box > button { + margin: -4px; +} + +tasklistview > box > revealer > box > button .dim-label, tasklistview > box > revealer > box > button label.separator, tasklistview > box > revealer > box > button .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) tasklistview > box > revealer > box > button .subtitle, +tasklistview > box > revealer > box > button headerbar .subtitle, headerbar tasklistview > box > revealer > box > button .subtitle, tasklistview > box > revealer > box > button .budgie-notification .notification-body, .budgie-notification tasklistview > box > revealer > box > button .notification-body, tasklistview > box > revealer > box > button .budgie-switcher .notification-body, .budgie-switcher tasklistview > box > revealer > box > button .notification-body { + opacity: 1; +} + +/******* + * eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +#eog-thumb-nav button { + -gtk-outline-radius: 4px; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/******** + * gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +list.categories { + background-image: image(#2a2a2a); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 4px; + background-color: rgba(0, 0, 0, 0.6); + color: #fefefe; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 32px; +} + +/********* + * Geary * + *********/ +.geary-titlebar-left:dir(ltr) { + margin-right: 5px; + padding-right: 0; +} + +.geary-titlebar-left:dir(rtl) { + margin-left: 5px; + padding-left: 0; +} + +.geary-titlebar-left > separator { + background-color: rgba(0, 0, 0, 0.05); +} + +.geary-titlebar-right:dir(ltr) { + margin-left: -5px; +} + +.geary-titlebar-right:dir(rtl) { + margin-right: -5px; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, +overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#303030); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 28px; +} + +/************** + * Terminator * + **************/ +.terminator-terminal-window paned > separator { + background-color: #212121; +} + +.terminator-terminal-window notebook.frame { + border-style: none; +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 4px; +} + +/************ + * Chromium * + ************/ +window.background.chromium { + background-color: #303030; +} + +window.background.chromium entry, +window.background.chromium > button:not(.suggested-action):not(.destructive-action) { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +window.background.chromium > button { + box-shadow: none; + background-size: auto; +} + +window.background.chromium > button:hover { + background-image: image(alpha(currentColor, 0.06)); +} + +window.background.chromium > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +window.background.chromium headerbar button:active { + background-size: 1000% 1000%; +} + +window.background.chromium spinner { + color: #338DD6; +} + +window.background.chromium textview { + background-color: #303030; +} + +tooltip.background.chromium { + background-color: #212121; +} + +/*********** + * Firefox * + ***********/ +window.background:not(.csd) > widget > separator { + color: rgba(0, 0, 0, 0.26); +} + +window.background:not(.csd) > widget > scrollbar { + background-clip: border-box; +} + +window.background:not(.csd) > widget > scrollbar, +window.background:not(.csd) > widget > frame > border { + border-color: rgba(0, 0, 0, 0.26); +} + +window.background:not(.csd) > widget > entry, +window.background:not(.csd) > widget > button > button { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: none; +} + +window.background:not(.csd) > widget > entry { + min-height: 30px; +} + +window.background:not(.csd) > widget > entry:focus { + border-color: #338DD6; +} + +window.background:not(.csd) > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +window.background:not(.csd) > widget > button > button:hover { + background-image: image(alpha(currentColor, 0.06)); +} + +window.background:not(.csd) > widget > button > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +window.background:not(.csd) > widget > checkbutton > check:not(:checked), +window.background:not(.csd) > widget > radiobutton > radio:not(:checked) { + color: #757575; +} + +window.background:not(.csd) > widget > checkbutton > check:not(:checked):hover, window.background:not(.csd) > widget > checkbutton > check:not(:checked):active, +window.background:not(.csd) > widget > radiobutton > radio:not(:checked):hover, +window.background:not(.csd) > widget > radiobutton > radio:not(:checked):active { + color: #212121; +} + +window.background:not(.csd) > widget > checkbutton > check:not(:checked):disabled, +window.background:not(.csd) > widget > radiobutton > radio:not(:checked):disabled { + color: rgba(117, 117, 117, 0.5); +} + +window.background:not(.csd) > window > menu, +window.background:not(.csd) > menu > menu { + border: none; +} + +window.background:not(.csd) > widget > menubar { + color: rgba(224, 224, 224, 0.7); +} + +window.background:not(.csd) > widget > menubar:hover { + color: #e0e0e0; +} + +window.background:not(.csd) > widget > menubar:disabled { + color: rgba(224, 224, 224, 0.3); +} + +window.background:not(.csd) > widget > frame { + color: rgba(0, 0, 0, 0.26); +} + +window.background:not(.csd) > widget > checkbutton > check, +window.background:not(.csd) > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +window.background:not(.csd) > window.background > menu > separator { + color: rgba(0, 0, 0, 0.26); +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(0, 0, 0, 0.26); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(0, 0, 0, 0.26); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +/*********** + * Synapse * + ***********/ +box.vertical > widget > widget:selected { + background-color: #338DD6; +} + +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #338DD6; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 4px 4px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; + color: #e0e0e0; +} + +UnityDecoration .top:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +UnityDecoration .menuitem { + color: rgba(224, 224, 224, 0.7); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #e0e0e0; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); +} + +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #010101; + color: #e0e0e0; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(224, 224, 224, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(224, 224, 224, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: #e0e0e0; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #338DD6; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #010101; + font-weight: 500; +} + +.mate-panel-menu-bar:not(.popup) { + color: rgba(254, 254, 254, 0.7); +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.mate-panel-menu-bar button:checked { + background-color: rgba(254, 254, 254, 0.12); +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(254, 254, 254, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(254, 254, 254, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(254, 254, 254, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(254, 254, 254, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #53adf6; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: rgba(254, 254, 254, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: rgba(254, 254, 254, 0.3); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #338DD6; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(0, 0, 0, 0.26); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 5px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #212121; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: rgba(254, 254, 254, 0.12); + color: #fefefe; +} + +#mate-menu { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: #eeeeee; + font-weight: normal; +} + +#mate-menu button label:not(:first-child) { + color: rgba(238, 238, 238, 0.7); +} + +#mate-menu entry { + margin: 0 0 8px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 8px; + padding: 4px; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 4px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #303030; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + background-color: #212121; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border-radius: 4px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.1); +} + +.lock-dialog frame > border { + border-style: none; +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 4px; + background-color: rgba(33, 33, 33, 0.9); + color: #e0e0e0; +} + +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(254, 254, 254, 0.12); +} + +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #338DD6; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 4px; + -gtk-outline-radius: 4px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 5px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); + background-color: #303030; +} + +.budgie-popover .container { + padding: 2px; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row { + padding: 0; +} + +.budgie-popover row:hover { + box-shadow: none; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: #eeeeee; + font-weight: normal; +} + +.budgie-popover:not(.budgie-menu) button.flat:not(.image-button):disabled { + color: rgba(238, 238, 238, 0.5); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.user-menu .container { + padding: 8px; +} + +.budgie-popover.user-menu separator { + margin: 4px 0; +} + +.budgie-popover.sound-popover separator { + margin: 3px 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 8px; +} + +.budgie-popover.places-menu .container { + padding: 8px; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover .container { + padding: 2px 8px 8px; +} + +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(254, 254, 254, 0.12); +} + +.top .workspace-switcher .workspace-layout:dir(ltr), +.bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; +} + +.top .workspace-switcher .workspace-layout:dir(rtl), +.bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; +} + +.left .workspace-switcher .workspace-layout, +.right .workspace-switcher .workspace-layout { + border-top-width: 1px; +} + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(254, 254, 254, 0.12); +} + +.top .workspace-switcher .workspace-item:dir(ltr), +.bottom .workspace-switcher .workspace-item:dir(ltr), .top +.workspace-switcher .workspace-add-button:dir(ltr), +.bottom +.workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; +} + +.top .workspace-switcher .workspace-item:dir(rtl), +.bottom .workspace-switcher .workspace-item:dir(rtl), .top +.workspace-switcher .workspace-add-button:dir(rtl), +.bottom +.workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; +} + +.left .workspace-switcher .workspace-item, +.right .workspace-switcher .workspace-item, .left +.workspace-switcher .workspace-add-button, +.right +.workspace-switcher .workspace-add-button { + border-bottom-width: 1px; +} + +.workspace-switcher .workspace-item { + transition: all 150ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: rgba(254, 254, 254, 0.12); +} + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; +} + +.workspace-switcher .workspace-add-button:active { + background-image: none; +} + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; +} + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 4px; +} + +.budgie-menu.background { + padding: 0; + background-color: #303030; +} + +.budgie-menu scrollbar, +.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-menu entry.search { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-menu .categories:dir(ltr) { + border-bottom-left-radius: 4px; +} + +.budgie-menu .categories:dir(rtl) { + border-bottom-right-radius: 4px; +} + +.budgie-menu button { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + color: #eeeeee; + font-weight: normal; +} + +.budgie-menu button:disabled { + color: rgba(238, 238, 238, 0.5); +} + +.budgie-menu button:checked:disabled { + background-color: #338DD6; +} + +.budgie-menu row { + padding: 0; +} + +.budgie-menu row:hover { + box-shadow: none; +} + +popover.background.user-menu { + padding: 8px; +} + +popover.background.user-menu .content-box { + background-color: transparent; +} + +popover.background.user-menu separator { + margin: 4px 0; +} + +popover.background.user-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +popover.background.places-menu { + padding: 8px; +} + +popover.background.places-menu .name-button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +popover.background.places-menu .name-button.text-button image:dir(ltr) { + margin-right: 3px; +} + +popover.background.places-menu .name-button.text-button image:dir(rtl) { + margin-left: 3px; +} + +popover.background.places-menu .places-section-header > image:dir(ltr) { + margin: 0 -2px 0 5px; +} + +popover.background.places-menu .places-section-header > image:dir(rtl) { + margin: 0 5px 0 -2px; +} + +popover.background.places-menu .places-list { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + background-color: transparent; +} + +popover.background.places-menu row { + padding: 0; + box-shadow: none; + background-image: none; +} + +.budgie-panel { + transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1); + background-color: #010101; + color: rgba(254, 254, 254, 0.7); + font-weight: 500; +} + +.budgie-panel.transparent { + background-color: rgba(0, 0, 0, 0.6); +} + +.budgie-panel button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button:checked { + background-color: rgba(254, 254, 254, 0.12); +} + +.budgie-panel.horizontal button { + padding: 0 4px; +} + +.budgie-panel.vertical button { + padding: 4px 0; +} + +.budgie-panel separator { + background-color: rgba(254, 254, 254, 0.3); +} + +.budgie-panel .alert { + color: #d8645a; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(254, 254, 254, 0.5); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(254, 254, 254, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(254, 254, 254, 0.3); +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher:checked, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, +.top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher:checked, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, +.bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher:checked, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, +.left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher:checked, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, +.right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #303030; +} + +.raven > box { + margin-bottom: -10px; +} + +.raven > stack { + margin-bottom: -10px; +} + +.raven stackswitcher.linked > button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 0; +} + +.raven stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #bc742d 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} + +.raven .raven-header { + min-height: 32px; + padding: 3px; +} + +.raven .raven-header:not(.top) { + margin-top: -6px; +} + +.raven .raven-header.top { + padding: 2px 0; + background-color: #338DD6; + color: #fefefe; +} + +.raven .raven-header.top stackswitcher button { + margin: -4px 0; + min-height: 32px; +} + +.raven .raven-header.top button.image-button:dir(ltr) { + margin-right: 2px; +} + +.raven .raven-header.top button.image-button:dir(rtl) { + margin-left: 2px; +} + +.raven .raven-header.top > image { + margin: 0 8px; +} + +.raven .raven-header.top > label { + margin: 0 -8px; + font-weight: bold; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +.raven viewport.frame .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.26); + background-color: #303030; +} + +.raven .raven-background.frame { + border-style: solid none; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(238, 238, 238, 0.12); +} + +.raven .raven-background grid > label:first-child { + min-height: 32px; +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .raven-header.top + .raven-background { + border-style: none; + background-color: #338DD6; + color: #fefefe; +} + +.raven .raven-header.top + .raven-background stackswitcher button { + margin: -4px 0; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 8px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 4px; + background-color: #338DD6; +} + +.raven-mpris { + background-color: rgba(0, 0, 0, 0.6); + color: #fefefe; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 8px; +} + +.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +.drop-shadow .linked > button { + border-radius: 4px; +} + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 4px; + background-color: #303030; +} + +.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 4px; +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 4px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 4px; +} + +.budgie-polkit-dialog .message { + color: rgba(238, 238, 238, 0.5); +} + +.budgie-polkit-dialog .failure { + color: #d8645a; +} + +.budgie-run-dialog { + background-color: #303030; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 4px 12px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: transparent; +} + +.budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle, +.budgie-run-dialog list headerbar .subtitle, headerbar .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body { + opacity: 1; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.26); +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: rgba(0, 0, 0, 0.3); + color: #fefefe; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(254, 254, 254, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: #fefefe; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(254, 254, 254, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 4px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #303030; +} + +#content_frame { + padding-bottom: 20px; + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame button { + margin: -16px; +} + +#greeter_infobar { + margin-top: -1px; +} + +/******** + * Nemo * + ********/ +.nemo-window .primary-toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.26); +} + +.nemo-window .primary-toolbar entry { + min-height: 0; + margin: 0; +} + +.nemo-window .primary-toolbar button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} + +.nemo-window scrolledwindow.frame { + border-style: none; +} + +.nemo-window scrolledwindow.frame .view:not(:selected) { + background-color: transparent; +} + +.nemo-window infobar { + margin-top: -6px; +} + +.nemo-window .nemo-inactive-pane .view:not(:selected) { + background-color: #2a2a2a; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #eeeeee; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #eeeeee; +/* +widget base background color */ +@define-color theme_bg_color #212121; +/* +text widgets and the like base background color */ +@define-color theme_base_color #303030; +/* +base background color of selections */ +@define-color theme_selected_bg_color #338DD6; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #fefefe; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #212121; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(238, 238, 238, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #2a2a2a; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #eeeeee; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #eeeeee; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #212121; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #303030; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #338DD6; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #fefefe; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(238, 238, 238, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(0, 0, 0, 0.26); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(0, 0, 0, 0.26); +/* +these are pretty self explicative */ +@define-color warning_color #bc742d; +@define-color error_color #d8645a; +@define-color success_color #0095a2; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title #e0e0e0; +@define-color wm_unfocused_title rgba(224, 224, 224, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.1); +@define-color wm_bg #212121; +/* +FIXME this is really an API */ +@define-color content_view_bg #303030; +@define-color placeholder_text_color #b5b5b5; diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop-dark.png Binary files differnew file mode 100644 index 0000000..b749a1e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop-dark@2.png Binary files differnew file mode 100644 index 0000000..b597378 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop.png Binary files differnew file mode 100644 index 0000000..36b717a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop@2.png Binary files differnew file mode 100644 index 0000000..d81198c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-backdrop@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-dark.png Binary files differnew file mode 100644 index 0000000..9504a1c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-dark@2.png Binary files differnew file mode 100644 index 0000000..e6dfdd6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow.png Binary files differnew file mode 100644 index 0000000..f6bb540 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow@2.png Binary files differnew file mode 100644 index 0000000..4323f8e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/box-shadow@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active-dark.png Binary files differnew file mode 100644 index 0000000..a420f6e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active-dark@2.png Binary files differnew file mode 100644 index 0000000..6f44b4f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active.png Binary files differnew file mode 100644 index 0000000..a420f6e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active@2.png Binary files differnew file mode 100644 index 0000000..6f44b4f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-active@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-dark.png Binary files differnew file mode 100644 index 0000000..4f92bea --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..7aea924 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..258a832 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..e7ad3ed --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled.png Binary files differnew file mode 100644 index 0000000..258a832 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled@2.png Binary files differnew file mode 100644 index 0000000..e7ad3ed --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover-dark.png Binary files differnew file mode 100644 index 0000000..ff55332 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..e828d53 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover.png Binary files differnew file mode 100644 index 0000000..ff55332 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover@2.png Binary files differnew file mode 100644 index 0000000..e828d53 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked-hover@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked.png Binary files differnew file mode 100644 index 0000000..4f92bea --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked@2.png Binary files differnew file mode 100644 index 0000000..7aea924 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-checked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active-dark.png Binary files differnew file mode 100644 index 0000000..0bccd52 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active-dark@2.png Binary files differnew file mode 100644 index 0000000..6104924 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active.png Binary files differnew file mode 100644 index 0000000..0bccd52 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active@2.png Binary files differnew file mode 100644 index 0000000..6104924 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-active@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-dark.png Binary files differnew file mode 100644 index 0000000..0e9d89c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..f0035de --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled-dark.png Binary files differnew file mode 100644 index 0000000..832ed6e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..0bd4ee2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..832ed6e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled@2.png Binary files differnew file mode 100644 index 0000000..0bd4ee2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover-dark.png Binary files differnew file mode 100644 index 0000000..7a8b9e9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..90097af --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover.png Binary files differnew file mode 100644 index 0000000..7a8b9e9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover@2.png Binary files differnew file mode 100644 index 0000000..90097af --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed-hover@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed.png Binary files differnew file mode 100644 index 0000000..0e9d89c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed@2.png Binary files differnew file mode 100644 index 0000000..f0035de --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-mixed@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active-dark.png Binary files differnew file mode 100644 index 0000000..cc95cc5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active-dark@2.png Binary files differnew file mode 100644 index 0000000..e43c829 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active.png Binary files differnew file mode 100644 index 0000000..52b725d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active@2.png Binary files differnew file mode 100644 index 0000000..3f352f0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-active@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..6793af8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..5a6fc87 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..f1453d9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..7b622bf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..c3926b6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled@2.png Binary files differnew file mode 100644 index 0000000..8a2d9db --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover-dark.png Binary files differnew file mode 100644 index 0000000..c2fdd28 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..85a2ab1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover.png Binary files differnew file mode 100644 index 0000000..5bbeabf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover@2.png Binary files differnew file mode 100644 index 0000000..05fba55 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked-hover@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..3f8fcb1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked@2.png Binary files differnew file mode 100644 index 0000000..79df63c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/checkbox-unchecked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-dark.png Binary files differnew file mode 100644 index 0000000..1e34e3a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..218c77d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..d5d6f76 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..749560e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled.png Binary files differnew file mode 100644 index 0000000..d5d6f76 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled@2.png Binary files differnew file mode 100644 index 0000000..749560e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked.png Binary files differnew file mode 100644 index 0000000..1e34e3a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked@2.png Binary files differnew file mode 100644 index 0000000..218c77d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-checked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-dark.png Binary files differnew file mode 100644 index 0000000..a8b48dd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..3046ac1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled-dark.png Binary files differnew file mode 100644 index 0000000..8870fba --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..5561822 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..8870fba --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled@2.png Binary files differnew file mode 100644 index 0000000..5561822 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed.png Binary files differnew file mode 100644 index 0000000..a8b48dd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed@2.png Binary files differnew file mode 100644 index 0000000..3046ac1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-mixed@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..9061a04 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..2accc6b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..4953262 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..483ecfa --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..b7f622d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled@2.png Binary files differnew file mode 100644 index 0000000..4899870 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..70015bb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked@2.png Binary files differnew file mode 100644 index 0000000..ae01f29 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-checkbox-unchecked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-dark.png Binary files differnew file mode 100644 index 0000000..b1f1f84 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..1a7ac32 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..efb330f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..e0d1bcb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled.png Binary files differnew file mode 100644 index 0000000..efb330f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled@2.png Binary files differnew file mode 100644 index 0000000..e0d1bcb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked.png Binary files differnew file mode 100644 index 0000000..b1f1f84 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked@2.png Binary files differnew file mode 100644 index 0000000..1a7ac32 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-checked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-dark.png Binary files differnew file mode 100644 index 0000000..26ca291 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..f81db1f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled-dark.png Binary files differnew file mode 100644 index 0000000..b6a79b9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..04d10e1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..b6a79b9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled@2.png Binary files differnew file mode 100644 index 0000000..04d10e1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed.png Binary files differnew file mode 100644 index 0000000..26ca291 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed@2.png Binary files differnew file mode 100644 index 0000000..f81db1f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-mixed@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..f5f95cc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..bf5ba07 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..34ab593 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..051fa44 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..865b00d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled@2.png Binary files differnew file mode 100644 index 0000000..0726f41 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked.png Binary files differnew file mode 100644 index 0000000..6ca5de6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked@2.png Binary files differnew file mode 100644 index 0000000..02e8e74 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/menu-radio-unchecked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active-dark.png Binary files differnew file mode 100644 index 0000000..8f6040c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active-dark@2.png Binary files differnew file mode 100644 index 0000000..b04a11d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active.png Binary files differnew file mode 100644 index 0000000..8f6040c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active@2.png Binary files differnew file mode 100644 index 0000000..b04a11d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-active@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-dark.png Binary files differnew file mode 100644 index 0000000..dd1bd6d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..ffb5cb2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..b1a8f06 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..2d25f14 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled.png Binary files differnew file mode 100644 index 0000000..b1a8f06 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled@2.png Binary files differnew file mode 100644 index 0000000..2d25f14 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover-dark.png Binary files differnew file mode 100644 index 0000000..8af5e3b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..de3c383 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover.png Binary files differnew file mode 100644 index 0000000..8af5e3b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover@2.png Binary files differnew file mode 100644 index 0000000..de3c383 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked-hover@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked.png Binary files differnew file mode 100644 index 0000000..dd1bd6d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked@2.png Binary files differnew file mode 100644 index 0000000..ffb5cb2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-checked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active-dark.png Binary files differnew file mode 100644 index 0000000..a5b5c11 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active-dark@2.png Binary files differnew file mode 100644 index 0000000..ebe2067 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active.png Binary files differnew file mode 100644 index 0000000..a5b5c11 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active@2.png Binary files differnew file mode 100644 index 0000000..ebe2067 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-active@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-dark.png Binary files differnew file mode 100644 index 0000000..adc2460 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-dark@2.png Binary files differnew file mode 100644 index 0000000..a9d87d3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled-dark.png Binary files differnew file mode 100644 index 0000000..75da869 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..a33daac --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled.png Binary files differnew file mode 100644 index 0000000..75da869 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled@2.png Binary files differnew file mode 100644 index 0000000..a33daac --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover-dark.png Binary files differnew file mode 100644 index 0000000..8093a0d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..b001093 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover.png Binary files differnew file mode 100644 index 0000000..8093a0d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover@2.png Binary files differnew file mode 100644 index 0000000..b001093 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed-hover@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed.png Binary files differnew file mode 100644 index 0000000..adc2460 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed@2.png Binary files differnew file mode 100644 index 0000000..a9d87d3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-mixed@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active-dark.png Binary files differnew file mode 100644 index 0000000..1966c83 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active-dark@2.png Binary files differnew file mode 100644 index 0000000..8afb5a5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active.png Binary files differnew file mode 100644 index 0000000..4308711 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active@2.png Binary files differnew file mode 100644 index 0000000..e5dc111 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-active@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..3eaa832 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..bfe7b3e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled-dark.png Binary files differnew file mode 100644 index 0000000..7a084c0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..53eea8b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled.png Binary files differnew file mode 100644 index 0000000..c6a61b3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled@2.png Binary files differnew file mode 100644 index 0000000..7122b23 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover-dark.png Binary files differnew file mode 100644 index 0000000..9f21a59 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover-dark@2.png Binary files differnew file mode 100644 index 0000000..48b4145 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover.png Binary files differnew file mode 100644 index 0000000..8f566e8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover@2.png Binary files differnew file mode 100644 index 0000000..8aaa275 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked-hover@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked.png Binary files differnew file mode 100644 index 0000000..d08447e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked@2.png Binary files differnew file mode 100644 index 0000000..086a516 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/radio-unchecked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-checked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-checked-symbolic.svg new file mode 100644 index 0000000..8067c11 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-mixed-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..76e69c9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10H7v-2h10v2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-unchecked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-unchecked-symbolic.svg new file mode 100644 index 0000000..97dbb89 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-checked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-checked-symbolic.svg new file mode 100644 index 0000000..7b82c3d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-checked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-mixed-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-mixed-symbolic.svg new file mode 100644 index 0000000..55d8916 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-unchecked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-unchecked-symbolic.svg new file mode 100644 index 0000000..6d97559 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-checked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-checked-symbolic.svg new file mode 100644 index 0000000..7ad27d5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-checked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm10.6 3.59L14.01 5l-8 8-4-4 1.41-1.41 2.59 2.59 6.59-6.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-mixed-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-mixed-symbolic.svg new file mode 100644 index 0000000..0f80850 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-mixed-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm2 7h8v2H4V7z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-unchecked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-unchecked-symbolic.svg new file mode 100644 index 0000000..bfe0a56 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-checkbox-unchecked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm0 2h12v12H2V2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-checked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-checked-symbolic.svg new file mode 100644 index 0000000..04a9a21 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-checked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 2a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6zm0 2a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-mixed-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-mixed-symbolic.svg new file mode 100644 index 0000000..31aac91 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-mixed-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 2a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6zM4 7v2h8V7H4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-unchecked-symbolic.svg b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-unchecked-symbolic.svg new file mode 100644 index 0000000..f870381 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scalable/small-radio-unchecked-symbolic.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> + <path d="M8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 2a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-dark.png Binary files differnew file mode 100644 index 0000000..5392426 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-dark@2.png Binary files differnew file mode 100644 index 0000000..b8246b8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled-dark.png Binary files differnew file mode 100644 index 0000000..03fad80 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..b0e418f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled.png Binary files differnew file mode 100644 index 0000000..ea073f0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled@2.png Binary files differnew file mode 100644 index 0000000..2d4d484 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider.png Binary files differnew file mode 100644 index 0000000..5392426 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider@2.png Binary files differnew file mode 100644 index 0000000..b8246b8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-after-slider@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-dark.png Binary files differnew file mode 100644 index 0000000..72d2412 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-dark@2.png Binary files differnew file mode 100644 index 0000000..aaa7ca2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled-dark.png Binary files differnew file mode 100644 index 0000000..be8fc99 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..cb93384 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled.png Binary files differnew file mode 100644 index 0000000..8b05408 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled@2.png Binary files differnew file mode 100644 index 0000000..2382cfc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider.png Binary files differnew file mode 100644 index 0000000..72d2412 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider@2.png Binary files differnew file mode 100644 index 0000000..aaa7ca2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-horz-marks-before-slider@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-dark.png Binary files differnew file mode 100644 index 0000000..f6c748a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-dark@2.png Binary files differnew file mode 100644 index 0000000..e99c378 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled-dark.png Binary files differnew file mode 100644 index 0000000..373b64b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..bc97bac --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled.png Binary files differnew file mode 100644 index 0000000..aed7402 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled@2.png Binary files differnew file mode 100644 index 0000000..3a1031a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider.png Binary files differnew file mode 100644 index 0000000..f6c748a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider@2.png Binary files differnew file mode 100644 index 0000000..e99c378 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-slider@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-dark.png Binary files differnew file mode 100644 index 0000000..81f70f5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-dark@2.png Binary files differnew file mode 100644 index 0000000..d18f62a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled-dark.png Binary files differnew file mode 100644 index 0000000..33a925a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..0448651 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled.png Binary files differnew file mode 100644 index 0000000..8bfab90 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled@2.png Binary files differnew file mode 100644 index 0000000..6b8fb9b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider.png Binary files differnew file mode 100644 index 0000000..81f70f5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider@2.png Binary files differnew file mode 100644 index 0000000..d18f62a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-after-slider@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-dark.png Binary files differnew file mode 100644 index 0000000..200fbc9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-dark@2.png Binary files differnew file mode 100644 index 0000000..d63b473 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled-dark.png Binary files differnew file mode 100644 index 0000000..697134d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled-dark@2.png Binary files differnew file mode 100644 index 0000000..b0bd8c2 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled.png Binary files differnew file mode 100644 index 0000000..45742a8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled@2.png Binary files differnew file mode 100644 index 0000000..6458b64 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider-disabled@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider.png Binary files differnew file mode 100644 index 0000000..200fbc9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider@2.png Binary files differnew file mode 100644 index 0000000..d63b473 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/scale-vert-marks-before-slider@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked-dark.png Binary files differnew file mode 100644 index 0000000..37c9678 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked-dark@2.png Binary files differnew file mode 100644 index 0000000..0827032 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked.png Binary files differnew file mode 100644 index 0000000..37c9678 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked@2.png Binary files differnew file mode 100644 index 0000000..0827032 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-checked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked-dark.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked-dark.png Binary files differnew file mode 100644 index 0000000..c2ef7fc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked-dark.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked-dark@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked-dark@2.png Binary files differnew file mode 100644 index 0000000..ead496a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked-dark@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked.png Binary files differnew file mode 100644 index 0000000..3c8beba --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked.png diff --git a/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked@2.png b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked@2.png Binary files differnew file mode 100644 index 0000000..fb4ddc1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/gtk-assets/selectionmode-checkbox-unchecked@2.png diff --git a/dotfiles/.themes/oomox-materia-dark/index.theme b/dotfiles/.themes/oomox-materia-dark/index.theme new file mode 100755 index 0000000..b8e0c04 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Materia-dark-compact +Comment=A Material Design theme +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Materia-dark-compact +MetacityTheme=Materia-dark-compact +IconTheme=Adwaita +CursorTheme=Adwaita +CursorSize=24 diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/button.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/button.svg new file mode 100644 index 0000000..9a6896d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/button.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <circle cx="12" cy="12" r="12" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/close.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/close.svg new file mode 100644 index 0000000..00de643 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/close.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="m9.41 8l-1.41 1.41 2.59 2.59-2.59 2.59 1.41 1.41 2.59-2.59 2.59 2.59 1.41-1.41-2.59-2.59 2.59-2.59-1.41-1.41-2.59 2.59-2.59-2.59z" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/maximize.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/maximize.svg new file mode 100644 index 0000000..f371d74 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/maximize.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/menu.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/menu.svg new file mode 100644 index 0000000..15d241f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/menu.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <circle cx="12" cy="12" r="2" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/minimize.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/minimize.svg new file mode 100644 index 0000000..8958f1f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/minimize.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="m8 14h8v2h-8z" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/shade.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/shade.svg new file mode 100644 index 0000000..e2702dd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/shade.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="m6 14 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/unmaximize.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/unmaximize.svg new file mode 100644 index 0000000..cebc060 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/unmaximize.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/unshade.svg b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/unshade.svg new file mode 100644 index 0000000..1fe3cb0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/assets/unshade.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> + <path d="m18 10-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z" fill="#808080"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/metacity-theme-2.xml b/dotfiles/.themes/oomox-materia-dark/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..e2058cc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/metacity-theme-2.xml @@ -0,0 +1,618 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>oomox-materia-dark</name> + <author>nana-4</author> + <copyright>GPL</copyright> + <date>2018</date> + <description>oomox-materia-dark Metacity theme</description> +</info> + + +<!-- meaningful constants --> + +<constant name="C_titlebar" value="#212121"/> +<constant name="C_highlight" value="blend/#212121/#eeeeee/0.1"/> +<constant name="C_title_focused" value="#eeeeee"/> +<constant name="C_title_unfocused" value="blend/#212121/#eeeeee/0.7"/> + + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="2" rounded_top_right="2"> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> + <distance name="bottom_height" value="1"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="13"/> + <border name="title_border" left="10" right="10" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <aspect_ratio name="button" value="1"/> +</frame_geometry> + +<frame_geometry name="max" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="0"/> + <distance name="right_width" value="0"/> + <distance name="bottom_height" value="0"/> +</frame_geometry> + +<frame_geometry name="tiled_left" parent="max"> + <distance name="right_width" value="0"/> +</frame_geometry> + +<frame_geometry name="tiled_right" parent="max"> + <distance name="left_width" value="0"/> +</frame_geometry> + +<frame_geometry name="nobuttons" hide_buttons="true" parent="normal"> +</frame_geometry> + +<frame_geometry name="modal" parent="normal"> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal"> + <distance name="title_vertical_pad" value="8"/> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> + <distance name="bottom_height" value="1"/> + <distance name="title_vertical_pad" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="0"/> + <distance name="right_width" value="0"/> + <distance name="bottom_height" value="0"/> + <distance name="title_vertical_pad" value="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="attached" hide_buttons="true" rounded_bottom_left="2" rounded_bottom_right="2" parent="normal"> + <distance name="title_vertical_pad" value="4"/> +</frame_geometry> + + +<!-- drawing operations --> + +<!-- title --> +<draw_ops name="title_focused"> + <title + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_focused"/> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_unfocused"/> +</draw_ops> + +<!-- window decorations --> +<draw_ops name="entire_background_focused"> + <rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true"/> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <include name="entire_background_focused"/> +</draw_ops> + +<draw_ops name="highlight"> + <line color="C_highlight" x1="2" y1="0" x2="width - 3" y2="0"/> + <arc color="C_highlight" x="0 - 1" y="0" width="5" height="5" start_angle="270" extent_angle="90"/> + <arc color="C_highlight" x="width - 5" y="0" width="5" height="5" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <include name="entire_background_focused"/> + <include name="highlight"/> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <include name="entire_background_unfocused"/> + <include name="highlight"/> +</draw_ops> + + +<!-- button icons --> + +<!-- close --> +<draw_ops name="close_focused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <include name="close_focused_prelight"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <include name="close_unfocused_prelight"/> +</draw_ops> + +<!-- maximize --> +<draw_ops name="maximize_focused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <include name="maximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <include name="maximize_unfocused_prelight"/> +</draw_ops> + +<!-- unmaximize --> +<draw_ops name="unmaximize_focused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_pressed"> + <include name="unmaximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_pressed"> + <include name="unmaximize_unfocused_prelight"/> +</draw_ops> + +<!-- minimize --> +<draw_ops name="minimize_focused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <include name="minimize_focused_prelight"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <include name="minimize_unfocused_prelight"/> +</draw_ops> + +<!-- menu --> +<draw_ops name="menu_focused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_pressed"> + <include name="menu_focused_prelight"/> +</draw_ops> + +<draw_ops name="menu_unfocused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_pressed"> + <include name="menu_unfocused_prelight"/> +</draw_ops> + +<!-- shade --> +<draw_ops name="shade_focused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_pressed"> + <include name="shade_focused_prelight"/> +</draw_ops> + +<draw_ops name="shade_unfocused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_pressed"> + <include name="shade_unfocused_prelight"/> +</draw_ops> + +<!-- unshade --> +<draw_ops name="unshade_focused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_pressed"> + <include name="unshade_focused_prelight"/> +</draw_ops> + +<draw_ops name="unshade_unfocused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_pressed"> + <include name="unshade_unfocused_prelight"/> +</draw_ops> + +<!-- appmenu --> +<constant name="D_appmenu_icon_size" value="16"/> + +<draw_ops name="appmenu_icon_focused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size"/> +</draw_ops> + +<draw_ops name="appmenu_focused"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_prelight"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_pressed"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_icon_unfocused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size" + alpha="0.7"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_prelight"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_pressed"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + + +<!-- button backgrounds --> + +<draw_ops name="button_focused"> +</draw_ops> + +<draw_ops name="button_focused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.12" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_focused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.24" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_unfocused"> +</draw_ops> + +<draw_ops name="button_unfocused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.12" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="button_unfocused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.24" colorize="C_title_unfocused"/> +</draw_ops> + + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused"/> + <piece position="titlebar" draw_ops="titlebar_focused"/> + <piece position="title" draw_ops="title_focused"/> + <button function="close" state="normal" draw_ops="close_focused"/> + <button function="close" state="prelight" draw_ops="close_focused_prelight"/> + <button function="close" state="pressed" draw_ops="close_focused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_focused"/> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_focused"/> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_focused"/> + <button function="menu" state="prelight" draw_ops="menu_focused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_focused"/> + <button function="shade" state="prelight" draw_ops="shade_focused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_focused"/> + <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_focused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_focused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_unfocused"/> + <piece position="title" draw_ops="title_unfocused"/> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused"/> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_unfocused"/> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_unfocused"/> + <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_focused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight"/> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_unfocused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_unfocused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight"/> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="dialog_focused" geometry="nobuttons" parent="normal_focused"> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="nobuttons" parent="normal_unfocused"> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal" parent="normal_focused"> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal" parent="normal_unfocused"> +</frame_style> + +<frame_style name="utility_focused" geometry="small" parent="normal_focused"> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small" parent="normal_unfocused"> +</frame_style> + +<frame_style name="border_focused" geometry="border" parent="normal_focused"> +</frame_style> + +<frame_style name="border_unfocused" geometry="border" parent="normal_unfocused"> +</frame_style> + +<frame_style name="borderless_focused" geometry="borderless" parent="normal_focused"> +</frame_style> + +<frame_style name="borderless_unfocused" geometry="borderless" parent="normal_unfocused"> +</frame_style> + +<frame_style name="attached_focused" geometry="attached" parent="modal_dialog_focused"> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached" parent="modal_dialog_unfocused"> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless_focused"/> + <frame focus="no" state="maximized" style="borderless_unfocused"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/dotfiles/.themes/oomox-materia-dark/metacity-1/metacity-theme-3.xml b/dotfiles/.themes/oomox-materia-dark/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..fe716fb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/metacity-1/metacity-theme-3.xml @@ -0,0 +1,645 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>oomox-materia-dark</name> + <author>nana-4</author> + <copyright>GPL</copyright> + <date>2018</date> + <description>oomox-materia-dark Metacity theme</description> +</info> + + +<!-- meaningful constants --> + +<constant name="C_titlebar" value="gtk:custom(wm_bg,gtk:bg[NORMAL])"/> +<constant name="C_highlight" value="gtk:custom(wm_highlight,gtk:base[NORMAL])"/> +<constant name="C_title_focused" value="gtk:custom(wm_title,gtk:fg[NORMAL])"/> +<constant name="C_title_unfocused" value="gtk:custom(wm_unfocused_title,gtk:fg[INSENSITIVE])"/> + + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="2" rounded_top_right="2"> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> + <distance name="bottom_height" value="1"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="13"/> + <border name="title_border" left="10" right="10" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <aspect_ratio name="button" value="1"/> +</frame_geometry> + +<frame_geometry name="max" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="0"/> + <distance name="right_width" value="0"/> + <distance name="bottom_height" value="0"/> +</frame_geometry> + +<frame_geometry name="tiled_left" parent="max"> + <distance name="right_width" value="0"/> +</frame_geometry> + +<frame_geometry name="tiled_right" parent="max"> + <distance name="left_width" value="0"/> +</frame_geometry> + +<frame_geometry name="nobuttons" hide_buttons="true" parent="normal"> +</frame_geometry> + +<frame_geometry name="modal" parent="normal"> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal"> + <distance name="title_vertical_pad" value="8"/> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> + <distance name="bottom_height" value="1"/> + <distance name="title_vertical_pad" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="0"/> + <distance name="right_width" value="0"/> + <distance name="bottom_height" value="0"/> + <distance name="title_vertical_pad" value="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="attached" hide_buttons="true" rounded_bottom_left="2" rounded_bottom_right="2" parent="normal"> + <distance name="title_vertical_pad" value="4"/> +</frame_geometry> + + +<!-- drawing operations --> + +<!-- title --> +<draw_ops name="title_focused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_focused"/> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + ellipsize_width="width" + color="C_title_focused"/> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2))" + color="C_title_unfocused"/> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2))" + ellipsize_width="width" + color="C_title_unfocused"/> +</draw_ops> + +<!-- window decorations --> +<draw_ops name="entire_background_focused"> + <rectangle color="C_titlebar" x="0" y="0" width="width" height="height" filled="true"/> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <include name="entire_background_focused"/> +</draw_ops> + +<draw_ops name="highlight"> + <line color="C_highlight" x1="2" y1="0" x2="width - 3" y2="0"/> + <arc color="C_highlight" x="0 - 1" y="0" width="5" height="5" start_angle="270" extent_angle="90"/> + <arc color="C_highlight" x="width - 5" y="0" width="5" height="5" start_angle="0" extent_angle="90"/> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <include name="entire_background_focused"/> + <include name="highlight"/> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <include name="entire_background_unfocused"/> + <include name="highlight"/> +</draw_ops> + + +<!-- button icons --> + +<!-- close --> +<draw_ops name="close_focused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <include name="close_focused_prelight"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="assets/close.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <include name="close_unfocused_prelight"/> +</draw_ops> + +<!-- maximize --> +<draw_ops name="maximize_focused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <include name="maximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="assets/maximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <include name="maximize_unfocused_prelight"/> +</draw_ops> + +<!-- unmaximize --> +<draw_ops name="unmaximize_focused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unmaximize_focused_pressed"> + <include name="unmaximize_focused_prelight"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_prelight"> + <image filename="assets/unmaximize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unmaximize_unfocused_pressed"> + <include name="unmaximize_unfocused_prelight"/> +</draw_ops> + +<!-- minimize --> +<draw_ops name="minimize_focused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <include name="minimize_focused_prelight"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="assets/minimize.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <include name="minimize_unfocused_prelight"/> +</draw_ops> + +<!-- menu --> +<draw_ops name="menu_focused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="menu_focused_pressed"> + <include name="menu_focused_prelight"/> +</draw_ops> + +<draw_ops name="menu_unfocused"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_prelight"> + <image filename="assets/menu.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="menu_unfocused_pressed"> + <include name="menu_unfocused_prelight"/> +</draw_ops> + +<!-- shade --> +<draw_ops name="shade_focused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="shade_focused_pressed"> + <include name="shade_focused_prelight"/> +</draw_ops> + +<draw_ops name="shade_unfocused"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_prelight"> + <image filename="assets/shade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="shade_unfocused_pressed"> + <include name="shade_unfocused_prelight"/> +</draw_ops> + +<!-- unshade --> +<draw_ops name="unshade_focused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="unshade_focused_pressed"> + <include name="unshade_focused_prelight"/> +</draw_ops> + +<draw_ops name="unshade_unfocused"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.7" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_prelight"> + <image filename="assets/unshade.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="1" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="unshade_unfocused_pressed"> + <include name="unshade_unfocused_prelight"/> +</draw_ops> + +<!-- appmenu --> +<constant name="D_appmenu_icon_size" value="16"/> + +<draw_ops name="appmenu_icon_focused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size"/> +</draw_ops> + +<draw_ops name="appmenu_focused"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_prelight"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_focused_pressed"> + <include name="appmenu_icon_focused"/> +</draw_ops> + +<draw_ops name="appmenu_icon_unfocused"> + <icon + x="(width - D_appmenu_icon_size) / 2" y="(height - D_appmenu_icon_size) / 2" + width="D_appmenu_icon_size" height="D_appmenu_icon_size" + alpha="0.7"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_prelight"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + +<draw_ops name="appmenu_unfocused_pressed"> + <include name="appmenu_icon_unfocused"/> +</draw_ops> + + +<!-- button backgrounds --> + +<draw_ops name="button_focused"> +</draw_ops> + +<draw_ops name="button_focused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.12" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_focused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.24" colorize="C_title_focused"/> +</draw_ops> + +<draw_ops name="button_unfocused"> +</draw_ops> + +<draw_ops name="button_unfocused_prelight"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.12" colorize="C_title_unfocused"/> +</draw_ops> + +<draw_ops name="button_unfocused_pressed"> + <image filename="assets/button.svg" x="(width - object_width) / 2" y="(height - object_height) / 2" width="object_width" height="object_height" alpha="0.24" colorize="C_title_unfocused"/> +</draw_ops> + + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused"/> + <piece position="titlebar" draw_ops="titlebar_focused"/> + <piece position="title" draw_ops="title_focused"/> + <button function="close" state="normal" draw_ops="close_focused"/> + <button function="close" state="prelight" draw_ops="close_focused_prelight"/> + <button function="close" state="pressed" draw_ops="close_focused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_focused"/> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_focused"/> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_focused"/> + <button function="menu" state="prelight" draw_ops="menu_focused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed"/> + <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_focused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_focused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_focused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_focused"/> + <button function="shade" state="prelight" draw_ops="shade_focused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_focused"/> + <button function="unshade" state="prelight" draw_ops="unshade_focused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_focused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_focused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_focused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_focused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_focused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused"/> + <piece position="titlebar" draw_ops="titlebar_unfocused"/> + <piece position="title" draw_ops="title_unfocused"/> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused"/> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight"/> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed"/> + <button version=">= 3.5" function="appmenu" state="normal" draw_ops="appmenu_unfocused"/> + <button version=">= 3.5" function="appmenu" state="prelight" draw_ops="appmenu_unfocused_prelight"/> + <button version=">= 3.5" function="appmenu" state="pressed" draw_ops="appmenu_unfocused_pressed"/> + <button function="shade" state="normal" draw_ops="shade_unfocused"/> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight"/> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed"/> + <button function="unshade" state="normal" draw_ops="unshade_unfocused"/> + <button function="unshade" state="prelight" draw_ops="unshade_unfocused_prelight"/> + <button function="unshade" state="pressed" draw_ops="unshade_unfocused_pressed"/> + + <button function="left_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="left_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="left_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + <button function="right_middle_background" state="normal" draw_ops="button_unfocused"/> + <button function="right_middle_background" state="prelight" draw_ops="button_unfocused_prelight"/> + <button function="right_middle_background" state="pressed" draw_ops="button_unfocused_pressed"/> + + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_focused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_focused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_focused_prelight"/> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> + <button function="maximize" state="normal" draw_ops="unmaximize_unfocused"/> + <button function="maximize" state="pressed" draw_ops="unmaximize_unfocused_pressed"/> + <button function="maximize" state="prelight" draw_ops="unmaximize_unfocused_prelight"/> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right" parent="normal_focused"> + <piece position="titlebar" draw_ops="entire_background_focused"/> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right" parent="normal_unfocused"> + <piece position="titlebar" draw_ops="entire_background_unfocused"/> +</frame_style> + +<frame_style name="dialog_focused" geometry="nobuttons" parent="normal_focused"> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="nobuttons" parent="normal_unfocused"> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal" parent="normal_focused"> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal" parent="normal_unfocused"> +</frame_style> + +<frame_style name="utility_focused" geometry="small" parent="normal_focused"> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small" parent="normal_unfocused"> +</frame_style> + +<frame_style name="border_focused" geometry="border" parent="normal_focused"> +</frame_style> + +<frame_style name="border_unfocused" geometry="border" parent="normal_unfocused"> +</frame_style> + +<frame_style name="borderless_focused" geometry="borderless" parent="normal_focused"> +</frame_style> + +<frame_style name="borderless_unfocused" geometry="borderless" parent="normal_unfocused"> +</frame_style> + +<frame_style name="attached_focused" geometry="attached" parent="modal_dialog_focused"> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached" parent="modal_dialog_unfocused"> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button version=">= 3.5" function="appmenu" state="normal"><draw_ops></draw_ops></button> + <button version=">= 3.5" function="appmenu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless_focused"/> + <frame focus="no" state="maximized" style="borderless_unfocused"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused.svg new file mode 100644 index 0000000..5263d53 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused_prelight.svg new file mode 100644 index 0000000..92a9a59 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused_pressed.svg new file mode 100644 index 0000000..c786b9c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused.svg new file mode 100644 index 0000000..eeaefa5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.5"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused_prelight.svg new file mode 100644 index 0000000..0c03497 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused_pressed.svg new file mode 100644 index 0000000..449b327 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/close_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused.svg new file mode 100644 index 0000000..1ed3fc7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused_prelight.svg new file mode 100644 index 0000000..3d414a1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused_pressed.svg new file mode 100644 index 0000000..8afea42 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused.svg new file mode 100644 index 0000000..b509a14 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.5"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused_prelight.svg new file mode 100644 index 0000000..8fc4a18 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused_pressed.svg new file mode 100644 index 0000000..e840f26 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/maximize_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused.svg new file mode 100644 index 0000000..0ad768b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused_prelight.svg new file mode 100644 index 0000000..545f0b8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused_pressed.svg new file mode 100644 index 0000000..722bb0a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused.svg new file mode 100644 index 0000000..4311453 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.5"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused_prelight.svg new file mode 100644 index 0000000..08db545 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused_pressed.svg new file mode 100644 index 0000000..95d7fa5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/minimize_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused.svg new file mode 100644 index 0000000..30f153b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused_prelight.svg new file mode 100644 index 0000000..da23a12 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused_pressed.svg new file mode 100644 index 0000000..8cea3ed --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_focused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused.svg new file mode 100644 index 0000000..c569d92 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.5"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused_prelight.svg new file mode 100644 index 0000000..ed22f54 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused_pressed.svg new file mode 100644 index 0000000..2bd2402 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/assets/unmaximize_unfocused_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close.svg b/dotfiles/.themes/oomox-materia-dark/unity/close.svg new file mode 120000 index 0000000..b73ba6c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close.svg @@ -0,0 +1 @@ +assets/close_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_dash.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_dash.svg new file mode 100644 index 0000000..5263d53 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_dash_disabled.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_dash_disabled.svg new file mode 100644 index 0000000..136a66b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_dash_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_dash_prelight.svg new file mode 100644 index 0000000..92a9a59 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_dash_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_dash_pressed.svg new file mode 100644 index 0000000..c786b9c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8.41 7l-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59-3.59-3.59z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_focused_normal.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_focused_normal.svg new file mode 120000 index 0000000..b73ba6c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_focused_normal.svg @@ -0,0 +1 @@ +assets/close_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_focused_prelight.svg new file mode 120000 index 0000000..4357436 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_focused_prelight.svg @@ -0,0 +1 @@ +assets/close_focused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_focused_pressed.svg new file mode 120000 index 0000000..6a8cf1d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_focused_pressed.svg @@ -0,0 +1 @@ +assets/close_focused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused.svg new file mode 120000 index 0000000..47aee7d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused.svg @@ -0,0 +1 @@ +assets/close_unfocused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused_prelight.svg new file mode 120000 index 0000000..8e6a956 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/close_unfocused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused_pressed.svg new file mode 120000 index 0000000..b59544a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/close_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/close_unfocused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/dash-widgets.json b/dotfiles/.themes/oomox-materia-dark/unity/dash-widgets.json new file mode 100644 index 0000000..80a05b1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/dash-widgets.json @@ -0,0 +1,162 @@ +{ + "stock-icons" : { + "checkmark" : ["/usr/share/icons/unity/checkmark.svg", "32px", "32px"], + "cross" : ["/usr/share/icons/unity/cross.svg", "32px", "32px"], + "grid-view" : ["/usr/share/icons/unity/grid-view.svg", "32px", "32px"], + "flow-view" : ["/usr/share/icons/unity/flow-view.svg", "32px", "32px"], + "star" : ["/usr/share/icons/unity/star.svg", "32px", "32px"], + "triangle" : ["/usr/share/icons/unity/curved-triangle.svg", "32px", "32px"], + "bag" : ["/usr/share/icons/unity/bag.svg", "32px", "32px"], + "next" : ["/usr/share/icons/unity/next.svg", "32px", "32px"], + "prev" : ["/usr/share/icons/unity/prev.svg", "32px", "32px"], + "play" : ["/usr/share/icons/unity/play.svg", "32px", "32px"] + }, + + "regular-text" : { + "text-color" : "#ffffff", + "text-opacity" : 1.0, + "text-size" : 13.0, + "text-mode" : "normal", + "text-weight" : "regular" + }, + + "comments": { + "states" : ["ACTIVE", "NORMAL","PRELIGHT","SELECTED","INSENSITIVE"] + }, + + "button-icon": { + "color" : ["#ffffff", "#eeeeee", "#eeeeee", "#eeeeee", "#eeeeee"], + "opacity" : [ 1.0, 1.0, 1.0, 0.8, 0.8], + "overlay-opacity": [ 0.30, 0.48, 0.48, 0.45, 0.45], + "overlay-mode" : [ "normal","multiply", "multiply", "normal", "normal"], + "blur-size" : [ 5, 0, 0, 0, 0] + }, + + "icon-only" : { + "color" : "#123456", + "opacity" : 1.0, + "overlay-opacity": 0.2, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "lens-nav-bar" : { + "icon-height" : 20, + "icon-gap" : 40 + }, + + "button-label": { + "border-opacity" : [ 0.8, 0.13, 0.13, 0.13, 0.13], + "border-color" : ["#ffffff", "#eeeeee", "#eeeeee", "#eeeeee", "#eeeeee"], + "border-size" : [ 2.0, 1.0, 1.0, 0.5, 0.5], + "border-radius" : 4.0, + "text-size" : 1.0, + "text-color" : ["#ffffff", "#ffffff", "#ffffff", "#ffffff", "#ffffff"], + "text-opacity" : [ 1.0, 1.0, 1.0, 1.0, 1.0], + "fill-color" : ["#eeeeee", "#212121", "#212121", "#212121", "#212121"], + "fill-opacity" : [ 0.13, 0.0, 0.0, 0.0, 0.0], + "overlay-opacity": [ 0.1, 0.1, 0.1, 0.0, 0.0], + "overlay-mode" : [ "normal", "normal", "normal", "normal", "normal"], + "blur-size" : [ 1, 1, 1, 0, 0] + }, + + "track-view" : { + "line-gap" : 26.0, + "heading-list-gap" : 30, + "left-padding" : 20 + }, + + "row-caption" : { + "main-text-color" : "#ffffff", + "main-text-opacity" : 1.0, + "main-text-size" : 17.0, + "main-text-weight" : "regular", + "sub-text-color" : "#ffffff", + "sub-text-opacity" : 0.5, + "sub-text-size" : 13.0, + "sub-text-weight" : "regular", + "icon-main-gap" : 10, + "main-sub-gap" : 15, + "sub-arrow-gap" : 10 + }, + + "preview-heading-small" : { + "main-title-size" : 23.0, + "main-title-color" : "#ffffff", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#ffffff", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "preview-heading" : { + "main-title-size" : 30.0, + "main-title-color" : "#ffffff", + "main-title-opacity" : 1.0, + "main-title-mode" : "normal", + "main-title-weight" : "regular", + "sub-title-size" : 17.0, + "sub-title-color" : "#ffffff", + "sub-title-opacity" : 1.0, + "sub-title-mode" : "normal", + "sub-title-weight" : "regular", + "main-sub-gap" : 15, + "padding" : 10 + }, + + "scrollbar" : { + "color" : "#fff", + "opacity" : 1.0, + "size" : 8, + "buttons-size" : 0, + "corner-radius" : 3 + }, + + "scrollbar-overlay": { + "color" : "#fff", + "opacity" : 1.0, + "size" : 3, + "corner-radius" : 1.5 + }, + + "scrollbar-track": { + "color" : "#fff", + "opacity" : 0.4 + }, + + "filter-pane" : { + "width" : 330, + "title-size" : 17.0, + "title-color" : "#ffffff", + "title-opacity" : 1.0, + "title-mode" : "normal", + "title-style" : "bold", + "title-arrow-gap" : 10, + "button-height" : 30, + "border-size" : 1 + }, + + "separator" : { + "size" : 1.0, + "color" : "#ffffff", + "opacity" : 0.15, + "overlay-opacity": 0.47, + "overlay-mode" : "normal", + "blur-size" : 6 + }, + + "filter-caption" : { + "text-size" : 17, + "text-color" : "#ffffff", + "text-opacity" : 1.0, + "text-mode" : "normal", + "text-weight" : "bold", + "text-arrow-gap" : 10 + } +} diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_btt_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_btt_19.svg new file mode 100644 index 0000000..e876a32 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_btt_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="#eeeeee"> + <circle cx="10" cy="4" r="2"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_btt_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_btt_37.svg new file mode 100644 index 0000000..884107d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_btt_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37" height="16" viewBox="0 0 37 16" fill="#eeeeee"> + <circle cx="19" cy="8" r="4"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ltr_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ltr_19.svg new file mode 100644 index 0000000..daaf4e1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ltr_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="8" height="19" viewBox="0 0 8 19" fill="#eeeeee"> + <circle cx="4" cy="10" r="2"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ltr_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ltr_37.svg new file mode 100644 index 0000000..9e4de17 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ltr_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="37" viewBox="0 0 16 37" fill="#eeeeee"> + <circle cx="8" cy="19" r="4"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_btt_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_btt_19.svg new file mode 100644 index 0000000..a385e69 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_btt_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="19" height="8" viewBox="0 0 19 8" fill="#eeeeee" opacity="0.7"> + <circle cx="10" cy="4" r="2"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_btt_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_btt_37.svg new file mode 100644 index 0000000..63afade --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_btt_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37" height="16" viewBox="0 0 37 16" fill="#eeeeee" opacity="0.7"> + <circle cx="19" cy="8" r="4"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ltr_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ltr_19.svg new file mode 100644 index 0000000..cb951f1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ltr_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="8" height="19" viewBox="0 0 8 19" fill="#eeeeee" opacity="0.7"> + <circle cx="4" cy="10" r="2"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ltr_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ltr_37.svg new file mode 100644 index 0000000..ad674b4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ltr_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="16" height="37" viewBox="0 0 16 37" fill="#eeeeee" opacity="0.7"> + <circle cx="8" cy="19" r="4"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_rtl_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_rtl_19.svg new file mode 120000 index 0000000..11da60a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_rtl_19.svg @@ -0,0 +1 @@ +launcher_arrow_outline_ltr_19.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_rtl_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_rtl_37.svg new file mode 120000 index 0000000..16e1b01 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_rtl_37.svg @@ -0,0 +1 @@ +launcher_arrow_outline_ltr_37.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ttb_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ttb_19.svg new file mode 120000 index 0000000..b834d86 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ttb_19.svg @@ -0,0 +1 @@ +launcher_arrow_outline_btt_19.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ttb_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ttb_37.svg new file mode 120000 index 0000000..ba82233 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_outline_ttb_37.svg @@ -0,0 +1 @@ +launcher_arrow_outline_btt_37.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_rtl_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_rtl_19.svg new file mode 120000 index 0000000..6c4e31f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_rtl_19.svg @@ -0,0 +1 @@ +launcher_arrow_ltr_19.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_rtl_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_rtl_37.svg new file mode 120000 index 0000000..372ed7c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_rtl_37.svg @@ -0,0 +1 @@ +launcher_arrow_ltr_37.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ttb_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ttb_19.svg new file mode 120000 index 0000000..f680bb8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ttb_19.svg @@ -0,0 +1 @@ +launcher_arrow_btt_19.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ttb_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ttb_37.svg new file mode 120000 index 0000000..3ff6f54 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_arrow_ttb_37.svg @@ -0,0 +1 @@ +launcher_arrow_btt_37.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_bfb.png b/dotfiles/.themes/oomox-materia-dark/unity/launcher_bfb.png Binary files differnew file mode 100644 index 0000000..9ffc9ec --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_bfb.png diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_back_150.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_back_150.svg new file mode 100644 index 0000000..f5d1c70 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_back_150.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_back_54.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_back_54.svg new file mode 100644 index 0000000..d1d8834 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_back_54.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_edge_150.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_edge_150.svg new file mode 100644 index 0000000..f5d1c70 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_edge_150.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_edge_54.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_edge_54.svg new file mode 100644 index 0000000..d1d8834 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_edge_54.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_glow_200.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_glow_200.svg new file mode 100644 index 0000000..d4c10f7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_glow_200.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_glow_62.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_glow_62.svg new file mode 100644 index 0000000..5453356 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_glow_62.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_selected_back_150.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 0000000..6debbc5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150" fill="#cfcfcf"> + <rect x="1" y="1" width="148" height="148" rx="4" ry="4"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_selected_back_54.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 0000000..bc5a5ef --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54" fill="#cfcfcf"> + <rect x="1" y="1" width="52" height="52" rx="2" ry="2"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shadow_200.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shadow_200.svg new file mode 100644 index 0000000..d4c10f7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shadow_200.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shadow_62.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shadow_62.svg new file mode 100644 index 0000000..5453356 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shadow_62.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shine_150.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shine_150.svg new file mode 100644 index 0000000..f5d1c70 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shine_150.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shine_54.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shine_54.svg new file mode 100644 index 0000000..d1d8834 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_icon_shine_54.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"></svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_btt_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_btt_19.svg new file mode 100644 index 0000000..d1af37f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_btt_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="19" height="7" viewBox="0 0 19 7" fill="#eeeeee"> + <circle cx="9.5" cy="3.5" r="1.5"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_btt_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_btt_37.svg new file mode 100644 index 0000000..a25ca9e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_btt_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="37" height="15" viewBox="0 0 37 15" fill="#eeeeee"> + <circle cx="18.5" cy="7.5" r="3.5"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ltr_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ltr_19.svg new file mode 100644 index 0000000..62a3f7f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ltr_19.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="7" height="19" viewBox="0 0 7 19" fill="#eeeeee"> + <circle cx="3.5" cy="9.5" r="1.5"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ltr_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ltr_37.svg new file mode 100644 index 0000000..660e3c4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ltr_37.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="15" height="37" viewBox="0 0 15 37" fill="#eeeeee"> + <circle cx="7.5" cy="18.5" r="3.5"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_rtl_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_rtl_19.svg new file mode 120000 index 0000000..b054ac9 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_rtl_19.svg @@ -0,0 +1 @@ +launcher_pip_ltr_19.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_rtl_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_rtl_37.svg new file mode 120000 index 0000000..3523e45 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_rtl_37.svg @@ -0,0 +1 @@ +launcher_pip_ltr_37.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ttb_19.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ttb_19.svg new file mode 120000 index 0000000..c3d1daa --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ttb_19.svg @@ -0,0 +1 @@ +launcher_pip_btt_19.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ttb_37.svg b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ttb_37.svg new file mode 120000 index 0000000..db01556 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/launcher_pip_ttb_37.svg @@ -0,0 +1 @@ +launcher_pip_btt_37.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize.svg new file mode 120000 index 0000000..2f5209d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize.svg @@ -0,0 +1 @@ +assets/maximize_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash.svg new file mode 100644 index 0000000..1ed3fc7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_disabled.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_disabled.svg new file mode 100644 index 0000000..bd0a459 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_prelight.svg new file mode 100644 index 0000000..3d414a1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_pressed.svg new file mode 100644 index 0000000..8afea42 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8 8v8h8v-8h-8zm2 2h4v4h-4v-4z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_normal.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_normal.svg new file mode 120000 index 0000000..2f5209d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_normal.svg @@ -0,0 +1 @@ +assets/maximize_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_prelight.svg new file mode 120000 index 0000000..4426372 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_prelight.svg @@ -0,0 +1 @@ +assets/maximize_focused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_pressed.svg new file mode 120000 index 0000000..16de6f0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_focused_pressed.svg @@ -0,0 +1 @@ +assets/maximize_focused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused.svg new file mode 120000 index 0000000..82bf693 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused.svg @@ -0,0 +1 @@ +assets/maximize_unfocused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused_prelight.svg new file mode 120000 index 0000000..06b219d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/maximize_unfocused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused_pressed.svg new file mode 120000 index 0000000..29ade40 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/maximize_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/maximize_unfocused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize.svg new file mode 120000 index 0000000..601bb67 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize.svg @@ -0,0 +1 @@ +assets/minimize_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash.svg new file mode 100644 index 0000000..0ad768b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_disabled.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_disabled.svg new file mode 100644 index 0000000..d0683d7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_prelight.svg new file mode 100644 index 0000000..545f0b8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_pressed.svg new file mode 100644 index 0000000..722bb0a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m8 14h8v2h-8z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_normal.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_normal.svg new file mode 120000 index 0000000..601bb67 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_normal.svg @@ -0,0 +1 @@ +assets/minimize_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_prelight.svg new file mode 120000 index 0000000..208db64 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_prelight.svg @@ -0,0 +1 @@ +assets/minimize_focused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_pressed.svg new file mode 120000 index 0000000..b5152c1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_focused_pressed.svg @@ -0,0 +1 @@ +assets/minimize_focused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused.svg new file mode 120000 index 0000000..ba15dbf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused.svg @@ -0,0 +1 @@ +assets/minimize_unfocused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused_prelight.svg new file mode 120000 index 0000000..a9fd7f6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/minimize_unfocused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused_pressed.svg new file mode 120000 index 0000000..b084747 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/minimize_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/minimize_unfocused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/progress_bar_fill.svg b/dotfiles/.themes/oomox-materia-dark/unity/progress_bar_fill.svg new file mode 100644 index 0000000..69a0b95 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/progress_bar_fill.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="42" height="4" viewBox="0 0 42 4"> + <rect width="42" height="4" fill="#338DD6"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/progress_bar_trough.svg b/dotfiles/.themes/oomox-materia-dark/unity/progress_bar_trough.svg new file mode 100644 index 0000000..61be4ab --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/progress_bar_trough.svg @@ -0,0 +1,22 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"> + <defs> + <filter id="a" color-interpolation-filters="sRGB" x="-0.5" y="-0.5" width="2" height="2"> + <!-- <feDropShadow dx="0" dy="1" stdDeviation="1.5" flood-color="#212121" flood-opacity="0.12"/> --> + <!-- <feDropShadow dx="0" dy="1" stdDeviation="1" flood-color="#212121" flood-opacity="0.24"/> --> + + <feFlood flood-color="#212121" flood-opacity="0.12" result="flood"/> + <feComposite operator="in" in="flood" in2="SourceGraphic" result="composite1"/> + <feGaussianBlur stdDeviation="1.5" in="composite1" result="blur"/> + <feOffset dx="0" dy="1" result="offset"/> + <feComposite in="SourceGraphic" in2="offset" result="fbSourceGraphic"/> + + <feFlood flood-color="#212121" flood-opacity="0.24" result="flood"/> + <feComposite operator="in" in="flood" in2="fbSourceGraphic" result="composite1"/> + <feGaussianBlur stdDeviation="1" in="composite1" result="blur"/> + <feOffset dx="0" dy="1" result="offset"/> + <feComposite in="fbSourceGraphic" in2="offset" result="composite2"/> + </filter> + </defs> + <rect x="4" y="23" width="46" height="8" rx="2" ry="2" fill="#eeeeee" filter="url(#a)"/> + <rect x="6" y="25" width="42" height="4" fill="#212121" opacity="0.12"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused.svg b/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused.svg new file mode 120000 index 0000000..b73ba6c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused.svg @@ -0,0 +1 @@ +assets/close_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused_prelight.svg new file mode 120000 index 0000000..4357436 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1 @@ +assets/close_focused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused_pressed.svg new file mode 120000 index 0000000..6a8cf1d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1 @@ +assets/close_focused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize.svg new file mode 120000 index 0000000..67467f7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize.svg @@ -0,0 +1 @@ +assets/unmaximize_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash.svg new file mode 100644 index 0000000..30f153b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.7"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_disabled.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_disabled.svg new file mode 100644 index 0000000..101b7cd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee" opacity="0.3"> + <circle cx="12" cy="12" r="10" opacity="0"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_prelight.svg new file mode 100644 index 0000000..da23a12 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_prelight.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.12"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_pressed.svg new file mode 100644 index 0000000..8cea3ed --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_dash_pressed.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#eeeeee"> + <circle cx="12" cy="12" r="10" opacity="0.24"/> + <path d="m9 9v6h6v-6h-6zm2 2h2v2h-2v-2z"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_normal.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_normal.svg new file mode 120000 index 0000000..67467f7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_normal.svg @@ -0,0 +1 @@ +assets/unmaximize_focused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_prelight.svg new file mode 120000 index 0000000..1d8e93e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_prelight.svg @@ -0,0 +1 @@ +assets/unmaximize_focused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_pressed.svg new file mode 120000 index 0000000..cc56831 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_focused_pressed.svg @@ -0,0 +1 @@ +assets/unmaximize_focused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused.svg new file mode 120000 index 0000000..75a28d4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused.svg @@ -0,0 +1 @@ +assets/unmaximize_unfocused.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused_prelight.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused_prelight.svg new file mode 120000 index 0000000..6916a72 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1 @@ +assets/unmaximize_unfocused_prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused_pressed.svg b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused_pressed.svg new file mode 120000 index 0000000..adfee26 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1 @@ +assets/unmaximize_unfocused_pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/border.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/border.svg new file mode 100644 index 0000000..2fd2755 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/border.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1" viewBox="0 0 1 1"> + <rect width="1" height="1" fill="#212121"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-active.svg new file mode 100644 index 0000000..321b278 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-inactive.svg new file mode 100644 index 0000000..ca83dd7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-prelight.svg new file mode 100644 index 0000000..b70311e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-pressed.svg new file mode 100644 index 0000000..d718bfd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/close-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m12.4 11-1.41 1.41 3.59 3.59-3.59 3.59 1.41 1.41 3.59-3.59 3.59 3.59 1.41-1.41-3.59-3.59 3.59-3.59-1.41-1.41-3.59 3.59z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-active.svg new file mode 100644 index 0000000..1e1b293 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-inactive.svg new file mode 100644 index 0000000..d65bd79 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-prelight.svg new file mode 100644 index 0000000..8f57d52 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-pressed.svg new file mode 100644 index 0000000..c14d622 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/hide-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m12 18h8v2h-8z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-active.svg new file mode 100644 index 0000000..6028491 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-inactive.svg new file mode 100644 index 0000000..8498952 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-prelight.svg new file mode 100644 index 0000000..fbeb72b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-pressed.svg new file mode 100644 index 0000000..2e2618c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m12 12v8h8v-8zm2 2h4v4h-4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-active.svg new file mode 100644 index 0000000..3d1d0fa --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-inactive.svg new file mode 100644 index 0000000..c2489f1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-prelight.svg new file mode 100644 index 0000000..8bec686 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-pressed.svg new file mode 100644 index 0000000..869d589 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/maximize-toggled-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m13 13v6h6v-6zm2 2h2v2h-2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-active.svg new file mode 100644 index 0000000..6665839 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-inactive.svg new file mode 100644 index 0000000..1b1ae8e --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-prelight.svg new file mode 100644 index 0000000..b5b333d --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-pressed.svg new file mode 100644 index 0000000..8d0fe0c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/menu-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <circle cx="16" cy="16" r="2"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-active.svg new file mode 100644 index 0000000..d5cccfd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-inactive.svg new file mode 100644 index 0000000..cd49a4c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-prelight.svg new file mode 100644 index 0000000..eb5f5ee --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-pressed.svg new file mode 100644 index 0000000..4019c9a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m10 18 1.41 1.41 4.59-4.59 4.59 4.59 1.41-1.41-6-6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-active.svg new file mode 100644 index 0000000..8b1bee4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-inactive.svg new file mode 100644 index 0000000..62361dd --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-prelight.svg new file mode 100644 index 0000000..26696ad --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-pressed.svg new file mode 100644 index 0000000..c012ef0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/shade-toggled-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m22 14-1.41-1.41-4.59 4.59-4.59-4.59-1.41 1.41l6 6z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-active.svg new file mode 100644 index 0000000..6d34f5c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-inactive.svg new file mode 100644 index 0000000..bf33ee7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-prelight.svg new file mode 100644 index 0000000..32564c4 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-pressed.svg new file mode 100644 index 0000000..dc7b957 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-active.svg new file mode 100644 index 0000000..64936eb --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-active.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.7"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-inactive.svg new file mode 100644 index 0000000..fd88810 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-inactive.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee" opacity="0.5"> + <circle cx="16" cy="16" r="12" opacity="0"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-prelight.svg new file mode 100644 index 0000000..b33c5b3 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-prelight.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.12"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-pressed.svg new file mode 100644 index 0000000..e4a2744 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/stick-toggled-pressed.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <rect width="32" height="32" fill="#212121"/> + <rect width="32" height="1" fill="#eeeeee" fill-opacity="0.1"/> + <g fill="#eeeeee"> + <circle cx="16" cy="16" r="12" opacity="0.24"/> + <path d="m16 10a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 6 -6 6 6 0 0 0 -6 -6zm0 2a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4zm0 2a2 2 0 0 0 -2 2 2 2 0 0 0 2 2 2 2 0 0 0 2 -2 2 2 0 0 0 -2 -2z"/> + </g> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/themerc b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/themerc new file mode 100644 index 0000000..68c8dec --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#eeeeee +active_text_shadow_color=#eeeeee +inactive_text_color=#bababa +inactive_text_shadow_color=#bababa +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=0 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/title-side.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/title-side.svg new file mode 100644 index 0000000..aec9173 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/title-side.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1" height="32" viewBox="0 -1 1 32"> + <rect width="1" height="32" fill="#212121"/> + <rect width="1" height="1" fill="#eeeeee" fill-opacity="0.1"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/title.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/title.svg new file mode 100644 index 0000000..43945de --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/assets/title.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="1" height="32" viewBox="0 0 1 32"> + <rect width="1" height="32" fill="#212121"/> + <rect width="1" height="1" fill="#eeeeee" fill-opacity="0.1"/> +</svg> diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-active.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-inactive.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-left-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-left-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-left-active.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-left-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-left-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-left-inactive.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-right-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-right-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-right-active.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-right-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-right-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/bottom-right-inactive.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/close-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-active.svg new file mode 120000 index 0000000..fa253af --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-active.svg @@ -0,0 +1 @@ +assets/close-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/close-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-inactive.svg new file mode 120000 index 0000000..d0a099a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-inactive.svg @@ -0,0 +1 @@ +assets/close-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/close-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-prelight.svg new file mode 120000 index 0000000..8ef9fbe --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-prelight.svg @@ -0,0 +1 @@ +assets/close-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/close-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-pressed.svg new file mode 120000 index 0000000..f1c7470 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/close-pressed.svg @@ -0,0 +1 @@ +assets/close-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-active.svg new file mode 120000 index 0000000..8779541 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-active.svg @@ -0,0 +1 @@ +assets/hide-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-inactive.svg new file mode 120000 index 0000000..5492868 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-inactive.svg @@ -0,0 +1 @@ +assets/hide-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-prelight.svg new file mode 120000 index 0000000..4134f9f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-prelight.svg @@ -0,0 +1 @@ +assets/hide-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-pressed.svg new file mode 120000 index 0000000..1965964 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/hide-pressed.svg @@ -0,0 +1 @@ +assets/hide-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/left-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/left-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/left-active.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/left-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/left-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/left-inactive.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-active.svg new file mode 120000 index 0000000..3cbfdb0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-active.svg @@ -0,0 +1 @@ +assets/maximize-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-inactive.svg new file mode 120000 index 0000000..1f35d2a --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-inactive.svg @@ -0,0 +1 @@ +assets/maximize-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-prelight.svg new file mode 120000 index 0000000..de7c8a6 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-prelight.svg @@ -0,0 +1 @@ +assets/maximize-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-pressed.svg new file mode 120000 index 0000000..9315905 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-pressed.svg @@ -0,0 +1 @@ +assets/maximize-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-active.svg new file mode 120000 index 0000000..281bc52 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-active.svg @@ -0,0 +1 @@ +assets/maximize-toggled-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-inactive.svg new file mode 120000 index 0000000..2c48981 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-inactive.svg @@ -0,0 +1 @@ +assets/maximize-toggled-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-prelight.svg new file mode 120000 index 0000000..a02ada8 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-prelight.svg @@ -0,0 +1 @@ +assets/maximize-toggled-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-pressed.svg new file mode 120000 index 0000000..bc997d0 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/maximize-toggled-pressed.svg @@ -0,0 +1 @@ +assets/maximize-toggled-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-active.svg new file mode 120000 index 0000000..26c4ca1 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-active.svg @@ -0,0 +1 @@ +assets/menu-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-inactive.svg new file mode 120000 index 0000000..f192992 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-inactive.svg @@ -0,0 +1 @@ +assets/menu-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-prelight.svg new file mode 120000 index 0000000..d52b110 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-prelight.svg @@ -0,0 +1 @@ +assets/menu-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-pressed.svg new file mode 120000 index 0000000..c2d0565 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/menu-pressed.svg @@ -0,0 +1 @@ +assets/menu-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/right-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/right-active.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/right-active.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/right-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/right-inactive.svg new file mode 120000 index 0000000..cec0be5 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/right-inactive.svg @@ -0,0 +1 @@ +assets/border.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-active.svg new file mode 120000 index 0000000..66e2e36 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-active.svg @@ -0,0 +1 @@ +assets/shade-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-inactive.svg new file mode 120000 index 0000000..9cc6e4c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-inactive.svg @@ -0,0 +1 @@ +assets/shade-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-prelight.svg new file mode 120000 index 0000000..ef22f69 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-prelight.svg @@ -0,0 +1 @@ +assets/shade-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-pressed.svg new file mode 120000 index 0000000..18b0b9b --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-pressed.svg @@ -0,0 +1 @@ +assets/shade-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-active.svg new file mode 120000 index 0000000..f00cc03 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-active.svg @@ -0,0 +1 @@ +assets/shade-toggled-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-inactive.svg new file mode 120000 index 0000000..639c43f --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-inactive.svg @@ -0,0 +1 @@ +assets/shade-toggled-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-prelight.svg new file mode 120000 index 0000000..3cf5b48 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-prelight.svg @@ -0,0 +1 @@ +assets/shade-toggled-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-pressed.svg new file mode 120000 index 0000000..63615fc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/shade-toggled-pressed.svg @@ -0,0 +1 @@ +assets/shade-toggled-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-active.svg new file mode 120000 index 0000000..092f2ac --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-active.svg @@ -0,0 +1 @@ +assets/stick-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-inactive.svg new file mode 120000 index 0000000..1085f48 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-inactive.svg @@ -0,0 +1 @@ +assets/stick-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-prelight.svg new file mode 120000 index 0000000..87a95c7 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-prelight.svg @@ -0,0 +1 @@ +assets/stick-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-pressed.svg new file mode 120000 index 0000000..a371c37 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-pressed.svg @@ -0,0 +1 @@ +assets/stick-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-active.svg new file mode 120000 index 0000000..76aa4bc --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-active.svg @@ -0,0 +1 @@ +assets/stick-toggled-active.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-inactive.svg new file mode 120000 index 0000000..c404b45 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-inactive.svg @@ -0,0 +1 @@ +assets/stick-toggled-inactive.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-prelight.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-prelight.svg new file mode 120000 index 0000000..41442cf --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-prelight.svg @@ -0,0 +1 @@ +assets/stick-toggled-prelight.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-pressed.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-pressed.svg new file mode 120000 index 0000000..5a8b28c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/stick-toggled-pressed.svg @@ -0,0 +1 @@ +assets/stick-toggled-pressed.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/themerc b/dotfiles/.themes/oomox-materia-dark/xfwm4/themerc new file mode 120000 index 0000000..737ee25 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/themerc @@ -0,0 +1 @@ +assets/themerc
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-1-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-1-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-1-active.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-1-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-1-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-1-inactive.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-2-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-2-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-2-active.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-2-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-2-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-2-inactive.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-3-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-3-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-3-active.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-3-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-3-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-3-inactive.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-4-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-4-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-4-active.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-4-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-4-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-4-inactive.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-5-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-5-active.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-5-active.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/title-5-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-5-inactive.svg new file mode 120000 index 0000000..a45337c --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/title-5-inactive.svg @@ -0,0 +1 @@ +assets/title.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/top-left-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-left-active.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-left-active.svg @@ -0,0 +1 @@ +assets/title-side.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/top-left-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-left-inactive.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-left-inactive.svg @@ -0,0 +1 @@ +assets/title-side.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/top-right-active.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-right-active.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-right-active.svg @@ -0,0 +1 @@ +assets/title-side.svg
\ No newline at end of file diff --git a/dotfiles/.themes/oomox-materia-dark/xfwm4/top-right-inactive.svg b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-right-inactive.svg new file mode 120000 index 0000000..22b1640 --- /dev/null +++ b/dotfiles/.themes/oomox-materia-dark/xfwm4/top-right-inactive.svg @@ -0,0 +1 @@ +assets/title-side.svg
\ No newline at end of file diff --git a/dotfiles/.tmux.conf b/dotfiles/.tmux.conf new file mode 100644 index 0000000..96844d5 --- /dev/null +++ b/dotfiles/.tmux.conf @@ -0,0 +1,1182 @@ +# cat << EOF > /dev/null +# https://github.com/gpakosz/.tmux +# (‑●‑●)> dual licensed under the WTFPL v2 license and the MIT license, +# without any warranty. +# Copyright 2012— Gregory Pakosz (@gpakosz). +# /!\ do not edit this file +# instead, override settings in ~/.tmux.conf.local, see README.md + + +# -- general ------------------------------------------------------------------- + +set -g default-terminal "screen-256color" # colors! +setw -g xterm-keys on +set -s escape-time 10 # faster command sequences +set -sg repeat-time 600 # increase repeat timeout +set -s focus-events on + +set -g prefix2 C-a # GNU-Screen compatible prefix +bind C-a send-prefix -2 + +set -q -g status-utf8 on # expect UTF-8 (tmux < 2.2) +setw -q -g utf8 on + +set -g history-limit 5000 # boost history + +# edit configuration +bind e new-window -n '~/.tmux.conf.local' "sh -c '\${EDITOR:-vim} ~/.tmux.conf.local && tmux source ~/.tmux.conf && tmux display \"~/.tmux.conf sourced\"'" + +# reload configuration +bind r source-file ~/.tmux.conf \; display '~/.tmux.conf sourced' + + +# -- display ------------------------------------------------------------------- + +set -g base-index 1 # start windows numbering at 1 +setw -g pane-base-index 1 # make pane numbering consistent with windows + +setw -g automatic-rename on # rename window to reflect current program +set -g renumber-windows on # renumber windows when a window is closed + +set -g set-titles on # set terminal title + +set -g display-panes-time 800 # slightly longer pane indicators display time +set -g display-time 1000 # slightly longer status messages display time + +set -g status-interval 10 # redraw status line every 10 seconds + +# clear both screen and history +bind -n C-l send-keys C-l \; run 'sleep 0.1' \; clear-history + +# activity +set -g monitor-activity on +set -g visual-activity off + + +# -- navigation ---------------------------------------------------------------- + +# create session +bind C-c new-session + +# find session +bind C-f command-prompt -p find-session 'switch-client -t %%' + +# split current window horizontally +bind - split-window -v +# split current window vertically +bind _ split-window -h + +# pane navigation +bind -r h select-pane -L # move left +bind -r j select-pane -D # move down +bind -r k select-pane -U # move up +bind -r l select-pane -R # move right +bind > swap-pane -D # swap current pane with the next one +bind < swap-pane -U # swap current pane with the previous one + +# maximize current pane +bind + run 'cut -c3- ~/.tmux.conf | sh -s _maximize_pane "#{session_name}" #D' + +# pane resizing +bind -r H resize-pane -L 2 +bind -r J resize-pane -D 2 +bind -r K resize-pane -U 2 +bind -r L resize-pane -R 2 + +# window navigation +unbind n +unbind p +bind -r C-h previous-window # select previous window +bind -r C-l next-window # select next window +bind Tab last-window # move to last active window + +# toggle mouse +bind m run "cut -c3- ~/.tmux.conf | sh -s _toggle_mouse" + + +# -- urlview ------------------------------------------------------------------- + +bind U run "cut -c3- ~/.tmux.conf | sh -s _urlview #{pane_id}" + + +# -- facebook pathpicker ------------------------------------------------------- + +bind F run "cut -c3- ~/.tmux.conf | sh -s _fpp #{pane_id}" + + +# -- list choice (tmux < 2.4) -------------------------------------------------- + +# vi-choice is gone in tmux >= 2.4 +run -b 'tmux bind -t vi-choice h tree-collapse 2> /dev/null || true' +run -b 'tmux bind -t vi-choice l tree-expand 2> /dev/null || true' +run -b 'tmux bind -t vi-choice K start-of-list 2> /dev/null || true' +run -b 'tmux bind -t vi-choice J end-of-list 2> /dev/null || true' +run -b 'tmux bind -t vi-choice H tree-collapse-all 2> /dev/null || true' +run -b 'tmux bind -t vi-choice L tree-expand-all 2> /dev/null || true' +run -b 'tmux bind -t vi-choice Escape cancel 2> /dev/null || true' + + +# -- edit mode (tmux < 2.4) ---------------------------------------------------- + +# vi-edit is gone in tmux >= 2.4 +run -b 'tmux bind -ct vi-edit H start-of-line 2> /dev/null || true' +run -b 'tmux bind -ct vi-edit L end-of-line 2> /dev/null || true' +run -b 'tmux bind -ct vi-edit q cancel 2> /dev/null || true' +run -b 'tmux bind -ct vi-edit Escape cancel 2> /dev/null || true' + + +# -- copy mode ----------------------------------------------------------------- + +bind Enter copy-mode # enter copy mode + +run -b 'tmux bind -t vi-copy v begin-selection 2> /dev/null || true' +run -b 'tmux bind -T copy-mode-vi v send -X begin-selection 2> /dev/null || true' +run -b 'tmux bind -t vi-copy C-v rectangle-toggle 2> /dev/null || true' +run -b 'tmux bind -T copy-mode-vi C-v send -X rectangle-toggle 2> /dev/null || true' +run -b 'tmux bind -t vi-copy y copy-selection 2> /dev/null || true' +run -b 'tmux bind -T copy-mode-vi y send -X copy-selection-and-cancel 2> /dev/null || true' +run -b 'tmux bind -t vi-copy Escape cancel 2> /dev/null || true' +run -b 'tmux bind -T copy-mode-vi Escape send -X cancel 2> /dev/null || true' +run -b 'tmux bind -t vi-copy H start-of-line 2> /dev/null || true' +run -b 'tmux bind -T copy-mode-vi H send -X start-of-line 2> /dev/null || true' +run -b 'tmux bind -t vi-copy L end-of-line 2> /dev/null || true' +run -b 'tmux bind -T copy-mode-vi L send -X end-of-line 2> /dev/null || true' + +# copy to Mac OSX clipboard +if -b 'command -v reattach-to-user-namespace > /dev/null 2>&1' 'bind y run -b "tmux save-buffer - | reattach-to-user-namespace pbcopy"' +# copy to X11 clipboard +if -b 'command -v xsel > /dev/null 2>&1' 'bind y run -b "tmux save-buffer - | xsel -i -b"' +if -b '! command -v xsel > /dev/null 2>&1 && command -v xclip > /dev/null 2>&1' 'bind y run -b "tmux save-buffer - | xclip -i -selection clipboard >/dev/null 2>&1"' +# copy to Windows clipboard +if -b 'command -v clip.exe > /dev/null 2>&1' 'bind y run -b "tmux save-buffer - | clip.exe"' +if -b '[ -c /dev/clipboard ]' 'bind y run -b "tmux save-buffer - > /dev/clipboard"' + + +# -- buffers ------------------------------------------------------------------- + +bind b list-buffers # list paste buffers +bind p paste-buffer # paste from the top paste buffer +bind P choose-buffer # choose which buffer to paste from + + +# -- user defined overrides ---------------------------------------------------- + +if '[ -f ~/.tmux.conf.local ]' 'source ~/.tmux.conf.local' + + +# -- 8< ------------------------------------------------------------------------ + +run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration' + + +# EOF +# +# # exit the script if any statement returns a non-true return value +# set -e +# +# export LC_NUMERIC=C +# +# __newline=' +# ' +# +# _is_enabled() { +# ( ([ x"$1" = x"enabled" ] || [ x"$1" = x"true" ] || [ x"$1" = x"yes" ] || [ x"$1" = x"1" ]) && return 0 ) || return 1 +# } +# +# _circled() { +# circled_digits='⓪ ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳' +# if [ "$1" -le 20 ] 2>/dev/null; then +# i=$(( $1 + 1 )) +# eval set -- "$circled_digits" +# eval echo "\${$i}" +# else +# echo "$1" +# fi +# } +# +# _maximize_pane() { +# current_session=${1:-$(tmux display -p '#{session_name}')} +# current_pane=${2:-$(tmux display -p '#{pane_id}')} +# +# dead_panes=$(tmux list-panes -s -t "$current_session" -F '#{pane_dead} #{pane_id} #{pane_start_command}' | grep -o '^1 %.\+maximized.\+$' || true) +# restore=$(echo "$dead_panes" | sed -n -E -e "s/^1 $current_pane .+maximized.+'(%[0-9]+)'$/tmux swap-pane -s \1 -t $current_pane \; kill-pane -t $current_pane/p" -e "s/^1 (%[0-9]+) .+maximized.+'$current_pane'$/tmux swap-pane -s \1 -t $current_pane \; kill-pane -t \1/p" ) +# +# if [ -z "$restore" ]; then +# [ "$(tmux list-panes -t "$current_session:" | wc -l | sed 's/^ *//g')" -eq 1 ] && tmux display "Can't maximize with only one pane" && return +# window=$(tmux new-window -t "$current_session:" -P "exec maximized... 2> /dev/null & tmux setw -t \"$current_session:\" remain-on-exit on; printf \"Pane has been maximized, press <prefix>+ to restore. %s\" '$current_pane'") +# window=${window%.*} +# +# retry=10 +# while [ x"$(tmux list-panes -t "$window" -F '#{session_name}:#{window_index} #{pane_dead}' 2>/dev/null)" != x"$window 1" ] && [ "$retry" -ne 0 ]; do +# sleep 0.05 +# retry=$((retry - 1)) +# done +# if [ "$retry" -eq 0 ]; then +# tmux display 'Unable to maximize pane' +# fi +# +# new_pane=$(tmux display -t "$window" -p '#{pane_id}') +# tmux setw -t "$window" remain-on-exit off \; swap-pane -s "$current_pane" -t "$new_pane" +# else +# $restore || tmux kill-pane +# fi +# } +# +# _toggle_mouse() { +# old=$(tmux show -gv mouse) +# new="" +# +# if [ "$old" = "on" ]; then +# new="off" +# else +# new="on" +# fi +# +# tmux set -g mouse $new \;\ +# display "mouse: $new" +# } +# +# _battery() { +# charge=0 +# uname_s=$(uname -s) +# case "$uname_s" in +# *Darwin*) +# while IFS= read -r line; do +# if [ x"$discharging" != x"true" ]; then +# discharging=$(printf '%s' "$line" | grep -qi "discharging" && echo "true" || echo "false") +# fi +# percentage=$(printf '%s' "$line" | grep -E -o '[0-9]+%') +# charge=$(awk -v charge="$charge" -v percentage="${percentage%%%}" 'BEGIN { print charge + percentage / 100 }') +# count=$((count + 1)) +# done << EOF +# $(pmset -g batt | grep 'InternalBattery') +# EOF +# ;; +# *Linux*) +# while IFS= read -r batpath; do +# grep -i -q device "$batpath/scope" 2> /dev/null && continue +# +# if [ x"$discharging" != x"true" ]; then +# discharging=$(grep -qi "discharging" "$batpath/status" && echo "true" || echo "false") +# fi +# bat_capacity="$batpath/capacity" +# if [ -r "$bat_capacity" ]; then +# charge=$(awk -v charge="$charge" -v capacity="$(cat "$bat_capacity")" 'BEGIN { print charge + capacity / 100 }') +# else +# bat_energy_full="$batpath/energy_full" +# bat_energy_now="$batpath/energy_now" +# if [ -r "$bat_energy_full" ] && [ -r "$bat_energy_now" ]; then +# charge=$(awk -v charge="$charge" -v energy_now="$(cat "$bat_energy_now")" -v energy_full="$(cat "$bat_energy_full")" 'BEGIN { print charge + energy_now / energy_full }') +# fi +# fi +# count=$((count + 1)) +# done << EOF +# $(find /sys/class/power_supply -maxdepth 1 -iname '*bat*') +# EOF +# ;; +# *CYGWIN*|*MSYS*|*MINGW*) +# while IFS= read -r line; do +# [ -z "$line" ] && continue +# if [ x"$discharging" != x"true" ]; then +# discharging=$(printf '%s' "$line" | awk '{ s = ($1 == 1) ? "true" : "false"; print s }') +# fi +# charge=$(printf '%s' "$line" | awk -v charge="$charge" '{ print charge + $2 / 100 }') +# count=$((count + 1)) +# done << EOF +# $(wmic path Win32_Battery get BatteryStatus, EstimatedChargeRemaining | tr -d '\r' | tail -n +2) +# EOF +# ;; +# *OpenBSD*) +# for batid in 0 1 2; do +# sysctl -n "hw.sensors.acpibat$batid.raw0" 2>&1 | grep -q 'not found' && continue +# if [ x"$discharging" != x"true" ]; then +# discharging=$(sysctl -n "hw.sensors.acpibat$batid.raw0" | grep -q 1 && echo "true" || echo "false") +# fi +# if sysctl -n "hw.sensors.acpibat$batid" | grep -q amphour; then +# charge=$(awk -v charge="$charge" -v remaining="$(sysctl -n hw.sensors.acpibat$batid.amphour3 | cut -d' ' -f1)" -v full="$(sysctl -n hw.sensors.acpibat$batid.amphour0 | cut -d' ' -f1)" 'BEGIN { print charge + remaining / full }') +# else +# charge=$(awk -v charge="$charge" -v remaining="$(sysctl -n hw.sensors.acpibat$batid.watthour3 | cut -d' ' -f1)" -v full="$(sysctl -n hw.sensors.acpibat$batid.watthour0 | cut -d' ' -f1)" 'BEGIN { print charge + remaining / full }') +# fi +# count=$((count + 1)) +# done +# ;; +# esac +# charge=$(awk -v charge="$charge" -v count="$count" 'BEGIN { print charge / count }') +# if [ "$charge" -eq 0 ]; then +# tmux set -ug '@battery_status' \;\ +# set -ug '@battery_bar' \;\ +# set -ug '@battery_hbar' \;\ +# set -ug '@battery_vbar' \;\ +# set -ug '@battery_percentage' +# return +# fi +# +# variables=$(tmux show -gqv '@battery_bar_symbol_full' \;\ +# show -gqv '@battery_bar_symbol_empty' \;\ +# show -gqv '@battery_bar_length' \;\ +# show -gqv '@battery_bar_palette' \;\ +# show -gqv '@battery_hbar_palette' \;\ +# show -gqv '@battery_vbar_palette' \;\ +# show -gqv '@battery_status_charging' \;\ +# show -gqv '@battery_status_discharging') +# # shellcheck disable=SC2086 +# { set -f; IFS="$__newline"; set -- $variables; unset IFS; set +f; } +# +# battery_bar_symbol_full=$1 +# battery_bar_symbol_empty=$2 +# battery_bar_length=$3 +# battery_bar_palette=$4 +# battery_hbar_palette=$5 +# battery_vbar_palette=$6 +# battery_status_charging=$7 +# battery_status_discharging=$8 +# +# if [ x"$battery_bar_length" = x"auto" ]; then +# columns=$(tmux -q display -p '#{client_width}' 2> /dev/null || echo 80) +# if [ "$columns" -ge 80 ]; then +# battery_bar_length=10 +# else +# battery_bar_length=5 +# fi +# fi +# +# if [ x"$discharging" = x"true" ]; then +# battery_status="$battery_status_discharging" +# else +# battery_status="$battery_status_charging" +# fi +# +# if echo "$battery_bar_palette" | grep -q -E '^heat|gradient(,[#a-z0-9]{7,9})?$'; then +# # shellcheck disable=SC2086 +# { set -f; IFS=,; set -- $battery_bar_palette; unset IFS; set +f; } +# palette_style=$1 +# battery_bg=${2:-none} +# [ x"$palette_style" = x"gradient" ] && \ +# palette="196 202 208 214 220 226 190 154 118 82 46" +# [ x"$palette_style" = x"heat" ] && \ +# palette="243 245 247 144 143 142 184 214 208 202 196" +# +# palette=$(echo "$palette" | awk -v n="$battery_bar_length" '{ for (i = 0; i < n; ++i) printf $(1 + (i * NF / n))" " }') +# eval set -- "$palette" +# +# full=$(awk "BEGIN { printf \"%.0f\", ($charge) * $battery_bar_length }") +# battery_bar="#[bg=$battery_bg]" +# # shellcheck disable=SC2046 +# [ "$full" -gt 0 ] && \ +# battery_bar="$battery_bar$(printf "#[fg=colour%s]$battery_bar_symbol_full" $(echo "$palette" | cut -d' ' -f1-"$full"))" +# # shellcheck disable=SC2046 +# empty=$((battery_bar_length - full)) +# # shellcheck disable=SC2046 +# [ "$empty" -gt 0 ] && \ +# battery_bar="$battery_bar$(printf "#[fg=colour%s]$battery_bar_symbol_empty" $(echo "$palette" | cut -d' ' -f$((full + 1))-$((full + empty))))" +# eval battery_bar="$battery_bar#[fg=colour\${$((full == 0 ? 1 : full))}]" +# elif echo "$battery_bar_palette" | grep -q -E '^(([#a-z0-9]{7,9}|none),?){3}$'; then +# # shellcheck disable=SC2086 +# { set -f; IFS=,; set -- $battery_bar_palette; unset IFS; set +f; } +# battery_full_fg=$1 +# battery_empty_fg=$2 +# battery_bg=$3 +# +# full=$(awk "BEGIN { printf \"%.0f\", ($charge) * $battery_bar_length }") +# [ x"$battery_bg" != x"none" ] && \ +# battery_bar="#[bg=$battery_bg]" +# #shellcheck disable=SC2046 +# [ "$full" -gt 0 ] && \ +# battery_bar="$battery_bar#[fg=$battery_full_fg]$(printf "%0.s$battery_bar_symbol_full" $(seq 1 "$full"))" +# empty=$((battery_bar_length - full)) +# #shellcheck disable=SC2046 +# [ "$empty" -gt 0 ] && \ +# battery_bar="$battery_bar#[fg=$battery_empty_fg]$(printf "%0.s$battery_bar_symbol_empty" $(seq 1 "$empty"))" && \ +# battery_bar="$battery_bar#[fg=$battery_empty_fg]" +# fi +# +# if echo "$battery_hbar_palette" | grep -q -E '^heat|gradient(,[#a-z0-9]{7,9})?$'; then +# # shellcheck disable=SC2086 +# { set -f; IFS=,; set -- $battery_hbar_palette; unset IFS; set +f; } +# palette_style=$1 +# [ x"$palette_style" = x"gradient" ] && \ +# palette="196 202 208 214 220 226 190 154 118 82 46" +# [ x"$palette_style" = x"heat" ] && \ +# palette="233 234 235 237 239 241 243 245 247 144 143 142 184 214 208 202 196" +# +# palette=$(echo "$palette" | awk -v n="$battery_bar_length" '{ for (i = 0; i < n; ++i) printf $(1 + (i * NF / n))" " }') +# eval set -- "$palette" +# +# full=$(awk "BEGIN { printf \"%.0f\", ($charge) * $battery_bar_length }") +# eval battery_hbar_fg="colour\${$((full == 0 ? 1 : full))}" +# elif echo "$battery_hbar_palette" | grep -q -E '^([#a-z0-9]{7,9},?){3}$'; then +# # shellcheck disable=SC2086 +# { set -f; IFS=,; set -- $battery_hbar_palette; unset IFS; set +f; } +# +# # shellcheck disable=SC2046 +# eval $(awk "BEGIN { printf \"battery_hbar_fg=$%d\", (($charge) - 0.001) * $# + 1 }") +# fi +# +# eval set -- "▏ ▎ ▍ ▌ ▋ ▊ ▉ █" +# # shellcheck disable=SC2046 +# eval $(awk "BEGIN { printf \"battery_hbar_symbol=$%d\", ($charge) * ($# - 1) + 1 }") +# battery_hbar="#[fg=${battery_hbar_fg?}]${battery_hbar_symbol?}" +# +# if echo "$battery_vbar_palette" | grep -q -E '^heat|gradient(,[#a-z0-9]{7,9})?$'; then +# # shellcheck disable=SC2086 +# { set -f; IFS=,; set -- $battery_vbar_palette; unset IFS; set +f; } +# palette_style=$1 +# [ x"$palette_style" = x"gradient" ] && \ +# palette="196 202 208 214 220 226 190 154 118 82 46" +# [ x"$palette_style" = x"heat" ] && \ +# palette="233 234 235 237 239 241 243 245 247 144 143 142 184 214 208 202 196" +# +# palette=$(echo "$palette" | awk -v n="$battery_bar_length" '{ for (i = 0; i < n; ++i) printf $(1 + (i * NF / n))" " }') +# eval set -- "$palette" +# +# full=$(awk "BEGIN { printf \"%.0f\", ($charge) * $battery_bar_length }") +# eval battery_vbar_fg="colour\${$((full == 0 ? 1 : full))}" +# elif echo "$battery_vbar_palette" | grep -q -E '^([#a-z0-9]{7,9},?){3}$'; then +# # shellcheck disable=SC2086 +# { set -f; IFS=,; set -- $battery_vbar_palette; unset IFS; set +f; } +# +# # shellcheck disable=SC2046 +# eval $(awk "BEGIN { printf \"battery_vbar_fg=$%d\", (($charge) - 0.001) * $# + 1 }") +# fi +# +# eval set -- "▁ ▂ ▃ ▄ ▅ ▆ ▇ █" +# # shellcheck disable=SC2046 +# eval $(awk "BEGIN { printf \"battery_vbar_symbol=$%d\", ($charge) * ($# - 1) + 1 }") +# battery_vbar="#[fg=${battery_vbar_fg?}]${battery_vbar_symbol?}" +# +# battery_percentage="$(awk "BEGIN { printf \"%.0f%%\", ($charge) * 100 }")" +# +# tmux set -g '@battery_status' "$battery_status" \;\ +# set -g '@battery_bar' "$battery_bar" \;\ +# set -g '@battery_hbar' "$battery_hbar" \;\ +# set -g '@battery_vbar' "$battery_vbar" \;\ +# set -g '@battery_percentage' "$battery_percentage" +# } +# +# _tty_info() { +# tty="${1##/dev/}" +# uname -s | grep -q "CYGWIN" && cygwin=true +# +# if [ x"$cygwin" = x"true" ]; then +# ps -af | tail -n +2 | awk -v tty="$tty" ' +# $4 == tty { user[$2] = $1; child[$3] = $2 } +# END { +# for (i in user) +# { +# if (!(i in child)) +# { +# file = "/proc/" i "/cmdline"; getline command < file; close(file) +# gsub(/\0/, " ", command) +# print i, user[i], command +# exit +# } +# } +# } +# ' +# else +# ps -t "$tty" -o user= -o pid= -o ppid= -o command= | awk ' +# { user[$2] = $1; child[$3] = $2; for (i = 4 ; i <= NF; ++i) command[$2] = i > 4 ? command[$2] FS $i : $i } +# END { +# for (i in user) +# { +# if (!(i in child)) +# { +# print i, user[i], command[i] +# exit +# } +# } +# } +# ' +# fi +# } +# +# _ssh_or_mosh_args() { +# args=$(printf '%s' "$1" | awk '/ssh/ && !/vagrant ssh/ && !/autossh/ && !/-W/ { $1=""; print $0; exit }') +# if [ -z "$args" ]; then +# args=$(printf '%s' "$1" | grep 'mosh-client' | sed -E -e 's/.*mosh-client -# (.*)\|.*$/\1/' -e 's/-[^ ]*//g' -e 's/\d:\d//g') +# fi +# +# printf '%s' "$args" +# } +# +# _username() { +# tty=${1:-$(tmux display -p '#{pane_tty}')} +# ssh_only=$2 +# +# tty_info=$(_tty_info "$tty") +# command=$(printf '%s' "$tty_info" | cut -d' ' -f3-) +# +# ssh_or_mosh_args=$(_ssh_or_mosh_args "$command") +# if [ -n "$ssh_or_mosh_args" ]; then +# # shellcheck disable=SC2086 +# username=$(ssh -G $ssh_or_mosh_args 2>/dev/null | awk 'NR > 2 { exit } ; /^user / { print $2 }') +# # shellcheck disable=SC2086 +# [ -z "$username" ] && username=$(ssh -T -o ControlPath=none -o ProxyCommand="sh -c 'echo %%username%% %r >&2'" $ssh_or_mosh_args 2>&1 | awk '/^%username% / { print $2; exit }') +# else +# if ! _is_enabled "$ssh_only"; then +# username=$(printf '%s' "$tty_info" | cut -d' ' -f2) +# fi +# fi +# +# printf '%s' "$username" +# } +# +# _hostname() { +# tty=${1:-$(tmux display -p '#{pane_tty}')} +# ssh_only=$2 +# +# tty_info=$(_tty_info "$tty") +# command=$(printf '%s' "$tty_info" | cut -d' ' -f3-) +# +# ssh_or_mosh_args=$(_ssh_or_mosh_args "$command") +# if [ -n "$ssh_or_mosh_args" ]; then +# # shellcheck disable=SC2086 +# hostname=$(ssh -G $ssh_or_mosh_args 2>/dev/null | awk 'NR > 2 { exit } ; /^hostname / { print $2 }') +# # shellcheck disable=SC2086 +# [ -z "$hostname" ] && hostname=$(ssh -T -o ControlPath=none -o ProxyCommand="sh -c 'echo %%hostname%% %h >&2'" $ssh_or_mosh_args 2>&1 | awk '/^%hostname% / { print $2; exit }') +# #shellcheck disable=SC1004 +# hostname=$(echo "$hostname" | awk '\ +# { \ +# if ($1~/^[0-9.:]+$/) \ +# print $1; \ +# else \ +# split($1, a, ".") ; print a[1] \ +# }') +# else +# if ! _is_enabled "$ssh_only"; then +# hostname=$(command hostname -s) +# fi +# fi +# +# printf '%s' "$hostname" +# } +# +# _root() { +# tty=${1:-$(tmux display -p '#{pane_tty}')} +# username=$(_username "$tty" false) +# +# if [ x"$username" = x"root" ]; then +# tmux show -gqv '@root' +# else +# echo "" +# fi +# } +# +# _uptime() { +# case $(uname -s) in +# *Darwin*) +# boot=$(sysctl -q -n kern.boottime | awk -F'[ ,:]+' '{ print $4 }') +# now=$(date +%s) +# ;; +# *Linux*|*CYGWIN*|*MSYS*|*MINGW*) +# now=$(cut -d' ' -f1 < /proc/uptime) +# ;; +# *OpenBSD*) +# boot=$(sysctl -n kern.boottime) +# now=$(date +%s) +# esac +# # shellcheck disable=SC1004 +# awk -v boot="$boot" -v now="$now" ' +# BEGIN { +# uptime = now - boot +# d = int(uptime / 86400) +# h = int(uptime / 3600) % 24 +# m = int(uptime / 60) % 60 +# s = int(uptime) % 60 +# +# system("tmux set -g @uptime_d " d + 0 " \\; " \ +# "set -g @uptime_h " h + 0 " \\; " \ +# "set -g @uptime_m " m + 0 " \\; " \ +# "set -g @uptime_s " s + 0) +# }' +# } +# +# _loadavg() { +# case $(uname -s) in +# *Darwin*) +# tmux set -g @loadavg "$(sysctl -q -n vm.loadavg | cut -d' ' -f2)" +# ;; +# *Linux*) +# tmux set -g @loadavg "$(cut -d' ' -f1 < /proc/loadavg)" +# ;; +# *OpenBSD*) +# tmux set -g @loadavg "$(sysctl -q -n vm.loadavg | cut -d' ' -f1)" +# ;; +# esac +# } +# +# _split_window() { +# tty=${1:-$(tmux display -p '#{pane_tty}')} +# shift +# +# tty_info=$(_tty_info "$tty") +# command=$(printf '%s' "$tty_info" | cut -d' ' -f3-) +# +# case "$command" in +# *mosh-client*) +# # shellcheck disable=SC2046 +# tmux split-window "$@" mosh $(echo "$command" | sed -E -e 's/.*mosh-client -# (.*)\|.*$/\1/') +# ;; +# *ssh*) +# # shellcheck disable=SC2046 +# tmux split-window "$@" $(echo "$command" | sed -e 's/;/\\\\;/g') +# ;; +# *) +# tmux split-window "$@" +# esac +# } +# +# _apply_overrides() { +# tmux_conf_theme_24b_colour=${tmux_conf_theme_24b_colour:-false} +# if _is_enabled "$tmux_conf_theme_24b_colour"; then +# case "$TERM" in +# screen-*|tmux-*) +# ;; +# *) +# tmux set-option -ga terminal-overrides ",*256col*:Tc" +# ;; +# esac +# fi +# } +# +# _apply_bindings() { +# line=$(tmux list-keys | grep new-window | head -1) +# prefix=${line%new-window*} +# column=${#prefix} +# +# tmux_conf_new_window_retain_current_path=${tmux_conf_new_window_retain_current_path:-false} +# while IFS= read -r line; do +# [ -z "$line" ] && continue +# left=$(printf '%s' "$line" | cut -c-"$column" | sed -E -e 's/[^ \ta-zA-Z0-9,._+@%/-]/\\&/g') +# if _is_enabled "$tmux_conf_new_window_retain_current_path"; then +# right=$(printf '%s' "$line" | cut -c"$column-" | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/new-window$/new-window -c "#{pane_current_path}"/g') +# else +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/-c[ \t]+"#\{pane_current_path\}"$//g') +# fi +# eval "tmux $left $right" 2>/dev/null || true +# done << EOF +# $(tmux list-keys 2>/dev/null | grep -e 'new-window\(\s\+-c\s\+"#{pane_current_path}\|$\)') +# EOF +# +# tmux_conf_new_pane_retain_current_path=${tmux_conf_new_pane_retain_current_path:-true} +# while IFS= read -r line; do +# [ -z "$line" ] && continue +# left=$(printf '%s' "$line" | cut -c-"$column" | sed -E -e 's/[^ \ta-zA-Z0-9,._+@%/-]/\\&/g') +# if _is_enabled "$tmux_conf_new_pane_retain_current_path"; then +# right=$(printf '%s' "$line" | cut -c"$column-" | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/split-window([ \t]+-(h|v))?$/& -c "#{pane_current_path}"/g') +# else +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/-c[ \t]+"#\{pane_current_path\}"$//g') +# fi +# eval "tmux $left $right" 2>/dev/null || true +# done << EOF +# $(tmux list-keys 2>/dev/null | grep -e 'split\(-\|_\)window') +# EOF +# +# tmux_conf_new_pane_reconnect_ssh=${tmux_conf_new_pane_reconnect_ssh:-false} +# while IFS= read -r line; do +# [ -z "$line" ] && continue +# left=$(printf '%s' "$line" | cut -c-"$column" | sed -E -e 's/[^ \ta-zA-Z0-9,._+@%/-]/\\&/g') +# if _is_enabled "$tmux_conf_new_pane_reconnect_ssh"; then +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/"/\\"/g' -e 's/split-window([^;]+)/run-shell "cut -c3- ~\/\.tmux\.conf | sh -s _split_window #{pane_tty}\1"/g') +# else +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/\\"/"/g' -e 's/run-shell "cut -c3- ~\/\.tmux\.conf \| sh -s _split_window #\{pane_tty\}([^;]+)"/split-window\1/g' -e 's/#\{.+\}/\"&\"/g') +# fi +# eval "tmux $left $right" 2>/dev/null || true +# done << EOF +# $(tmux list-keys 2>/dev/null | grep -e 'split\(-\|_\)window') +# EOF +# +# tmux_conf_new_session_prompt=${tmux_conf_new_session_prompt:-false} +# while IFS= read -r line; do +# [ -z "$line" ] && continue +# left=$(printf '%s' "$line" | cut -c-"$column" | sed -E -e 's/[^ \ta-zA-Z0-9,._+@%/-]/\\&/g') +# if _is_enabled "$tmux_conf_new_session_prompt"; then +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e 's/new-session$/command-prompt -p new-session \"new-session -s '"'"'%%'"'"'\"/g') +# else +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }'| sed -E -e 's/command-prompt -p new-session[^;]+/new-session/g') +# fi +# eval "tmux $left $right" 2>/dev/null || true +# done << EOF +# $(tmux list-keys 2>/dev/null | grep -e 'new-session') +# EOF +# +# tmux_conf_copy_to_os_clipboard=${tmux_conf_copy_to_os_clipboard:-false} +# command -v pbcopy > /dev/null 2>&1 && command='pbcopy' +# command -v reattach-to-user-namespace > /dev/null 2>&1 && command='reattach-to-user-namespace pbcopy' +# command -v xsel > /dev/null 2>&1 && command='xsel -i -b' +# ! command -v xsel > /dev/null 2>&1 && command -v xclip > /dev/null 2>&1 && command='xclip -i -selection clipboard > \/dev\/null 2>\&1' +# command -v clip.exe > /dev/null 2>&1 && command='clip\.exe' +# [ -c /dev/clipboard ] && command='cat > \/dev\/clipboard' +# +# if [ -n "$command" ]; then +# # shellcheck disable=SC2086 +# for table in "" "-t emacs-copy" "-t vi-copy"; do +# line=$(tmux list-keys $table 2>/dev/null | grep -e 'copy-selection\|copy-pipe' | head -1) +# prefix=${line%copy-*} +# column=${#prefix} +# [ -z "$line" ] && continue +# +# while IFS= read -r line; do +# [ -z "$line" ] && continue +# left=$(printf '%s' "$line" | cut -c-"$column" | sed -E -e 's/[^ \ta-zA-Z0-9,._+@%/-]/\\&/g') +# if _is_enabled "$tmux_conf_copy_to_os_clipboard"; then +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e "s/copy-selection(-and-cancel)?$/copy-pipe\1 \"$command\"/g") +# else +# right=$(printf '%s' "$line" | cut -c"$column"- | awk -F'\"' 'BEGIN { OFS = FS } { for (i = 1; i <= NF; i+=2) { gsub(/#{.+}/, "\"&\"", $i) } print }' | sed -E -e "s/copy-pipe(-and-cancel)? \"$command\"$/copy-selection\1/g") +# fi +# eval "tmux $left $right" 2>/dev/null || true +# done << EOF +# $(tmux list-keys $table 2>/dev/null | grep -e 'copy-selection\|copy-pipe') +# EOF +# done +# fi +# } +# +# _apply_theme() { +# +# # -- panes ------------------------------------------------------------- +# +# tmux_conf_theme_window_fg=${tmux_conf_theme_window_fg:-default} +# tmux_conf_theme_window_bg=${tmux_conf_theme_window_bg:-default} +# tmux_conf_theme_highlight_focused_pane=${tmux_conf_theme_highlight_focused_pane:-false} +# tmux_conf_theme_focused_pane_fg=${tmux_conf_theme_focused_pane_fg:-'default'} # default +# tmux_conf_theme_focused_pane_bg=${tmux_conf_theme_focused_pane_bg:-'#0087d7'} # light blue +# +# # tmux 1.9 doesn't really like set -q +# if tmux show -g -w | grep -q window-style; then +# tmux setw -g window-style "fg=$tmux_conf_theme_window_fg,bg=$tmux_conf_theme_window_bg" +# +# if _is_enabled "$tmux_conf_theme_highlight_focused_pane"; then +# tmux setw -g window-active-style "fg=$tmux_conf_theme_focused_pane_fg,bg=$tmux_conf_theme_focused_pane_bg" +# else +# tmux setw -g window-active-style default +# fi +# fi +# +# tmux_conf_theme_pane_border_style=${tmux_conf_theme_pane_border_style:-thin} +# tmux_conf_theme_pane_border=${tmux_conf_theme_pane_border:-'#444444'} # light gray +# tmux_conf_theme_pane_active_border=${tmux_conf_theme_pane_active_border:-'#00afff'} # light blue +# tmux_conf_theme_pane_border_fg=${tmux_conf_theme_pane_border_fg:-$tmux_conf_theme_pane_border} +# tmux_conf_theme_pane_active_border_fg=${tmux_conf_theme_pane_active_border_fg:-$tmux_conf_theme_pane_active_border} +# case "$tmux_conf_theme_pane_border_style" in +# fat) +# tmux_conf_theme_pane_border_bg=${tmux_conf_theme_pane_border_bg:-$tmux_conf_theme_pane_border_fg} +# tmux_conf_theme_pane_active_border_bg=${tmux_conf_theme_pane_active_border_bg:-$tmux_conf_theme_pane_active_border_fg} +# ;; +# thin|*) +# tmux_conf_theme_pane_border_bg=${tmux_conf_theme_pane_border_bg:-'default'} +# tmux_conf_theme_pane_active_border_bg=${tmux_conf_theme_pane_active_border_bg:-'default'} +# ;; +# esac +# tmux setw -g pane-border-style "fg=$tmux_conf_theme_pane_border_fg,bg=$tmux_conf_theme_pane_border_bg" \; set -g pane-active-border-style "fg=$tmux_conf_theme_pane_active_border_fg,bg=$tmux_conf_theme_pane_active_border_bg" +# +# tmux_conf_theme_pane_indicator=${tmux_conf_theme_pane_indicator:-'#00afff'} # light blue +# tmux_conf_theme_pane_active_indicator=${tmux_conf_theme_pane_active_indicator:-'#00afff'} # light blue +# +# tmux set -g display-panes-colour "$tmux_conf_theme_pane_indicator" \; set -g display-panes-active-colour "$tmux_conf_theme_pane_active_indicator" +# +# # -- status line ------------------------------------------------------- +# +# tmux_conf_theme_left_separator_main=${tmux_conf_theme_left_separator_main-''} +# tmux_conf_theme_left_separator_sub=${tmux_conf_theme_left_separator_sub-'|'} +# tmux_conf_theme_right_separator_main=${tmux_conf_theme_right_separator_main-''} +# tmux_conf_theme_right_separator_sub=${tmux_conf_theme_right_separator_sub-'|'} +# +# tmux_conf_theme_message_fg=${tmux_conf_theme_message_fg:-'#000000'} # black +# tmux_conf_theme_message_bg=${tmux_conf_theme_message_bg:-'#ffff00'} # yellow +# tmux_conf_theme_message_attr=${tmux_conf_theme_message_attr:-'bold'} +# tmux set -g message-style "fg=$tmux_conf_theme_message_fg,bg=$tmux_conf_theme_message_bg,$tmux_conf_theme_message_attr" +# +# tmux_conf_theme_message_command_fg=${tmux_conf_theme_message_command_fg:-'#ffff00'} # yellow +# tmux_conf_theme_message_command_bg=${tmux_conf_theme_message_command_bg:-'#000000'} # black +# tmux_conf_theme_message_command_attr=${tmux_conf_theme_message_command_attr:-'bold'} +# tmux set -g message-command-style "fg=$tmux_conf_theme_message_command_fg,bg=$tmux_conf_theme_message_command_bg,$tmux_conf_theme_message_command_attr" +# +# tmux_conf_theme_mode_fg=${tmux_conf_theme_mode_fg:-'#000000'} # black +# tmux_conf_theme_mode_bg=${tmux_conf_theme_mode_bg:-'#ffff00'} # yellow +# tmux_conf_theme_mode_attr=${tmux_conf_theme_mode_attr:-'bold'} +# tmux setw -g mode-style "fg=$tmux_conf_theme_mode_fg,bg=$tmux_conf_theme_mode_bg,$tmux_conf_theme_mode_attr" +# +# tmux_conf_theme_status_fg=${tmux_conf_theme_status_fg:-'#8a8a8a'} # white +# tmux_conf_theme_status_bg=${tmux_conf_theme_status_bg:-'#080808'} # dark gray +# tmux_conf_theme_status_attr=${tmux_conf_theme_status_attr:-'none'} +# tmux set -g status-style "fg=$tmux_conf_theme_status_fg,bg=$tmux_conf_theme_status_bg,$tmux_conf_theme_status_attr" \;\ +# set -g status-left-style "fg=$tmux_conf_theme_status_fg,bg=$tmux_conf_theme_status_bg,$tmux_conf_theme_status_attr" \;\ +# set -g status-right-style "fg=$tmux_conf_theme_status_fg,bg=$tmux_conf_theme_status_bg,$tmux_conf_theme_status_attr" +# +# tmux_conf_theme_terminal_title=${tmux_conf_theme_terminal_title:-'#h ❐ #S ● #I #W'} +# +# tmux_conf_theme_terminal_title=$(echo "$tmux_conf_theme_terminal_title" | sed \ +# -e 's%#{circled_window_index}%#(cut -c3- ~/.tmux.conf | sh -s _circled #I)%g' \ +# -e 's%#{circled_session_name}%#(cut -c3- ~/.tmux.conf | sh -s _circled #S)%g' \ +# -e 's%#{username}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} false #D)%g' \ +# -e 's%#{hostname}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} false #D)%g' \ +# -e 's%#{username_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} true #D)%g' \ +# -e 's%#{hostname_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} true #D)%g') +# tmux set -g set-titles-string "$tmux_conf_theme_terminal_title" +# +# tmux_conf_theme_window_status_fg=${tmux_conf_theme_window_status_fg:-'#8a8a8a'} # white +# tmux_conf_theme_window_status_bg=${tmux_conf_theme_window_status_bg:-'#080808'} # dark gray +# tmux_conf_theme_window_status_attr=${tmux_conf_theme_window_status_attr:-'none'} +# tmux_conf_theme_window_status_format=${tmux_conf_theme_window_status_format:-'#I #W'} +# +# tmux_conf_theme_window_status_current_fg=${tmux_conf_theme_window_status_current_fg:-'#000000'} # black +# tmux_conf_theme_window_status_current_bg=${tmux_conf_theme_window_status_current_bg:-'#00afff'} # light blue +# tmux_conf_theme_window_status_current_attr=${tmux_conf_theme_window_status_current_attr:-'bold'} +# tmux_conf_theme_window_status_current_format=${tmux_conf_theme_window_status_current_format:-'#I #W'} +# if [ x"$(tmux show -g -v status-justify)" = x"right" ]; then +# tmux_conf_theme_window_status_current_format="#[fg=$tmux_conf_theme_window_status_current_bg,bg=$tmux_conf_theme_window_status_bg]$tmux_conf_theme_right_separator_main#[fg=$tmux_conf_theme_window_status_current_fg,bg=$tmux_conf_theme_window_status_current_bg,$tmux_conf_theme_window_status_current_attr] $tmux_conf_theme_window_status_current_format #[fg=$tmux_conf_theme_window_status_bg,bg=$tmux_conf_theme_window_status_current_bg,none]$tmux_conf_theme_right_separator_main" +# else +# tmux_conf_theme_window_status_current_format="#[fg=$tmux_conf_theme_window_status_bg,bg=$tmux_conf_theme_window_status_current_bg]$tmux_conf_theme_left_separator_main#[fg=$tmux_conf_theme_window_status_current_fg,bg=$tmux_conf_theme_window_status_current_bg,$tmux_conf_theme_window_status_current_attr] $tmux_conf_theme_window_status_current_format #[fg=$tmux_conf_theme_window_status_current_bg,bg=$tmux_conf_theme_status_bg,none]$tmux_conf_theme_left_separator_main" +# fi +# +# tmux_conf_theme_window_status_format=$(echo "$tmux_conf_theme_window_status_format" | sed \ +# -e 's%#{circled_window_index}%#(cut -c3- ~/.tmux.conf | sh -s _circled #I)%g' \ +# -e 's%#{circled_session_name}%#(cut -c3- ~/.tmux.conf | sh -s _circled #S)%g' \ +# -e 's%#{username}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} false #D)%g' \ +# -e 's%#{hostname}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} false #D)%g' \ +# -e 's%#{username_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} true #D)%g' \ +# -e 's%#{hostname_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} true #D)%g') +# tmux_conf_theme_window_status_current_format=$(echo "$tmux_conf_theme_window_status_current_format" | sed \ +# -e 's%#{circled_window_index}%#(cut -c3- ~/.tmux.conf | sh -s _circled #I)%g' \ +# -e 's%#{circled_session_name}%#(cut -c3- ~/.tmux.conf | sh -s _circled #S)%g' \ +# -e 's%#{username}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} false #D)%g' \ +# -e 's%#{hostname}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} false #D)%g' \ +# -e 's%#{username_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} true #D)%g' \ +# -e 's%#{hostname_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} true #D)%g') +# +# tmux setw -g window-status-style "fg=$tmux_conf_theme_window_status_fg,bg=$tmux_conf_theme_window_status_bg,$tmux_conf_theme_window_status_attr" \;\ +# setw -g window-status-format "$tmux_conf_theme_window_status_format" \;\ +# setw -g window-status-current-style "fg=$tmux_conf_theme_window_status_current_fg,bg=$tmux_conf_theme_window_status_current_bg,$tmux_conf_theme_window_status_current_attr" \;\ +# setw -g window-status-current-format "$tmux_conf_theme_window_status_current_format" +# +# tmux_conf_theme_window_status_activity_fg=${tmux_conf_theme_window_status_activity_fg:-'default'} +# tmux_conf_theme_window_status_activity_bg=${tmux_conf_theme_window_status_activity_bg:-'default'} +# tmux_conf_theme_window_status_activity_attr=${tmux_conf_theme_window_status_activity_attr:-'underscore'} +# tmux setw -g window-status-activity-style "fg=$tmux_conf_theme_window_status_activity_fg,bg=$tmux_conf_theme_window_status_activity_bg,$tmux_conf_theme_window_status_activity_attr" +# +# tmux_conf_theme_window_status_bell_fg=${tmux_conf_theme_window_status_bell_fg:-'#ffff00'} # yellow +# tmux_conf_theme_window_status_bell_bg=${tmux_conf_theme_window_status_bell_bg:-'default'} +# tmux_conf_theme_window_status_bell_attr=${tmux_conf_theme_window_status_bell_attr:-'blink,bold'} +# tmux setw -g window-status-bell-style "fg=$tmux_conf_theme_window_status_bell_fg,bg=$tmux_conf_theme_window_status_bell_bg,$tmux_conf_theme_window_status_bell_attr" +# +# tmux_conf_theme_window_status_last_fg=${tmux_conf_theme_window_status_last_fg:-'#00afff'} # light blue +# tmux_conf_theme_window_status_last_bg=${tmux_conf_theme_window_status_last_bg:-'default'} +# tmux_conf_theme_window_status_last_attr=${tmux_conf_theme_window_status_last_attr:-'none'} +# tmux setw -g window-status-last-style "fg=$tmux_conf_theme_window_status_last_fg,bg=$tmux_conf_theme_window_status_last_bg,$tmux_conf_theme_window_status_last_attr" +# +# # -- indicators +# +# tmux_conf_theme_pairing=${tmux_conf_theme_pairing:-'👓'} # U+1F453 +# tmux_conf_theme_pairing_fg=${tmux_conf_theme_pairing_fg:-'#e4e4e4'} # white +# tmux_conf_theme_pairing_bg=${tmux_conf_theme_pairing_bg:-'none'} +# tmux_conf_theme_pairing_attr=${tmux_conf_theme_pairing_attr:-'none'} +# +# tmux_conf_theme_prefix=${tmux_conf_theme_prefix:-'⌨'} # U+2328 +# tmux_conf_theme_prefix_fg=${tmux_conf_theme_prefix_fg:-'#e4e4e4'} # white +# tmux_conf_theme_prefix_bg=${tmux_conf_theme_prefix_bg:-'none'} +# tmux_conf_theme_prefix_attr=${tmux_conf_theme_prefix_attr:-'none'} +# +# tmux_conf_theme_root=${tmux_conf_theme_root:-'!'} +# tmux_conf_theme_root_fg=${tmux_conf_theme_root_fg:-'none'} +# tmux_conf_theme_root_bg=${tmux_conf_theme_root_bg:-'none'} +# tmux_conf_theme_root_attr=${tmux_conf_theme_root_attr:-'bold,blink'} +# +# tmux_conf_theme_synchronized=${tmux_conf_theme_synchronized:-'🔒'} # U+1F512 +# tmux_conf_theme_synchronized_fg=${tmux_conf_theme_synchronized_fg:-'none'} +# tmux_conf_theme_synchronized_bg=${tmux_conf_theme_synchronized_bg:-'none'} +# tmux_conf_theme_synchronized_attr=${tmux_conf_theme_synchronized_attr:-'none'} +# +# # -- status left style +# +# tmux_conf_theme_status_left=${tmux_conf_theme_status_left-' ❐ #S '} +# tmux_conf_theme_status_left_fg=${tmux_conf_theme_status_left_fg:-'#000000,#e4e4e4,#e4e4e4'} # black, white , white +# tmux_conf_theme_status_left_bg=${tmux_conf_theme_status_left_bg:-'#ffff00,#ff00af,#00afff'} # yellow, pink, white blue +# tmux_conf_theme_status_left_attr=${tmux_conf_theme_status_left_attr:-'bold,none,none'} +# +# tmux_conf_theme_status_left=$(echo "$tmux_conf_theme_status_left" | sed \ +# -e "s/#{pairing}/#[fg=$tmux_conf_theme_pairing_fg]#[bg=$tmux_conf_theme_pairing_bg]#[$tmux_conf_theme_pairing_attr]#{?session_many_attached,$tmux_conf_theme_pairing,}/g") +# +# tmux_conf_theme_status_left=$(echo "$tmux_conf_theme_status_left" | sed \ +# -e "s/#{prefix}/#[fg=$tmux_conf_theme_prefix_fg]#[bg=$tmux_conf_theme_prefix_bg]#[$tmux_conf_theme_prefix_attr]#{?client_prefix,$tmux_conf_theme_prefix,}/g") +# +# tmux_conf_theme_status_left=$(echo "$tmux_conf_theme_status_left" | sed \ +# -e "s%#{root}%#[fg=$tmux_conf_theme_root_fg]#[bg=$tmux_conf_theme_root_bg]#[$tmux_conf_theme_root_attr]#(cut -c3- ~/.tmux.conf | sh -s _root #{pane_tty} #D)#[inherit]%g") +# +# tmux_conf_theme_status_left=$(echo "$tmux_conf_theme_status_left" | sed \ +# -e "s%#{synchronized}%#[fg=$tmux_conf_theme_synchronized_fg]#[bg=$tmux_conf_theme_synchronized_bg]#[$tmux_conf_theme_synchronized_attr]#{?pane_synchronized,$tmux_conf_theme_synchronized,}%g") +# +# if [ -n "$tmux_conf_theme_status_left" ]; then +# status_left=$(awk \ +# -v fg_="$tmux_conf_theme_status_left_fg" \ +# -v bg_="$tmux_conf_theme_status_left_bg" \ +# -v attr_="$tmux_conf_theme_status_left_attr" \ +# -v mainsep="$tmux_conf_theme_left_separator_main" \ +# -v subsep="$tmux_conf_theme_left_separator_sub" ' +# function subsplit(s, l, i, a, r) +# { +# l = split(s, a, ",") +# for (i = 1; i <= l; ++i) +# { +# o = split(a[i], _, "(") - 1 +# c = split(a[i], _, ")") - 1 +# open += o - c +# o_ = split(a[i], _, "{") - 1 +# c_ = split(a[i], _, "}") - 1 +# open_ += o_ - c_ +# o__ = split(a[i], _, "[") - 1 +# c__ = split(a[i], _, "]") - 1 +# open__ += o__ - c__ +# +# if (i == l) +# r = sprintf("%s%s", r, a[i]) +# else if (open || open_ || open__) +# r = sprintf("%s%s,", r, a[i]) +# else +# r = sprintf("%s%s#[fg=%s,bg=%s,%s]%s", r, a[i], fg[j], bg[j], attr[j], subsep) +# } +# +# gsub(/#\[inherit\]/, sprintf("#[default]#[fg=%s,bg=%s,%s]", fg[j], bg[j], attr[j]), r) +# return r +# } +# BEGIN { +# FS = "|" +# l1 = split(fg_, fg, ",") +# l2 = split(bg_, bg, ",") +# l3 = split(attr_, attr, ",") +# l = l1 < l2 ? (l1 < l3 ? l1 : l3) : (l2 < l3 ? l2 : l3) +# } +# { +# for (i = j = 1; i <= NF; ++i) +# { +# if (open || open_ || open__) +# printf "|%s", subsplit($i) +# else +# { +# if (i > 1) +# printf "#[fg=%s,bg=%s,none]%s#[fg=%s,bg=%s,%s]%s", bg[j_], bg[j], mainsep, fg[j], bg[j], attr[j], subsplit($i) +# else +# printf "#[fg=%s,bg=%s,%s]%s", fg[j], bg[j], attr[j], subsplit($i) +# } +# +# if (!open && !open_ && !open__) +# { +# j_ = j +# j = j % l + 1 +# } +# } +# printf "#[fg=%s,bg=%s,none]%s", bg[j_], "default", mainsep +# }' << EOF +# $tmux_conf_theme_status_left +# EOF +# ) +# fi +# +# status_left="$status_left " +# +# # -- status right style +# +# tmux_conf_theme_status_right=${tmux_conf_theme_status_right-'#{pairing}#{prefix} #{battery_status} #{battery_bar} #{battery_percentage} , %R , %d %b | #{username} | #{hostname} '} +# tmux_conf_theme_status_right_fg=${tmux_conf_theme_status_right_fg:-'#8a8a8a,#e4e4e4,#000000'} # light gray, white, black +# tmux_conf_theme_status_right_bg=${tmux_conf_theme_status_right_bg:-'#080808,#d70000,#e4e4e4'} # dark gray, red, white +# tmux_conf_theme_status_right_attr=${tmux_conf_theme_status_right_attr:-'none,none,bold'} +# +# tmux_conf_theme_status_right=$(echo "$tmux_conf_theme_status_right" | sed \ +# -e "s/#{pairing}/#[fg=$tmux_conf_theme_pairing_fg]#[bg=$tmux_conf_theme_pairing_bg]#[$tmux_conf_theme_pairing_attr]#{?session_many_attached,$tmux_conf_theme_pairing,}/g") +# +# tmux_conf_theme_status_right=$(echo "$tmux_conf_theme_status_right" | sed \ +# -e "s/#{prefix}/#[fg=$tmux_conf_theme_prefix_fg]#[bg=$tmux_conf_theme_prefix_bg]#[$tmux_conf_theme_prefix_attr]#{?client_prefix,$tmux_conf_theme_prefix,}/g") +# +# tmux_conf_theme_status_right=$(echo "$tmux_conf_theme_status_right" | sed \ +# -e "s%#{root}%#[fg=$tmux_conf_theme_root_fg]#[bg=$tmux_conf_theme_root_bg]#[$tmux_conf_theme_root_attr]#(cut -c3- ~/.tmux.conf | sh -s _root #{pane_tty} #D)#[inherit]%g") +# +# tmux_conf_theme_status_right=$(echo "$tmux_conf_theme_status_right" | sed \ +# -e "s%#{synchronized}%#[fg=$tmux_conf_theme_synchronized_fg]#[bg=$tmux_conf_theme_synchronized_bg]#[$tmux_conf_theme_synchronized_attr]#{?pane_synchronized,$tmux_conf_theme_synchronized,}%g") +# +# if [ -n "$tmux_conf_theme_status_right" ]; then +# status_right=$(awk \ +# -v fg_="$tmux_conf_theme_status_right_fg" \ +# -v bg_="$tmux_conf_theme_status_right_bg" \ +# -v attr_="$tmux_conf_theme_status_right_attr" \ +# -v mainsep="$tmux_conf_theme_right_separator_main" \ +# -v subsep="$tmux_conf_theme_right_separator_sub" ' +# function subsplit(s, l, i, a, r) +# { +# l = split(s, a, ",") +# for (i = 1; i <= l; ++i) +# { +# o = split(a[i], _, "(") - 1 +# c = split(a[i], _, ")") - 1 +# open += o - c +# o_ = split(a[i], _, "{") - 1 +# c_ = split(a[i], _, "}") - 1 +# open_ += o_ - c_ +# o__ = split(a[i], _, "[") - 1 +# c__ = split(a[i], _, "]") - 1 +# open__ += o__ - c__ +# +# if (i == l) +# r = sprintf("%s%s", r, a[i]) +# else if (open || open_ || open__) +# r = sprintf("%s%s,", r, a[i]) +# else +# r = sprintf("%s%s#[fg=%s,bg=%s,%s]%s", r, a[i], fg[j], bg[j], attr[j], subsep) +# } +# +# gsub(/#\[inherit\]/, sprintf("#[default]#[fg=%s,bg=%s,%s]", fg[j], bg[j], attr[j]), r) +# return r +# } +# BEGIN { +# FS = "|" +# l1 = split(fg_, fg, ",") +# l2 = split(bg_, bg, ",") +# l3 = split(attr_, attr, ",") +# l = l1 < l2 ? (l1 < l3 ? l1 : l3) : (l2 < l3 ? l2 : l3) +# } +# { +# for (i = j = 1; i <= NF; ++i) +# { +# if (open_ || open || open__) +# printf "|%s", subsplit($i) +# else +# printf "#[fg=%s,bg=%s,none]%s#[fg=%s,bg=%s,%s]%s", bg[j], (i == 1) ? "default" : bg[j_], mainsep, fg[j], bg[j], attr[j], subsplit($i) +# +# if (!open && !open_ && !open__) +# { +# j_ = j +# j = j % l + 1 +# } +# } +# }' << EOF +# $tmux_conf_theme_status_right +# EOF +# ) +# fi +# +# # -- variables +# +# tmux set -g '@root' "$tmux_conf_theme_root" +# +# tmux_conf_battery_bar_symbol_full=${tmux_conf_battery_bar_symbol_full:-'◼'} +# tmux_conf_battery_bar_symbol_empty=${tmux_conf_battery_bar_symbol_empty:-'◻'} +# tmux_conf_battery_bar_length=${tmux_conf_battery_bar_length:-'auto'} +# tmux_conf_battery_bar_palette=${tmux_conf_battery_bar_palette:-'gradient'} +# tmux_conf_battery_hbar_palette=${tmux_conf_battery_hbar_palette:-'gradient'} # red, orange, green +# tmux_conf_battery_vbar_palette=${tmux_conf_battery_vbar_palette:-'gradient'} # red, orange, green +# tmux_conf_battery_status_charging=${tmux_conf_battery_status_charging:-'↑'} # U+2191 +# tmux_conf_battery_status_discharging=${tmux_conf_battery_status_discharging:-'↓'} # U+2193 +# +# case "$status_left $status_right" in +# *'#{battery_status}'*|*'#{battery_bar}'*|*'#{battery_hbar}'*|*'#{battery_vbar}'*|*'#{battery_percentage}'*) +# status_left=$(echo "$status_left" | sed -E \ +# -e 's/#\{(\?)?battery_bar/#\{\1@battery_bar/g' \ +# -e 's/#\{(\?)?battery_hbar/#\{\1@battery_hbar/g' \ +# -e 's/#\{(\?)?battery_vbar/#\{\1@battery_vbar/g' \ +# -e 's/#\{(\?)?battery_status/#\{\1@battery_status/g' \ +# -e 's/#\{(\?)?battery_percentage/#\{\1@battery_percentage/g') +# status_right=$(echo "$status_right" | sed -E \ +# -e 's/#\{(\?)?battery_bar/#\{\1@battery_bar/g' \ +# -e 's/#\{(\?)?battery_hbar/#\{\1@battery_hbar/g' \ +# -e 's/#\{(\?)?battery_vbar/#\{\1@battery_vbar/g' \ +# -e 's/#\{(\?)?battery_status/#\{\1@battery_status/g' \ +# -e 's/#\{(\?)?battery_percentage/#\{\1@battery_percentage/g') +# +# tmux set -g '@battery_bar_symbol_full' "$tmux_conf_battery_bar_symbol_full" \;\ +# set -g '@battery_bar_symbol_empty' "$tmux_conf_battery_bar_symbol_empty" \;\ +# set -g '@battery_bar_length' "$tmux_conf_battery_bar_length" \;\ +# set -g '@battery_bar_palette' "$tmux_conf_battery_bar_palette" \;\ +# set -g '@battery_hbar_palette' "$tmux_conf_battery_hbar_palette" \;\ +# set -g '@battery_vbar_palette' "$tmux_conf_battery_vbar_palette" \;\ +# set -g '@battery_status_charging' "$tmux_conf_battery_status_charging" \;\ +# set -g '@battery_status_discharging' "$tmux_conf_battery_status_discharging" +# status_right="#(cut -c3- ~/.tmux.conf | sh -s _battery)$status_right" +# ;; +# esac +# +# case "$status_left $status_right" in +# *'#{username}'*|*'#{hostname}'*|*'#{username_ssh}'*|*'#{hostname_ssh}'*) +# status_left=$(echo "$status_left" | sed \ +# -e 's%#{username}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} false #D)%g' \ +# -e 's%#{hostname}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} false #D)%g' \ +# -e 's%#{username_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} true #D)%g' \ +# -e 's%#{hostname_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} true #D)%g') +# status_right=$(echo "$status_right" | sed \ +# -e 's%#{username}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} false #D)%g' \ +# -e 's%#{hostname}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} false #D)%g' \ +# -e 's%#{username_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _username #{pane_tty} true #D)%g' \ +# -e 's%#{hostname_ssh}%#(cut -c3- ~/.tmux.conf | sh -s _hostname #{pane_tty} true #D)%g') +# ;; +# esac +# +# case "$status_left $status_right" in +# *'#{uptime_d}'*|*'#{uptime_h}'*|*'#{uptime_m}'*) +# status_left=$(echo "$status_left" | sed -E \ +# -e 's/#\{(\?)?uptime_d/#\{\1@uptime_d/g' \ +# -e 's/#\{(\?)?uptime_h/#\{\1@uptime_h/g' \ +# -e 's/#\{(\?)?uptime_m/#\{\1@uptime_m/g' \ +# -e 's/#\{(\?)?uptime_s/#\{\1@uptime_s/g') +# status_right=$(echo "$status_right" | sed -E \ +# -e 's/#\{(\?)?uptime_d/#\{\1@uptime_d/g' \ +# -e 's/#\{(\?)?uptime_h/#\{\1@uptime_h/g' \ +# -e 's/#\{(\?)?uptime_m/#\{\1@uptime_m/g' \ +# -e 's/#\{(\?)?uptime_s/#\{\1@uptime_s/g') +# status_right="#(cut -c3- ~/.tmux.conf | sh -s _uptime)$status_right" +# ;; +# esac +# +# case "$status_left $status_right" in +# *'#{loadavg}'*) +# status_left=$(echo "$status_left" | sed -E \ +# -e 's/#\{(\?)?loadavg/#\{\1@loadavg/g') +# status_right=$(echo "$status_right" | sed -E \ +# -e 's/#\{(\?)?loadavg/#\{\1@loadavg/g') +# status_right="#(cut -c3- ~/.tmux.conf | sh -s _loadavg)$status_right" +# ;; +# esac +# +# status_left=$(echo "$status_left" | sed 's%#{circled_session_name}%#(cut -c3- ~/.tmux.conf | sh -s _circled #S)%g') +# status_right=$(echo "$status_right" | sed 's%#{circled_session_name}%#(cut -c3- ~/.tmux.conf | sh -s _circled #S)%g') +# +# tmux set -g status-left-length 1000 \; set -g status-left "$status_left" \;\ +# set -g status-right-length 1000 \; set -g status-right "$status_right" +# +# # -- clock ------------------------------------------------------------- +# +# tmux_conf_theme_clock_colour=${tmux_conf_theme_clock_colour:-'#00afff'} # light blue +# tmux_conf_theme_clock_style=${tmux_conf_theme_clock_style:-'24'} +# tmux setw -g clock-mode-colour "$tmux_conf_theme_clock_colour" \;\ +# setw -g clock-mode-style "$tmux_conf_theme_clock_style" +# } +# +# _apply_configuration() { +# +# # see https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard +# if command -v reattach-to-user-namespace > /dev/null 2>&1; then +# default_shell="$(tmux show -gv default-shell)" +# case "$default_shell" in +# *fish) +# tmux set -g default-command "reattach-to-user-namespace -l $default_shell" +# ;; +# *sh) +# tmux set -g default-command "exec $default_shell... 2> /dev/null & reattach-to-user-namespace -l $default_shell" +# ;; +# esac +# fi +# +# _apply_overrides +# _apply_bindings +# _apply_theme +# for name in $(printenv | grep -Eo '^tmux_conf_[^=]+'); do tmux setenv -gu "$name"; done; +# } +# +# _urlview() { +# tmux capture-pane -J -S - -E - -b "urlview-$1" -t "$1" +# tmux split-window "tmux show-buffer -b urlview-$1 | urlview || true; tmux delete-buffer -b urlview-$1" +# } +# +# _fpp() { +# tmux capture-pane -J -S - -E - -b "fpp-$1" -t "$1" +# tmux split-window "tmux show-buffer -b fpp-$1 | fpp || true; tmux delete-buffer -b fpp-$1" +# } +# +# "$@" diff --git a/dotfiles/.tmux.conf.local b/dotfiles/.tmux.conf.local new file mode 100644 index 0000000..4295b29 --- /dev/null +++ b/dotfiles/.tmux.conf.local @@ -0,0 +1,295 @@ +# https://github.com/gpakosz/.tmux +# (‑●‑●)> dual licensed under the WTFPL v2 license and the MIT license, +# without any warranty. +# Copyright 2012— Gregory Pakosz (@gpakosz). + + +# -- navigation ---------------------------------------------------------------- + +# if you're running tmux within iTerm2 +# - and tmux is 1.9 or 1.9a +# - and iTerm2 is configured to let option key act as +Esc +# - and iTerm2 is configured to send [1;9A -> [1;9D for option + arrow keys +# then uncomment the following line to make Meta + arrow keys mapping work +#set -ga terminal-overrides "*:kUP3=\e[1;9A,*:kDN3=\e[1;9B,*:kRIT3=\e[1;9C,*:kLFT3=\e[1;9D" + + +# -- windows & pane creation --------------------------------------------------- + +# new window retains current path, possible values are: +# - true +# - false (default) +tmux_conf_new_window_retain_current_path=false + +# new pane retains current path, possible values are: +# - true (default) +# - false +tmux_conf_new_pane_retain_current_path=true + +# new pane tries to reconnect ssh sessions (experimental), possible values are: +# - true +# - false (default) +tmux_conf_new_pane_reconnect_ssh=false + +# prompt for session name when creating a new session, possible values are: +# - true +# - false (default) +tmux_conf_new_session_prompt=false + + +# -- display ------------------------------------------------------------------- + +# RGB 24-bit colour support (tmux >= 2.2), possible values are: +# - true +# - false (default) +tmux_conf_theme_24b_colour=true + +# window style +tmux_conf_theme_window_fg='default' +tmux_conf_theme_window_bg='default' + +# highlight focused pane (tmux >= 2.1), possible values are: +# - true +# - false (default) +tmux_conf_theme_highlight_focused_pane=false + +# focused pane colours: +tmux_conf_theme_focused_pane_fg='default' +tmux_conf_theme_focused_pane_bg='#0087d7' # light blue + +# pane border style, possible values are: +# - thin (default) +# - fat +tmux_conf_theme_pane_border_style=thin + +# pane borders colours: +tmux_conf_theme_pane_border='#3a3a3a' # gray +tmux_conf_theme_pane_active_border='#00afff' # light blue + +# pane indicator colours +tmux_conf_theme_pane_indicator='#8ec07c' # light blue +tmux_conf_theme_pane_active_indicator='#8ec07c' # light blue + +# status line style +tmux_conf_theme_message_fg='#000000' # black +tmux_conf_theme_message_bg='#fabd2f' # yellow +tmux_conf_theme_message_attr='bold' + +# status line command style (<prefix> : Escape) +tmux_conf_theme_message_command_fg='#ffff00' # yellow +tmux_conf_theme_message_command_bg='#000000' # black +tmux_conf_theme_message_command_attr='bold' + +# window modes style +tmux_conf_theme_mode_fg='#000000' # black +tmux_conf_theme_mode_bg='#ffff00' # yellow +tmux_conf_theme_mode_attr='bold' + +# status line style +tmux_conf_theme_status_fg='#8a8a8a' # light gray +tmux_conf_theme_status_bg='#3a3a3a' # dark gray +tmux_conf_theme_status_attr='none' + +# terminal title +# - built-in variables are: +# - #{circled_window_index} +# - #{circled_session_name} +# - #{hostname} +# - #{hostname_ssh} +# - #{username} +# - #{username_ssh} +tmux_conf_theme_terminal_title='#h ❐ #S ● #I #W' + +# window status style +# - built-in variables are: +# - #{circled_window_index} +# - #{circled_session_name} +# - #{hostname} +# - #{hostname_ssh} +# - #{username} +# - #{username_ssh} +tmux_conf_theme_window_status_fg='#8a8a8a' # light gray +tmux_conf_theme_window_status_bg='#3a3a3a' # dark gray +tmux_conf_theme_window_status_attr='none' +tmux_conf_theme_window_status_format='#I #W' +#tmux_conf_theme_window_status_format='#{circled_window_index} #W' +#tmux_conf_theme_window_status_format='#I #W#{?window_bell_flag,🔔,}#{?window_zoomed_flag,🔍,}' + +# window current status style +# - built-in variables are: +# - #{circled_window_index} +# - #{circled_session_name} +# - #{hostname} +# - #{hostname_ssh} +# - #{username} +# - #{username_ssh} +tmux_conf_theme_window_status_current_fg='#000000' # black +tmux_conf_theme_window_status_current_bg='#8ec07c' # light blue +tmux_conf_theme_window_status_current_attr='bold' +tmux_conf_theme_window_status_current_format='#I #W' +#tmux_conf_theme_window_status_current_format='#{circled_window_index} #W' +#tmux_conf_theme_window_status_current_format='#I #W#{?window_zoomed_flag,🔍,}' + +# window activity status style +tmux_conf_theme_window_status_activity_fg='default' +tmux_conf_theme_window_status_activity_bg='default' +tmux_conf_theme_window_status_activity_attr='underscore' + +# window bell status style +tmux_conf_theme_window_status_bell_fg='#ffff00' # yellow +tmux_conf_theme_window_status_bell_bg='default' +tmux_conf_theme_window_status_bell_attr='blink,bold' + +# window last status style +tmux_conf_theme_window_status_last_fg='#8ec07c' # light blue +tmux_conf_theme_window_status_last_bg='default' +tmux_conf_theme_window_status_last_attr='none' + +# status left/right sections separators +tmux_conf_theme_left_separator_main='' +tmux_conf_theme_left_separator_sub='' +tmux_conf_theme_right_separator_main='' +tmux_conf_theme_right_separator_sub='' +#tmux_conf_theme_left_separator_main='' # /!\ you don't need to install Powerline +#tmux_conf_theme_left_separator_sub='' # you only need fonts patched with +#tmux_conf_theme_right_separator_main='' # Powerline symbols or the standalone +#tmux_conf_theme_right_separator_sub='' # PowerlineSymbols.otf font + +# status left/right content: +# - separate main sections with '|' +# - separate subsections with ',' +# - built-in variables are: +# - #{battery_bar} +# - #{battery_hbar} +# - #{battery_percentage} +# - #{battery_status} +# - #{battery_vbar} +# - #{circled_session_name} +# - #{hostname_ssh} +# - #{hostname} +# - #{loadavg} +# - #{pairing} +# - #{prefix} +# - #{root} +# - #{synchronized} +# - #{uptime_d} +# - #{uptime_h} +# - #{uptime_m} +# - #{uptime_s} +# - #{username} +# - #{username_ssh} +tmux_conf_theme_status_left=' ❐ #S | ↑#{?uptime_d, #{uptime_d}d,}#{?uptime_h, #{uptime_h}h,}#{?uptime_m, #{uptime_m}m,} ' +tmux_conf_theme_status_right='#{prefix}#{pairing}#{synchronized} #{?battery_status, #{battery_status},}#{?battery_bar, #{battery_bar},}#{?battery_percentage, #{battery_percentage},} , %R | #{username}#{root} | #{hostname} ' + +# status left style +tmux_conf_theme_status_left_fg='#000000,#458588,#e4e4e4' # black, white , white +tmux_conf_theme_status_left_bg='#458588,#3a3a3a,#00afff' # yellow, pink, white blue +tmux_conf_theme_status_left_attr='none,none,none' + +# status right style +tmux_conf_theme_status_right_fg='#458588,#000000,#000000' # light gray, white, black +tmux_conf_theme_status_right_bg='#3a3a3a,#8ec07c,#458588' # dark gray, red, white +tmux_conf_theme_status_right_attr='none,none,none' + +# pairing indicator +tmux_conf_theme_pairing='👓 ' # U+1F453 +tmux_conf_theme_pairing_fg='none' +tmux_conf_theme_pairing_bg='none' +tmux_conf_theme_pairing_attr='none' + +# prefix indicator +tmux_conf_theme_prefix='⌨ ' # U+2328 +tmux_conf_theme_prefix_fg='none' +tmux_conf_theme_prefix_bg='none' +tmux_conf_theme_prefix_attr='none' + +# root indicator +tmux_conf_theme_root='!' +tmux_conf_theme_root_fg='none' +tmux_conf_theme_root_bg='none' +tmux_conf_theme_root_attr='bold,blink' + +# synchronized indicator +tmux_conf_theme_synchronized='🔒' # U+1F512 +tmux_conf_theme_synchronized_fg='none' +tmux_conf_theme_synchronized_bg='none' +tmux_conf_theme_synchronized_attr='none' + +# battery bar symbols +tmux_conf_battery_bar_symbol_full='◼' +tmux_conf_battery_bar_symbol_empty='◻' +#tmux_conf_battery_bar_symbol_full='♥' +#tmux_conf_battery_bar_symbol_empty='·' + +# battery bar length (in number of symbols), possible values are: +# - auto +# - a number, e.g. 5 +tmux_conf_battery_bar_length='6' + +# battery bar palette, possible values are: +# - gradient (default) +# - heat +# - 'colour_full_fg,colour_empty_fg,colour_bg' +tmux_conf_battery_bar_palette='gradient' +#tmux_conf_battery_bar_palette='#d70000,#e4e4e4,#000000' # red, white, black + +# battery hbar palette, possible values are: +# - gradient (default) +# - heat +# - 'colour_low,colour_half,colour_full' +tmux_conf_battery_hbar_palette='gradient' +#tmux_conf_battery_hbar_palette='#d70000,#ff5f00,#5fff00' # red, orange, green + +# battery vbar palette, possible values are: +# - gradient (default) +# - heat +# - 'colour_low,colour_half,colour_full' +tmux_conf_battery_vbar_palette='gradient' +#tmux_conf_battery_vbar_palette='#d70000,#ff5f00,#5fff00' # red, orange, green + +# symbols used to indicate whether battery is charging or discharging +tmux_conf_battery_status_charging='⚡' # U+2191 +tmux_conf_battery_status_discharging='🔋' # U+2193 +#tmux_conf_battery_status_charging='⚡ ' # U+26A1 +#tmux_conf_battery_status_charging='🔌 ' # U+1F50C +#tmux_conf_battery_status_discharging='🔋 ' # U+1F50B + +# clock style (when you hit <prefix> + t) +# you may want to use %I:%M %p in place of %R in tmux_conf_theme_status_right +tmux_conf_theme_clock_colour='#00afff' # light blue +tmux_conf_theme_clock_style='24' + + +# -- clipboard ----------------------------------------------------------------- + +# in copy mode, copying selection also copies to the OS clipboard +# - true +# - false (default) +# on macOS, this requires installing reattach-to-user-namespace, see README.md +# on Linux, this requires xsel or xclip +tmux_conf_copy_to_os_clipboard=false + + +# -- user customizations ------------------------------------------------------- +# this is the place to override or undo settings + +# increase history size +#set -g history-limit 10000 + +# start with mouse mode enabled +#set -g mouse on + +# force Vi mode +# really you should export VISUAL or EDITOR environment variable, see manual +#set -g status-keys vi +#set -g mode-keys vi + +# replace C-b by C-a instead of using both prefixes +# set -gu prefix2 +# unbind C-a +# unbind C-b +# set -g prefix C-a +# bind C-a send-prefix + +# move status line to top +#set -g status-position top diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc new file mode 100644 index 0000000..aeadd1e --- /dev/null +++ b/dotfiles/.vimrc @@ -0,0 +1,127 @@ + +let mapleader =" " +" Load Pathogen for plugins: +" execute pathogen#infect() +" execute pathogen#helptags() + +" Some basics: + set nocompatible + filetype plugin on + syntax on + set background=dark + set termguicolors + set guicursor=n-v-c-sm:hor20,i-ci-ve:ver25,r-cr-o:block + set cursorline + let g:gruvbox_italic=1 + let g:airline_theme='bubblegum' + let g:airline#extensions#tabline#enabled = 1 + colorscheme gruvbox +" set encoding=utf-8 + set number + +" airline + let g:airline_left_sep='' + let g:airline_right_sep='' + let g:airline_inactive_collapse=1 + +" indentation + filetype plugin indent on + set tabstop=4 + set shiftwidth=4 + set expandtab + +" Splits open at the bottom and right, which is non-retarded, unlike vim defaults. + set splitbelow + set splitright + +" Shortcutting split navigation, saving a keypress: + map <C-h> <C-w>h + map <C-j> <C-w>j + map <C-k> <C-w>k + map <C-l> <C-w>l + +" Open the selected text in a split (i.e. should be a file). + map <leader>o "oyaW:sp <C-R>o<CR> + xnoremap <leader>o "oy<esc>:sp <C-R>o<CR> + vnoremap <leader>o "oy<esc>:sp <C-R>o<CR> + +" Replace all is aliased to S. + nnoremap S :%s//g<Left><Left> + +" Open corresponding.pdf + map <leader>p :!mupdf <c-r>%<backspace><backspace><backspace>pdf &<CR><CR> + +" Compile document + map <leader>c :!compiler <c-r>%<CR> + +" Interpret .md files, etc. as .markdown + let g:vimwiki_ext2syntax = {'.Rmd': 'markdown', '.rmd': 'markdown','.md': 'markdown', '.markdown': 'markdown', '.mdown': 'markdown'} + +" Make calcurse notes markdown compatible: + autocmd BufRead,BufNewFile /tmp/calcurse*,~/.calcurse/notes/* set filetype=markdown + +" Spell-check set to F2: + map <F2> :setlocal spell! spelllang=en_us,es,ru<CR> + +" Use urlview to choose and open a url: + :noremap <leader>u :w<Home>silent <End> !urlview<CR> + +" Copy selected text to system clipboard (requires gvim installed): + vnoremap <C-c> "*y :let @+=@*<CR> + +" Copy and paste to clipboard + vmap <F3> "+y + map <F4> "+p + +" Enable Goyo by default for mutt writting + " Goyo's width will be the line limit in mutt. + autocmd BufRead,BufNewFile /tmp/neomutt* let g:goyo_width=72 + autocmd BufRead,BufNewFile /tmp/neomutt* :Goyo + +" Enable autocompletion: + set wildmode=longest,list,full + set wildmenu + imap <tab> <C-N> + +" Automatically deletes all tralling whitespace on save. + autocmd BufWritePre * %s/\s\+$//e + +" When shortcut files are updated, renew bash and ranger configs with new material: + autocmd BufWritePost ~/.scripts/folders,~/.scripts/configs !bash ~/.scripts/shortcuts.sh + +" Runs a script that cleans out tex build files whenever I close out of a .tex file. + autocmd VimLeave *.tex !texclear + +" Disables automatic commenting on newline: + autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o + +" Join line with ctrl + nnoremap <M-j> J + +" Easier tab navigation (similar to qutebrowser) + nnoremap J :tabn<cr> + nnoremap K :tabp<cr> + +" C-T for new tab + nnoremap <C-t> :tabe<Space> + +" Navigating with guides + inoremap <Space><Tab> <Esc>/<++><Enter>"_c4l + vnoremap <Space><Tab> <Esc>/<++><Enter>"_c4l + map <Space><Tab> <Esc>/<++><Enter>"_c4l + inoremap ;gui <++> + +" For normal mode when in terminals (in X I have caps mapped to esc, this replaces it when I don't have X) + inoremap jw <Esc> + inoremap wj <Esc> + +" latex pdf viewer + let g:livepreview_previewer = 'zathura' + +" To avoid switching between keyboards + set langmap=ФИСВУАПРШОЛДЬТЩЗЙКЫЕГМЦЧНЯ;ABCDEFGHIJKLMNOPQRSTUVWXYZ,фисвуапршолдьтщзйкыегмцчня;abcdefghijklmnopqrstuvwxyz + +" neomake + let g:neomake_javascript_enabled_makers = ['eslint'] + let g:neomake_javascript_eslint_exe = $PWD .'/node_modules/.bin/eslint' + call neomake#configure#automake('w') diff --git a/dotfiles/.xprofile b/dotfiles/.xprofile new file mode 120000 index 0000000..aa7da3a --- /dev/null +++ b/dotfiles/.xprofile @@ -0,0 +1 @@ +.profile
\ No newline at end of file diff --git a/dotfiles/.zprofile b/dotfiles/.zprofile new file mode 100644 index 0000000..250a7c8 --- /dev/null +++ b/dotfiles/.zprofile @@ -0,0 +1,13 @@ +export PATH=$PATH:$HOME/.scripts +export SCROT_DIR=$HOME/Pictures/screenshots/ +export QT_QPA_PLATFORMTHEME="qt5ct" + +# User specific environment and startup programs: +export LANG=en_US.UTF-8 +export TERM=termite +export TERMINAL=termite +export EDITOR="nvim" + +if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then + .scripts/swaystart +fi diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc new file mode 100644 index 0000000..5843369 --- /dev/null +++ b/dotfiles/.zshrc @@ -0,0 +1,112 @@ +# Colors and prompt +autoload -U colors && colors +if [[ -f /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]]; then + . /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +fi + +autoload -Uz vcs_info +precmd_vcs_info() { vcs_info } +precmd_functions+=( precmd_vcs_info ) +setopt prompt_subst + +PROMPT=$'\n''%{[38;5;14m%}%B%~ ${reset_color}%F{yellow}${vcs_info_msg_0_}%f'$'\n''%F{green}→%f ' +RPROMPT='%{[38;5;14m%} %n%f@%F{red}%m%f' +zstyle ':vcs_info:git:*' formats ' %b' + +# Basic auto/tab complete: +autoload -U compinit +zstyle ':completion:*' menu select +zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} +zstyle ':completion:*' completer _expand _complete _ignored _approximate +zstyle ':completion:*' select-prompt '%SScrolling active: current selection at %p%s' +zmodload zsh/complist +compinit +_comp_options+=(globdots) # Include hidden files. + +zstyle :compinstall filename '/home/yaroslav/.zshrc' + +# History +HISTFILE=~/.cache/zsh_history +HISTSIZE=10000 +SAVEHIST=10000 +setopt appendhistory autocd beep notify + +# vi mode +bindkey -v + +# Use vim keys in tab complete menu: +bindkey -M menuselect 'H' vi-backward-char +bindkey -M menuselect 'K' vi-up-line-or-history +bindkey -M menuselect 'L' vi-forward-char +bindkey -M menuselect 'J' vi-down-line-or-history +bindkey -v '^?' backward-delete-char + +# Change cursor shape for different vi modes. +function zle-keymap-select { + if [[ ${KEYMAP} == vicmd ]] || + [[ $1 = 'underscore' ]]; then + echo -ne '\e[3 q' + elif [[ ${KEYMAP} == main ]] || + [[ ${KEYMAP} == viins ]] || + [[ ${KEYMAP} = '' ]] || + [[ $1 = 'beam' ]]; then + echo -ne '\e[5 q' + fi +} + +echo -ne '\e[5 q' # Use beam shape cursor on startup. +preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt. + +zle -N zle-keymap-select + +# Environment variables +typeset -U PATH path +path=("$HOME/.scripts" "$path[@]") +export PATH +export EDITOR="nvim" +export TERMINAL="termite" +export BROWSER="qutebrowser" + +# Generic shortcuts +alias music="ncmpcpp" +alias clock="ncmpcpp -s clock" +alias news="newsboat" +alias email="neomutt" +alias files="vifm_launch" +alias audio="ncpamixer" +alias calendar="calcurse" +alias calc="R --no-save" + +# Mounting drive shortcuts +alias mnt="udisksctl mount -b" +alias umnt="udisksctl unmount -b" +alias dlock="udisksctl lock -b" +alias dulock="udisksctl unlock -b" + +# Some aliases +alias v="nvim" +alias vf="vifm_launch" +alias nf="clear && neofetch" # Le Redditfetch +alias eslint="./node_modules/.bin/eslint" +alias ls='ls -hN --color=auto --group-directories-first' +weath() { curl wttr.in/$1 ;} # Check the weather (give city or leave blank). + +# Internet +alias yt="youtube-dl --add-metadata -ic" # Download video link +alias yta="youtube-dl --add-metadata -xic" # Download only audio +alias YT="youtube-viewer" +alias starwars="telnet towel.blinkenlights.nl" + +# Audio and Music +alias mute="lmc mute" +alias vu="lmc up" +alias vd="lmc down" +alias play="mpc toggle" +alias next="mpc next" +alias prev="mpc prev" +alias pause="mpc pause" +alias beg="mpc seek 0%" +alias lilbak="mpc seek -10" +alias lilfor="mpc seek +10" +alias bigbak="mpc seek -120" +alias bigfor="mpc seek +120" diff --git a/dotfiles/hosts b/dotfiles/hosts new file mode 100644 index 0000000..39be2b7 --- /dev/null +++ b/dotfiles/hosts @@ -0,0 +1,49329 @@ +#<ip-address> <hostname.domain.org> <hostname> +127.0.0.1 localhost.localdomain localhost manjaro-5378 +::1 localhost.localdomain localhost manjaro-5378 + +#blocked sites/domains, etc. + +# Facebook +0.0.0.0 0-act.channel.facebook.com +0.0.0.0 0-edge-chat.facebook.com +0.0.0.0 1-act.channel.facebook.com +0.0.0.0 1-edge-chat.facebook.com +0.0.0.0 2-act.channel.facebook.com +0.0.0.0 2-edge-chat.facebook.com +0.0.0.0 3-act.channel.facebook.com +0.0.0.0 3-edge-chat.facebook.com +0.0.0.0 4-act.channel.facebook.com +0.0.0.0 4-edge-chat.facebook.com +0.0.0.0 5-act.channel.facebook.com +0.0.0.0 5-edge-chat.facebook.com +0.0.0.0 6-act.channel.facebook.com +0.0.0.0 6-edge-chat.facebook.com +0.0.0.0 act.channel.facebook.com +0.0.0.0 api-read.facebook.com +0.0.0.0 api.ak.facebook.com +0.0.0.0 api.connect.facebook.com +0.0.0.0 api.facebook.com +0.0.0.0 app.facebook.com +0.0.0.0 apps.facebook.com +0.0.0.0 ar-ar.facebook.com +0.0.0.0 attachment.fbsbx.com +0.0.0.0 attachments.facebook.com +0.0.0.0 b-api.facebook.com +0.0.0.0 b-graph.facebook.com +0.0.0.0 b.static.ak.facebook.com +0.0.0.0 b.static.ak.fbcdn.net +0.0.0.0 badge.facebook.com +0.0.0.0 beta-chat-01-05-ash3.facebook.com +0.0.0.0 bigzipfiles.facebook.com +0.0.0.0 blog.facebook.com +0.0.0.0 channel-ecmp-05-ash3.facebook.com +0.0.0.0 channel-staging-ecmp-05-ash3.facebook.com +0.0.0.0 channel-testing-ecmp-05-ash3.facebook.com +0.0.0.0 check4.facebook.com +0.0.0.0 check6.facebook.com +0.0.0.0 code.facebook.com +0.0.0.0 connect.facebook.com +0.0.0.0 connect.facebook.net +0.0.0.0 creative.ak.fbcdn.net +0.0.0.0 d.facebook.com +0.0.0.0 de-de.facebook.com +0.0.0.0 developers.facebook.com +0.0.0.0 edge-chat.facebook.com +0.0.0.0 ent-a.xx.fbcdn.net +0.0.0.0 ent-b.xx.fbcdn.net +0.0.0.0 ent-c.xx.fbcdn.net +0.0.0.0 ent-d.xx.fbcdn.net +0.0.0.0 ent-e.xx.fbcdn.net +0.0.0.0 es-la.facebook.com +0.0.0.0 external.ak.fbcdn.net +0.0.0.0 facebook.com +0.0.0.0 facebook.de +0.0.0.0 facebook.fr +0.0.0.0 fb.me +0.0.0.0 fbcdn-creative-a.akamaihd.net +0.0.0.0 fbcdn-photos-a.akamaihd.net +0.0.0.0 fbcdn-photos-e-a.akamaihd.net +0.0.0.0 fbcdn-profile-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-a-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-b-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-c-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-d-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-e-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-f-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-g-a.akamaihd.net +0.0.0.0 fbcdn-sphotos-h-a.akamaihd.net +0.0.0.0 fbcdn-video-a-a.akamaihd.net +0.0.0.0 fbcdn-video-b-a.akamaihd.net +0.0.0.0 fbcdn-video-c-a.akamaihd.net +0.0.0.0 fbcdn-video-d-a.akamaihd.net +0.0.0.0 fbcdn-video-e-a.akamaihd.net +0.0.0.0 fbcdn-video-f-a.akamaihd.net +0.0.0.0 fbcdn-video-g-a.akamaihd.net +0.0.0.0 fbcdn-video-h-a.akamaihd.net +0.0.0.0 fbcdn-video-i-a.akamaihd.net +0.0.0.0 fbcdn-video-j-a.akamaihd.net +0.0.0.0 fbcdn-video-k-a.akamaihd.net +0.0.0.0 fbcdn-video-l-a.akamaihd.net +0.0.0.0 fbcdn-video-m-a.akamaihd.net +0.0.0.0 fbcdn-video-n-a.akamaihd.net +0.0.0.0 fbcdn-video-o-a.akamaihd.net +0.0.0.0 fbcdn-video-p-a.akamaihd.net +0.0.0.0 fbcdn-vthumb-a.akamaihd.net +0.0.0.0 fbcdn.com +0.0.0.0 fbcdn.net +0.0.0.0 fbexternal-a.akamaihd.net +0.0.0.0 fbstatic-a.akamaihd.net +0.0.0.0 fr-fr.facebook.com +0.0.0.0 graph.facebook.com +0.0.0.0 hi-in.facebook.com +0.0.0.0 inyour-slb-01-05-ash3.facebook.com +0.0.0.0 it-it.facebook.com +0.0.0.0 ja-jp.facebook.com +0.0.0.0 login.facebook.com +0.0.0.0 m.facebook.com +0.0.0.0 messages-facebook.com +0.0.0.0 mqtt.facebook.com +0.0.0.0 newsroom.fb.com +0.0.0.0 orcart.facebook.com +0.0.0.0 origincache-ai-01-05-ash3.fbcdn.net +0.0.0.0 origincache-starfacebook-ai-01-05-ash3.facebook.com +0.0.0.0 photos-a.ak.fbcdn.net +0.0.0.0 photos-b.ak.fbcdn.net +0.0.0.0 photos-c.ak.fbcdn.net +0.0.0.0 photos-d.ak.fbcdn.net +0.0.0.0 photos-e.ak.fbcdn.net +0.0.0.0 photos-f.ak.fbcdn.net +0.0.0.0 photos-g.ak.fbcdn.net +0.0.0.0 photos-h.ak.fbcdn.net +0.0.0.0 profile.ak.facebook.com +0.0.0.0 profile.ak.fbcdn.net +0.0.0.0 pt-br.facebook.com +0.0.0.0 s-external.ak.fbcdn.net +0.0.0.0 s-static.ak.facebook.com +0.0.0.0 s-static.ak.fbcdn.net +0.0.0.0 s-static.facebook.com +0.0.0.0 scontent-a-lax.xx.fbcdn.net +0.0.0.0 scontent-a-sin.xx.fbcdn.net +0.0.0.0 scontent-a.xx.fbcdn.net +0.0.0.0 scontent-b-lax.xx.fbcdn.net +0.0.0.0 scontent-b-sin.xx.fbcdn.net +0.0.0.0 scontent-b.xx.fbcdn.net +0.0.0.0 scontent-c.xx.fbcdn.net +0.0.0.0 scontent-d.xx.fbcdn.net +0.0.0.0 scontent-e.xx.fbcdn.net +0.0.0.0 scontent-mxp.xx.fbcdn.net +0.0.0.0 scontent.xx.fbcdn.net +0.0.0.0 secure-profile.facebook.com +0.0.0.0 secure.facebook.com +0.0.0.0 sphotos-a.xx.fbcdn.net +0.0.0.0 ssl.connect.facebook.com +0.0.0.0 ssl.facebook.com +0.0.0.0 star.c10r.facebook.com +0.0.0.0 star.facebook.com +0.0.0.0 static.ak.connect.facebook.com +0.0.0.0 static.ak.facebook.com +0.0.0.0 static.ak.fbcdn.net +0.0.0.0 static.thefacebook.com +0.0.0.0 staticxx.facebook.com +0.0.0.0 touch.facebook.com +0.0.0.0 upload.facebook.com +0.0.0.0 video.xx.fbcdn.net +0.0.0.0 vpn.tfbnw.net +0.0.0.0 vthumb.ak.fbcdn.net +0.0.0.0 vupload.facebook.com +0.0.0.0 vupload2.vvv.facebook.com +0.0.0.0 www.connect.facebook.net +0.0.0.0 www.facebook.com +0.0.0.0 www.facebook.de +0.0.0.0 www.facebook.fr +0.0.0.0 www.fbcdn.com +0.0.0.0 www.fbcdn.net +0.0.0.0 www.login.facebook.com +0.0.0.0 zh-cn.facebook.com +0.0.0.0 zh-tw.facebook.com +0.0.0.0 igcdn-photos-aa.akamaihd.net +0.0.0.0 igcdn-photos-ba.akamaihd.net +0.0.0.0 igcdn-photos-ca.akamaihd.net +0.0.0.0 igcdn-photos-da.akamaihd.net +0.0.0.0 igcdn-photos-ea.akamaihd.net +0.0.0.0 igcdn-photos-fa.akamaihd.net +0.0.0.0 igcdn-photos-ga.akamaihd.net +0.0.0.0 igcdn-photos-ha.akamaihd.net +0.0.0.0 instagram.com +0.0.0.0 scontent-iad3-1.cdninstagram.com +0.0.0.0 scontent.cdninstagram.com +0.0.0.0 www.instagram.com + +# Junk sites +0.0.0.0 api.opencandy.com +0.0.0.0 api.recommendedsw.com +0.0.0.0 cdn.appround.biz +0.0.0.0 cdn.bigspeedpro.com +0.0.0.0 cdn.bispd.com +0.0.0.0 cdn.bisrv.com +0.0.0.0 cdn.cdndp.com +0.0.0.0 cdn.download.sweetpacks.com +0.0.0.0 cdn.dpdownload.com +0.0.0.0 cdn.file2desktop.com +0.0.0.0 cdn.goateastcach.us +0.0.0.0 cdn.guttastatdk.us +0.0.0.0 cdn.inskinmedia.com +0.0.0.0 cdn.insta.oibundles2.com +0.0.0.0 cdn.insta.playbryte.com +0.0.0.0 cdn.llogetfastcach.us +0.0.0.0 cdn.montiera.com +0.0.0.0 cdn.msdwnld.com +0.0.0.0 cdn.mypcbackup.com +0.0.0.0 cdn.opencandy.com +0.0.0.0 cdn.ppdownload.com +0.0.0.0 cdn.riceateastcach.us +0.0.0.0 cdn.shyapotato.us +0.0.0.0 cdn.solimba.com +0.0.0.0 cdn.tuto4pc.com +0.0.0.0 cdn.visualbee.net +0.0.0.0 d3oxtn1x3b8d7i.cloudfront.net +0.0.0.0 inno.bisrv.com +0.0.0.0 installer.betterinstaller.com +0.0.0.0 installer.filebulldog.com +0.0.0.0 media.opencandy.com +0.0.0.0 nsis.bisrv.com +0.0.0.0 tracking.opencandy.com +0.0.0.0 tracking.opencandy.com.s3.amazonaws.com +0.0.0.0 lb.usemaxserver.de +0.0.0.0 tracking.klickthru.com +0.0.0.0 gsmtop.net +0.0.0.0 click.buzzcity.net +0.0.0.0 ads.admoda.com +0.0.0.0 stats.pflexads.com +0.0.0.0 a.glcdn.co +0.0.0.0 wwww.adleads.com +0.0.0.0 ad.madvertise.de +0.0.0.0 apps.buzzcity.net +0.0.0.0 ads.mobgold.com +0.0.0.0 android.bcfads.com +0.0.0.0 show.buzzcity.net +0.0.0.0 api.analytics.omgpop.com +0.0.0.0 r.edge.inmobicdn.net +0.0.0.0 www.mmnetwork.mobi +0.0.0.0 img.ads.huntmad.com +0.0.0.0 creative1cdn.mobfox.com +0.0.0.0 admicro2.vcmedia.vn +0.0.0.0 admicro1.vcmedia.vn +0.0.0.0 s3.phluant.com +0.0.0.0 c.vrvm.com +0.0.0.0 go.vrvm.com +0.0.0.0 static.estebull.com +0.0.0.0 mobile.banzai.it +0.0.0.0 ads.xxxad.net +0.0.0.0 img.ads.mojiva.com +0.0.0.0 adcontent.saymedia.com +0.0.0.0 ads.saymedia.com +0.0.0.0 ftpcontent.worldnow.com +0.0.0.0 s0.2mdn.net +0.0.0.0 img.ads.mocean.mobi +0.0.0.0 bigmobileads.com +0.0.0.0 banners.bigmobileads.com +0.0.0.0 ads.mopub.com +0.0.0.0 images.mpression.net +0.0.0.0 images.millennialmedia.com +0.0.0.0 oasc04012.247realmedia.com +0.0.0.0 assets.cntdy.mobi +0.0.0.0 ad.leadboltapps.net +0.0.0.0 api.airpush.com +0.0.0.0 ad.where.com +0.0.0.0 i.tapit.com +0.0.0.0 cdn1.crispadvertising.com +0.0.0.0 cdn2.crispadvertising.com +0.0.0.0 medrx.sensis.com.au +0.0.0.0 rs-staticart.ybcdn.net +0.0.0.0 img.ads.taptapnetworks.com +0.0.0.0 adserver.ubiyoo.com +0.0.0.0 c753738.r38.cf2.rackcdn.com +0.0.0.0 edge.reporo.net +0.0.0.0 ads.n-ws.org +0.0.0.0 adultmoda.com +0.0.0.0 ads.smartdevicemedia.com +0.0.0.0 b.scorecardresearch.com +0.0.0.0 m.adsymptotic.com +0.0.0.0 cdn.vdopia.com +0.0.0.0 api.yp.com +0.0.0.0 asotrack1.fluentmobile.com +0.0.0.0 android-sdk31.transpera.com +0.0.0.0 apps.mobilityware.com +0.0.0.0 ads.mobilityware.com +0.0.0.0 ads.admarvel.com +0.0.0.0 netdna.reporo.net +0.0.0.0 www.eltrafiko.com +0.0.0.0 cdn.trafficforce.com +0.0.0.0 gts-ads.twistbox.com +0.0.0.0 static.cdn.gtsmobi.com +0.0.0.0 ads.matomymobile.com +0.0.0.0 ads.adiquity.com +0.0.0.0 img.ads.mobilefuse.net +0.0.0.0 as.adfonic.net +0.0.0.0 media.mobpartner.mobi +0.0.0.0 cdn.us.goldspotmedia.com +0.0.0.0 ads2.mediaarmor.com +0.0.0.0 cdn.nearbyad.com +0.0.0.0 ads.ookla.com +0.0.0.0 mobiledl.adobe.com +0.0.0.0 ads.flurry.com +0.0.0.0 gemini.yahoo.com +0.0.0.0 d3anogn3pbtk4v.cloudfront.net +0.0.0.0 d3oltyb66oj2v8.cloudfront.net +0.0.0.0 d2bgg7rjywcwsy.cloudfront.net +0.0.0.0 a.vserv.mobi +0.0.0.0 admin.vserv.mobi +0.0.0.0 c.vserv.mobi +0.0.0.0 ads.vserv.mobi +0.0.0.0 sf.vserv.mobi +0.0.0.0 hybl9bazbc35.pflexads.com +0.0.0.0 hhbekxxw5d9e.pflexads.com +0.0.0.0 www.pflexads.com +0.0.0.0 orencia.pflexads.com +0.0.0.0 atti.velti.com +0.0.0.0 ru.velti.com +0.0.0.0 mwc.velti.com +0.0.0.0 cdn.celtra.com +0.0.0.0 ads.celtra.com +0.0.0.0 cache-ssl.celtra.com +0.0.0.0 cache.celtra.com +0.0.0.0 track.celtra.com +0.0.0.0 wv.inner-active.mobi +0.0.0.0 cdn1.inner-active.mobi +0.0.0.0 m2m1.inner-active.mobi +0.0.0.0 bos-tapreq01.jumptap.com +0.0.0.0 bos-tapreq02.jumptap.com +0.0.0.0 bos-tapreq03.jumptap.com +0.0.0.0 bos-tapreq04.jumptap.com +0.0.0.0 bos-tapreq05.jumptap.com +0.0.0.0 bos-tapreq06.jumptap.com +0.0.0.0 bos-tapreq07.jumptap.com +0.0.0.0 bos-tapreq08.jumptap.com +0.0.0.0 bos-tapreq09.jumptap.com +0.0.0.0 bos-tapreq10.jumptap.com +0.0.0.0 bos-tapreq11.jumptap.com +0.0.0.0 bos-tapreq12.jumptap.com +0.0.0.0 bos-tapreq13.jumptap.com +0.0.0.0 bos-tapreq14.jumptap.com +0.0.0.0 bos-tapreq15.jumptap.com +0.0.0.0 bos-tapreq16.jumptap.com +0.0.0.0 bos-tapreq17.jumptap.com +0.0.0.0 bos-tapreq18.jumptap.com +0.0.0.0 bos-tapreq19.jumptap.com +0.0.0.0 bos-tapreq20.jumptap.com +0.0.0.0 web64.jumptap.com +0.0.0.0 web63.jumptap.com +0.0.0.0 web65.jumptap.com +0.0.0.0 bo.jumptap.com +0.0.0.0 i.jumptap.com +0.0.0.0 a.applovin.com +0.0.0.0 d.applovin.com +0.0.0.0 pdn.applovin.com +0.0.0.0 mobpartner.mobi +0.0.0.0 go.mobpartner.mobi +0.0.0.0 r.mobpartner.mobi +0.0.0.0 uk-ad2.adinfuse.com +0.0.0.0 adinfuse.com +0.0.0.0 go.adinfuse.com +0.0.0.0 ad1.adinfuse.com +0.0.0.0 ad2.adinfuse.com +0.0.0.0 sky.adinfuse.com +0.0.0.0 orange-fr.adinfuse.com +0.0.0.0 sky-connect.adinfuse.com +0.0.0.0 uk-go.adinfuse.com +0.0.0.0 orangeuk-mc.adinfuse.com +0.0.0.0 intouch.adinfuse.com +0.0.0.0 funnel0.adinfuse.com +0.0.0.0 cvt.mydas.mobi +0.0.0.0 lp.mydas.mobi +0.0.0.0 golds.lp.mydas.mobi +0.0.0.0 suo.lp.mydas.mobi +0.0.0.0 aio.lp.mydas.mobi +0.0.0.0 lp.mp.mydas.mobi +0.0.0.0 media.mydas.mobi +0.0.0.0 ads.mp.mydas.mobi +0.0.0.0 neptune.appads.com +0.0.0.0 neptune1.appads.com +0.0.0.0 neptune2.appads.com +0.0.0.0 neptune3.appads.com +0.0.0.0 saturn.appads.com +0.0.0.0 saturn1.appads.com +0.0.0.0 saturn2.appads.com +0.0.0.0 saturn3.appads.com +0.0.0.0 jupiter.appads.com +0.0.0.0 jupiter1.appads.com +0.0.0.0 jupiter2.appads.com +0.0.0.0 jupiter3.appads.com +0.0.0.0 req.appads.com +0.0.0.0 req1.appads.com +0.0.0.0 req2.appads.com +0.0.0.0 req3.appads.com +0.0.0.0 mc.yandex.ru +0.0.0.0 an.yandex.ru +0.0.0.0 swappit.tapad.com +0.0.0.0 campaign-tapad.s3.amazonaws.com +0.0.0.0 adsrv1.tapad.com +0.0.0.0 ads1.mojiva.com +0.0.0.0 ads2.mojiva.com +0.0.0.0 ads3.mojiva.com +0.0.0.0 ads4.mojiva.com +0.0.0.0 ads5.mojiva.com +0.0.0.0 i.w.inmobi.com +0.0.0.0 r.w.inmobi.com +0.0.0.0 c.w.inmobi.com +0.0.0.0 adtracker.inmobi.com +0.0.0.0 china.inmobi.com +0.0.0.0 japan.inmobi.com +0.0.0.0 mdn1.phluantmobile.net +0.0.0.0 mdn2.phluantmobile.net +0.0.0.0 mdn3.phluantmobile.net +0.0.0.0 mdn3origin.phluantmobile.net +0.0.0.0 soma.smaato.net +0.0.0.0 c29new.smaato.net +0.0.0.0 c01.smaato.net +0.0.0.0 c02.smaato.net +0.0.0.0 c03.smaato.net +0.0.0.0 c04.smaato.net +0.0.0.0 c05.smaato.net +0.0.0.0 c06.smaato.net +0.0.0.0 c07.smaato.net +0.0.0.0 c08.smaato.net +0.0.0.0 c09.smaato.net +0.0.0.0 c10.smaato.net +0.0.0.0 c11.smaato.net +0.0.0.0 c12.smaato.net +0.0.0.0 c13.smaato.net +0.0.0.0 c14.smaato.net +0.0.0.0 c15.smaato.net +0.0.0.0 c16.smaato.net +0.0.0.0 c17.smaato.net +0.0.0.0 c18.smaato.net +0.0.0.0 c19.smaato.net +0.0.0.0 c20.smaato.net +0.0.0.0 c21.smaato.net +0.0.0.0 c22.smaato.net +0.0.0.0 c23.smaato.net +0.0.0.0 c24.smaato.net +0.0.0.0 c25.smaato.net +0.0.0.0 c26.smaato.net +0.0.0.0 c27.smaato.net +0.0.0.0 c28.smaato.net +0.0.0.0 c29.smaato.net +0.0.0.0 c30.smaato.net +0.0.0.0 c31.smaato.net +0.0.0.0 c32.smaato.net +0.0.0.0 c33.smaato.net +0.0.0.0 c34.smaato.net +0.0.0.0 c35.smaato.net +0.0.0.0 c36.smaato.net +0.0.0.0 c37.smaato.net +0.0.0.0 c38.smaato.net +0.0.0.0 c39.smaato.net +0.0.0.0 c40.smaato.net +0.0.0.0 c41.smaato.net +0.0.0.0 c42.smaato.net +0.0.0.0 c43.smaato.net +0.0.0.0 c44.smaato.net +0.0.0.0 c45.smaato.net +0.0.0.0 c46.smaato.net +0.0.0.0 c47.smaato.net +0.0.0.0 c48.smaato.net +0.0.0.0 c49.smaato.net +0.0.0.0 c50.smaato.net +0.0.0.0 c51.smaato.net +0.0.0.0 c52.smaato.net +0.0.0.0 c53.smaato.net +0.0.0.0 c54.smaato.net +0.0.0.0 c55.smaato.net +0.0.0.0 c56.smaato.net +0.0.0.0 c57.smaato.net +0.0.0.0 c58.smaato.net +0.0.0.0 c59.smaato.net +0.0.0.0 c60.smaato.net +0.0.0.0 f03.smaato.net +0.0.0.0 f04.smaato.net +0.0.0.0 f05.smaato.net +0.0.0.0 f06.smaato.net +0.0.0.0 f07.smaato.net +0.0.0.0 f08.smaato.net +0.0.0.0 f09.smaato.net +0.0.0.0 f10.smaato.net +0.0.0.0 f11.smaato.net +0.0.0.0 f12.smaato.net +0.0.0.0 f13.smaato.net +0.0.0.0 f14.smaato.net +0.0.0.0 f15.smaato.net +0.0.0.0 f16.smaato.net +0.0.0.0 f17.smaato.net +0.0.0.0 f18.smaato.net +0.0.0.0 f19.smaato.net +0.0.0.0 f20.smaato.net +0.0.0.0 f21.smaato.net +0.0.0.0 f22.smaato.net +0.0.0.0 f23.smaato.net +0.0.0.0 f24.smaato.net +0.0.0.0 f25.smaato.net +0.0.0.0 f26.smaato.net +0.0.0.0 f27.smaato.net +0.0.0.0 f28.smaato.net +0.0.0.0 f29.smaato.net +0.0.0.0 f30.smaato.net +0.0.0.0 f31.smaato.net +0.0.0.0 f32.smaato.net +0.0.0.0 f33.smaato.net +0.0.0.0 f34.smaato.net +0.0.0.0 f35.smaato.net +0.0.0.0 f36.smaato.net +0.0.0.0 f37.smaato.net +0.0.0.0 f38.smaato.net +0.0.0.0 f39.smaato.net +0.0.0.0 f40.smaato.net +0.0.0.0 f41.smaato.net +0.0.0.0 f42.smaato.net +0.0.0.0 f43.smaato.net +0.0.0.0 f44.smaato.net +0.0.0.0 f45.smaato.net +0.0.0.0 f46.smaato.net +0.0.0.0 f47.smaato.net +0.0.0.0 f48.smaato.net +0.0.0.0 f49.smaato.net +0.0.0.0 f50.smaato.net +0.0.0.0 f51.smaato.net +0.0.0.0 f52.smaato.net +0.0.0.0 f53.smaato.net +0.0.0.0 f54.smaato.net +0.0.0.0 f55.smaato.net +0.0.0.0 f56.smaato.net +0.0.0.0 f57.smaato.net +0.0.0.0 f58.smaato.net +0.0.0.0 f59.smaato.net +0.0.0.0 f60.smaato.net +0.0.0.0 img.ads1.mojiva.com +0.0.0.0 img.ads2.mojiva.com +0.0.0.0 img.ads3.mojiva.com +0.0.0.0 img.ads4.mojiva.com +0.0.0.0 img.ads1.mocean.mobi +0.0.0.0 img.ads2.mocean.mobi +0.0.0.0 img.ads3.mocean.mobi +0.0.0.0 img.ads4.mocean.mobi +0.0.0.0 akamai.smartadserver.com +0.0.0.0 cdn1.smartadserver.com +0.0.0.0 diff.smartadserver.com +0.0.0.0 diff2.smartadserver.com +0.0.0.0 diff3.smartadserver.com +0.0.0.0 eqx.smartadserver.com +0.0.0.0 im2.smartadserver.com +0.0.0.0 itx5-publicidad.smartadserver.com +0.0.0.0 itx5.smartadserver.com +0.0.0.0 tcy.smartadserver.com +0.0.0.0 ww129.smartadserver.com +0.0.0.0 ww13.smartadserver.com +0.0.0.0 ww14.smartadserver.com +0.0.0.0 ww234.smartadserver.com +0.0.0.0 ww251.smartadserver.com +0.0.0.0 ww264.smartadserver.com +0.0.0.0 ww302.smartadserver.com +0.0.0.0 ww362.smartadserver.com +0.0.0.0 ww370.smartadserver.com +0.0.0.0 ww381.smartadserver.com +0.0.0.0 ww392.smartadserver.com +0.0.0.0 ww55.smartadserver.com +0.0.0.0 ww57.smartadserver.com +0.0.0.0 ww84.smartadserver.com +0.0.0.0 www.smartadserver.com +0.0.0.0 www2.smartadserver.com +0.0.0.0 www3.smartadserver.com +0.0.0.0 www4.smartadserver.com +0.0.0.0 ads.mobclix.com +0.0.0.0 data.mobclix.com +0.0.0.0 s.mobclix.com +0.0.0.0 ads.mdotm.com +0.0.0.0 cdn.mdotm.com +0.0.0.0 ads2.greystripe.com +0.0.0.0 adsx.greystripe.com +0.0.0.0 c.greystripe.com +0.0.0.0 aax-us-east.amazon-adsystem.com +0.0.0.0 aax-us-west.amazon-adsystem.com +0.0.0.0 s.amazon-adsystem.com +0.0.0.0 admarvel.s3.amazonaws.com +0.0.0.0 html5adkit.plusmo.s3.amazonaws.com +0.0.0.0 inneractive-assets.s3.amazonaws.com +0.0.0.0 strikeadcdn.s3.amazonaws.com +0.0.0.0 a.admob.com +0.0.0.0 analytics.admob.com +0.0.0.0 c.admob.com +0.0.0.0 media.admob.com +0.0.0.0 p.admob.com +0.0.0.0 met.adwhirl.com +0.0.0.0 mob.adwhirl.com +0.0.0.0 ad-g.doubleclick.net +0.0.0.0 ad.doubleclick.net +0.0.0.0 ad.mo.doubleclick.net +0.0.0.0 doubleclick.net +0.0.0.0 googleads.g.doubleclick.net +0.0.0.0 pagead.googlesyndication.com +0.0.0.0 pagead1.googlesyndication.com +0.0.0.0 pagead2.googlesyndication.com +0.0.0.0 events.foreseeresults.com +0.0.0.0 survey.foreseeresults.com +0.0.0.0 m.quantserve.com +0.0.0.0 ad.leadboltmobile.net +0.0.0.0 mobileads.msn.com +0.0.0.0 img.adecorp.co.kr +0.0.0.0 us0.adlibr.com +0.0.0.0 ad.parrot.mable-inc.com +0.0.0.0 aos.wall.youmi.net +0.0.0.0 au.youmi.net +0.0.0.0 coconuts.boy.jp +0.0.0.0 iacpromotion.s3.amazonaws.com +0.0.0.0 plugin.2easydroid.com +0.0.0.0 adimg3.search.naver.net +0.0.0.0 st.a-link.co.kr +0.0.0.0 cdn.ajillionmax.com +0.0.0.0 dispatch.admixer.co.kr +0.0.0.0 ifc.inmobi.com +0.0.0.0 thinknear-hosted.thinknearhub.com +0.0.0.0 ads.adadapted.com +0.0.0.0 analytics.localytics.com +0.0.0.0 a.medialytics.com +0.0.0.0 c.medialytics.com +0.0.0.0 cdn.creative.medialytics.com +0.0.0.0 p.medialytics.com +0.0.0.0 px.cdn.creative.medialytics.com +0.0.0.0 t.medialytics.com +0.0.0.0 google-analytics.com +0.0.0.0 googlesyndication.com +0.0.0.0 applift.com +0.0.0.0 trackersimulator.org +0.0.0.0 eviltracker.net +0.0.0.0 do-not-tracker.org +0.0.0.0 ac3.msn.com +0.0.0.0 choice.microsoft.com +0.0.0.0 choice.microsoft.com.nsatc.net +0.0.0.0 compatexchange.cloudapp.net +0.0.0.0 corp.sts.microsoft.com +0.0.0.0 corpext.msitadfs.glbdns2.microsoft.com +0.0.0.0 cs1.wpc.v0cdn.net +0.0.0.0 diagnostics.support.microsoft.com +0.0.0.0 feedback.search.microsoft.com +0.0.0.0 feedback.windows.com +0.0.0.0 i1.services.social.microsoft.com +0.0.0.0 i1.services.social.microsoft.com.nsatc.net +0.0.0.0 oca.telemetry.microsoft.com +0.0.0.0 oca.telemetry.microsoft.com.nsatc.net +0.0.0.0 pre.footprintpredict.com +0.0.0.0 redir.metaservices.microsoft.com +0.0.0.0 services.wes.df.telemetry.microsoft.com +0.0.0.0 settings-sandbox.data.microsoft.com +0.0.0.0 sls.update.microsoft.com.akadns.net +0.0.0.0 sqm.df.telemetry.microsoft.com +0.0.0.0 sqm.telemetry.microsoft.com +0.0.0.0 sqm.telemetry.microsoft.com.nsatc.net +0.0.0.0 ssw.live.com +0.0.0.0 statsfe1.ws.microsoft.com +0.0.0.0 statsfe2.update.microsoft.com.akadns.net +0.0.0.0 survey.watson.microsoft.com +0.0.0.0 telecommand.telemetry.microsoft.com +0.0.0.0 telecommand.telemetry.microsoft.com.nsatc.net +0.0.0.0 telemetry.urs.microsoft.com +0.0.0.0 vortex-bn2.metron.live.com.nsatc.net +0.0.0.0 vortex-cy2.metron.live.com.nsatc.net +0.0.0.0 vortex-sandbox.data.microsoft.com +0.0.0.0 vortex-win.data.microsoft.com +0.0.0.0 vortex.data.microsoft.com +0.0.0.0 watson.live.com +0.0.0.0 watson.microsoft.com +0.0.0.0 watson.ppe.telemetry.microsoft.com +0.0.0.0 watson.telemetry.microsoft.com +0.0.0.0 watson.telemetry.microsoft.com.nsatc.net +0.0.0.0 0.r.msn.com +0.0.0.0 050003.voodoo.com +0.0.0.0 050005.voodoo.com +0.0.0.0 0iecfobt.com +0.0.0.0 0koryu0.easter.ne.jp +0.0.0.0 1.googlenews.xorg.pl +0.0.0.0 1.hidemyass.com +0.0.0.0 1001movies.com +0.0.0.0 101malls.com +0.0.0.0 105vibe.com +0.0.0.0 11.lamarianella.info +0.0.0.0 11163221-517901.c.adprotect.net +0.0.0.0 11164531-19021001.c2.adprotect.net +0.0.0.0 11165583-40348.id2.clickprotects.com +0.0.0.0 11hour.com +0.0.0.0 11zz.com +0.0.0.0 123go.com +0.0.0.0 188838.parkingcrew.net +0.0.0.0 1gavcom.popunder.ru +0.0.0.0 1xxx.cqcounter.com +0.0.0.0 2.googlenews.xorg.pl +0.0.0.0 2.hidemyass.com +0.0.0.0 2.rubanners.com +0.0.0.0 21750.tctm.co +0.0.0.0 2607.cn +0.0.0.0 3.googlenews.xorg.pl +0.0.0.0 3.hidemyass.com +0.0.0.0 302br.net +0.0.0.0 32e1dff65ea4eb3627ed-f1ecc94c86a56d3e42e512fcfd192886.r6.cf1.rackcdn.com +0.0.0.0 39dvd-999.com +0.0.0.0 4.androidislamic.com +0.0.0.0 4.collecorvino.org +0.0.0.0 4.dlevo.com +0.0.0.0 4.e-why.net +0.0.0.0 4.googlenews.xorg.pl +0.0.0.0 4.hidemyass.com +0.0.0.0 4.whereinitaly.com +0.0.0.0 4.whereinlazio.com +0.0.0.0 4.whereinliguria.com +0.0.0.0 4.whereinlombardy.com +0.0.0.0 4.whereinmilan.com +0.0.0.0 4.whereinmolise.com +0.0.0.0 4.whereinpiemonte.com +0.0.0.0 4.whereinpuglia.com +0.0.0.0 4.whereinsardegna.com +0.0.0.0 4.whereinsicilia.com +0.0.0.0 4.whereinsicily.com +0.0.0.0 4.whereintoscana.com +0.0.0.0 4.whereintrentinoaltoadige.com +0.0.0.0 404.xxxymovies.com +0.0.0.0 4133.88.primosearch.com +0.0.0.0 422653.parkingcrew.net +0.0.0.0 4654.2465.primosearch.com +0.0.0.0 5.estasiatica.com +0.0.0.0 5.eventiduepuntozero.com +0.0.0.0 5.googlenews.xorg.pl +0.0.0.0 5.hidemyass.com +0.0.0.0 50efa6486f1ef.skydivesolutions.be +0.0.0.0 5486.winxp.primosearch.com +0.0.0.0 5490.spedads.primosearch.com +0.0.0.0 6.bbnface.com +0.0.0.0 6.bbnfaces.net +0.0.0.0 6.bbnsmsgateway.com +0.0.0.0 6.hidemyass.com +0.0.0.0 6.mamaswishes.com +0.0.0.0 6266.570204.primosearch.com +0.0.0.0 633642.parkingcrew.net +0.0.0.0 6b8a953b2bf7788063d5-6e453f33ecbb90f11a62a5c376375af3.r71.cf5.rackcdn.com +0.0.0.0 7.hidemyass.com +0.0.0.0 77search.com +0.0.0.0 7979-69504_159.c.adprotect.net +0.0.0.0 7metasearch.com +0.0.0.0 7search.com +0.0.0.0 7softwaredreams.com +0.0.0.0 944279.parkingcrew.net +0.0.0.0 94uyvwwh.com +0.0.0.0 97b1c56132dfcdd90f93-0c5c8388c0a5897e648f883e2c86dc72.r54.cf5.rackcdn.com +0.0.0.0 999ways.blogspot.co.uk +0.0.0.0 a.zeroredirect.com +0.0.0.0 a.zeroredirect1.com +0.0.0.0 a.zeroredirect2.com +0.0.0.0 a1.x-traceur.com +0.0.0.0 a12.x-traceur.com +0.0.0.0 a18.x-traceur.com +0.0.0.0 a20.x-traceur.com +0.0.0.0 a3.x-traceur.com +0.0.0.0 aa.newsblock.dt00.net +0.0.0.0 abacusfinance.co.uk +0.0.0.0 absolutely-clean-up-pc-errors.com +0.0.0.0 accidentadvicehelpline.co.uk +0.0.0.0 acezsoftware.com +0.0.0.0 ackjeeves.com +0.0.0.0 actrck.com +0.0.0.0 ad-souk.com +0.0.0.0 ad.adverticum.net +0.0.0.0 ad.hizlireklam.com +0.0.0.0 ad.infoseek.com +0.0.0.0 ad.slutload.com +0.0.0.0 ad132m.adk2.co +0.0.0.0 ad3.hornymatches.com +0.0.0.0 ad3.linkbucks.com +0.0.0.0 adamsfilms.com +0.0.0.0 adamsmarkhotels.com +0.0.0.0 adanalytics.openload.co +0.0.0.0 adblockanalytics.com +0.0.0.0 adcell.de +0.0.0.0 adchimp.com +0.0.0.0 adclickservice.com +0.0.0.0 adclickthru.net +0.0.0.0 adcmtd.mac-torrent-download.net +0.0.0.0 additcinggames.com +0.0.0.0 adforati.com +0.0.0.0 adgtracker.com +0.0.0.0 adlock.in +0.0.0.0 adnetworkperformance.com +0.0.0.0 adobe-flashplayer.com +0.0.0.0 adprotect.net +0.0.0.0 ads.clicksor.cn +0.0.0.0 ads.lzjl.com +0.0.0.0 ads.tunenerve.com +0.0.0.0 ads.wikipartes.com +0.0.0.0 ads.ztod.com +0.0.0.0 ads2.vortexmediagroup.com +0.0.0.0 adsby.uzoogle.com +0.0.0.0 adserve.cpmba.se +0.0.0.0 adserver.adtech.de +0.0.0.0 adserver.alt.com +0.0.0.0 adserver.online-tech.com +0.0.0.0 adserver.startnow.com +0.0.0.0 adson.awempire.com +0.0.0.0 adsrv.iol.co.za +0.0.0.0 adtegrity.com +0.0.0.0 adtiger.de +0.0.0.0 adv.all-free-download.com +0.0.0.0 advancedcleaner.com +0.0.0.0 advancedsoftwaresupport.com +0.0.0.0 adwcleaner.programmesetjeux.com +0.0.0.0 adwcleaner.telecharger.toggle.com +0.0.0.0 adweb1.hornymatches.com +0.0.0.0 adwpro.adwareprof.hop.clickbank.net +0.0.0.0 afa15.com.ne.kr +0.0.0.0 aff.naughtyconnect.com +0.0.0.0 aff.ringtonepartner.com +0.0.0.0 aff.tagcdn.com +0.0.0.0 aff12.com +0.0.0.0 affiliate.dtiserv.com +0.0.0.0 affiliate.friendlyduck.com +0.0.0.0 affiliate.gwmtracker.com +0.0.0.0 affiliate.trk4.com +0.0.0.0 affiliates.streamray.com +0.0.0.0 affin-on.com +0.0.0.0 affntwklnk.com +0.0.0.0 afftrack.com +0.0.0.0 afx.tagcdn.com +0.0.0.0 agstracker.com +0.0.0.0 aimes.com +0.0.0.0 aintdoinshit.com +0.0.0.0 aircrack-ng.softonic.fr +0.0.0.0 aitligold.tripod.com +0.0.0.0 aitsngnuu.angelcities.com +0.0.0.0 ak.imgfarm.com +0.0.0.0 akirkpatrick.com +0.0.0.0 alaksaair.com +0.0.0.0 alaskaaair.com +0.0.0.0 albiondrugs.com +0.0.0.0 alexanderinteriorsanddesign.com +0.0.0.0 alibabaslots.com +0.0.0.0 all-internet-security.com +0.0.0.0 allfet.info +0.0.0.0 altafista.com +0.0.0.0 alwrig84.gamed.hop.clickbank.net +0.0.0.0 amare.softwaregarden.com +0.0.0.0 amazing-offers.co.il +0.0.0.0 american-prize-center.com +0.0.0.0 analyticdns.org +0.0.0.0 analytics.safelinking.net +0.0.0.0 analytics.supplyframe.com +0.0.0.0 anapixel.elmundo.es +0.0.0.0 anapixel.marca.com +0.0.0.0 andr.net +0.0.0.0 anelkathe.tripod.com +0.0.0.0 anews.co.uk +0.0.0.0 angelinajoliepics.com +0.0.0.0 angelsinuniform.com +0.0.0.0 anglewinks.com +0.0.0.0 angolotesti.it +0.0.0.0 animal-drawings.com +0.0.0.0 animal36.com +0.0.0.0 animalrank.com +0.0.0.0 animaltoplist.com +0.0.0.0 anmira.info +0.0.0.0 anonymousproxy.tk +0.0.0.0 anrysys.popunder.ru +0.0.0.0 ant.com +0.0.0.0 antalya.ru +0.0.0.0 anticlown.com +0.0.0.0 antispyware.onlinedownloads.org +0.0.0.0 anycracks.com +0.0.0.0 anzanish.tripod.com +0.0.0.0 api.conduit.com +0.0.0.0 app.pho8.com +0.0.0.0 app.software-phile.com +0.0.0.0 apple-updates.com +0.0.0.0 applets.sulekha.com +0.0.0.0 apps.clickcash.com +0.0.0.0 apps.nastydollars.com +0.0.0.0 appsgame.club +0.0.0.0 aproxtrack2.com +0.0.0.0 arcadefree.com +0.0.0.0 areasnap.com +0.0.0.0 arecio.work +0.0.0.0 arkinsoftware.in +0.0.0.0 artcomix.com +0.0.0.0 ascentive.com +0.0.0.0 asians.join4free.com +0.0.0.0 asu.msmu.ru +0.0.0.0 atinna.com +0.0.0.0 atl.my.bidsystem.com +0.0.0.0 atl.xmlsearch.miva.com +0.0.0.0 atmovs.com +0.0.0.0 atofilms.com +0.0.0.0 atousoft.com +0.0.0.0 auctiondirectory.org +0.0.0.0 audia6.com +0.0.0.0 auto-overview.com +0.0.0.0 automoneygenerator.com +0.0.0.0 autonations.com +0.0.0.0 av-clean.com +0.0.0.0 av0713.tk +0.0.0.0 avis.cm +0.0.0.0 avrakougioumtzi.gr +0.0.0.0 avskype.com +0.0.0.0 ayada.zapto.org +0.0.0.0 ayehcleaners.com +0.0.0.0 b.bestcomputeradvisor.com +0.0.0.0 b.dotnetadvisor.info +0.0.0.0 b.gowin7.com +0.0.0.0 b.nevadaprivateoffice.com +0.0.0.0 b.secuurity.net +0.0.0.0 b.zeroredirect.com +0.0.0.0 b.zeroredirect1.com +0.0.0.0 b.zeroredirect2.com +0.0.0.0 babos.scrapping.cc +0.0.0.0 balakin.popunder.ru +0.0.0.0 balook.com +0.0.0.0 bananarepubic.com +0.0.0.0 banex.bikers-engine.com +0.0.0.0 bannanarepublic.com +0.0.0.0 banner.ambercoastcasino.com +0.0.0.0 banner.casinodelrio.com +0.0.0.0 banner.casinotropez.com +0.0.0.0 banner.clubdicecasino.com +0.0.0.0 banner.europacasino.com +0.0.0.0 banner.scasino.com +0.0.0.0 banner.tonygpoker.com +0.0.0.0 banner.vegasred.com +0.0.0.0 bannerpromotion.it +0.0.0.0 banners.direction-x.com +0.0.0.0 banners.getiton.com +0.0.0.0 banners.images.streamray.com +0.0.0.0 banners.leadingedgecash.com +0.0.0.0 banners.outpersonals.com +0.0.0.0 banners.pcsecurityshield.com +0.0.0.0 banners.perfectgonzo.com +0.0.0.0 banners.sublimedirectory.com +0.0.0.0 banners.thirdmovies.com +0.0.0.0 banners.toteme.com +0.0.0.0 banners.truecash.com +0.0.0.0 banners.videosz.com +0.0.0.0 banners.virtuagirlhd.com +0.0.0.0 banners.webcams.com +0.0.0.0 banners.ztod.com +0.0.0.0 bannershotlink.perfectgonzo.com +0.0.0.0 bans.bride.ru +0.0.0.0 bar.mytotalsearch.com +0.0.0.0 bar.mywebsearch.com +0.0.0.0 barafranca.iwarp.com +0.0.0.0 barclaysghana.org +0.0.0.0 basterr.popunder.ru +0.0.0.0 bbcdn.code.new.smartcontext.pl +0.0.0.0 bbn.img.com.ua +0.0.0.0 bbnaut.ibillboard.com +0.0.0.0 bbs.bjchun.com +0.0.0.0 bde3d.com +0.0.0.0 bdsmcompany.com +0.0.0.0 bdsmtours.com +0.0.0.0 be-funk.com +0.0.0.0 beespace.com.ua +0.0.0.0 beldiplomcom.75.com1.ru +0.0.0.0 belshar.com +0.0.0.0 besstbuy.com +0.0.0.0 bestadbid.com +0.0.0.0 bestappinstalls.com +0.0.0.0 bestcomputeradvisor.com +0.0.0.0 bestsearch.com +0.0.0.0 bestserials.com +0.0.0.0 bestwm.info +0.0.0.0 beyondwhois.com +0.0.0.0 bighop.com +0.0.0.0 bigmart.com.np +0.0.0.0 bigpenisguide.com +0.0.0.0 bigstoreoffers.co.uk +0.0.0.0 bilbob.com +0.0.0.0 bilder-upload.eu +0.0.0.0 binadroid.com +0.0.0.0 bizbor.popunder.ru +0.0.0.0 bizneed.com +0.0.0.0 bj04.com +0.0.0.0 blackchek.popunder.ru +0.0.0.0 blog-hits.com +0.0.0.0 blogrankers.com +0.0.0.0 bluemountain1.com +0.0.0.0 bluemountain2.com +0.0.0.0 bluemounten.com +0.0.0.0 bn.profiwin.de +0.0.0.0 boa-0918-verify-login-2014.icrb.cl +0.0.0.0 boattraider.com +0.0.0.0 bonzbuddy.com +0.0.0.0 bonzibuddi.com +0.0.0.0 bonzybuddy.com +0.0.0.0 boostsoftware.com +0.0.0.0 bormis.com +0.0.0.0 br.naked.com +0.0.0.0 bracalemusic.com +0.0.0.0 bracbetul.com +0.0.0.0 brainfox.com +0.0.0.0 brans.pl +0.0.0.0 bravetools.net +0.0.0.0 brevardmusic.com +0.0.0.0 bride1.com +0.0.0.0 briebailey.tripod.com +0.0.0.0 browseraccelerator.com +0.0.0.0 bseaqmi.angelcities.com +0.0.0.0 buddies.funbuddyicons.com +0.0.0.0 buffalogoesout.com +0.0.0.0 bugera.popunder.ru +0.0.0.0 bugsurf.com +0.0.0.0 bulgariabg.com +0.0.0.0 bureau.co.il +0.0.0.0 burnvirusnow33.xorg.pl +0.0.0.0 buyingedge.com +0.0.0.0 buyskype.ru +0.0.0.0 bypasser.net +0.0.0.0 c.adclickthru.net +0.0.0.0 c.cliop.com +0.0.0.0 c.pioneeringad.com +0.0.0.0 c.zeroredirect.com +0.0.0.0 c.zeroredirect1.com +0.0.0.0 c.zeroredirect2.com +0.0.0.0 c2.clickprotects.com +0.0.0.0 c4.mysearch.com +0.0.0.0 cabeles.com +0.0.0.0 cachebanners.toteme.com +0.0.0.0 cadastrodacopa.net +0.0.0.0 cadillacescalade.com +0.0.0.0 californiastateparks.com +0.0.0.0 calllwave.com +0.0.0.0 calouskype.over-blog.com +0.0.0.0 calworthingtonford.com +0.0.0.0 campaigns.f2.com.au +0.0.0.0 campamento.queenscamp.com +0.0.0.0 candidography.com +0.0.0.0 carpediem.sv2.biz +0.0.0.0 catz4.com +0.0.0.0 caue971.org +0.0.0.0 caybloomearge.hopto.org +0.0.0.0 cazzigrossi.org +0.0.0.0 cbanners.virtuagirlhd.com +0.0.0.0 cbtopsites.com +0.0.0.0 cc.webpower.com +0.0.0.0 ccbilleu.com +0.0.0.0 ccleaner.com.es +0.0.0.0 cdiabetes.com +0.0.0.0 cdn.adtrace.org +0.0.0.0 cdn.ndparking.com +0.0.0.0 cdn.opensubcontent.com +0.0.0.0 cdn1.clkcln.com +0.0.0.0 cdn1.clkoffers.com +0.0.0.0 cdn11.abbp1.website +0.0.0.0 cecash.com +0.0.0.0 centerfind.com +0.0.0.0 centertrk.com +0.0.0.0 centralwestwater.com.au +0.0.0.0 certified-toolbar.com +0.0.0.0 ceskarepublika.net +0.0.0.0 cfg.mywebsearch.com +0.0.0.0 cgi-view-item-co-uk.xf.cz +0.0.0.0 chaseonline.com +0.0.0.0 chat.effectivebrand.com +0.0.0.0 chat2.livechatinc.com +0.0.0.0 cheapstickets.com +0.0.0.0 cheaptickests.com +0.0.0.0 cheapticketes.com +0.0.0.0 cheapticketsinc.com +0.0.0.0 cheapticketts.com +0.0.0.0 cheapticktes.com +0.0.0.0 checktraf.com +0.0.0.0 chilyregistrycleaner.com +0.0.0.0 chlcotrk.com +0.0.0.0 chokertraffic.com +0.0.0.0 chsplantsales.co.uk +0.0.0.0 chuckfaganco.com +0.0.0.0 claitors.com +0.0.0.0 classicallyabsurdphotography.com +0.0.0.0 cle.kr +0.0.0.0 clean-cracks.com +0.0.0.0 clean-search.com +0.0.0.0 clean-space.com +0.0.0.0 clean-start.net +0.0.0.0 cleanallspyware.com +0.0.0.0 cleanallvirus.com +0.0.0.0 cleanersoft.com +0.0.0.0 cleanmypc.com +0.0.0.0 cleanpcnow.com +0.0.0.0 cleanproxy.com +0.0.0.0 cleansearch.net +0.0.0.0 cleansite.us +0.0.0.0 cleansofts.com +0.0.0.0 cleanuninstall.com +0.0.0.0 cleanup-your-computer.com +0.0.0.0 cleanupit22p.xorg.pl +0.0.0.0 clearshieldredirect.com +0.0.0.0 click.adimmix.com +0.0.0.0 click.clktraker.com +0.0.0.0 click.dealshark.com +0.0.0.0 click.khingtracking.com +0.0.0.0 click.kidslivesafe.com +0.0.0.0 click.sellmeyourtraffic.com +0.0.0.0 click.silvercash.com +0.0.0.0 click.uamtrk.com +0.0.0.0 click.virt.exacttarget.com +0.0.0.0 click.watchjmp.com +0.0.0.0 click.zeroclickdirect.com +0.0.0.0 clickadu.com +0.0.0.0 clickbank.net +0.0.0.0 clickbank.pcsecurityshield.com +0.0.0.0 clickbanksites.info +0.0.0.0 clickcash.com +0.0.0.0 clickcash.webpower.com +0.0.0.0 clicks.totemcash.com +0.0.0.0 clicksagent.com +0.0.0.0 clicksimpact.cashtrk.com +0.0.0.0 clickthruserver.com +0.0.0.0 client.browseraccelerator.com +0.0.0.0 clik2008.popunder.ru +0.0.0.0 clikz.mytvplayer.hop.clickbank.net +0.0.0.0 cliop.com +0.0.0.0 clkfeed.com +0.0.0.0 clkoffers.com +0.0.0.0 clksite.com +0.0.0.0 cloudtracked.com +0.0.0.0 clxcaf.com +0.0.0.0 cm.myway.com +0.0.0.0 cm.need2find.com +0.0.0.0 cmicapui.ce.gov.br +0.0.0.0 cnbnews.com +0.0.0.0 cnn.com +0.0.0.0 www.cnn.com +0.0.0.0 newyorktimes.com +0.0.0.0 www.newyorktimes.com +0.0.0.0 forbes.com +0.0.0.0 www.forbes.com +0.0.0.0 washingtonpost.com +0.0.0.0 www.washingtonpost.com +0.0.0.0 cnn.cm +0.0.0.0 cnnnew.com +0.0.0.0 coding.1100011.ir +0.0.0.0 cogivea.com +0.0.0.0 coldwellbanker.net +0.0.0.0 collectiable.com +0.0.0.0 columbahouse.com +0.0.0.0 columbianhouse.com +0.0.0.0 comairairlines.com +0.0.0.0 comfz.com +0.0.0.0 compactiongames.gameaholic.com +0.0.0.0 completedord1332.com +0.0.0.0 conds.ru +0.0.0.0 conduit.com +0.0.0.0 consumeralternatives.org +0.0.0.0 contentcleaner.com +0.0.0.0 continentialairline.com +0.0.0.0 contniental.com +0.0.0.0 conversion.7search.com +0.0.0.0 coolfreehost.com +0.0.0.0 core.adunity.com +0.0.0.0 coreclickhoo.com +0.0.0.0 cosmi.gamerbots.hop.clickbank.net +0.0.0.0 counter.top.dating.lt +0.0.0.0 cp.abbp1.website +0.0.0.0 cp.pleasedontslaymy.download +0.0.0.0 cpaway.afftrack.com +0.0.0.0 cpmservice1.com +0.0.0.0 crackfulldownload.com +0.0.0.0 crackguru.tk +0.0.0.0 crackspider.net +0.0.0.0 cracksplanet.com +0.0.0.0 crackzplanet.com +0.0.0.0 crazyprotocol.com +0.0.0.0 creative.nscash.com +0.0.0.0 creatives.livejasmin.com +0.0.0.0 credibleartstherapies.org +0.0.0.0 cs.luckyorange.net +0.0.0.0 csmail.iggcn.com +0.0.0.0 cswilliamsburg.com +0.0.0.0 ctibank.com +0.0.0.0 ctrck.com +0.0.0.0 cudacorp.com +0.0.0.0 cuoujvfi.angelcities.com +0.0.0.0 customersupporthelp.com +0.0.0.0 cxpixel.bidsystem.com +0.0.0.0 cybermecca.com +0.0.0.0 cyberzine.com +0.0.0.0 cybilling.com +0.0.0.0 cz11.clickzzs.nl +0.0.0.0 cz4.clickzzs.nl +0.0.0.0 cz5.clickzzs.nl +0.0.0.0 cz7.clickzzs.nl +0.0.0.0 cz8.clickzzs.nl +0.0.0.0 cznshuya.ivnet.ru +0.0.0.0 d.tds.adlabs.ru +0.0.0.0 d.zeroredirect.com +0.0.0.0 d.zeroredirect2.com +0.0.0.0 d1.kuai8.com +0.0.0.0 d1.windows8downloads.com +0.0.0.0 d32k27yvyi4kmv.cloudfront.net +0.0.0.0 dance-alarm.de +0.0.0.0 darseo.popunder.ru +0.0.0.0 data.browseraccelerator.com +0.0.0.0 data.ero-advertising.com +0.0.0.0 dateck.com +0.0.0.0 dcm5.com +0.0.0.0 ddd.gouwuke.cn +0.0.0.0 dddcc.com +0.0.0.0 de.mediaplayercodecpack.com +0.0.0.0 deanne1125.games1.hop.clickbank.net +0.0.0.0 decografix.com +0.0.0.0 deflorationvirgins.com +0.0.0.0 delta.rspcdn.com +0.0.0.0 demo.vertexinfo.in +0.0.0.0 dentairemalin.com +0.0.0.0 desifever.com +0.0.0.0 desirevandoorne.nl +0.0.0.0 digiaquascr.com +0.0.0.0 dimarsbg.com +0.0.0.0 directhackerz.tk +0.0.0.0 directxex.com +0.0.0.0 dirtyje.ws +0.0.0.0 disable-uac.com +0.0.0.0 distribuidoraderetentores.com.br +0.0.0.0 distrilamadrid.com.ar +0.0.0.0 divx.it +0.0.0.0 djeps.popunder.ru +0.0.0.0 djsrp.com +0.0.0.0 djwnatural.go2cloud.org +0.0.0.0 dl.ezthemes.com +0.0.0.0 dl.gameplaylabs.com +0.0.0.0 dl.heima8.com +0.0.0.0 dl.microsword.net +0.0.0.0 dl1.ezthemes.com +0.0.0.0 dlldlldll.sytes.net +0.0.0.0 dmp.gravity4.com +0.0.0.0 doctor-alex.com +0.0.0.0 dodian.site50.net +0.0.0.0 dodostats.com +0.0.0.0 dogpial.com +0.0.0.0 doheth.co.uk +0.0.0.0 dollarrentcar.com +0.0.0.0 domainfwd.com +0.0.0.0 domainfwding.com +0.0.0.0 dotnetadvisor.info +0.0.0.0 dotzup.com +0.0.0.0 dougmlee.com +0.0.0.0 dowdenphotography.com +0.0.0.0 down.feiyang163.com +0.0.0.0 down.guangsu.cn +0.0.0.0 down.hit020.com +0.0.0.0 down.unadnet.com.cn +0.0.0.0 down1oads.com +0.0.0.0 down2.feiyang163.com +0.0.0.0 down3.feiyang163.com +0.0.0.0 download.56.com +0.0.0.0 download.ascentive.com +0.0.0.0 download.browseraccelerator.com +0.0.0.0 download.cdn.downloadquick.net +0.0.0.0 download.cdn.sharelive.net +0.0.0.0 download.cdn.torchbrowser.com +0.0.0.0 download.downloadquick.net +0.0.0.0 download.funwebproducts.com +0.0.0.0 download.fyxm.net +0.0.0.0 download.game-store.es +0.0.0.0 download.grandcloud.cn +0.0.0.0 download.mywebsearch.com +0.0.0.0 download.realtimegaming.com +0.0.0.0 download.shareazaweb.com +0.0.0.0 download.torchbrowser.com +0.0.0.0 download.ttrili.com +0.0.0.0 download.weatherbug.com +0.0.0.0 download.ytdownloader.com +0.0.0.0 download207.mediafire.com +0.0.0.0 downloads-whatsapp.com +0.0.0.0 downloads.pcsecurityshield.com +0.0.0.0 downloadupload.com +0.0.0.0 downloadwarez.org +0.0.0.0 dp-medien.eu +0.0.0.0 dqxaszsk.angelcities.com +0.0.0.0 dreamplay.movies01.hop.clickbank.net +0.0.0.0 drivotracker.com +0.0.0.0 drrt.h18.ru +0.0.0.0 drunkenstepfather.com +0.0.0.0 dualvaccine.com +0.0.0.0 duplicatefilecleaner.com +0.0.0.0 dvdmanager-203.sv2.biz +0.0.0.0 dzxcq.com +0.0.0.0 dzzrenjanin.rs +0.0.0.0 e.dtscout.com +0.0.0.0 e.zeroredirect.com +0.0.0.0 e.zeroredirect2.com +0.0.0.0 e0.extreme-dm.com +0.0.0.0 e1.extreme-dm.com +0.0.0.0 e2.extreme-dm.com +0.0.0.0 ead-soft.popunder.ru +0.0.0.0 ebdr3.com +0.0.0.0 ebertandroeper.com +0.0.0.0 ebocornac.com +0.0.0.0 ecdtrk.com +0.0.0.0 echobravo.zapto.org +0.0.0.0 eclean.or.kr +0.0.0.0 eclkspsa.com +0.0.0.0 ecos.e-mailcom.co.uk +0.0.0.0 ecpmrocks.com +0.0.0.0 ecxcite.com +0.0.0.0 edits.mywebsearch.com +0.0.0.0 edmedsnow.com +0.0.0.0 effectivebrand.com +0.0.0.0 eftps.com +0.0.0.0 egoldenglove.com +0.0.0.0 electra-jjh.com.br +0.0.0.0 email.exacttarget.com +0.0.0.0 emrlogistics.com +0.0.0.0 engelfire.com +0.0.0.0 enigmasoftware.com +0.0.0.0 enoratraffic.com +0.0.0.0 epmads.com +0.0.0.0 epmclk.com +0.0.0.0 equallyyolked.com +0.0.0.0 err.000webhost.com +0.0.0.0 errornuker.software-phile.com +0.0.0.0 errors.perfectgonzo.com +0.0.0.0 ertya.com +0.0.0.0 etahub.com +0.0.0.0 evaairline.com +0.0.0.0 everydaygays.com +0.0.0.0 exactadvertising.com +0.0.0.0 exacttarget.com +0.0.0.0 exit.silvercash.com +0.0.0.0 expressaffiliatesite.com +0.0.0.0 expressomatogrosso.com.br +0.0.0.0 eyes.by +0.0.0.0 ezthemes.com +0.0.0.0 ezthemes.ezthemes.com +0.0.0.0 f-js1.spotsniper.ru +0.0.0.0 f.gj555.net +0.0.0.0 f.zeroredirect.com +0.0.0.0 f.zeroredirect2.com +0.0.0.0 f8350e7c1.se +0.0.0.0 fabrics-store.com +0.0.0.0 facebook-proxy.hi5.com +0.0.0.0 facebook-repto1040s2.ahlamountada.com +0.0.0.0 facebook.cm +0.0.0.0 facebookasciiart.com +0.0.0.0 facebookcrawl.co.cc +0.0.0.0 facebookloginsignin.com +0.0.0.0 facebooktbtoolbar.ourtoolbar.com +0.0.0.0 facebookunblocking.com +0.0.0.0 fastdownload10.com +0.0.0.0 fastnclick.com +0.0.0.0 fastsearchproduct.com +0.0.0.0 faunusaff.afftrack.com +0.0.0.0 favicon.com +0.0.0.0 fb.cashtraffic.com +0.0.0.0 federatedstores.com +0.0.0.0 federicksofhollywood.com +0.0.0.0 feeds.videosz.com +0.0.0.0 feedx.bidsystem.com +0.0.0.0 femeedia.com +0.0.0.0 fgawegwr.chez.com +0.0.0.0 fgtkmcby02.eu +0.0.0.0 ficcionaliza.angelcities.com +0.0.0.0 filefortune.com +0.0.0.0 files.brothersoft.com +0.0.0.0 files.dsnetwb.com +0.0.0.0 files4.downloadnet1188.com +0.0.0.0 files4.securedownload01.com +0.0.0.0 files5.downloadnet1188.com +0.0.0.0 files5.securedownload01.com +0.0.0.0 filter.adsparkmedia.net +0.0.0.0 filter.onwardclick.com +0.0.0.0 finders.hopto.org +0.0.0.0 findit-quick.com +0.0.0.0 firstconsumers.com +0.0.0.0 fixcleaner.com +0.0.0.0 fixio-pc-cleaner.com +0.0.0.0 fkooaee.angelcities.com +0.0.0.0 flashcasino.com +0.0.0.0 flashdem.fr +0.0.0.0 flashplayer_macro.kit.net +0.0.0.0 flowtec.com.br +0.0.0.0 fmcurling.org +0.0.0.0 foreclousure.com +0.0.0.0 foreclousures.com +0.0.0.0 forex-instruments.info +0.0.0.0 formessengers.com +0.0.0.0 forms.earnmydegree.com +0.0.0.0 forum-boost.site50.net +0.0.0.0 forum.meinskype.de +0.0.0.0 fotologaso.miss-web.es +0.0.0.0 fpcclicks.com +0.0.0.0 fr.mediaplayercodecpack.com +0.0.0.0 free-game-downloads.mosw.com +0.0.0.0 free.content.streamray.com +0.0.0.0 freebiesms.co.uk +0.0.0.0 freebitmoney.com +0.0.0.0 freedownloadzone.com +0.0.0.0 freegamessource.com +0.0.0.0 freegoogla.vicp.net +0.0.0.0 freegroupvideo.popunder.ru +0.0.0.0 freenew.net +0.0.0.0 freeserials.ws +0.0.0.0 freevideo.biz.nf +0.0.0.0 freewebtown.com +0.0.0.0 friendlyduck.com +0.0.0.0 frtya.com +0.0.0.0 frtyb.com +0.0.0.0 fsl.sytes.net +0.0.0.0 ftp.flyfishusa.com +0.0.0.0 fucker2013.hopto.org +0.0.0.0 full-edition.info +0.0.0.0 funbuddyicons.com +0.0.0.0 funskins.ezthemes.com +0.0.0.0 funtopliste.de +0.0.0.0 funwebproducts.com +0.0.0.0 fuviseni.angelfire.com +0.0.0.0 fxlayer.net +0.0.0.0 fxstra.com +0.0.0.0 fyxm.net +0.0.0.0 g.zeroredirect.com +0.0.0.0 gaf-company.clean.to +0.0.0.0 gaja79.com +0.0.0.0 gajime.popunder.ru +0.0.0.0 gallys.nastydollars.com +0.0.0.0 galtthemes.ezthemes.com +0.0.0.0 gameangel.com +0.0.0.0 gameatlas.com +0.0.0.0 gameplaylabs.com +0.0.0.0 gamepor.com +0.0.0.0 gamerevoluton.com +0.0.0.0 games4u.ws +0.0.0.0 gamesfly.com +0.0.0.0 gamesharck.com +0.0.0.0 gamesharkcentral.com +0.0.0.0 garudaairlines.com +0.0.0.0 gayxperience.com +0.0.0.0 gbanners.hornymatches.com +0.0.0.0 gen2server.com +0.0.0.0 generationgirls.com +0.0.0.0 genforumgenealogy.com +0.0.0.0 geobanner.getiton.com +0.0.0.0 get-avast.com +0.0.0.0 get-quadcleaner.com +0.0.0.0 getiton.com +0.0.0.0 getmeaticket.co.uk +0.0.0.0 getrockerbox.com +0.0.0.0 getsearchlist.com +0.0.0.0 gilvision.com +0.0.0.0 globalcharge.com +0.0.0.0 gnuetella.com +0.0.0.0 go.goroost.com +0.0.0.0 go.oclaserver.com +0.0.0.0 go.onclasrv.com +0.0.0.0 go.startnow.com +0.0.0.0 go777site.com +0.0.0.0 goggl.com +0.0.0.0 goldbye.vicp.net +0.0.0.0 gom-player.gooofull.com +0.0.0.0 google-docs.org +0.0.0.0 google-hacks.softonic.fr +0.0.0.0 googlenews.xorg.pl +0.0.0.0 googlew.com +0.0.0.0 googlre.com +0.0.0.0 googlwe.com +0.0.0.0 goolegames.com +0.0.0.0 goolges.com +0.0.0.0 gopeds.com +0.0.0.0 gopogle.com +0.0.0.0 gowin7.com +0.0.0.0 grabfile.co +0.0.0.0 graphics.streamray.com +0.0.0.0 gratisweb.com +0.0.0.0 greatwalltour.org +0.0.0.0 gredinatib.org +0.0.0.0 green.erne.co +0.0.0.0 grendizer.biz +0.0.0.0 gserv.zdnet.co.uk +0.0.0.0 guaranty.com.cn +0.0.0.0 gulf-industrial.com +0.0.0.0 gvc.vn +0.0.0.0 gwmtracker.com +0.0.0.0 gxplugin.com +0.0.0.0 h-adachi.org +0.0.0.0 h.zeroredirect.com +0.0.0.0 h0rnd0g.popunder.ru +0.0.0.0 h21.ru +0.0.0.0 hackairtel.tk +0.0.0.0 hackboy.hit.bg +0.0.0.0 hackcafe.tk +0.0.0.0 hackhero.tk +0.0.0.0 hackindia.tk +0.0.0.0 hacking-facebook.com +0.0.0.0 hacking.mysteria.cz +0.0.0.0 hackkitarena.tk +0.0.0.0 haedong.es.kr +0.0.0.0 handlerhackz.tk +0.0.0.0 handyarchive.com +0.0.0.0 hanulsms.com +0.0.0.0 harmonyhollow.net +0.0.0.0 haso.pubmatic.com +0.0.0.0 havijrat.zapto.org +0.0.0.0 heaptickets.com +0.0.0.0 hefigo.com +0.0.0.0 help.mysearch.com +0.0.0.0 helpint.mywebsearch.com +0.0.0.0 helpmedownload.com +0.0.0.0 hentaidatabase.com +0.0.0.0 herezera.com +0.0.0.0 hertzsales.com +0.0.0.0 hgtzz.com +0.0.0.0 hidebux.com +0.0.0.0 hidemyass.com +0.0.0.0 hira.hopto.org +0.0.0.0 historykill.com +0.0.0.0 hitwastedgarden.com +0.0.0.0 hnskorea.co.kr +0.0.0.0 hoerbird.net +0.0.0.0 holdhelptime.com +0.0.0.0 holika.com +0.0.0.0 homedepoy.com +0.0.0.0 homrdepot.com +0.0.0.0 hop.clickbank.net +0.0.0.0 hopto.org +0.0.0.0 hornytraffic.com +0.0.0.0 host-it.co.uk +0.0.0.0 hosting.conduit.com +0.0.0.0 hot-bot.com +0.0.0.0 hot2015rewards.com +0.0.0.0 hotspotshield.com +0.0.0.0 howtocleanacomputervirus.com +0.0.0.0 hustlercash.hit.bg +0.0.0.0 hy-brasil.mhwang.com +0.0.0.0 i-games.biz +0.0.0.0 i.trkjmp.com +0.0.0.0 i.zeroredirect.com +0.0.0.0 ia1.7search.com +0.0.0.0 ias.avidmedia.net +0.0.0.0 ibmvideo.com +0.0.0.0 icityfind.com +0.0.0.0 icoocash.com +0.0.0.0 icracks.net +0.0.0.0 id.get35.com +0.0.0.0 ieginc.com +0.0.0.0 ifastnet.com +0.0.0.0 iframes.awempire.com +0.0.0.0 iframes.perfectgonzo.com +0.0.0.0 iframes.prettyincash.com +0.0.0.0 igame4free.com +0.0.0.0 ilovecheating.com +0.0.0.0 image.cecash.com +0.0.0.0 image1.cecash.com +0.0.0.0 images.brainfox.com +0.0.0.0 images.e-mailcom.co.uk +0.0.0.0 images.host.bannerflow.com +0.0.0.0 imagesmovies.com +0.0.0.0 img.7search.com +0.0.0.0 img.clicksagent.com +0.0.0.0 img.coldstoragemn.com +0.0.0.0 img.ruclicks.com +0.0.0.0 img.thebugs.ws +0.0.0.0 img.xratedbucks.com +0.0.0.0 img001.com +0.0.0.0 img2.sankakustatic.com +0.0.0.0 in.joinourwebsite.com +0.0.0.0 in.riskymail4free.com +0.0.0.0 info.com +0.0.0.0 infospace.tk +0.0.0.0 infra.by +0.0.0.0 inlinea.co.uk +0.0.0.0 innatek.com +0.0.0.0 inndl.com +0.0.0.0 insidecentralfl.com +0.0.0.0 installm.net +0.0.0.0 instorm.com +0.0.0.0 intera-x.com +0.0.0.0 interia-ek.ru +0.0.0.0 internet-cleaning-tool.capital-software.qarchive.org +0.0.0.0 internethistorycleaner.ws +0.0.0.0 interyield.jmp9.com +0.0.0.0 is2.websearch.com +0.0.0.0 isettatech.com +0.0.0.0 islamipedia.org +0.0.0.0 isuzi.com +0.0.0.0 it.altervista.org +0.0.0.0 itunesdownloadstore.com +0.0.0.0 ivitrine.buscape.com +0.0.0.0 iybasketball.info +0.0.0.0 j.pioneeringad.com +0.0.0.0 j.theadsnet.com +0.0.0.0 j.zeroredirect.com +0.0.0.0 jabu.popunder.ru +0.0.0.0 japanesevehicles.us +0.0.0.0 japanmadchen.com +0.0.0.0 japtron.es +0.0.0.0 javascriptobfuscator.com +0.0.0.0 jcwhiney.com +0.0.0.0 jcwhintey.com +0.0.0.0 jcwhitey.com +0.0.0.0 jdfabrication.com +0.0.0.0 jejuskypension.com +0.0.0.0 jesnyxa.beep.com +0.0.0.0 jigshhappy.com +0.0.0.0 jmp2click.com +0.0.0.0 joecartonn.com +0.0.0.0 joetoons.com +0.0.0.0 joincreditexpert.co.uk +0.0.0.0 joinourwebsite.com +0.0.0.0 josip-stadler.org +0.0.0.0 jque.net +0.0.0.0 jrpfekf.angelfire.com +0.0.0.0 js.ad-score.com +0.0.0.0 js.coinisrsdelivery.com +0.0.0.0 js.smartredirect.de +0.0.0.0 js11.clickzzs.nl +0.0.0.0 js7.clickzzs.nl +0.0.0.0 jsing.net +0.0.0.0 jsonip.com +0.0.0.0 jsp.clickzzs.nl +0.0.0.0 jsp2.clickzzs.nl +0.0.0.0 juedische-kammerphilharmonie.de +0.0.0.0 jzrvquay.angelcities.com +0.0.0.0 k-lite.tk +0.0.0.0 k.h.a.d.free.fr +0.0.0.0 k.zeroredirect.com +0.0.0.0 k5zoom.com +0.0.0.0 ka.bar.need2find.com +0.0.0.0 kalantzis.net +0.0.0.0 kamasutra.popunder.ru +0.0.0.0 kaspersky-shop.ch +0.0.0.0 katia-paliotti.com +0.0.0.0 katie.tnctrx.com +0.0.0.0 kazaa.com +0.0.0.0 kc.mv.bidsystem.com +0.0.0.0 kc.search.need2find.com +0.0.0.0 kc.xmlsearch.miva.com +0.0.0.0 kcta.or.kr +0.0.0.0 keygen-password-generator.softonic.fr +0.0.0.0 keygen.us +0.0.0.0 kickassratios.com +0.0.0.0 kidsangel.com +0.0.0.0 kinofree.popunder.ru +0.0.0.0 kipasdenim.com +0.0.0.0 kjbbc.net +0.0.0.0 klikbonus.com +0.0.0.0 kls.secure-cart.biz +0.0.0.0 komodia.com +0.0.0.0 kosdyvore.angelcities.com +0.0.0.0 kowasaki.com +0.0.0.0 krs.ymxpb.com +0.0.0.0 kvvijrmu.angelcities.com +0.0.0.0 kwbtgame.com +0.0.0.0 kwistal.nl +0.0.0.0 kz.search.need2find.com +0.0.0.0 l.zeroredirect.com +0.0.0.0 laexotic.com +0.0.0.0 lanonna.co.uk +0.0.0.0 lapiden.com +0.0.0.0 lateecapes.com +0.0.0.0 lcbcad.co.uk +0.0.0.0 leadingedgecash.com +0.0.0.0 leave.exacttarget.com +0.0.0.0 lefos.net +0.0.0.0 legendofdragoon.com +0.0.0.0 lennoxcollections.com +0.0.0.0 letssearch.com +0.0.0.0 letzonke.com +0.0.0.0 libecki.net +0.0.0.0 liders.biz +0.0.0.0 lifeeverest.com +0.0.0.0 linconpark.com +0.0.0.0 linkbucks.com +0.0.0.0 linkjumps.com +0.0.0.0 links.onlinedownloads.org +0.0.0.0 liqwid.net +0.0.0.0 litec-fr.com +0.0.0.0 littlesturgisrally.com +0.0.0.0 live-cams-0.livejasmin.com +0.0.0.0 live-cams-1.livejasmin.com +0.0.0.0 livecamgirls.streamray.com +0.0.0.0 livejasmin.com +0.0.0.0 livewell.net +0.0.0.0 llaredlrgn.angelcities.com +0.0.0.0 lo2.me +0.0.0.0 localh0st.info +0.0.0.0 logger.cash-media.de +0.0.0.0 logos.x-traceur.com +0.0.0.0 lonelywifehookup.com +0.0.0.0 longtraffic.com +0.0.0.0 lostartofbeingadame.com +0.0.0.0 lottoga.com +0.0.0.0 low-hacker.popunder.ru +0.0.0.0 lp.downloadquick.net +0.0.0.0 lp.sharelive.net +0.0.0.0 lp.torchbrowser.com +0.0.0.0 luesojz.angelcities.com +0.0.0.0 lufhansa.com +0.0.0.0 lufthansaairlines.com +0.0.0.0 lufthanza.com +0.0.0.0 luksona.popunder.ru +0.0.0.0 lycosgamesville.com +0.0.0.0 lzjl.com +0.0.0.0 m-99.co.uk +0.0.0.0 m-barati.de +0.0.0.0 m.friendlyduck.com +0.0.0.0 m.zeroredirect.com +0.0.0.0 m1crosoft.com +0.0.0.0 m2.xhamster.com +0.0.0.0 m57ku6sm.com +0.0.0.0 maatch.com +0.0.0.0 maconbraves.com +0.0.0.0 magellen.com +0.0.0.0 mahindrainsurance.com +0.0.0.0 mail.avis.cm +0.0.0.0 mail.cnn.cm +0.0.0.0 mail.poker.cm +0.0.0.0 mail.target.cm +0.0.0.0 mainteck-fr.com +0.0.0.0 malest.com +0.0.0.0 malkm.com +0.0.0.0 mamameidia.com +0.0.0.0 mamamidia.com +0.0.0.0 mansmith.net +0.0.0.0 mapqueat.com +0.0.0.0 mapquestt.com +0.0.0.0 mapquuest.com +0.0.0.0 marcopolo.uk.net +0.0.0.0 markbruinink.nl +0.0.0.0 martgage.com +0.0.0.0 marx-brothers.mhwang.com +0.0.0.0 maryscott.angelcities.com +0.0.0.0 masterofalltradetax.online +0.0.0.0 mathenea.com +0.0.0.0 maxbounty.com +0.0.0.0 maxregistrycleaner.com +0.0.0.0 maxregistrycleaner.net +0.0.0.0 mcleanvahomes.com +0.0.0.0 media-playerz.com +0.0.0.0 mediaplayercodecpack.com +0.0.0.0 meetyourmessenger.co.uk +0.0.0.0 meiluziai.info +0.0.0.0 merrymilkfoods.com +0.0.0.0 mesopotemia222.zapto.org +0.0.0.0 messagetag.com +0.0.0.0 meta.7search.com +0.0.0.0 mg.dt00.net +0.0.0.0 mgjmp.com +0.0.0.0 microsecuritywinsecuritysupport.errorfounddllregistryfiledsod.winsecuritysupport.com +0.0.0.0 microsofto.sytes.net +0.0.0.0 micrsoftupgradex.1apps.com +0.0.0.0 mikeboffer.mytvplayer.hop.clickbank.net +0.0.0.0 mil-colores.com +0.0.0.0 milfsites.net +0.0.0.0 milioner.popunder.ru +0.0.0.0 ming-dun.com.tw +0.0.0.0 minigameplanet.com +0.0.0.0 minisearch.startnow.com +0.0.0.0 mirrors.site50.net +0.0.0.0 mlinktracker.com +0.0.0.0 mlpoint.pt +0.0.0.0 mm26.com +0.0.0.0 mmapquest.com +0.0.0.0 mmtracking.com +0.0.0.0 mobatory.com +0.0.0.0 mobi-hack.tk +0.0.0.0 mobile.bitterstrawberry.org +0.0.0.0 monarchslo.com +0.0.0.0 monetisetrk.co.uk +0.0.0.0 monetisetrk2.co.uk +0.0.0.0 monetisetrk3.co.uk +0.0.0.0 monetisetrk4.co.uk +0.0.0.0 monetisetrk5.co.uk +0.0.0.0 monetisetrk6.co.uk +0.0.0.0 monofeel.com +0.0.0.0 morenews3.net +0.0.0.0 mormonchurchgenealogy.com +0.0.0.0 moucitons.com +0.0.0.0 moviedownloader.net +0.0.0.0 moviesfone.com +0.0.0.0 mp3downloadhq.com +0.0.0.0 mp3helpdesk.com +0.0.0.0 mp3playerprovider.com +0.0.0.0 mpmotrk.com +0.0.0.0 mprptrk.com +0.0.0.0 mpxxtrk.com +0.0.0.0 mrace.hopto.org +0.0.0.0 ms-mvp.org +0.0.0.0 msalt.mysearch.com +0.0.0.0 msnsports.com +0.0.0.0 msxml.info.com +0.0.0.0 msxml.us.info.com +0.0.0.0 mtmsms.com +0.0.0.0 mueller-holz-bau.com +0.0.0.0 murbil.hostei.com +0.0.0.0 my.pcsecurityshield.com +0.0.0.0 mycleanerpc.com +0.0.0.0 mycleanpc.com +0.0.0.0 mycleanpc.tk +0.0.0.0 mydati.com +0.0.0.0 myoffers.co.uk +0.0.0.0 mysearch-engine.com +0.0.0.0 myshopmarketim.com +0.0.0.0 myshovel.com +0.0.0.0 mytotalsearch.com +0.0.0.0 mywebsearch.com +0.0.0.0 n.targetbtracker.com +0.0.0.0 n.zeroredirect.com +0.0.0.0 n149adserv.com +0.0.0.0 nadir123015.zapto.org +0.0.0.0 naijahacking.tk +0.0.0.0 naijahacklord.tk +0.0.0.0 nav.startnow.com +0.0.0.0 nbrtrack.com +0.0.0.0 neki.org +0.0.0.0 nestscape.com +0.0.0.0 netcscape.com +0.0.0.0 netmag.co.uk +0.0.0.0 netscae.com +0.0.0.0 neumashop.cl +0.0.0.0 new.chokertraffic.com +0.0.0.0 new.startnow.com +0.0.0.0 newads.bangbros.com +0.0.0.0 newclick.com +0.0.0.0 newcracks.net +0.0.0.0 neweed.org +0.0.0.0 neyscape.com +0.0.0.0 nht-2.extreme-dm.com +0.0.0.0 nht-3.extreme-dm.com +0.0.0.0 nikolamireasa.com +0.0.0.0 nkgamers.com +0.0.0.0 nl.mediaplayercodecpack.com +0.0.0.0 nmapquest.com +0.0.0.0 notrecommended.co.uk +0.0.0.0 nourteenthp.angelcities.com +0.0.0.0 npktrk1.com +0.0.0.0 nryb.com +0.0.0.0 ns1.ntkrnlpa.info +0.0.0.0 ns1.the-sinner.net +0.0.0.0 ns1.vicp.net +0.0.0.0 ns2.ntkrnlpa.info +0.0.0.0 ns2.vicp.net +0.0.0.0 ns3.ishosting.net +0.0.0.0 nsrecord.org +0.0.0.0 ntkrnlpa.info +0.0.0.0 nwhomecare.co.uk +0.0.0.0 nwoccs.zapto.org +0.0.0.0 o.zeroredirect.com +0.0.0.0 obyz.de +0.0.0.0 ocpersian.com +0.0.0.0 offlinehbpl.hbpl.co.uk +0.0.0.0 ohiomm.com +0.0.0.0 ojolink.fr +0.0.0.0 ojtobu.angelcities.com +0.0.0.0 oldgames.zp.ua +0.0.0.0 omnicleaningservices.com +0.0.0.0 onadstracker.com +0.0.0.0 onclickpredictiv.com +0.0.0.0 oneund.ru +0.0.0.0 online.sh.cn +0.0.0.0 onlineadmin.net +0.0.0.0 onlinedownloads.org +0.0.0.0 onwardclick.com +0.0.0.0 onwey.com +0.0.0.0 oofun.com +0.0.0.0 oovqsvi.angelcities.com +0.0.0.0 opendownloadmanager.com +0.0.0.0 opensoftwareupdate.com +0.0.0.0 opensoftwareupdater.com +0.0.0.0 optiker-michelmann.de +0.0.0.0 optimization-methods.com +0.0.0.0 orbiyz.com +0.0.0.0 orders.webpower.com +0.0.0.0 oreware.com +0.0.0.0 oriceline.com +0.0.0.0 other.xxxcounter.com +0.0.0.0 otherossettlement.com +0.0.0.0 out-lok.hpage.com +0.0.0.0 overlay.ringtonematcher.com +0.0.0.0 owpuuzea.angelcities.com +0.0.0.0 p.ato.mx +0.0.0.0 p.securedownload01.com +0.0.0.0 p.zeroredirect.com +0.0.0.0 p3nlhclust404.shr.prod.phx3.secureserver.net +0.0.0.0 pager.site50.net +0.0.0.0 paime.com +0.0.0.0 palmebi.popunder.ru +0.0.0.0 pamoran.net +0.0.0.0 paraskov.com +0.0.0.0 parking.parklogic.com +0.0.0.0 partners.pcsecurityshield.com +0.0.0.0 partners.xhamster.com +0.0.0.0 pastie.org +0.0.0.0 patrickhickey.eu +0.0.0.0 pay-per-search.com +0.0.0.0 payn.me +0.0.0.0 paypal-exchange.com +0.0.0.0 paypalcz.cz +0.0.0.0 payperclickadvertising.org.uk +0.0.0.0 payusatax.com +0.0.0.0 pc-detox.com +0.0.0.0 pc-wallpapers.co.uk +0.0.0.0 pcash.imlive.com +0.0.0.0 pcbutts1.ourtoolbar.com +0.0.0.0 pcbutts1.software.informer.com +0.0.0.0 pccleaner.com +0.0.0.0 pccleanerpro.com +0.0.0.0 pcmatic.com +0.0.0.0 pcmightymax.net +0.0.0.0 pcpitstop.com +0.0.0.0 pcregistrycleaner.com +0.0.0.0 pcsecurityshield.com +0.0.0.0 pda.mv.bidsystem.com +0.0.0.0 pdf-platinum.info +0.0.0.0 peiceline.com +0.0.0.0 penix.nl +0.0.0.0 penwithian.co.uk +0.0.0.0 perfectionautorepairs.com +0.0.0.0 petrafashion.com +0.0.0.0 petrenko.biz +0.0.0.0 petsmovies.com +0.0.0.0 pfaltzgraf.com +0.0.0.0 pfcuay.o-f.com +0.0.0.0 pgalvaoteles.pt +0.0.0.0 php4you.biz +0.0.0.0 pillsmoney.com +0.0.0.0 pissingteengirlsfreemovies.blogbugs.org +0.0.0.0 pix.impdesk.com +0.0.0.0 pix.tagcdn.com +0.0.0.0 pixel.adsniper.ru +0.0.0.0 pixel.keywee.co +0.0.0.0 pixelbox.uimserv.net +0.0.0.0 pixelcounter.elmundo.es +0.0.0.0 pixelcounter.marca.com +0.0.0.0 pl.yumenetworks.com +0.0.0.0 plarium.com +0.0.0.0 play.videosongplayer.com +0.0.0.0 player.movenetworks.com +0.0.0.0 playerassist.com +0.0.0.0 playersaid.com +0.0.0.0 playfromcolumbiahouse.com +0.0.0.0 playgril.com +0.0.0.0 playsataion.com +0.0.0.0 playsations.com +0.0.0.0 playstatation.com +0.0.0.0 plugin.mediavoice.com +0.0.0.0 pluginx.perfectgonzo.com +0.0.0.0 plumsoftware.co.uk +0.0.0.0 podzemi.myotis.info +0.0.0.0 pokemonporno.com +0.0.0.0 poker.cm +0.0.0.0 poppers-rush.ru +0.0.0.0 popunder.fpctraffic.com +0.0.0.0 popunder.popcde.com +0.0.0.0 popunder.ru +0.0.0.0 port.bg +0.0.0.0 portalangels-1.pop3.ru +0.0.0.0 portalangels.pop3.ru +0.0.0.0 power.info.com +0.0.0.0 praceline.com +0.0.0.0 predictivesearch.com +0.0.0.0 premiumpedia.com +0.0.0.0 priiceline.com +0.0.0.0 primosearch.com +0.0.0.0 print.khingtracking.com +0.0.0.0 private-id.tk +0.0.0.0 privdog.com +0.0.0.0 pro.clanweb.cz +0.0.0.0 progettocrea.org +0.0.0.0 promo.awempire.com +0.0.0.0 promo.cams.com +0.0.0.0 promo.clickcash.com +0.0.0.0 promo.content.premiumpass.com +0.0.0.0 promo.lonelywifehookup.com +0.0.0.0 promo.passioncams.com +0.0.0.0 promo.twistyscash.com +0.0.0.0 promo.ulust.com +0.0.0.0 promos.camsoda.com +0.0.0.0 promos.naked.com +0.0.0.0 promotools.islive.nl +0.0.0.0 promotools.vpscash.nl +0.0.0.0 prorodeosportmed.com +0.0.0.0 protect.advancedcleaner.com +0.0.0.0 prriceline.com +0.0.0.0 ps.ns-cdn.com +0.0.0.0 pub.ftv-publicite.fr +0.0.0.0 pub.sv2.biz +0.0.0.0 pumpkin.co.uk +0.0.0.0 puroclean.com +0.0.0.0 pussygreen.com +0.0.0.0 pwp.netcabo.pt +0.0.0.0 px24.com +0.0.0.0 q.zeroredirect.com +0.0.0.0 qacupuzute.angelcities.com +0.0.0.0 qqewfjdp.angelcities.com +0.0.0.0 qrcdownload.ibcustomerzone.com +0.0.0.0 quad-cleaner.com +0.0.0.0 quad-registry-cleaner.softonic.fr +0.0.0.0 qualityindustrialcoatings.com +0.0.0.0 quickcreditscore.co.uk +0.0.0.0 quinnwealth.com +0.0.0.0 qwas0.trackvoluum.com +0.0.0.0 qwebirc.swiftirc.net +0.0.0.0 qzip.cjb.net +0.0.0.0 r.zeroredirect.com +0.0.0.0 r2m.hopto.org +0.0.0.0 r2prod.com +0.0.0.0 rahulthehacker.tk +0.0.0.0 rainbowcolours.me.uk +0.0.0.0 rapsubs.popunder.ru +0.0.0.0 rar-password-cracker.softonic.fr +0.0.0.0 raskrutka.ucoz.com +0.0.0.0 rat-on-subway.mhwang.com +0.0.0.0 ratemodels.net +0.0.0.0 raveontrack.com +0.0.0.0 rd-direct.com +0.0.0.0 redhotchilli.co.uk +0.0.0.0 redirect.site50.net +0.0.0.0 redirectingat.com +0.0.0.0 redirectme.net +0.0.0.0 redirects.coldhardcash.com +0.0.0.0 reducelnk.com +0.0.0.0 reg-cleaners.com +0.0.0.0 regclean.software-phile.com +0.0.0.0 regcure.software-phile.com +0.0.0.0 regdefense.com +0.0.0.0 registry-clean-up.net +0.0.0.0 registry-cleaner.net +0.0.0.0 registry-cleaners-compared.com +0.0.0.0 registry-cleaners-reviews.net +0.0.0.0 registry-error-cleaner.com +0.0.0.0 registrycleaner-reviews.net +0.0.0.0 registrycleaner.onlinedownloads.org +0.0.0.0 registrycleanerforvista.com +0.0.0.0 registrycleanerfree.blogspot.com +0.0.0.0 registrycleanerpro.net +0.0.0.0 registrycleanersreviewed.com +0.0.0.0 registrycleanertechnology.com +0.0.0.0 registrycleanertop.com +0.0.0.0 registrydefender.com +0.0.0.0 registryfix.com +0.0.0.0 registryregistrycleaner.triedtool.com +0.0.0.0 registryregistrytool.triedtool.com +0.0.0.0 registrysweeper.com +0.0.0.0 regnow.pcsecurityshield.com +0.0.0.0 regrep.reclean.hop.clickbank.net +0.0.0.0 relaxsearch.uphero.com +0.0.0.0 removearrest.com +0.0.0.0 rentfromart.com +0.0.0.0 reports.extreme-dm.com +0.0.0.0 researchnow.co.uk +0.0.0.0 restore-pc.com +0.0.0.0 retarcl.net +0.0.0.0 reviews.domainplayersclub.com +0.0.0.0 rewardsnow.co.uk +0.0.0.0 rewardszoneusa.com +0.0.0.0 ribcagebags.com +0.0.0.0 rickparty.com +0.0.0.0 ringtonematcher.com +0.0.0.0 riskymail4free.com +0.0.0.0 rivasearchpage.com +0.0.0.0 rngetek.com +0.0.0.0 robtopol.in +0.0.0.0 rokus-tgy.hu +0.0.0.0 rolemodelstreetteam.invasioncrew.com +0.0.0.0 root--servers.org +0.0.0.0 rowanmclean.com +0.0.0.0 rpc.ant.com +0.0.0.0 rq.adtrackdirect.com +0.0.0.0 rsc.scmspain.com +0.0.0.0 rubanners.com +0.0.0.0 rubiks.ca +0.0.0.0 ruclicks.com +0.0.0.0 s.admathhd.com +0.0.0.0 s.adnxtr.com +0.0.0.0 s.arclk.net +0.0.0.0 s.ato.mx +0.0.0.0 s.zeroredirect.com +0.0.0.0 sacredphoenix.com +0.0.0.0 sade-ecrivain.com +0.0.0.0 safedownloadnow.work +0.0.0.0 safelinking.net +0.0.0.0 safemobilelink.com +0.0.0.0 safepccleaner.com +0.0.0.0 saloboy.popunder.ru +0.0.0.0 samaclub.com +0.0.0.0 samvaulter.com +0.0.0.0 sandbox.tk +0.0.0.0 sankakustatic.com +0.0.0.0 sasdiskcleaner.com +0.0.0.0 sasson-cpa.co.il +0.0.0.0 sayhello.popunder.ru +0.0.0.0 sayherbal.com +0.0.0.0 scanspyware.net +0.0.0.0 schoorsteen.geenstijl.nl +0.0.0.0 score.zeroclickfraud.com +0.0.0.0 scripts.host.bannerflow.com +0.0.0.0 scrollingads.hustlermegapass.com +0.0.0.0 search.brainfox.com +0.0.0.0 search.effectivebrand.com +0.0.0.0 search.info.com +0.0.0.0 search.mywebsearch.com +0.0.0.0 search.startnow.com +0.0.0.0 search2007.info +0.0.0.0 search34.info.com +0.0.0.0 searchacross.com +0.0.0.0 searchatomic.com +0.0.0.0 searchdiscovered.com +0.0.0.0 searchfwding.com +0.0.0.0 searchignited.com +0.0.0.0 searchinquire.com +0.0.0.0 searchmachine.com +0.0.0.0 searchmagna.com +0.0.0.0 searchmagnified.com +0.0.0.0 searchnet.com +0.0.0.0 searchnigeria.net +0.0.0.0 searchnut.com +0.0.0.0 searchremagnified.com +0.0.0.0 searchresultsguide.com +0.0.0.0 searchtoexplore.com +0.0.0.0 sebcotrk.com +0.0.0.0 secure-processingcenter.com +0.0.0.0 secure.cardtransaction.com +0.0.0.0 secure.expressdelivery.biz +0.0.0.0 secure.ifbyphone.com +0.0.0.0 secure.mymedcenter.net +0.0.0.0 secure.vxsbill.com +0.0.0.0 securedownload01.net +0.0.0.0 securemypc.co.uk +0.0.0.0 securetracking2.com +0.0.0.0 securetrk1.com +0.0.0.0 securezone33.xorg.pl +0.0.0.0 secuurity.net +0.0.0.0 selfsurveys.com +0.0.0.0 sellmeyourtraffic.com +0.0.0.0 sendfwd.com +0.0.0.0 sendori.com +0.0.0.0 sentrol.cl +0.0.0.0 seoholding.com +0.0.0.0 seonetwizard.com +0.0.0.0 seosoftware.onlinedownloads.org +0.0.0.0 serenescreen-marine-aquarium.en.softonic.com +0.0.0.0 serial-cloner.softonic.fr +0.0.0.0 server.toolbar.rediff.com +0.0.0.0 server03new.dot.at +0.0.0.0 server1.extra-web.cz +0.0.0.0 serveradobe.co.cc +0.0.0.0 services.x-traceur.com +0.0.0.0 serviceyourpaypal.com +0.0.0.0 settings.luckyorange.net +0.0.0.0 setup.advancedcleaner.com +0.0.0.0 sevenstars7.com +0.0.0.0 shareaza.com +0.0.0.0 ships.zapto.org +0.0.0.0 shop.pcsecurityshield.com +0.0.0.0 shore-view.com +0.0.0.0 show.onenetworkdirect.net +0.0.0.0 sijmp.com +0.0.0.0 singular-cy.com +0.0.0.0 sinkhole-00.shadowserver.org +0.0.0.0 sirius-expedition.com +0.0.0.0 site.falconbucks.com +0.0.0.0 siteanalytics.compete.com +0.0.0.0 sj88.com +0.0.0.0 skassets.com +0.0.0.0 skype.dw.land.to +0.0.0.0 skype.tom.com +0.0.0.0 skypeclass.com +0.0.0.0 skypefr.com +0.0.0.0 skyperec.com +0.0.0.0 slimxxxtubealn.ddns.name +0.0.0.0 slimxxxtubeanr.ddns.name +0.0.0.0 slimxxxtubeaxy.ddns.name +0.0.0.0 slimxxxtubeayv.ddns.name +0.0.0.0 slimxxxtubebgp.ddns.name +0.0.0.0 slimxxxtubebnd.ddns.name +0.0.0.0 slimxxxtubecgl.ddns.name +0.0.0.0 slimxxxtubecty.ddns.name +0.0.0.0 slimxxxtubeczp.ddns.name +0.0.0.0 slimxxxtubedjm.ddns.name +0.0.0.0 slimxxxtubedlb.ddns.name +0.0.0.0 slimxxxtubedxc.ddns.name +0.0.0.0 slimxxxtubedya.ddns.name +0.0.0.0 slimxxxtubeejs.ddns.name +0.0.0.0 slimxxxtubefdr.ddns.name +0.0.0.0 slimxxxtubefel.ddns.name +0.0.0.0 slimxxxtubefzc.ddns.name +0.0.0.0 slimxxxtubehan.ddns.name +0.0.0.0 slimxxxtubeidv.ddns.name +0.0.0.0 slimxxxtubejlp.ddns.name +0.0.0.0 slimxxxtubejpe.ddns.name +0.0.0.0 slimxxxtubejvh.ddns.name +0.0.0.0 slimxxxtubejyk.ddns.name +0.0.0.0 slimxxxtubekad.ddns.name +0.0.0.0 slimxxxtubekgj.ddns.name +0.0.0.0 slimxxxtubekgv.ddns.name +0.0.0.0 slimxxxtubekpn.ddns.name +0.0.0.0 slimxxxtubekrn.ddns.name +0.0.0.0 slimxxxtubelap.ddns.name +0.0.0.0 slimxxxtubelat.ddns.name +0.0.0.0 slimxxxtubelfr.ddns.name +0.0.0.0 slimxxxtubelzv.ddns.name +0.0.0.0 slimxxxtubeneg.ddns.name +0.0.0.0 slimxxxtubeneu.ddns.name +0.0.0.0 slimxxxtubenqp.ddns.name +0.0.0.0 slimxxxtubeopy.ddns.name +0.0.0.0 slimxxxtubeoxo.ddns.name +0.0.0.0 slimxxxtubeoxy.ddns.name +0.0.0.0 slimxxxtubeqfo.ddns.name +0.0.0.0 slimxxxtubeqsh.ddns.name +0.0.0.0 slimxxxtuberau.ddns.name +0.0.0.0 slimxxxtuberea.ddns.name +0.0.0.0 slimxxxtuberjj.ddns.name +0.0.0.0 slimxxxtubesrw.ddns.name +0.0.0.0 slimxxxtubesun.ddns.name +0.0.0.0 slimxxxtubetmf.ddns.name +0.0.0.0 slimxxxtubetns.ddns.name +0.0.0.0 slimxxxtubeujh.ddns.name +0.0.0.0 slimxxxtubevdn.ddns.name +0.0.0.0 slimxxxtubevjk.ddns.name +0.0.0.0 slimxxxtubewfl.ddns.name +0.0.0.0 slimxxxtubewiq.ddns.name +0.0.0.0 slimxxxtubewis.ddns.name +0.0.0.0 slimxxxtubexei.ddns.name +0.0.0.0 slimxxxtubexvq.ddns.name +0.0.0.0 slimxxxtubeyge.ddns.name +0.0.0.0 slimxxxtubeyhz.ddns.name +0.0.0.0 slimxxxtubeyza.ddns.name +0.0.0.0 slorent.com +0.0.0.0 slutloadlive.com +0.0.0.0 smancart.com +0.0.0.0 smartfixer.software-phile.com +0.0.0.0 smartgiveaway.com +0.0.0.0 smc.silvercash.com +0.0.0.0 smithwick.net +0.0.0.0 sneakyboy.com +0.0.0.0 socialme.tk +0.0.0.0 socpixel.bidsystem.com +0.0.0.0 soft4update.forfreeupgrades.org +0.0.0.0 software-phile.com +0.0.0.0 software0squared.xyz +0.0.0.0 software118updates.xyz +0.0.0.0 softwareupdaterlp.com +0.0.0.0 softwareupdates120.xyz +0.0.0.0 softwareupdates122.xyz +0.0.0.0 softwareupdates126.xyz +0.0.0.0 softwareupdates201.xyz +0.0.0.0 sompuserve.com +0.0.0.0 sonyplaystion.com +0.0.0.0 soski.popunder.ru +0.0.0.0 sostox.com +0.0.0.0 spamnuker.com +0.0.0.0 specilized.com +0.0.0.0 speedbar.myway.com +0.0.0.0 speedcounts.com +0.0.0.0 speedrep.com +0.0.0.0 spiderbait.com +0.0.0.0 spike669.popunder.ru +0.0.0.0 splitter.ndsplitter.com +0.0.0.0 spotsniper.ru +0.0.0.0 spyarsenal.com +0.0.0.0 spywarebegone.com +0.0.0.0 spywareit.com +0.0.0.0 spywarenuker.com +0.0.0.0 spywarespy.com +0.0.0.0 srch.startnow.com +0.0.0.0 srv.sayyac.net +0.0.0.0 srv2trking.com +0.0.0.0 ss-01.com +0.0.0.0 ssl.clickbank.net +0.0.0.0 st.smartredirect.de +0.0.0.0 st1.ifbyphone.com +0.0.0.0 stamplive.com +0.0.0.0 startnow.com +0.0.0.0 stat.cncenter.cz +0.0.0.0 static.adfclick1.com +0.0.0.0 static.awempire.com +0.0.0.0 static.contentabc.com +0.0.0.0 static.ifa.slutloadlive.com +0.0.0.0 static.retirementcommunitiesfyi.com +0.0.0.0 stats.openload.co +0.0.0.0 statsv3.gaycash.com +0.0.0.0 stepan007.popunder.ru +0.0.0.0 stephens-laughlin.com +0.0.0.0 stignita.zapto.org +0.0.0.0 stimul-m.com.ua +0.0.0.0 stop-sign.com +0.0.0.0 strangeduckfilms.com +0.0.0.0 stressx.org +0.0.0.0 stripteas.com +0.0.0.0 sttvisa.com +0.0.0.0 studenti.unipa.it +0.0.0.0 sugarsync.com +0.0.0.0 sunidaytravel.co.uk +0.0.0.0 super8service.de +0.0.0.0 superbrewards.com +0.0.0.0 supersonicads.com +0.0.0.0 surch.co.uk +0.0.0.0 surveystopweb.com +0.0.0.0 suscotrk.com +0.0.0.0 svarkon.ru +0.0.0.0 swanksoft.com +0.0.0.0 swingingcommunity.com +0.0.0.0 sylicomservicios.com +0.0.0.0 symantex.com +0.0.0.0 syndication.cntrafficpro.com +0.0.0.0 t.afftrackr.com +0.0.0.0 t.dtscout.com +0.0.0.0 t.extreme-dm.com +0.0.0.0 t.svtrd.com +0.0.0.0 t.zeroredirect.com +0.0.0.0 t0.extreme-dm.com +0.0.0.0 t1.extreme-dm.com +0.0.0.0 ta.com.tw +0.0.0.0 tabex.sopharma.bg +0.0.0.0 taffr.com +0.0.0.0 tagline.bidsystem.com +0.0.0.0 tags1.eclkspsa.com +0.0.0.0 tamprc.com +0.0.0.0 tangabilder.to +0.0.0.0 tapair.com +0.0.0.0 tar.tradedoubler.com +0.0.0.0 tarakc1.net +0.0.0.0 target.cm +0.0.0.0 tats.cecash.com +0.0.0.0 tavelscape.com +0.0.0.0 tazw.zapto.org +0.0.0.0 tb.altervista.org +0.0.0.0 tcgtrkr.com +0.0.0.0 tds.tuberl.com +0.0.0.0 tec.sarl.tk +0.0.0.0 techbargins.com +0.0.0.0 tengo.popunder.ru +0.0.0.0 testtralala.xorg.pl +0.0.0.0 textad.passionsearch.com +0.0.0.0 the-best-tracker.com +0.0.0.0 the-kret.popunder.ru +0.0.0.0 theads.me +0.0.0.0 thebighits.com +0.0.0.0 thebugs.ws +0.0.0.0 themexp.ezthemes.com +0.0.0.0 themexp.org +0.0.0.0 themillionaireinpjs.net +0.0.0.0 theroamingjew.com +0.0.0.0 thesearchagency.net +0.0.0.0 thesearchster.com +0.0.0.0 thesurfshield.com +0.0.0.0 thetop.be +0.0.0.0 theuniquesearch.com +0.0.0.0 theweatherspace.com +0.0.0.0 thoroclean.com +0.0.0.0 thumser-online.de +0.0.0.0 ticker.conduit.com +0.0.0.0 tldtgs.com +0.0.0.0 tmgr.ccmbg.com +0.0.0.0 tnctrx.com +0.0.0.0 toolbar.startnow.com +0.0.0.0 toolbar.wibiya.com +0.0.0.0 toolbar.wips.com +0.0.0.0 toolbarwizard.vmn.net +0.0.0.0 tools.naughtyamerica.com +0.0.0.0 tools.ztod.com +0.0.0.0 toomami.com +0.0.0.0 toon-families.com +0.0.0.0 toondinsey.com +0.0.0.0 toonfamilies.net +0.0.0.0 top.artcomix.com +0.0.0.0 top.dating.lt +0.0.0.0 top10registrycleaners.com +0.0.0.0 top50.co.uk +0.0.0.0 topdesktop.ezthemes.com +0.0.0.0 topqualitylink.com +0.0.0.0 torgi.kz +0.0.0.0 toroadvertisingmedia.com +0.0.0.0 torpiddurkeeopthalmic.info +0.0.0.0 tossm.com +0.0.0.0 totemcash.com +0.0.0.0 totszentmarton.hu +0.0.0.0 towerecords.com +0.0.0.0 track.rtdock.com +0.0.0.0 track.viralvidi.com +0.0.0.0 tracker.bannerflow.com +0.0.0.0 trackertracker.com +0.0.0.0 tracki112.com +0.0.0.0 tracking-stats-tr.usa.cc +0.0.0.0 tracking.domobmedia.com +0.0.0.0 tracking.pickyourplum.com +0.0.0.0 tracking.softwareprojects.com +0.0.0.0 tracking.spiderbait.com +0.0.0.0 tracklead.net +0.0.0.0 trackzapper.com +0.0.0.0 traff1.com +0.0.0.0 translation.conduit.com +0.0.0.0 travekocity.com +0.0.0.0 travelasity.com +0.0.0.0 travelcape.com +0.0.0.0 traveliocity.com +0.0.0.0 travelocidy.com +0.0.0.0 travelocite.com +0.0.0.0 travelocitu.com +0.0.0.0 travelocityca.com +0.0.0.0 travelocityt.com +0.0.0.0 travelocoity.com +0.0.0.0 travelogity.com +0.0.0.0 traveloicty.com +0.0.0.0 traveloocity.com +0.0.0.0 traveloscity.com +0.0.0.0 travelovity.com +0.0.0.0 traveolocity.com +0.0.0.0 travlers.com +0.0.0.0 treavelocity.com +0.0.0.0 triggers.wfxtriggers.com +0.0.0.0 triggers1.wfxtriggers.com +0.0.0.0 triplequadturbo.com +0.0.0.0 tritratrullala.gekitzelt.de +0.0.0.0 trk.pcsecurityshield.com +0.0.0.0 trk.simply.net +0.0.0.0 trk4.com +0.0.0.0 trkingace.com +0.0.0.0 trqvelocity.com +0.0.0.0 truecolored.com +0.0.0.0 trueguardscaner33-p.xorg.pl +0.0.0.0 trusearch.net +0.0.0.0 trustedbestsites.com +0.0.0.0 trustsoft.com +0.0.0.0 trvelocity.com +0.0.0.0 trx625.com +0.0.0.0 ttt.fwq101.tk +0.0.0.0 tttbbbttt.zapto.org +0.0.0.0 tube.exclusiotv.be +0.0.0.0 tube8vidscjk.ddns.name +0.0.0.0 tube8vidscqs.ddns.name +0.0.0.0 tube8vidscut.ddns.name +0.0.0.0 tube8vidsdst.ddns.name +0.0.0.0 tube8vidsfgd.ddns.name +0.0.0.0 tube8vidshhr.ddns.name +0.0.0.0 tube8vidshkk.ddns.name +0.0.0.0 tube8vidsiet.ddns.name +0.0.0.0 tube8vidsiww.ddns.name +0.0.0.0 tube8vidsjan.ddns.name +0.0.0.0 tube8vidsjhn.ddns.name +0.0.0.0 tube8vidsjtq.ddns.name +0.0.0.0 tube8vidslqk.ddns.name +0.0.0.0 tube8vidslrz.ddns.name +0.0.0.0 tube8vidsnrt.ddns.name +0.0.0.0 tube8vidsnvd.ddns.name +0.0.0.0 tube8vidsolh.ddns.name +0.0.0.0 tube8vidspeq.ddns.name +0.0.0.0 tube8vidsqof.ddns.name +0.0.0.0 tube8vidsrhl.ddns.name +0.0.0.0 tube8vidssjw.ddns.name +0.0.0.0 tube8vidstyp.ddns.name +0.0.0.0 tube8vidsvcs.ddns.name +0.0.0.0 tube8vidsvmr.ddns.name +0.0.0.0 tube8vidsvrx.ddns.name +0.0.0.0 tube8vidswtb.ddns.name +0.0.0.0 tube8vidswys.ddns.name +0.0.0.0 tube8vidsxlo.ddns.name +0.0.0.0 tube8vidsxpg.ddns.name +0.0.0.0 tube8vidsxwu.ddns.name +0.0.0.0 tube8vidsyip.ddns.name +0.0.0.0 tube8vidszmi.ddns.name +0.0.0.0 tube8vidsznj.ddns.name +0.0.0.0 tube8vidsznx.ddns.name +0.0.0.0 tube8vidszyj.ddns.name +0.0.0.0 tuckows.com +0.0.0.0 tukejrh.angelfire.com +0.0.0.0 turkeyrank.com +0.0.0.0 tvzebra.popunder.ru +0.0.0.0 twairlines.com +0.0.0.0 twskype.com +0.0.0.0 twttr.com +0.0.0.0 tzw.com +0.0.0.0 u.extreme-dm.com +0.0.0.0 u.zeroredirect.com +0.0.0.0 u0.extreme-dm.com +0.0.0.0 u1.extreme-dm.com +0.0.0.0 ualumphuoldi.angelcities.com +0.0.0.0 uk.mediaplayercodecpack.com +0.0.0.0 unblockfacebook.co.uk +0.0.0.0 unblocksit.es +0.0.0.0 undebuy.com +0.0.0.0 universal-downloader.softonic.fr +0.0.0.0 unlimiclick.com +0.0.0.0 unrealcommander.biz +0.0.0.0 unrealcommander.com +0.0.0.0 unrealcommander.org +0.0.0.0 uoaofgqu.angelcities.com +0.0.0.0 uojamcse.angelcities.com +0.0.0.0 update-java.kit.net +0.0.0.0 update-skype.freehostia.com +0.0.0.0 update.privdog.com +0.0.0.0 updo.nl +0.0.0.0 upload.luckyorange.net +0.0.0.0 upproar.com +0.0.0.0 uprour.com +0.0.0.0 uptodatecontent.net +0.0.0.0 urchman11.zapto.org +0.0.0.0 us.mediaplayercodecpack.com +0.0.0.0 users.effectivebrand.com +0.0.0.0 utm.myway.com +0.0.0.0 utm.popularscreensavers.com +0.0.0.0 utm.trk.myway.com +0.0.0.0 utm.trk.popularscreensavers.com +0.0.0.0 uvirt3.active24.cz +0.0.0.0 v.extreme-dm.com +0.0.0.0 v.inigsplan.ru +0.0.0.0 v.zeroredirect.com +0.0.0.0 v0.extreme-dm.com +0.0.0.0 v1.extreme-dm.com +0.0.0.0 v2.urlads.net +0.0.0.0 vacationcellular.net +0.0.0.0 vaime.net.popunder.ru +0.0.0.0 valuehost.co.uk +0.0.0.0 vanguardair.com +0.0.0.0 vasanthkumar.com +0.0.0.0 vclicks.net +0.0.0.0 vdhu.com +0.0.0.0 verifiedbyverisigned.com +0.0.0.0 very-koi.com +0.0.0.0 vf7.soundsecureredir.com +0.0.0.0 video-pomp.com +0.0.0.0 videosongplayer.com +0.0.0.0 view.s4.exacttarget.com +0.0.0.0 view.s6.exacttarget.com +0.0.0.0 view.s7.exacttarget.com +0.0.0.0 view.s8.exacttarget.com +0.0.0.0 villalecchi.com +0.0.0.0 vip.clickzzs.nl +0.0.0.0 vip2.clickzzs.nl +0.0.0.0 vipcpms.com +0.0.0.0 viper.popunder.ru +0.0.0.0 vistas.popunder.ru +0.0.0.0 vk2ca.com +0.0.0.0 vmay.com +0.0.0.0 vokr-gtavc.ic.cz +0.0.0.0 vpnaffiliates.com +0.0.0.0 vq918450.com +0.0.0.0 vroll.net +0.0.0.0 vyrus.redirectme.net +0.0.0.0 w-02.th.seeweb.it +0.0.0.0 w.ahalogy.com +0.0.0.0 w.extreme-dm.com +0.0.0.0 w.zeroredirect.com +0.0.0.0 w0.extreme-dm.com +0.0.0.0 w1.extreme-dm.com +0.0.0.0 w832297.open.ge.tt +0.0.0.0 wallpapers91.com +0.0.0.0 wannawatch.com +0.0.0.0 warco.pl +0.0.0.0 warez.softonic.fr +0.0.0.0 warez4.org +0.0.0.0 warezaccess.com +0.0.0.0 warezkeeper.com +0.0.0.0 warioland.com +0.0.0.0 watch24.com +0.0.0.0 wateristian.com +0.0.0.0 wdmwebs.us +0.0.0.0 weatherbugbrowserbar.mywebsearch.com +0.0.0.0 weathet.com +0.0.0.0 web-feed.net +0.0.0.0 web.info.com +0.0.0.0 webgems.popunder.ru +0.0.0.0 webmonitor.fyxm.net +0.0.0.0 websitehome.co.uk +0.0.0.0 wera.popunder.ru +0.0.0.0 westerntaneyfire.com +0.0.0.0 whengirlsgowild.com +0.0.0.0 widestep.com +0.0.0.0 win-spy.com +0.0.0.0 winadiscount.com +0.0.0.0 winaproduct.com +0.0.0.0 wincleaner.com +0.0.0.0 wincleaneras.com +0.0.0.0 wincleanit.info +0.0.0.0 windowsytech.com +0.0.0.0 winlock.usa.cc +0.0.0.0 winscholarship.com +0.0.0.0 wkmg.co.kr +0.0.0.0 wmediaplayernow.com +0.0.0.0 wmmax.com +0.0.0.0 wmserver.net +0.0.0.0 wnt-40.seeweb.it +0.0.0.0 wordseach.com +0.0.0.0 wow.games.info.com +0.0.0.0 wp-stat.s3.amazonasw.com +0.0.0.0 wpxn.com +0.0.0.0 writingassociates.com +0.0.0.0 ws.00zasdf.pw +0.0.0.0 ws.abbp1.website +0.0.0.0 ws.poolnoodle.tech +0.0.0.0 ww1.tongji123.com +0.0.0.0 ww2.tongji123.com +0.0.0.0 ww3.tongji123.com +0.0.0.0 ww4.tongji123.com +0.0.0.0 wwaol.com +0.0.0.0 wwfsable.com +0.0.0.0 www-google.nl +0.0.0.0 www.1001movies.com +0.0.0.0 www.101malls.com +0.0.0.0 www.105vibe.com +0.0.0.0 www.11hour.com +0.0.0.0 www.11zz.com +0.0.0.0 www.123go.com +0.0.0.0 www.2.livejasmin.com +0.0.0.0 www.2607.cn +0.0.0.0 www.302br.net +0.0.0.0 www.39dvd-999.com +0.0.0.0 www.7metasearch.com +0.0.0.0 www.7search.com +0.0.0.0 www.999ways.blogspot.co.uk +0.0.0.0 www.9malls.co.uk +0.0.0.0 www.abacusfinance.co.uk +0.0.0.0 www.absolutely-clean-up-pc-errors.com +0.0.0.0 www.accidentadvicehelpline.co.uk +0.0.0.0 www.acezsoftware.com +0.0.0.0 www.ackjeeves.com +0.0.0.0 www.ad-souk.com +0.0.0.0 www.adamsfilms.com +0.0.0.0 www.adamsmarkhotels.com +0.0.0.0 www.adblockanalytics.com +0.0.0.0 www.adcell.de +0.0.0.0 www.adchimp.com +0.0.0.0 www.adclickservice.com +0.0.0.0 www.adclickthru.net +0.0.0.0 www.additcinggames.com +0.0.0.0 www.adforati.com +0.0.0.0 www.adgtracker.com +0.0.0.0 www.adlock.in +0.0.0.0 www.adnetworkperformance.com +0.0.0.0 www.adobe-flashplayer.com +0.0.0.0 www.adotube.com +0.0.0.0 www.adprotect.net +0.0.0.0 www.adtegrity.com +0.0.0.0 www.adtiger.de +0.0.0.0 www.advancedcleaner.com +0.0.0.0 www.advancedsoftwaresupport.com +0.0.0.0 www.aeronautica.gob.pa +0.0.0.0 www.aerreravasi.com +0.0.0.0 www.affiliatefuture.co.uk +0.0.0.0 www.affin-on.com +0.0.0.0 www.afftrack.com +0.0.0.0 www.aimes.com +0.0.0.0 www.aintdoinshit.com +0.0.0.0 www.akirkpatrick.com +0.0.0.0 www.alaksaair.com +0.0.0.0 www.alaskaaair.com +0.0.0.0 www.albiondrugs.com +0.0.0.0 www.alexanderinteriorsanddesign.com +0.0.0.0 www.alibabaslots.com +0.0.0.0 www.all-internet-security.com +0.0.0.0 www.allfet.info +0.0.0.0 www.altafista.com +0.0.0.0 www.amazing-offers.co.il +0.0.0.0 www.american-prize-center.com +0.0.0.0 www.analyticdns.org +0.0.0.0 www.andr.net +0.0.0.0 www.angelinajoliepics.com +0.0.0.0 www.angelsinuniform.com +0.0.0.0 www.anglewinks.com +0.0.0.0 www.angolotesti.it +0.0.0.0 www.animal-drawings.com +0.0.0.0 www.animal36.com +0.0.0.0 www.animalrank.com +0.0.0.0 www.animaltoplist.com +0.0.0.0 www.anmira.info +0.0.0.0 www.ant.com +0.0.0.0 www.antalya.ru +0.0.0.0 www.anticarredodolomiti.com +0.0.0.0 www.anticlown.com +0.0.0.0 www.anycracks.com +0.0.0.0 www.apple-updates.com +0.0.0.0 www.appsgame.club +0.0.0.0 www.aproxtrack2.com +0.0.0.0 www.arcadefree.com +0.0.0.0 www.archigate.it +0.0.0.0 www.areasnap.com +0.0.0.0 www.arecio.work +0.0.0.0 www.arkinsoftware.in +0.0.0.0 www.artcomix.com +0.0.0.0 www.ascentive.com +0.0.0.0 www.assculturaleincontri.it +0.0.0.0 www.atinna.com +0.0.0.0 www.atmovs.com +0.0.0.0 www.atofilms.com +0.0.0.0 www.atousoft.com +0.0.0.0 www.auctiondirectory.org +0.0.0.0 www.audia6.com +0.0.0.0 www.auto-overview.com +0.0.0.0 www.automoneygenerator.com +0.0.0.0 www.autonations.com +0.0.0.0 www.av-clean.com +0.0.0.0 www.avis.cm +0.0.0.0 www.avrakougioumtzi.gr +0.0.0.0 www.avskype.com +0.0.0.0 www.ayehcleaners.com +0.0.0.0 www.balook.com +0.0.0.0 www.bananarepubic.com +0.0.0.0 www.bannanarepublic.com +0.0.0.0 www.bannerpromotion.it +0.0.0.0 www.barclaysghana.org +0.0.0.0 www.bcservice.it +0.0.0.0 www.bde3d.com +0.0.0.0 www.bdsmcompany.com +0.0.0.0 www.bdsmtours.com +0.0.0.0 www.be-funk.com +0.0.0.0 www.beespace.com.ua +0.0.0.0 www.belshar.com +0.0.0.0 www.besstbuy.com +0.0.0.0 www.bestappinstalls.com +0.0.0.0 www.bestcomputeradvisor.com +0.0.0.0 www.bestsearch.com +0.0.0.0 www.bestserials.com +0.0.0.0 www.bestwm.info +0.0.0.0 www.beyondwhois.com +0.0.0.0 www.bighop.com +0.0.0.0 www.bigmart.com.np +0.0.0.0 www.bigpenisguide.com +0.0.0.0 www.bigstoreoffers.co.uk +0.0.0.0 www.bilbob.com +0.0.0.0 www.bilder-upload.eu +0.0.0.0 www.binadroid.com +0.0.0.0 www.bizneed.com +0.0.0.0 www.bj04.com +0.0.0.0 www.blog-hits.com +0.0.0.0 www.blogrankers.com +0.0.0.0 www.bluemountain1.com +0.0.0.0 www.bluemountain2.com +0.0.0.0 www.bluemounten.com +0.0.0.0 www.boattraider.com +0.0.0.0 www.bonzbuddy.com +0.0.0.0 www.bonzibuddi.com +0.0.0.0 www.bonzybuddy.com +0.0.0.0 www.boostsoftware.com +0.0.0.0 www.bormis.com +0.0.0.0 www.bracalemusic.com +0.0.0.0 www.bracbetul.com +0.0.0.0 www.brainfox.com +0.0.0.0 www.brans.pl +0.0.0.0 www.bravetools.net +0.0.0.0 www.brevardmusic.com +0.0.0.0 www.bride1.com +0.0.0.0 www.browseraccelerator.com +0.0.0.0 www.buffalogoesout.com +0.0.0.0 www.bugsurf.com +0.0.0.0 www.bulgariabg.com +0.0.0.0 www.butterfly-media.co.uk +0.0.0.0 www.buyingedge.com +0.0.0.0 www.buyskype.ru +0.0.0.0 www.bypasser.net +0.0.0.0 www.cabeles.com +0.0.0.0 www.cadastrodacopa.net +0.0.0.0 www.cadillacescalade.com +0.0.0.0 www.californiastateparks.com +0.0.0.0 www.calllwave.com +0.0.0.0 www.calworthingtonford.com +0.0.0.0 www.candidography.com +0.0.0.0 www.catgallery.com +0.0.0.0 www.catz4.com +0.0.0.0 www.caue971.org +0.0.0.0 www.cazzigrossi.org +0.0.0.0 www.cbtopsites.com +0.0.0.0 www.ccbilleu.com +0.0.0.0 www.ccleaner.com.es +0.0.0.0 www.ccp14.ac.uk +0.0.0.0 www.cdiabetes.com +0.0.0.0 www.cecash.com +0.0.0.0 www.cellularbeton.it +0.0.0.0 www.centerfind.com +0.0.0.0 www.centertrk.com +0.0.0.0 www.centralwestwater.com.au +0.0.0.0 www.certified-toolbar.com +0.0.0.0 www.ceskarepublika.net +0.0.0.0 www.cgi-view-item-co-uk.xf.cz +0.0.0.0 www.chaseonline.com +0.0.0.0 www.cheapstickets.com +0.0.0.0 www.cheaptickests.com +0.0.0.0 www.cheapticketes.com +0.0.0.0 www.cheapticketsinc.com +0.0.0.0 www.cheapticketts.com +0.0.0.0 www.cheapticktes.com +0.0.0.0 www.checktraf.com +0.0.0.0 www.chiaperottipaolo.it +0.0.0.0 www.chilecapacita.cl +0.0.0.0 www.chilyregistrycleaner.com +0.0.0.0 www.chlcotrk.com +0.0.0.0 www.chokertraffic.com +0.0.0.0 www.chsplantsales.co.uk +0.0.0.0 www.chuckfaganco.com +0.0.0.0 www.claitors.com +0.0.0.0 www.classicallyabsurdphotography.com +0.0.0.0 www.cle.kr +0.0.0.0 www.clean-cracks.com +0.0.0.0 www.clean-search.com +0.0.0.0 www.clean-space.com +0.0.0.0 www.clean-start.net +0.0.0.0 www.cleanallspyware.com +0.0.0.0 www.cleanallvirus.com +0.0.0.0 www.cleanersoft.com +0.0.0.0 www.cleanmypc.com +0.0.0.0 www.cleanpcnow.com +0.0.0.0 www.cleanproxy.com +0.0.0.0 www.cleansearch.net +0.0.0.0 www.cleansite.us +0.0.0.0 www.cleansofts.com +0.0.0.0 www.cleanuninstall.com +0.0.0.0 www.cleanup-your-computer.com +0.0.0.0 www.clearshieldredirect.com +0.0.0.0 www.clickadu.com +0.0.0.0 www.clickbank.net +0.0.0.0 www.clickbanksites.info +0.0.0.0 www.clickcash.com +0.0.0.0 www.clicksagent.com +0.0.0.0 www.clickthruserver.com +0.0.0.0 www.cliop.com +0.0.0.0 www.clkfeed.com +0.0.0.0 www.clkoffers.com +0.0.0.0 www.clksite.com +0.0.0.0 www.cloudtracked.com +0.0.0.0 www.clxcaf.com +0.0.0.0 www.cnbnews.com +0.0.0.0 www.cnn.cm +0.0.0.0 www.cnnnew.com +0.0.0.0 www.cogivea.com +0.0.0.0 www.coldwellbanker.net +0.0.0.0 www.collectiable.com +0.0.0.0 www.columbahouse.com +0.0.0.0 www.columbianhouse.com +0.0.0.0 www.comairairlines.com +0.0.0.0 www.comfz.com +0.0.0.0 www.completedord1332.com +0.0.0.0 www.conds.ru +0.0.0.0 www.conduit.com +0.0.0.0 www.consumeralternatives.org +0.0.0.0 www.contentcleaner.com +0.0.0.0 www.continentialairline.com +0.0.0.0 www.contniental.com +0.0.0.0 www.coolfreehost.com +0.0.0.0 www.coreclickhoo.com +0.0.0.0 www.cortesidesign.com +0.0.0.0 www.cpmservice1.com +0.0.0.0 www.crackfulldownload.com +0.0.0.0 www.crackspider.net +0.0.0.0 www.cracksplanet.com +0.0.0.0 www.crackzplanet.com +0.0.0.0 www.crazyprotocol.com +0.0.0.0 www.credibleartstherapies.org +0.0.0.0 www.cswilliamsburg.com +0.0.0.0 www.ctibank.com +0.0.0.0 www.ctrck.com +0.0.0.0 www.cudacorp.com +0.0.0.0 www.customersupporthelp.com +0.0.0.0 www.cybermecca.com +0.0.0.0 www.cyberzine.com +0.0.0.0 www.cybilling.com +0.0.0.0 www.dance-alarm.de +0.0.0.0 www.darley.co.uk +0.0.0.0 www.dateck.com +0.0.0.0 www.dcm5.com +0.0.0.0 www.dddcc.com +0.0.0.0 www.decografix.com +0.0.0.0 www.deflorationvirgins.com +0.0.0.0 www.dentairemalin.com +0.0.0.0 www.desifever.com +0.0.0.0 www.desirevandoorne.nl +0.0.0.0 www.digiaquascr.com +0.0.0.0 www.dimarsbg.com +0.0.0.0 www.dipli.unipa.it +0.0.0.0 www.directxex.com +0.0.0.0 www.dirtyje.ws +0.0.0.0 www.disable-uac.com +0.0.0.0 www.distribuidoraderetentores.com.br +0.0.0.0 www.distrilamadrid.com.ar +0.0.0.0 www.divx.it +0.0.0.0 www.djsrp.com +0.0.0.0 www.doctor-alex.com +0.0.0.0 www.dodostats.com +0.0.0.0 www.dogpial.com +0.0.0.0 www.dollarrentcar.com +0.0.0.0 www.domainfwd.com +0.0.0.0 www.domainfwding.com +0.0.0.0 www.dotnetadvisor.info +0.0.0.0 www.dotzup.com +0.0.0.0 www.dougmlee.com +0.0.0.0 www.dowdenphotography.com +0.0.0.0 www.down1oads.com +0.0.0.0 www.downloads-whatsapp.com +0.0.0.0 www.downloadupload.com +0.0.0.0 www.downloadwarez.org +0.0.0.0 www.dp-medien.eu +0.0.0.0 www.drivotracker.com +0.0.0.0 www.drunkenstepfather.com +0.0.0.0 www.dualvaccine.com +0.0.0.0 www.duplicatefilecleaner.com +0.0.0.0 www.dynamictoolbar.com +0.0.0.0 www.dzzrenjanin.rs +0.0.0.0 www.easy-dating.org +0.0.0.0 www.ebertandroeper.com +0.0.0.0 www.eclean.or.kr +0.0.0.0 www.eclkspsa.com +0.0.0.0 www.ecpmrocks.com +0.0.0.0 www.ecxcite.com +0.0.0.0 www.edirectory.co.uk +0.0.0.0 www.edmedsnow.com +0.0.0.0 www.effectivebrand.com +0.0.0.0 www.eftps.com +0.0.0.0 www.egoldenglove.com +0.0.0.0 www.eivamos.com +0.0.0.0 www.elc.tomsk.ru +0.0.0.0 www.electra-jjh.com.br +0.0.0.0 www.elisaart.it +0.0.0.0 www.emrlogistics.com +0.0.0.0 www.engelfire.com +0.0.0.0 www.enigmasoftware.com +0.0.0.0 www.enoratraffic.com +0.0.0.0 www.epmads.com +0.0.0.0 www.equallyyolked.com +0.0.0.0 www.ertya.com +0.0.0.0 www.etahub.com +0.0.0.0 www.evaairline.com +0.0.0.0 www.everydaygays.com +0.0.0.0 www.exactadvertising.com +0.0.0.0 www.exacttarget.com +0.0.0.0 www.expressaffiliatesite.com +0.0.0.0 www.expressomatogrosso.com.br +0.0.0.0 www.eyes.by +0.0.0.0 www.ezthemes.com +0.0.0.0 www.f8350e7c1.se +0.0.0.0 www.fabrics-store.com +0.0.0.0 www.facebook.cm +0.0.0.0 www.facebook.realtorarcf.com +0.0.0.0 www.facebookasciiart.com +0.0.0.0 www.facebookcrawl.co.cc +0.0.0.0 www.facebookloginsignin.com +0.0.0.0 www.facebookunblocking.com +0.0.0.0 www.fastdownload10.com +0.0.0.0 www.fastnclick.com +0.0.0.0 www.fastsearchproduct.com +0.0.0.0 www.favicon.com +0.0.0.0 www.federatedstores.com +0.0.0.0 www.federicksofhollywood.com +0.0.0.0 www.feiyang163.com +0.0.0.0 www.fiduciariobajio.com.mx +0.0.0.0 www.filefortune.com +0.0.0.0 www.findit-quick.com +0.0.0.0 www.firstconsumers.com +0.0.0.0 www.fixcleaner.com +0.0.0.0 www.fixio-pc-cleaner.com +0.0.0.0 www.flashcasino.com +0.0.0.0 www.flashdem.fr +0.0.0.0 www.flashplayer_macro.kit.net +0.0.0.0 www.flowtec.com.br +0.0.0.0 www.fmcurling.org +0.0.0.0 www.foreclousure.com +0.0.0.0 www.foreclousures.com +0.0.0.0 www.forex-instruments.info +0.0.0.0 www.formacionprofesional.webuda.com +0.0.0.0 www.formessengers.com +0.0.0.0 www.forum.ithealth.ru +0.0.0.0 www.fotoidea.com +0.0.0.0 www.fpcclicks.com +0.0.0.0 www.fpcpopunder.com +0.0.0.0 www.free-choices.com +0.0.0.0 www.freebiesms.co.uk +0.0.0.0 www.freebitmoney.com +0.0.0.0 www.freedownloadzone.com +0.0.0.0 www.freegamessource.com +0.0.0.0 www.freemao.com +0.0.0.0 www.freenew.net +0.0.0.0 www.freeserials.ws +0.0.0.0 www.freevideo.biz.nf +0.0.0.0 www.freewebtown.com +0.0.0.0 www.friendlyduck.com +0.0.0.0 www.frosinonewesternshow.it +0.0.0.0 www.frtya.com +0.0.0.0 www.frtyb.com +0.0.0.0 www.full-edition.info +0.0.0.0 www.funtopliste.de +0.0.0.0 www.funwebproducts.com +0.0.0.0 www.fxlayer.net +0.0.0.0 www.fxstra.com +0.0.0.0 www.fyxm.net +0.0.0.0 www.gaja79.com +0.0.0.0 www.galileounaluna.com +0.0.0.0 www.gameangel.com +0.0.0.0 www.gameatlas.com +0.0.0.0 www.gameplaylabs.com +0.0.0.0 www.gamepor.com +0.0.0.0 www.gamerevoluton.com +0.0.0.0 www.games4u.ws +0.0.0.0 www.gamesfly.com +0.0.0.0 www.gamesharck.com +0.0.0.0 www.gamesharkcentral.com +0.0.0.0 www.garudaairlines.com +0.0.0.0 www.gayxperience.com +0.0.0.0 www.gen2server.com +0.0.0.0 www.generationgirls.com +0.0.0.0 www.genforumgenealogy.com +0.0.0.0 www.get-avast.com +0.0.0.0 www.get-quadcleaner.com +0.0.0.0 www.getiton.com +0.0.0.0 www.getmeaticket.co.uk +0.0.0.0 www.getrockerbox.com +0.0.0.0 www.getsearchlist.com +0.0.0.0 www.gilvision.com +0.0.0.0 www.gliamicidellunicef.it +0.0.0.0 www.globalcharge.com +0.0.0.0 www.gnuetella.com +0.0.0.0 www.go777site.com +0.0.0.0 www.goggl.com +0.0.0.0 www.google-docs.org +0.0.0.0 www.googlew.com +0.0.0.0 www.googlre.com +0.0.0.0 www.googlwe.com +0.0.0.0 www.goolegames.com +0.0.0.0 www.goolges.com +0.0.0.0 www.gopeds.com +0.0.0.0 www.gopogle.com +0.0.0.0 www.gowin7.com +0.0.0.0 www.grabfile.co +0.0.0.0 www.gratisweb.com +0.0.0.0 www.greatwalltour.org +0.0.0.0 www.grendizer.biz +0.0.0.0 www.guaranty.com.cn +0.0.0.0 www.gulf-industrial.com +0.0.0.0 www.gvc.vn +0.0.0.0 www.gwmtracker.com +0.0.0.0 www.gxplugin.com +0.0.0.0 www.h-adachi.org +0.0.0.0 www.h21.ru +0.0.0.0 www.hackboy.hit.bg +0.0.0.0 www.hacking-facebook.com +0.0.0.0 www.handyarchive.com +0.0.0.0 www.hanulsms.com +0.0.0.0 www.harmonyhollow.net +0.0.0.0 www.heaptickets.com +0.0.0.0 www.helpmedownload.com +0.0.0.0 www.hentaidatabase.com +0.0.0.0 www.hertzsales.com +0.0.0.0 www.hgtzz.com +0.0.0.0 www.hidebux.com +0.0.0.0 www.hidemyass.com +0.0.0.0 www.historykill.com +0.0.0.0 www.hlserve.com +0.0.0.0 www.hnskorea.co.kr +0.0.0.0 www.hoerbird.net +0.0.0.0 www.holdhelptime.com +0.0.0.0 www.holika.com +0.0.0.0 www.homedepoy.com +0.0.0.0 www.homrdepot.com +0.0.0.0 www.hopto.org +0.0.0.0 www.hornytraffic.com +0.0.0.0 www.host-it.co.uk +0.0.0.0 www.hot-bot.com +0.0.0.0 www.hot2015rewards.com +0.0.0.0 www.hotspotshield.com +0.0.0.0 www.howtocleanacomputervirus.com +0.0.0.0 www.hustlercash.hit.bg +0.0.0.0 www.i-games.biz +0.0.0.0 www.icityfind.com +0.0.0.0 www.icoocash.com +0.0.0.0 www.icracks.net +0.0.0.0 www.ieginc.com +0.0.0.0 www.ifastnet.com +0.0.0.0 www.igame4free.com +0.0.0.0 www.ilovecheating.com +0.0.0.0 www.imagesmovies.com +0.0.0.0 www.info.com +0.0.0.0 www.infra.by +0.0.0.0 www.inlinea.co.uk +0.0.0.0 www.innatek.com +0.0.0.0 www.insidecentralfl.com +0.0.0.0 www.installm.net +0.0.0.0 www.instorm.com +0.0.0.0 www.intera-x.com +0.0.0.0 www.interia-ek.ru +0.0.0.0 www.internethistorycleaner.ws +0.0.0.0 www.isettatech.com +0.0.0.0 www.islamipedia.org +0.0.0.0 www.isuzi.com +0.0.0.0 www.itunesdownloadstore.com +0.0.0.0 www.iybasketball.info +0.0.0.0 www.japanesevehicles.us +0.0.0.0 www.japanmadchen.com +0.0.0.0 www.japtron.es +0.0.0.0 www.javascriptobfuscator.com +0.0.0.0 www.jcwhiney.com +0.0.0.0 www.jcwhintey.com +0.0.0.0 www.jcwhitey.com +0.0.0.0 www.jdfabrication.com +0.0.0.0 www.jejuskypension.com +0.0.0.0 www.jigshhappy.com +0.0.0.0 www.jmp2click.com +0.0.0.0 www.joecartonn.com +0.0.0.0 www.joetoons.com +0.0.0.0 www.joincreditexpert.co.uk +0.0.0.0 www.joinourwebsite.com +0.0.0.0 www.josip-stadler.org +0.0.0.0 www.jque.net +0.0.0.0 www.jsing.net +0.0.0.0 www.jsonip.com +0.0.0.0 www.juedische-kammerphilharmonie.de +0.0.0.0 www.k5zoom.com +0.0.0.0 www.kalantzis.net +0.0.0.0 www.kaspersky-shop.ch +0.0.0.0 www.katia-paliotti.com +0.0.0.0 www.kazaa.com +0.0.0.0 www.kcta.or.kr +0.0.0.0 www.keygen.us +0.0.0.0 www.kickassratios.com +0.0.0.0 www.kidsangel.com +0.0.0.0 www.kipasdenim.com +0.0.0.0 www.kjbbc.net +0.0.0.0 www.klikbonus.com +0.0.0.0 www.komodia.com +0.0.0.0 www.kowasaki.com +0.0.0.0 www.kwbtgame.com +0.0.0.0 www.kwistal.nl +0.0.0.0 www.laexotic.com +0.0.0.0 www.lanonna.co.uk +0.0.0.0 www.lapiden.com +0.0.0.0 www.lateecapes.com +0.0.0.0 www.lcbcad.co.uk +0.0.0.0 www.leadingedgecash.com +0.0.0.0 www.lefos.net +0.0.0.0 www.legendofdragoon.com +0.0.0.0 www.lennoxcollections.com +0.0.0.0 www.letssearch.com +0.0.0.0 www.libecki.net +0.0.0.0 www.liders.biz +0.0.0.0 www.lifeeverest.com +0.0.0.0 www.linconpark.com +0.0.0.0 www.linkbucks.com +0.0.0.0 www.linktarget.com +0.0.0.0 www.liqwid.net +0.0.0.0 www.litec-fr.com +0.0.0.0 www.littlesturgisrally.com +0.0.0.0 www.livejasmin.com +0.0.0.0 www.livewell.net +0.0.0.0 www.localh0st.info +0.0.0.0 www.lonelywifehookup.com +0.0.0.0 www.longtraffic.com +0.0.0.0 www.lostartofbeingadame.com +0.0.0.0 www.lottoga.com +0.0.0.0 www.lprshcsmijfovp.com +0.0.0.0 www.luchtenbergdecor.com.br +0.0.0.0 www.lufhansa.com +0.0.0.0 www.lufthansaairlines.com +0.0.0.0 www.lufthanza.com +0.0.0.0 www.lycosgamesville.com +0.0.0.0 www.lzjl.com +0.0.0.0 www.m-99.co.uk +0.0.0.0 www.m-barati.de +0.0.0.0 www.m1crosoft.com +0.0.0.0 www.maatch.com +0.0.0.0 www.maconbraves.com +0.0.0.0 www.magellen.com +0.0.0.0 www.mahindrainsurance.com +0.0.0.0 www.mainteck-fr.com +0.0.0.0 www.malest.com +0.0.0.0 www.malkm.com +0.0.0.0 www.mamameidia.com +0.0.0.0 www.mamamidia.com +0.0.0.0 www.mansmith.net +0.0.0.0 www.mapqueat.com +0.0.0.0 www.mapquestt.com +0.0.0.0 www.mapquuest.com +0.0.0.0 www.marcopolo.uk.net +0.0.0.0 www.marinoderosas.com +0.0.0.0 www.markbruinink.nl +0.0.0.0 www.martgage.com +0.0.0.0 www.masterofalltradetax.online +0.0.0.0 www.mathenea.com +0.0.0.0 www.maxbounty.com +0.0.0.0 www.maxregistrycleaner.com +0.0.0.0 www.maxregistrycleaner.net +0.0.0.0 www.maybankard.com.my +0.0.0.0 www.mcleanvahomes.com +0.0.0.0 www.media-playerz.com +0.0.0.0 www.mediaplayercodecpack.com +0.0.0.0 www.meetyourmessenger.co.uk +0.0.0.0 www.meiluziai.info +0.0.0.0 www.merrymilkfoods.com +0.0.0.0 www.messagetag.com +0.0.0.0 www.mgjmp.com +0.0.0.0 www.mil-colores.com +0.0.0.0 www.milardi.it +0.0.0.0 www.milfsites.net +0.0.0.0 www.ming-dun.com.tw +0.0.0.0 www.minigameplanet.com +0.0.0.0 www.mirrors.site50.net +0.0.0.0 www.mlinktracker.com +0.0.0.0 www.mlpoint.pt +0.0.0.0 www.mm26.com +0.0.0.0 www.mmapquest.com +0.0.0.0 www.mmtracking.com +0.0.0.0 www.mobatory.com +0.0.0.0 www.monarchslo.com +0.0.0.0 www.monofeel.com +0.0.0.0 www.montacarichi.it +0.0.0.0 www.mormonchurchgenealogy.com +0.0.0.0 www.moucitons.com +0.0.0.0 www.moviedownloader.net +0.0.0.0 www.moviesfone.com +0.0.0.0 www.mp3downloadhq.com +0.0.0.0 www.mp3helpdesk.com +0.0.0.0 www.mp3playerprovider.com +0.0.0.0 www.mpmotrk.com +0.0.0.0 www.mprptrk.com +0.0.0.0 www.mpxxtrk.com +0.0.0.0 www.ms-mvp.org +0.0.0.0 www.msnsports.com +0.0.0.0 www.mtmsms.com +0.0.0.0 www.mueller-holz-bau.com +0.0.0.0 www.mycleanerpc.com +0.0.0.0 www.mycleanpc.com +0.0.0.0 www.mycleanpc.tk +0.0.0.0 www.mydati.com +0.0.0.0 www.myoffers.co.uk +0.0.0.0 www.mysearch-engine.com +0.0.0.0 www.mysearch.com +0.0.0.0 www.myshopmarketim.com +0.0.0.0 www.myshovel.com +0.0.0.0 www.mytotalsearch.com +0.0.0.0 www.mywebsearch.com +0.0.0.0 www.n149adserv.com +0.0.0.0 www.naturesunshine.com +0.0.0.0 www.nbrtrack.com +0.0.0.0 www.neki.org +0.0.0.0 www.nestscape.com +0.0.0.0 www.netcscape.com +0.0.0.0 www.netscae.com +0.0.0.0 www.neumashop.cl +0.0.0.0 www.newclick.com +0.0.0.0 www.newcracks.net +0.0.0.0 www.neweed.org +0.0.0.0 www.neyscape.com +0.0.0.0 www.nikolamireasa.com +0.0.0.0 www.nkgamers.com +0.0.0.0 www.nmapquest.com +0.0.0.0 www.notrecommended.co.uk +0.0.0.0 www.nryb.com +0.0.0.0 www.nsrecord.org +0.0.0.0 www.ntkrnlpa.info +0.0.0.0 www.nwhomecare.co.uk +0.0.0.0 www.obyz.de +0.0.0.0 www.ocpersian.com +0.0.0.0 www.ohiomm.com +0.0.0.0 www.ojolink.fr +0.0.0.0 www.omnicleaningservices.com +0.0.0.0 www.onadstracker.com +0.0.0.0 www.onclickpredictiv.com +0.0.0.0 www.oneund.ru +0.0.0.0 www.online.sh.cn +0.0.0.0 www.onlineadmin.net +0.0.0.0 www.onlinedownloads.org +0.0.0.0 www.onwardclick.com +0.0.0.0 www.onwey.com +0.0.0.0 www.opendownloadmanager.com +0.0.0.0 www.opensoftwareupdate.com +0.0.0.0 www.opensoftwareupdater.com +0.0.0.0 www.optiker-michelmann.de +0.0.0.0 www.optimization-methods.com +0.0.0.0 www.orbiyz.com +0.0.0.0 www.oreware.com +0.0.0.0 www.oriceline.com +0.0.0.0 www.otherossettlement.com +0.0.0.0 www.out-lok.hpage.com +0.0.0.0 www.pager.site50.net +0.0.0.0 www.paime.com +0.0.0.0 www.pamoran.net +0.0.0.0 www.paraskov.com +0.0.0.0 www.pastie.org +0.0.0.0 www.patrickhickey.eu +0.0.0.0 www.pay-per-search.com +0.0.0.0 www.payn.me +0.0.0.0 www.paypal-exchange.com +0.0.0.0 www.paypalcz.cz +0.0.0.0 www.payperclickadvertising.org.uk +0.0.0.0 www.payusatax.com +0.0.0.0 www.pc-detox.com +0.0.0.0 www.pc-wallpapers.co.uk +0.0.0.0 www.pccleaner.com +0.0.0.0 www.pccleanerpro.com +0.0.0.0 www.pcmatic.com +0.0.0.0 www.pcmightymax.net +0.0.0.0 www.pcpitstop.com +0.0.0.0 www.pcregistrycleaner.com +0.0.0.0 www.pcsecurityshield.com +0.0.0.0 www.pdf-platinum.info +0.0.0.0 www.peiceline.com +0.0.0.0 www.penix.nl +0.0.0.0 www.penwithian.co.uk +0.0.0.0 www.perfectionautorepairs.com +0.0.0.0 www.petrafashion.com +0.0.0.0 www.petrenko.biz +0.0.0.0 www.petsmovies.com +0.0.0.0 www.pfaltzgraf.com +0.0.0.0 www.pgalvaoteles.pt +0.0.0.0 www.php4you.biz +0.0.0.0 www.pillsmoney.com +0.0.0.0 www.plarium.com +0.0.0.0 www.playerassist.com +0.0.0.0 www.playersaid.com +0.0.0.0 www.playfromcolumbiahouse.com +0.0.0.0 www.playgril.com +0.0.0.0 www.playsataion.com +0.0.0.0 www.playsations.com +0.0.0.0 www.playstatation.com +0.0.0.0 www.plumsoftware.co.uk +0.0.0.0 www.poesiadelsud.it +0.0.0.0 www.pokemonporno.com +0.0.0.0 www.poker.cm +0.0.0.0 www.poppers-rush.ru +0.0.0.0 www.popunder.ru +0.0.0.0 www.port.bg +0.0.0.0 www.praceline.com +0.0.0.0 www.predictivesearch.com +0.0.0.0 www.premiumpedia.com +0.0.0.0 www.priiceline.com +0.0.0.0 www.primosearch.com +0.0.0.0 www.privdog.com +0.0.0.0 www.pro.clanweb.cz +0.0.0.0 www.progettocrea.org +0.0.0.0 www.prorodeosportmed.com +0.0.0.0 www.prriceline.com +0.0.0.0 www.pumpkin.co.uk +0.0.0.0 www.puroclean.com +0.0.0.0 www.pussygreen.com +0.0.0.0 www.px24.com +0.0.0.0 www.qssa.co.uk +0.0.0.0 www.quad-cleaner.com +0.0.0.0 www.qualityindustrialcoatings.com +0.0.0.0 www.quickcreditscore.co.uk +0.0.0.0 www.quinnwealth.com +0.0.0.0 www.qzip.cjb.net +0.0.0.0 www.r2prod.com +0.0.0.0 www.racingandclassic.com +0.0.0.0 www.ratemodels.net +0.0.0.0 www.raveontrack.com +0.0.0.0 www.rd-direct.com +0.0.0.0 www.redhotchilli.co.uk +0.0.0.0 www.redirectingat.com +0.0.0.0 www.redirectme.net +0.0.0.0 www.reducelnk.com +0.0.0.0 www.reg-cleaners.com +0.0.0.0 www.regdefense.com +0.0.0.0 www.registry-clean-up.net +0.0.0.0 www.registry-cleaner.net +0.0.0.0 www.registry-cleaners-compared.com +0.0.0.0 www.registry-cleaners-reviews.net +0.0.0.0 www.registry-error-cleaner.com +0.0.0.0 www.registrycleaner-reviews.net +0.0.0.0 www.registrycleanerforvista.com +0.0.0.0 www.registrycleanerpro.net +0.0.0.0 www.registrycleanersreviewed.com +0.0.0.0 www.registrycleanertechnology.com +0.0.0.0 www.registrycleanertop.com +0.0.0.0 www.registrydefender.com +0.0.0.0 www.registryfix.com +0.0.0.0 www.registrysweeper.com +0.0.0.0 www.removearrest.com +0.0.0.0 www.rentfromart.com +0.0.0.0 www.researchnow.co.uk +0.0.0.0 www.restore-pc.com +0.0.0.0 www.rewardsnow.co.uk +0.0.0.0 www.rewardszoneusa.com +0.0.0.0 www.ribcagebags.com +0.0.0.0 www.riccardochinnici.it +0.0.0.0 www.rickparty.com +0.0.0.0 www.ringtonematcher.com +0.0.0.0 www.riskymail4free.com +0.0.0.0 www.ristoromontebasso.it +0.0.0.0 www.rivasearchpage.com +0.0.0.0 www.robtopol.in +0.0.0.0 www.rokus-tgy.hu +0.0.0.0 www.root--servers.org +0.0.0.0 www.rowanmclean.com +0.0.0.0 www.rubanners.com +0.0.0.0 www.rubiks.ca +0.0.0.0 www.ruclicks.com +0.0.0.0 www.sacredphoenix.com +0.0.0.0 www.sade-ecrivain.com +0.0.0.0 www.safedownloadnow.work +0.0.0.0 www.safelinking.net +0.0.0.0 www.safemobilelink.com +0.0.0.0 www.safepccleaner.com +0.0.0.0 www.samaclub.com +0.0.0.0 www.sasdiskcleaner.com +0.0.0.0 www.sasson-cpa.co.il +0.0.0.0 www.sayherbal.com +0.0.0.0 www.sbo.it +0.0.0.0 www.scanspyware.net +0.0.0.0 www.search2007.info +0.0.0.0 www.searchacross.com +0.0.0.0 www.searchatomic.com +0.0.0.0 www.searchdiscovered.com +0.0.0.0 www.searchfwding.com +0.0.0.0 www.searchignited.com +0.0.0.0 www.searchinquire.com +0.0.0.0 www.searchmachine.com +0.0.0.0 www.searchmagna.com +0.0.0.0 www.searchmagnified.com +0.0.0.0 www.searchnet.com +0.0.0.0 www.searchnigeria.net +0.0.0.0 www.searchnut.com +0.0.0.0 www.searchremagnified.com +0.0.0.0 www.searchresultsguide.com +0.0.0.0 www.searchtoexplore.com +0.0.0.0 www.sebcotrk.com +0.0.0.0 www.secure-processingcenter.com +0.0.0.0 www.securedownload01.net +0.0.0.0 www.securemypc.co.uk +0.0.0.0 www.securetracking2.com +0.0.0.0 www.securetrk1.com +0.0.0.0 www.secuurity.net +0.0.0.0 www.selfsurveys.com +0.0.0.0 www.sellmeyourtraffic.com +0.0.0.0 www.sendfwd.com +0.0.0.0 www.sendori.com +0.0.0.0 www.sentrol.cl +0.0.0.0 www.seoholding.com +0.0.0.0 www.seonetwizard.com +0.0.0.0 www.serveradobe.co.cc +0.0.0.0 www.serviceyourpaypal.com +0.0.0.0 www.sevenstars7.com +0.0.0.0 www.shareaza.com +0.0.0.0 www.shore-view.com +0.0.0.0 www.sijmp.com +0.0.0.0 www.silvercash.com +0.0.0.0 www.singular-cy.com +0.0.0.0 www.sirius-expedition.com +0.0.0.0 www.sj88.com +0.0.0.0 www.skassets.com +0.0.0.0 www.skypeclass.com +0.0.0.0 www.skypefr.com +0.0.0.0 www.skyperec.com +0.0.0.0 www.slorent.com +0.0.0.0 www.slutloadlive.com +0.0.0.0 www.smancart.com +0.0.0.0 www.smartgiveaway.com +0.0.0.0 www.smartredirect.de +0.0.0.0 www.smithwick.net +0.0.0.0 www.sneakyboy.com +0.0.0.0 www.software-phile.com +0.0.0.0 www.sompuserve.com +0.0.0.0 www.sonyplaystion.com +0.0.0.0 www.sostox.com +0.0.0.0 www.spamnuker.com +0.0.0.0 www.specilized.com +0.0.0.0 www.speedcounts.com +0.0.0.0 www.speedrep.com +0.0.0.0 www.spiderbait.com +0.0.0.0 www.spotsniper.ru +0.0.0.0 www.spyarsenal.com +0.0.0.0 www.spywarebegone.com +0.0.0.0 www.spywareit.com +0.0.0.0 www.spywarenuker.com +0.0.0.0 www.spywarespy.com +0.0.0.0 www.srv2trking.com +0.0.0.0 www.ss-01.com +0.0.0.0 www.stamplive.com +0.0.0.0 www.startnow.com +0.0.0.0 www.stephens-laughlin.com +0.0.0.0 www.stimul-m.com.ua +0.0.0.0 www.stop-sign.com +0.0.0.0 www.strangeduckfilms.com +0.0.0.0 www.stressx.org +0.0.0.0 www.stripteas.com +0.0.0.0 www.sttvisa.com +0.0.0.0 www.sugarsync.com +0.0.0.0 www.sunidaytravel.co.uk +0.0.0.0 www.sunonsunday.com +0.0.0.0 www.super8service.de +0.0.0.0 www.superbrewards.com +0.0.0.0 www.supersonicads.com +0.0.0.0 www.surch.co.uk +0.0.0.0 www.surveystopweb.com +0.0.0.0 www.suscotrk.com +0.0.0.0 www.svarkon.ru +0.0.0.0 www.swanksoft.com +0.0.0.0 www.swingingcommunity.com +0.0.0.0 www.sylicomservicios.com +0.0.0.0 www.symantex.com +0.0.0.0 www.ta.com.tw +0.0.0.0 www.taffr.com +0.0.0.0 www.tagifydiageo.com +0.0.0.0 www.tamprc.com +0.0.0.0 www.tangabilder.to +0.0.0.0 www.tapair.com +0.0.0.0 www.tarakc1.net +0.0.0.0 www.target.cm +0.0.0.0 www.tavelscape.com +0.0.0.0 www.techbargins.com +0.0.0.0 www.the-best-tracker.com +0.0.0.0 www.theads.me +0.0.0.0 www.thebighits.com +0.0.0.0 www.thebigoutdoors.co.uk +0.0.0.0 www.thebugs.ws +0.0.0.0 www.themexp.org +0.0.0.0 www.themillionaireinpjs.net +0.0.0.0 www.theroamingjew.com +0.0.0.0 www.thesearchagency.net +0.0.0.0 www.thesearchster.com +0.0.0.0 www.thesurfshield.com +0.0.0.0 www.thetop.be +0.0.0.0 www.theuniquesearch.com +0.0.0.0 www.theweatherspace.com +0.0.0.0 www.thoroclean.com +0.0.0.0 www.thumser-online.de +0.0.0.0 www.tldtgs.com +0.0.0.0 www.tnctrx.com +0.0.0.0 www.toomami.com +0.0.0.0 www.toon-families.com +0.0.0.0 www.toondinsey.com +0.0.0.0 www.toonfamilies.net +0.0.0.0 www.top10registrycleaners.com +0.0.0.0 www.topqualitylink.com +0.0.0.0 www.torgi.kz +0.0.0.0 www.toroadvertisingmedia.com +0.0.0.0 www.tossm.com +0.0.0.0 www.totemcash.com +0.0.0.0 www.totszentmarton.hu +0.0.0.0 www.towerecords.com +0.0.0.0 www.trackertracker.com +0.0.0.0 www.tracki112.com +0.0.0.0 www.tracklead.net +0.0.0.0 www.trackzapper.com +0.0.0.0 www.traff1.com +0.0.0.0 www.travekocity.com +0.0.0.0 www.travelasity.com +0.0.0.0 www.travelcape.com +0.0.0.0 www.traveliocity.com +0.0.0.0 www.travelocidy.com +0.0.0.0 www.travelocite.com +0.0.0.0 www.travelocitu.com +0.0.0.0 www.travelocityca.com +0.0.0.0 www.travelocityt.com +0.0.0.0 www.travelocoity.com +0.0.0.0 www.travelogity.com +0.0.0.0 www.traveloicty.com +0.0.0.0 www.traveloocity.com +0.0.0.0 www.traveloscity.com +0.0.0.0 www.travelovity.com +0.0.0.0 www.traveolocity.com +0.0.0.0 www.travlers.com +0.0.0.0 www.treavelocity.com +0.0.0.0 www.triplequadturbo.com +0.0.0.0 www.trk4.com +0.0.0.0 www.trkingace.com +0.0.0.0 www.trqvelocity.com +0.0.0.0 www.truecolored.com +0.0.0.0 www.trusearch.net +0.0.0.0 www.trustedbestsites.com +0.0.0.0 www.trustsoft.com +0.0.0.0 www.trvelocity.com +0.0.0.0 www.trx625.com +0.0.0.0 www.tuckows.com +0.0.0.0 www.turkeyrank.com +0.0.0.0 www.twairlines.com +0.0.0.0 www.twskype.com +0.0.0.0 www.twttr.com +0.0.0.0 www.tzw.com +0.0.0.0 www.ukantivirus.co.uk +0.0.0.0 www.unblockfacebook.co.uk +0.0.0.0 www.unblocksit.es +0.0.0.0 www.undebuy.com +0.0.0.0 www.unicaitaly.it +0.0.0.0 www.unlimiclick.com +0.0.0.0 www.unrealcommander.biz +0.0.0.0 www.unrealcommander.com +0.0.0.0 www.unrealcommander.org +0.0.0.0 www.update-java.kit.net +0.0.0.0 www.updo.nl +0.0.0.0 www.upproar.com +0.0.0.0 www.uprour.com +0.0.0.0 www.uptodatecontent.net +0.0.0.0 www.vacationcellular.net +0.0.0.0 www.valuehost.co.uk +0.0.0.0 www.vanguardair.com +0.0.0.0 www.vasanthkumar.com +0.0.0.0 www.vclicks.net +0.0.0.0 www.vdhu.com +0.0.0.0 www.verifiedbyverisigned.com +0.0.0.0 www.very-koi.com +0.0.0.0 www.videosongplayer.com +0.0.0.0 www.villalecchi.com +0.0.0.0 www.vinyljazzrecords.com +0.0.0.0 www.vipcpms.com +0.0.0.0 www.vivaimontina.com +0.0.0.0 www.vk2ca.com +0.0.0.0 www.vmay.com +0.0.0.0 www.vokr-gtavc.ic.cz +0.0.0.0 www.vpnaffiliates.com +0.0.0.0 www.vq918450.com +0.0.0.0 www.vroll.net +0.0.0.0 www.wallpapers91.com +0.0.0.0 www.wannawatch.com +0.0.0.0 www.warco.pl +0.0.0.0 www.warez4.org +0.0.0.0 www.warezaccess.com +0.0.0.0 www.warezkeeper.com +0.0.0.0 www.warioland.com +0.0.0.0 www.watch24.com +0.0.0.0 www.wdmwebs.us +0.0.0.0 www.weathet.com +0.0.0.0 www.web-feed.net +0.0.0.0 www.web3000.co.uk +0.0.0.0 www.webservis.gen.tr +0.0.0.0 www.websitehome.co.uk +0.0.0.0 www.westerntaneyfire.com +0.0.0.0 www.whengirlsgowild.com +0.0.0.0 www.widestep.com +0.0.0.0 www.win-spy.com +0.0.0.0 www.winadiscount.com +0.0.0.0 www.winaproduct.com +0.0.0.0 www.wincleaner.com +0.0.0.0 www.wincleaneras.com +0.0.0.0 www.wincleanit.info +0.0.0.0 www.windowsytech.com +0.0.0.0 www.winscholarship.com +0.0.0.0 www.wkmg.co.kr +0.0.0.0 www.wmediaplayernow.com +0.0.0.0 www.wmmax.com +0.0.0.0 www.wmserver.net +0.0.0.0 www.wordseach.com +0.0.0.0 www.wpxn.com +0.0.0.0 www.writingassociates.com +0.0.0.0 www.wwaol.com +0.0.0.0 www.wwfsable.com +0.0.0.0 www.www-google.nl +0.0.0.0 www.www4search.net +0.0.0.0 www.wwwadultcheck.com +0.0.0.0 www.wwwal.com +0.0.0.0 www.wwwalaskaair.com +0.0.0.0 www.wwwaolmail.com +0.0.0.0 www.wwwbackstreetboys.com +0.0.0.0 www.wwwbigfoot.com +0.0.0.0 www.wwwbluelight.com +0.0.0.0 www.wwwbluemountian.com +0.0.0.0 www.wwwbluemoutain.com +0.0.0.0 www.wwwbowcreek.com +0.0.0.0 www.wwwbudget.com +0.0.0.0 www.wwwcallwave.com +0.0.0.0 www.wwwcareerpath.com +0.0.0.0 www.wwwcdnow.com +0.0.0.0 www.wwwcheaptickets.com +0.0.0.0 www.wwwcnnnews.com +0.0.0.0 www.wwwdiscounthotel.com +0.0.0.0 www.wwwdiynet.com +0.0.0.0 www.wwwdollar.com +0.0.0.0 www.wwwgamepro.com +0.0.0.0 www.wwwgameshark.com +0.0.0.0 www.wwwgmacmortgage.com +0.0.0.0 www.wwwgoogles.com +0.0.0.0 www.wwwmancow.com +0.0.0.0 www.wwwnwa.com +0.0.0.0 www.wwwoldnavy.com +0.0.0.0 www.wwwplaysite.com +0.0.0.0 www.wwwrealator.com +0.0.0.0 www.wwwservicemerchandise.com +0.0.0.0 www.wwwtarget.com +0.0.0.0 www.wwwtwa.com +0.0.0.0 www.wwwuproar.com +0.0.0.0 www.wwwwal-mart.com +0.0.0.0 www.x-diesel.biz +0.0.0.0 www.x-diesel.com +0.0.0.0 www.x-diesel.info +0.0.0.0 www.x-diesel.org +0.0.0.0 www.x-park.net +0.0.0.0 www.x-pronet.com +0.0.0.0 www.xchangetrak.com +0.0.0.0 www.xclicks.net +0.0.0.0 www.xed.pl +0.0.0.0 www.xicaxique.com.br +0.0.0.0 www.xpop.co +0.0.0.0 www.xsedu.zj.cn +0.0.0.0 www.xtds.info +0.0.0.0 www.xtrafic.ro +0.0.0.0 www.xvika.net +0.0.0.0 www.xvika.org +0.0.0.0 www.ymxpb.com +0.0.0.0 www.youtuhe.com +0.0.0.0 www.yrals.com +0.0.0.0 www.ytdownloader.com +0.0.0.0 www.zapto.org +0.0.0.0 www.zarrmarketing.co.uk +0.0.0.0 www.zbest.in +0.0.0.0 www.zeroredirect2.com +0.0.0.0 www.zoodrawings.com +0.0.0.0 www.zoogdiesney.com +0.0.0.0 www.zoogdinsney.com +0.0.0.0 www.zoogdisany.com +0.0.0.0 www.zoogdiseny.com +0.0.0.0 www.zoogdisiny.com +0.0.0.0 www.zoogdisny.com +0.0.0.0 www.zooggames.com +0.0.0.0 www.zoomovies.org +0.0.0.0 www.zoompegs.com +0.0.0.0 www.zoophil.com +0.0.0.0 www.zoosexart.com +0.0.0.0 www.zootoplist.com +0.0.0.0 www.zootravel.com +0.0.0.0 www.zuverink.net +0.0.0.0 www1.tec-tec-boom.com +0.0.0.0 www145.funwebproducts.com +0.0.0.0 www180.myway.com +0.0.0.0 www2.leadingedgecash.com +0.0.0.0 www25.victoriassecret.com +0.0.0.0 www3.y-83m4wjpzlx6.usa.cc +0.0.0.0 www4search.net +0.0.0.0 wwwadultcheck.com +0.0.0.0 wwwal.com +0.0.0.0 wwwalaskaair.com +0.0.0.0 wwwaolmail.com +0.0.0.0 wwwbackstreetboys.com +0.0.0.0 wwwbigfoot.com +0.0.0.0 wwwbluelight.com +0.0.0.0 wwwbluemountian.com +0.0.0.0 wwwbluemoutain.com +0.0.0.0 wwwbowcreek.com +0.0.0.0 wwwbudget.com +0.0.0.0 wwwcallwave.com +0.0.0.0 wwwcareerpath.com +0.0.0.0 wwwcdnow.com +0.0.0.0 wwwcheaptickets.com +0.0.0.0 wwwcnnnews.com +0.0.0.0 wwwdiscounthotel.com +0.0.0.0 wwwdiynet.com +0.0.0.0 wwwdollar.com +0.0.0.0 wwwgamepro.com +0.0.0.0 wwwgameshark.com +0.0.0.0 wwwgmacmortgage.com +0.0.0.0 wwwgoogles.com +0.0.0.0 wwwmancow.com +0.0.0.0 wwwnwa.com +0.0.0.0 wwwoldnavy.com +0.0.0.0 wwwplaysite.com +0.0.0.0 wwwrealator.com +0.0.0.0 wwwservicemerchandise.com +0.0.0.0 wwwtarget.com +0.0.0.0 wwwtwa.com +0.0.0.0 wwwuproar.com +0.0.0.0 wwwwal-mart.com +0.0.0.0 x-diesel.biz +0.0.0.0 x-diesel.com +0.0.0.0 x-diesel.info +0.0.0.0 x-diesel.org +0.0.0.0 x-park.net +0.0.0.0 x-pronet.com +0.0.0.0 x.bidswitch.net +0.0.0.0 x.zeroredirect.com +0.0.0.0 x2.xclicks.net +0.0.0.0 x3.extreme-dm.com +0.0.0.0 x3.xclicks.net +0.0.0.0 x4.xclicks.net +0.0.0.0 x5.xclicks.net +0.0.0.0 x6.xclicks.net +0.0.0.0 xamateurpornlic.www1.biz +0.0.0.0 xchangetrak.com +0.0.0.0 xed.pl +0.0.0.0 xicaxique.com.br +0.0.0.0 xml.adfclick1.com +0.0.0.0 xml.adsparkmedia.net +0.0.0.0 xml.adventurefeeds.com +0.0.0.0 xml.ecpvads.com +0.0.0.0 xml.onwardclick.com +0.0.0.0 xml.revenuehits.com +0.0.0.0 xpath.syncrvprodist.com +0.0.0.0 xpop.co +0.0.0.0 xpornstarsckc.ddns.name +0.0.0.0 xporontube.tripod.com +0.0.0.0 xtds.info +0.0.0.0 xtrafic.ro +0.0.0.0 xvika.net +0.0.0.0 xvika.org +0.0.0.0 xxx18.ucoz.com +0.0.0.0 xxxxxxx.hopto.org +0.0.0.0 xyxudubax.angelcities.com +0.0.0.0 y.extreme-dm.com +0.0.0.0 y.zeroredirect.com +0.0.0.0 y0.extreme-dm.com +0.0.0.0 y1.extreme-dm.com +0.0.0.0 ychan.drivershq.hop.clickbank.net +0.0.0.0 ycv.clearshieldredirect.com +0.0.0.0 yitkomfj.angelcities.com +0.0.0.0 yk.handlerhackz.tk +0.0.0.0 ylgingq.angelcities.com +0.0.0.0 ymxpb.com +0.0.0.0 youtuhe.com +0.0.0.0 ypu.edu.tw +0.0.0.0 yrals.com +0.0.0.0 ytdownloader.com +0.0.0.0 yvdeuwn.angelcities.com +0.0.0.0 z.extreme-dm.com +0.0.0.0 z.zeroredirect.com +0.0.0.0 z0.extreme-dm.com +0.0.0.0 z1.extreme-dm.com +0.0.0.0 za.zeroredirect1.com +0.0.0.0 zampolit1990.popunder.ru +0.0.0.0 zapto.org +0.0.0.0 zarrmarketing.co.uk +0.0.0.0 zb.zeroredirect1.com +0.0.0.0 zbest.in +0.0.0.0 zc.zeroredirect1.com +0.0.0.0 zd.zeroredirect1.com +0.0.0.0 zd.zeroredirect2.com +0.0.0.0 zd1.zeroredirect1.com +0.0.0.0 ze.zeroredirect1.com +0.0.0.0 ze.zeroredirect2.com +0.0.0.0 ze1.zeroredirect1.com +0.0.0.0 zeroredirect2.com +0.0.0.0 zeus.rhsystems.ru +0.0.0.0 zf.zeroredirect1.com +0.0.0.0 zf1.quebec-bin.com +0.0.0.0 zf1.zeroredirect11.com +0.0.0.0 zipitfast.com +0.0.0.0 zj.zeroredirect1.com +0.0.0.0 zj1.zeroredirect1.com +0.0.0.0 zk.zeroredirect1.com +0.0.0.0 zm1.zeroredirect5.com +0.0.0.0 zonawm.biz.popunder.ru +0.0.0.0 zoodrawings.com +0.0.0.0 zoogdiesney.com +0.0.0.0 zoogdinsney.com +0.0.0.0 zoogdisany.com +0.0.0.0 zoogdiseny.com +0.0.0.0 zoogdisiny.com +0.0.0.0 zoogdisny.com +0.0.0.0 zooggames.com +0.0.0.0 zoomovies.org +0.0.0.0 zoompegs.com +0.0.0.0 zoophil.com +0.0.0.0 zoosexart.com +0.0.0.0 zootoplist.com +0.0.0.0 zootravel.com +0.0.0.0 zr1.zeroredirect11.com +0.0.0.0 zs1.zeroredirect1.com +0.0.0.0 zsc.scmspain.com +0.0.0.0 ztb.cztv.tv +0.0.0.0 zuverink.net +0.0.0.0 zzz.clickbank.net +0.0.0.0 102.112.207.net +0.0.0.0 102.112.2o7.net +0.0.0.0 102.122.2o7.net +0.0.0.0 10xhellometro.112.2o7.net +0.0.0.0 1105governmentinformationgroup.122.2o7.net +0.0.0.0 192.168.112.2o7.net +0.0.0.0 192.168.122.2o7.net +0.0.0.0 1und1internetag.d3.sc.omtrdc.net +0.0.0.0 2o7.net +0.0.0.0 3gupload.112.2o7.net +0.0.0.0 aarp.122.2o7.net +0.0.0.0 acckalaharinet.112.2o7.net +0.0.0.0 aclu.tt.omtrdc.net +0.0.0.0 acpmagazines.112.2o7.net +0.0.0.0 adbrite.122.2o7.net +0.0.0.0 advertisementnl.112.2o7.net +0.0.0.0 advertisingcom.122.2o7.net +0.0.0.0 aehistory.112.2o7.net +0.0.0.0 aetv.112.2o7.net +0.0.0.0 affargenus.112.2o7.net +0.0.0.0 affilcrtopcolle.112.2o7.net +0.0.0.0 agamgreetingscom.112.2o7.net +0.0.0.0 agbmcom.112.2o7.net +0.0.0.0 agegreetings.112.2o7.net +0.0.0.0 agmsnag.112.2o7.net +0.0.0.0 agwebshots.112.2o7.net +0.0.0.0 agyahooag.112.2o7.net +0.0.0.0 albanytimesunion.122.2o7.net +0.0.0.0 alchemyworldwide.tt.omtrdc.net +0.0.0.0 allbritton.122.2o7.net +0.0.0.0 amazonmerchants.122.2o7.net +0.0.0.0 amazonshopbop.122.2o7.net +0.0.0.0 amdvtest.112.2o7.net +0.0.0.0 americaneagleoutfitt.tt.omtrdc.net +0.0.0.0 ameritradeamerivest.112.2o7.net +0.0.0.0 ameritradeogilvy.112.2o7.net +0.0.0.0 amexopenprod.122.2o7.net +0.0.0.0 amznshopbop.122.2o7.net +0.0.0.0 angiba.112.2o7.net +0.0.0.0 angieslist.tt.omtrdc.net +0.0.0.0 angmar.112.2o7.net +0.0.0.0 angmil.112.2o7.net +0.0.0.0 angpar.112.2o7.net +0.0.0.0 aolbks.122.2o7.net +0.0.0.0 aolcamember.122.2o7.net +0.0.0.0 aolcg.122.2o7.net +0.0.0.0 aolcmp.122.2o7.net +0.0.0.0 aolcommem.122.2o7.net +0.0.0.0 aolcommvid.122.2o7.net +0.0.0.0 aolcsmen.122.2o7.net +0.0.0.0 aoldlama.122.2o7.net +0.0.0.0 aoldrambuie.122.2o7.net +0.0.0.0 aolgam.122.2o7.net +0.0.0.0 aolgamedaily.122.2o7.net +0.0.0.0 aoljournals.122.2o7.net +0.0.0.0 aollatblog.122.2o7.net +0.0.0.0 aollove.122.2o7.net +0.0.0.0 aolmov.122.2o7.net +0.0.0.0 aolmus.122.2o7.net +0.0.0.0 aolnews.122.2o7.net +0.0.0.0 aolnssearch.122.2o7.net +0.0.0.0 aolpf.122.2o7.net +0.0.0.0 aolpolls.122.2o7.net +0.0.0.0 aolsearch.122.2o7.net +0.0.0.0 aolshred.122.2o7.net +0.0.0.0 aolsports.122.2o7.net +0.0.0.0 aolstylist.122.2o7.net +0.0.0.0 aolsvc.122.2o7.net +0.0.0.0 aolswitch.122.2o7.net +0.0.0.0 aoltmz.122.2o7.net +0.0.0.0 aoltruveo.122.2o7.net +0.0.0.0 aolturnercnnmoney.122.2o7.net +0.0.0.0 aolturnersi.122.2o7.net +0.0.0.0 aoluk.122.2o7.net +0.0.0.0 aolvideo.122.2o7.net +0.0.0.0 aolwbautoblog.122.2o7.net +0.0.0.0 aolwbcinema.122.2o7.net +0.0.0.0 aolwbdnlsq.122.2o7.net +0.0.0.0 aolwbengadget.122.2o7.net +0.0.0.0 aolwbgadling.122.2o7.net +0.0.0.0 aolwbluxist.122.2o7.net +0.0.0.0 aolwbpspfboy.122.2o7.net +0.0.0.0 aolwbtvsq.122.2o7.net +0.0.0.0 aolwbwowinsd.122.2o7.net +0.0.0.0 aolwinamp.122.2o7.net +0.0.0.0 aolwpmq.122.2o7.net +0.0.0.0 aolwpnscom.122.2o7.net +0.0.0.0 aolwpnswhatsnew.112.2o7.net +0.0.0.0 aolyedda.122.2o7.net +0.0.0.0 apdigitalorg.112.2o7.net +0.0.0.0 apdigitalorgovn.112.2o7.net +0.0.0.0 apnonline.112.2o7.net +0.0.0.0 aporg.112.2o7.net +0.0.0.0 arthurmiddletoncapit.tt.omtrdc.net +0.0.0.0 associatedcontent.112.2o7.net +0.0.0.0 atlanticmedia.122.2o7.net +0.0.0.0 atlassian.122.2o7.net +0.0.0.0 audible.112.2o7.net +0.0.0.0 aumo123usedcarscom.112.2o7.net +0.0.0.0 aumoautomobilemagcom.112.2o7.net +0.0.0.0 aumoautomotivecom.112.2o7.net +0.0.0.0 aumoautomotivectl.112.2o7.net +0.0.0.0 aumocarsbelowinvoice.112.2o7.net +0.0.0.0 aumointernetautoguidecom.112.2o7.net +0.0.0.0 aumomotortrend.112.2o7.net +0.0.0.0 aumonewcarcom.112.2o7.net +0.0.0.0 aumotradeinvaluecom.112.2o7.net +0.0.0.0 australianewzealandb.tt.omtrdc.net +0.0.0.0 autoanythingcom.112.2o7.net +0.0.0.0 autobytel.112.2o7.net +0.0.0.0 autobytelcorppopup.112.2o7.net +0.0.0.0 autoscout24.112.2o7.net +0.0.0.0 autoweb.112.2o7.net +0.0.0.0 avgtechnologies.112.2o7.net +0.0.0.0 avon.112.2o7.net +0.0.0.0 awarenesstech.122.2o7.net +0.0.0.0 babycentercom.112.2o7.net +0.0.0.0 bankrate.112.2o7.net +0.0.0.0 bankwest.112.2o7.net +0.0.0.0 bbc.112.2o7.net +0.0.0.0 bbg.d1.sc.omtrdc.net +0.0.0.0 bellglobemediapublishing.122.2o7.net +0.0.0.0 belointeractive.122.2o7.net +0.0.0.0 bertelwissenprod.122.2o7.net +0.0.0.0 bet.122.2o7.net +0.0.0.0 betterhg.112.2o7.net +0.0.0.0 bhgdiabeticliving.112.2o7.net +0.0.0.0 bhgdiy.112.2o7.net +0.0.0.0 bhgkitchenbath.112.2o7.net +0.0.0.0 bhgquilting.112.2o7.net +0.0.0.0 bhgremodel.112.2o7.net +0.0.0.0 bhgscrap.112.2o7.net +0.0.0.0 bigpond.122.2o7.net +0.0.0.0 bizjournals.112.2o7.net +0.0.0.0 blethenmaine.112.2o7.net +0.0.0.0 bmwmoter.122.2o7.net +0.0.0.0 bnk30livejs.112.2o7.net +0.0.0.0 bnkholic.112.2o7.net +0.0.0.0 bnkr8dev.112.2o7.net +0.0.0.0 bonintnewsktarcom.112.2o7.net +0.0.0.0 bonneville.112.2o7.net +0.0.0.0 bonniercorp.122.2o7.net +0.0.0.0 boostmobile.112.2o7.net +0.0.0.0 borders.112.2o7.net +0.0.0.0 bostoncommonpress.112.2o7.net +0.0.0.0 brightcove.112.2o7.net +0.0.0.0 brighthouse.122.2o7.net +0.0.0.0 bruceclay.112.2o7.net +0.0.0.0 btcom.112.2o7.net +0.0.0.0 builderonlinecom.112.2o7.net +0.0.0.0 businessweekpoc.112.2o7.net +0.0.0.0 buycom.122.2o7.net +0.0.0.0 buzzfeed.d1.sc.omtrdc.net +0.0.0.0 buzznet.112.2o7.net +0.0.0.0 byutv.d1.sc.omtrdc.net +0.0.0.0 cafemom.d2.sc.omtrdc.net +0.0.0.0 canadapost.112.2o7.net +0.0.0.0 cancalgary.112.2o7.net +0.0.0.0 cancertreatmente.tt.omtrdc.net +0.0.0.0 canfaceoff.112.2o7.net +0.0.0.0 canfinancialpost.112.2o7.net +0.0.0.0 cannationalpost.112.2o7.net +0.0.0.0 canoe.112.2o7.net +0.0.0.0 canottowa.112.2o7.net +0.0.0.0 canshowcase.112.2o7.net +0.0.0.0 cantire.122.2o7.net +0.0.0.0 canwest.112.2o7.net +0.0.0.0 canwestglobal.112.2o7.net +0.0.0.0 capcityadvcom.112.2o7.net +0.0.0.0 capecodonlinecom.112.2o7.net +0.0.0.0 capella.122.2o7.net +0.0.0.0 carbonite.tt.omtrdc.net +0.0.0.0 care2.112.2o7.net +0.0.0.0 carlsonradisson.112.2o7.net +0.0.0.0 cartoonnetwork.122.2o7.net +0.0.0.0 cba.122.2o7.net +0.0.0.0 cbc.122.2o7.net +0.0.0.0 cbcnewmedia.112.2o7.net +0.0.0.0 cbglobal.112.2o7.net +0.0.0.0 cbmsn.112.2o7.net +0.0.0.0 cbs.112.2o7.net +0.0.0.0 cbscom.112.2o7.net +0.0.0.0 cbsdigitalmedia.112.2o7.net +0.0.0.0 cbsnfl.112.2o7.net +0.0.0.0 cbspgatour.112.2o7.net +0.0.0.0 cbsspln.112.2o7.net +0.0.0.0 cbstelevisiondistribution.112.2o7.net +0.0.0.0 ccrgaviscom.112.2o7.net +0.0.0.0 cengagecsinfosec.112.2o7.net +0.0.0.0 centricabritishgas.d3.sc.omtrdc.net +0.0.0.0 chacha.112.2o7.net +0.0.0.0 chchoice.112.2o7.net +0.0.0.0 chghowardjohnson.112.2o7.net +0.0.0.0 chgsupereight.112.2o7.net +0.0.0.0 chgwyndham.112.2o7.net +0.0.0.0 chicagosuntimes.122.2o7.net +0.0.0.0 christianbroadcastne.tt.omtrdc.net +0.0.0.0 christianscience.tt.omtrdc.net +0.0.0.0 chumtv.122.2o7.net +0.0.0.0 ciaocom.122.2o7.net +0.0.0.0 ciaoshopcouk.122.2o7.net +0.0.0.0 ciaoshopit.122.2o7.net +0.0.0.0 ciscowebex.112.2o7.net +0.0.0.0 citicorpcreditservic.tt.omtrdc.net +0.0.0.0 classicvacations.112.2o7.net +0.0.0.0 classmatescom.112.2o7.net +0.0.0.0 clubmed.112.2o7.net +0.0.0.0 clubmom.122.2o7.net +0.0.0.0 cmp.112.2o7.net +0.0.0.0 cmpdotnetjunkiescom.112.2o7.net +0.0.0.0 cmpglobalvista.112.2o7.net +0.0.0.0 cmtvia.112.2o7.net +0.0.0.0 cnetasiapacific.122.2o7.net +0.0.0.0 cnetaustralia.122.2o7.net +0.0.0.0 cneteurope.122.2o7.net +0.0.0.0 cnetjapan.122.2o7.net +0.0.0.0 cnetnews.112.2o7.net +0.0.0.0 cnettech.112.2o7.net +0.0.0.0 cnetzdnet.112.2o7.net +0.0.0.0 cnheagletribune.112.2o7.net +0.0.0.0 cnhiautovertical.122.2o7.net +0.0.0.0 cnhibatesvilleheraldtribune.122.2o7.net +0.0.0.0 cnhibdtonline.122.2o7.net +0.0.0.0 cnhicrossvillechronicle.122.2o7.net +0.0.0.0 cnhidailyindependent.122.2o7.net +0.0.0.0 cnhieagletribune.122.2o7.net +0.0.0.0 cnhienid.122.2o7.net +0.0.0.0 cnhijohnstown.122.2o7.net +0.0.0.0 cnhijoplinglobe.122.2o7.net +0.0.0.0 cnhinewscourier.122.2o7.net +0.0.0.0 cnhinewsservicedev.122.2o7.net +0.0.0.0 cnhirecordeagle.122.2o7.net +0.0.0.0 cnn.122.2o7.net +0.0.0.0 cnnglobal.122.2o7.net +0.0.0.0 cnnireport.122.2o7.net +0.0.0.0 cnocanoecaprod.112.2o7.net +0.0.0.0 cnoompprod.112.2o7.net +0.0.0.0 comcast.tt.omtrdc.net +0.0.0.0 comcastresidentialservices.tt.omtrdc.net +0.0.0.0 computerworldcom.112.2o7.net +0.0.0.0 comvelgmbh.d1.sc.omtrdc.net +0.0.0.0 condeconsumermarketing.112.2o7.net +0.0.0.0 condenast.112.2o7.net +0.0.0.0 condenast.insight.omtrdc.net +0.0.0.0 conpst.112.2o7.net +0.0.0.0 constantcontact.tt.omtrdc.net +0.0.0.0 consumerinfo.tt.omtrdc.net +0.0.0.0 consumerreports.tt.omtrdc.net +0.0.0.0 cookingcom.112.2o7.net +0.0.0.0 corelcom.112.2o7.net +0.0.0.0 coreluk.112.2o7.net +0.0.0.0 corinthiancolleges.112.2o7.net +0.0.0.0 costargroup.112.2o7.net +0.0.0.0 couhome.112.2o7.net +0.0.0.0 couponchief.122.2o7.net +0.0.0.0 coxhsi.112.2o7.net +0.0.0.0 coxnet.112.2o7.net +0.0.0.0 coxnetmasterglobal.112.2o7.net +0.0.0.0 cpusall.112.2o7.net +0.0.0.0 crain.d1.sc.omtrdc.net +0.0.0.0 createthegroup.122.2o7.net +0.0.0.0 creditcardscom.112.2o7.net +0.0.0.0 cri.d1.sc.omtrdc.net +0.0.0.0 cruisecritic.112.2o7.net +0.0.0.0 csoonlinecom.112.2o7.net +0.0.0.0 ctvcrimelibrary.112.2o7.net +0.0.0.0 ctvmaincom.112.2o7.net +0.0.0.0 ctvsmokinggun.112.2o7.net +0.0.0.0 ctvtsgtv.112.2o7.net +0.0.0.0 cwportal.112.2o7.net +0.0.0.0 cxociocom.112.2o7.net +0.0.0.0 cxocomdev.112.2o7.net +0.0.0.0 cyberdefender.122.2o7.net +0.0.0.0 dailyheraldpaddockpublication.112.2o7.net +0.0.0.0 daimlerag.122.2o7.net +0.0.0.0 daimlerag.d2.sc.omtrdc.net +0.0.0.0 dardenrestaurants.112.2o7.net +0.0.0.0 dealnews.122.2o7.net +0.0.0.0 delightful.112.2o7.net +0.0.0.0 dellinc.tt.omtrdc.net +0.0.0.0 deloitte.122.2o7.net +0.0.0.0 delphicom.112.2o7.net +0.0.0.0 dennispublishing.112.2o7.net +0.0.0.0 denverpost.112.2o7.net +0.0.0.0 deseretdigitalmedia.tt.omtrdc.net +0.0.0.0 deseretnews.112.2o7.net +0.0.0.0 dexdexprod.112.2o7.net +0.0.0.0 dillards.112.2o7.net +0.0.0.0 directtv.tt.omtrdc.net +0.0.0.0 discovercard.112.2o7.net +0.0.0.0 divx.112.2o7.net +0.0.0.0 dixonscouk.112.2o7.net +0.0.0.0 dmcontactmanagement.122.2o7.net +0.0.0.0 dmvguidecom.112.2o7.net +0.0.0.0 doctorsassociatesrx.112.2o7.net +0.0.0.0 dominionenterprises.112.2o7.net +0.0.0.0 dotster.112.2o7.net +0.0.0.0 dotsterdomaincom.112.2o7.net +0.0.0.0 dotsterdotsteraug08.112.2o7.net +0.0.0.0 dreamhome.112.2o7.net +0.0.0.0 duluthtrading.tt.omtrdc.net +0.0.0.0 eaeacom.112.2o7.net +0.0.0.0 eagamesuk.112.2o7.net +0.0.0.0 eaglemiles.112.2o7.net +0.0.0.0 eapogocom.112.2o7.net +0.0.0.0 earthlink.122.2o7.net +0.0.0.0 earthlnkpsplive.122.2o7.net +0.0.0.0 edietsmain.112.2o7.net +0.0.0.0 edmunds.112.2o7.net +0.0.0.0 edsa.122.2o7.net +0.0.0.0 educationmanagementl.tt.omtrdc.net +0.0.0.0 educationmanagementllc.112.2o7.net +0.0.0.0 efashionsolutions.122.2o7.net +0.0.0.0 ehadvicedev.112.2o7.net +0.0.0.0 eharmony.112.2o7.net +0.0.0.0 eharmony.tt.omtrdc.net +0.0.0.0 electronicarts.112.2o7.net +0.0.0.0 eloqua.122.2o7.net +0.0.0.0 emc.122.2o7.net +0.0.0.0 enterprisemediagroup.112.2o7.net +0.0.0.0 entrepreneur.122.2o7.net +0.0.0.0 entrepreneurpoc.122.2o7.net +0.0.0.0 epebuild.112.2o7.net +0.0.0.0 eplans.112.2o7.net +0.0.0.0 eremedia.112.2o7.net +0.0.0.0 eset.122.2o7.net +0.0.0.0 espndotcom.tt.omtrdc.net +0.0.0.0 eurostar.122.2o7.net +0.0.0.0 eventbrite.122.2o7.net +0.0.0.0 evepdaggiesports.112.2o7.net +0.0.0.0 evepdaikencom.112.2o7.net +0.0.0.0 evepdbrazossports.112.2o7.net +0.0.0.0 evepdcharleston.112.2o7.net +0.0.0.0 evepdeagledev.112.2o7.net +0.0.0.0 ewsabilene.112.2o7.net +0.0.0.0 ewscorpuschristi.112.2o7.net +0.0.0.0 ewscripps.112.2o7.net +0.0.0.0 ewsmemphis.112.2o7.net +0.0.0.0 ewsnaples.112.2o7.net +0.0.0.0 ewsventura.112.2o7.net +0.0.0.0 examinercom.122.2o7.net +0.0.0.0 expedia1.112.2o7.net +0.0.0.0 expedia6vt.112.2o7.net +0.0.0.0 expedia8.112.2o7.net +0.0.0.0 experianservicescorp.122.2o7.net +0.0.0.0 expertsexchange.112.2o7.net +0.0.0.0 extrovert.122.2o7.net +0.0.0.0 ezgds.112.2o7.net +0.0.0.0 f2communitynews.112.2o7.net +0.0.0.0 f2nbt.112.2o7.net +0.0.0.0 f2network.112.2o7.net +0.0.0.0 f2nmycareer.112.2o7.net +0.0.0.0 f2nsmh.112.2o7.net +0.0.0.0 f2ntheage.112.2o7.net +0.0.0.0 facebookinc.122.2o7.net +0.0.0.0 factiva.122.2o7.net +0.0.0.0 fairfaxau.d1.sc.omtrdc.net +0.0.0.0 fanatics.112.2o7.net +0.0.0.0 farecastcom.122.2o7.net +0.0.0.0 fbfredericksburgcom.112.2o7.net +0.0.0.0 figlobal.112.2o7.net +0.0.0.0 fim.122.2o7.net +0.0.0.0 flyingmag.com.122.2o7.net +0.0.0.0 ford.112.2o7.net +0.0.0.0 foxamw.112.2o7.net +0.0.0.0 foxcom.112.2o7.net +0.0.0.0 foxidol.112.2o7.net +0.0.0.0 foxinteractivemedia.122.2o7.net +0.0.0.0 furniturecom.112.2o7.net +0.0.0.0 furnlevitz.112.2o7.net +0.0.0.0 fusetv.112.2o7.net +0.0.0.0 g2.112.2o7.net +0.0.0.0 gap.112.2o7.net +0.0.0.0 gatehousemedia.122.2o7.net +0.0.0.0 gateway.122.2o7.net +0.0.0.0 genetree.112.2o7.net +0.0.0.0 geosign.112.2o7.net +0.0.0.0 gifastcompanycom.112.2o7.net +0.0.0.0 giftscom.122.2o7.net +0.0.0.0 gjfastcompanycom.112.2o7.net +0.0.0.0 gjincscobleizer.112.2o7.net +0.0.0.0 gmgmacfs.112.2o7.net +0.0.0.0 gmgmacmortgage.112.2o7.net +0.0.0.0 gmgmcom.112.2o7.net +0.0.0.0 gmgoodwrench.112.2o7.net +0.0.0.0 gmgoodwrenchdmaprod.112.2o7.net +0.0.0.0 gntbcstglobal.112.2o7.net +0.0.0.0 gntbcstkare.112.2o7.net +0.0.0.0 gntbcstksdk.112.2o7.net +0.0.0.0 gntbcstkthv.112.2o7.net +0.0.0.0 gntbcstkusa.112.2o7.net +0.0.0.0 gntbcstkxtv.112.2o7.net +0.0.0.0 gntbcstwbir.112.2o7.net +0.0.0.0 gntbcstwcsh.112.2o7.net +0.0.0.0 gntbcstwfmy.112.2o7.net +0.0.0.0 gntbcstwkyc.112.2o7.net +0.0.0.0 gntbcstwlbz.112.2o7.net +0.0.0.0 gntbcstwltx.112.2o7.net +0.0.0.0 gntbcstwmaz.112.2o7.net +0.0.0.0 gntbcstwtlv.112.2o7.net +0.0.0.0 gntbcstwtsp.112.2o7.net +0.0.0.0 gntbcstwusa.112.2o7.net +0.0.0.0 gntbcstwxia.112.2o7.net +0.0.0.0 gntbcstwzzm.112.2o7.net +0.0.0.0 goodyear.122.2o7.net +0.0.0.0 gourmetgiftbaskets.112.2o7.net +0.0.0.0 gpapercareer.112.2o7.net +0.0.0.0 gpapermom104.112.2o7.net +0.0.0.0 grunerandjahr.112.2o7.net +0.0.0.0 gsicpbs.112.2o7.net +0.0.0.0 guj.122.2o7.net +0.0.0.0 guthyrenker.112.2o7.net +0.0.0.0 guthyrenker.tt.omtrdc.net +0.0.0.0 hallmarkibmcom.112.2o7.net +0.0.0.0 harconsumer.112.2o7.net +0.0.0.0 harpo.122.2o7.net +0.0.0.0 harrahscom.112.2o7.net +0.0.0.0 haymarketbusinesspublications.122.2o7.net +0.0.0.0 hchrmain.112.2o7.net +0.0.0.0 healthgrades.112.2o7.net +0.0.0.0 healthination.122.2o7.net +0.0.0.0 hearstdigital.122.2o7.net +0.0.0.0 hearstmagazines.112.2o7.net +0.0.0.0 hearstugo.112.2o7.net +0.0.0.0 heartbeats.omtrdc.net +0.0.0.0 heavycom.122.2o7.net +0.0.0.0 hertz.122.2o7.net +0.0.0.0 hickoryfarms.112.2o7.net +0.0.0.0 highbeam.122.2o7.net +0.0.0.0 himedia.112.2o7.net +0.0.0.0 hisnakiamotors.122.2o7.net +0.0.0.0 hm.d1.sc.omtrdc.net +0.0.0.0 hollywood.122.2o7.net +0.0.0.0 homepjlconline.com.112.2o7.net +0.0.0.0 homepproav.112.2o7.net +0.0.0.0 homesteadtechnologies.122.2o7.net +0.0.0.0 homestore.122.2o7.net +0.0.0.0 hotelscom.122.2o7.net +0.0.0.0 hphqglobal.112.2o7.net +0.0.0.0 hswmedia.122.2o7.net +0.0.0.0 hulu.112.2o7.net +0.0.0.0 huludev.112.2o7.net +0.0.0.0 ibibo.112.2o7.net +0.0.0.0 ice.112.2o7.net +0.0.0.0 iconhealthfitness.tt.omtrdc.net +0.0.0.0 idgenterprise.112.2o7.net +0.0.0.0 idgenterprise.d1.sc.omtrdc.net +0.0.0.0 ihc.112.2o7.net +0.0.0.0 imc2.122.2o7.net +0.0.0.0 imeem.112.2o7.net +0.0.0.0 imiliving.122.2o7.net +0.0.0.0 incisivemedia.112.2o7.net +0.0.0.0 indigio.122.2o7.net +0.0.0.0 infoworldmediagroup.112.2o7.net +0.0.0.0 infrastrategy.122.2o7.net +0.0.0.0 infratotalduicom.122.2o7.net +0.0.0.0 insiderpagescom.122.2o7.net +0.0.0.0 instadia.112.2o7.net +0.0.0.0 intelcorpchan.112.2o7.net +0.0.0.0 intelcorperror.112.2o7.net +0.0.0.0 intelcorpsupp.112.2o7.net +0.0.0.0 interchangecorporation.122.2o7.net +0.0.0.0 interland.122.2o7.net +0.0.0.0 internetretailer.d2.sc.omtrdc.net +0.0.0.0 intouchsolutions.112.2o7.net +0.0.0.0 intuitinc.122.2o7.net +0.0.0.0 ipcmarieclaireprod.122.2o7.net +0.0.0.0 ipcmedia.122.2o7.net +0.0.0.0 ipcnowprod.122.2o7.net +0.0.0.0 ipcuncut.122.2o7.net +0.0.0.0 ipcwebuserprod.122.2o7.net +0.0.0.0 ipcyachtingworldprod.122.2o7.net +0.0.0.0 itmedia.122.2o7.net +0.0.0.0 itv.112.2o7.net +0.0.0.0 iusacomlive.112.2o7.net +0.0.0.0 ivillageglobal.112.2o7.net +0.0.0.0 jackpot.112.2o7.net +0.0.0.0 jade853gmbh.tt.omtrdc.net +0.0.0.0 jcwhitney.112.2o7.net +0.0.0.0 jennycraig.112.2o7.net +0.0.0.0 jetbluecom2.112.2o7.net +0.0.0.0 jetbluepkgcs.112.2o7.net +0.0.0.0 jijsonline.112.2o7.net +0.0.0.0 jijsonline.122.2o7.net +0.0.0.0 jiktnv.122.2o7.net +0.0.0.0 jiwire.112.2o7.net +0.0.0.0 jiwtmj.122.2o7.net +0.0.0.0 jmsyap.112.2o7.net +0.0.0.0 joelosteenministries.112.2o7.net +0.0.0.0 joelosteenministries.tt.omtrdc.net +0.0.0.0 johnlewis.112.2o7.net +0.0.0.0 journalregistercompany.122.2o7.net +0.0.0.0 jrcdelcotimescom.122.2o7.net +0.0.0.0 jrcom.112.2o7.net +0.0.0.0 kaboose.112.2o7.net +0.0.0.0 kbbmain.112.2o7.net +0.0.0.0 kelleybluebook.112.2o7.net +0.0.0.0 kerplat.112.2o7.net +0.0.0.0 keybank.112.2o7.net +0.0.0.0 kiplinger.112.2o7.net +0.0.0.0 lab88inc.112.2o7.net +0.0.0.0 lakeshore.d1.sc.omtrdc.net +0.0.0.0 laptopmag.122.2o7.net +0.0.0.0 lastminengb.112.2o7.net +0.0.0.0 laxnws.112.2o7.net +0.0.0.0 laxprs.112.2o7.net +0.0.0.0 laxpsd.112.2o7.net +0.0.0.0 laxtrb.112.2o7.net +0.0.0.0 laxwht.112.2o7.net +0.0.0.0 laxwht.122.2o7.net +0.0.0.0 ldschurch.tt.omtrdc.net +0.0.0.0 leaitworldprod.112.2o7.net +0.0.0.0 leeenterprises.112.2o7.net +0.0.0.0 legalzoom.tt.omtrdc.net +0.0.0.0 leveragemarketing.112.2o7.net +0.0.0.0 lgelectronics.122.2o7.net +0.0.0.0 lintv.122.2o7.net +0.0.0.0 livedealcom.112.2o7.net +0.0.0.0 livenation.122.2o7.net +0.0.0.0 lowes.tt.omtrdc.net +0.0.0.0 mailtribunecom.112.2o7.net +0.0.0.0 mapscom2.112.2o7.net +0.0.0.0 marchofdimes.d2.sc.omtrdc.net +0.0.0.0 marinermarketing.112.2o7.net +0.0.0.0 marketlive.122.2o7.net +0.0.0.0 marketworksinc.122.2o7.net +0.0.0.0 marksandspencer.122.2o7.net +0.0.0.0 marriottinternationa.tt.omtrdc.net +0.0.0.0 mashable.d2.sc.omtrdc.net +0.0.0.0 mattressusa.122.2o7.net +0.0.0.0 maxim.122.2o7.net +0.0.0.0 mcclatchy.112.2o7.net +0.0.0.0 mdjacksonville.112.2o7.net +0.0.0.0 mdpparents.112.2o7.net +0.0.0.0 mdstaugustine.112.2o7.net +0.0.0.0 mdwathens.112.2o7.net +0.0.0.0 mdwaugusta.112.2o7.net +0.0.0.0 mdwjuneau.112.2o7.net +0.0.0.0 mdwoakridge.112.2o7.net +0.0.0.0 mdwsavannah.112.2o7.net +0.0.0.0 mdwskirt.112.2o7.net +0.0.0.0 medhelpinternational.112.2o7.net +0.0.0.0 mediabistro.112.2o7.net +0.0.0.0 mediabistrocom.112.2o7.net +0.0.0.0 medialogic.122.2o7.net +0.0.0.0 mediamatters.112.2o7.net +0.0.0.0 meetupdev.122.2o7.net +0.0.0.0 memberservicesinc.122.2o7.net +0.0.0.0 metacafe.122.2o7.net +0.0.0.0 mgdothaneagle.112.2o7.net +0.0.0.0 mghickoryrecord.112.2o7.net +0.0.0.0 mgjournalnow.112.2o7.net +0.0.0.0 mgoanow.112.2o7.net +0.0.0.0 mgstarexponent.112.2o7.net +0.0.0.0 mgtbo.112.2o7.net +0.0.0.0 mgtbopanels.112.2o7.net +0.0.0.0 mgtimesdispatch.112.2o7.net +0.0.0.0 mgtricities.112.2o7.net +0.0.0.0 mgwcbd.112.2o7.net +0.0.0.0 mgwjar.112.2o7.net +0.0.0.0 mgwnct.112.2o7.net +0.0.0.0 mgwsav.112.2o7.net +0.0.0.0 mgwsls.112.2o7.net +0.0.0.0 microsofteup.112.2o7.net +0.0.0.0 microsoftgamestudio.112.2o7.net +0.0.0.0 microsoftinternetexplorer.112.2o7.net +0.0.0.0 microsoftmachinetranslation.112.2o7.net +0.0.0.0 microsoftoffice.112.2o7.net +0.0.0.0 microsoftsto.112.2o7.net +0.0.0.0 microsoftuk.122.2o7.net +0.0.0.0 microsoftwga.112.2o7.net +0.0.0.0 microsoftwindows.112.2o7.net +0.0.0.0 microsoftwindowscom.tt.omtrdc.net +0.0.0.0 microsoftwindowsmobile.122.2o7.net +0.0.0.0 microsoftwllivemkt.112.2o7.net +0.0.0.0 microsoftwlmailmkt.112.2o7.net +0.0.0.0 microsoftwlmessengermkt.112.2o7.net +0.0.0.0 microsoftwlmobilemkt.112.2o7.net +0.0.0.0 microsoftwlsearchcrm.112.2o7.net +0.0.0.0 microsoftxbox.112.2o7.net +0.0.0.0 midala.112.2o7.net +0.0.0.0 midar.112.2o7.net +0.0.0.0 midcru.112.2o7.net +0.0.0.0 midsen.112.2o7.net +0.0.0.0 milbglobal.112.2o7.net +0.0.0.0 mitsubishi.112.2o7.net +0.0.0.0 mkcthehomemarketplace.112.2o7.net +0.0.0.0 mkt10.122.2o7.net +0.0.0.0 mlarmani.122.2o7.net +0.0.0.0 mlbam.112.2o7.net +0.0.0.0 mlbatlanta.112.2o7.net +0.0.0.0 mlbcincinnati.112.2o7.net +0.0.0.0 mlbcom.112.2o7.net +0.0.0.0 mlbglobal.112.2o7.net +0.0.0.0 mlbglobal08.112.2o7.net +0.0.0.0 mlbsanfrancisco.112.2o7.net +0.0.0.0 mlsglobal.112.2o7.net +0.0.0.0 mmc.122.2o7.net +0.0.0.0 mngi.112.2o7.net +0.0.0.0 mngidailybreeze.112.2o7.net +0.0.0.0 mngidmn.112.2o7.net +0.0.0.0 mngimercurynews.112.2o7.net +0.0.0.0 mngimng.112.2o7.net +0.0.0.0 mngirockymtnnews.112.2o7.net +0.0.0.0 mngislcnac.112.2o7.net +0.0.0.0 mngislctrib.112.2o7.net +0.0.0.0 mngisv.112.2o7.net +0.0.0.0 mngitwincities.112.2o7.net +0.0.0.0 mngiyhnat.112.2o7.net +0.0.0.0 montblanc.122.2o7.net +0.0.0.0 montblanccom.122.2o7.net +0.0.0.0 mormonorg.112.2o7.net +0.0.0.0 morningnewsonline.112.2o7.net +0.0.0.0 movitex.122.2o7.net +0.0.0.0 mpire.112.2o7.net +0.0.0.0 mseupwinxpfam.112.2o7.net +0.0.0.0 msna1com.112.2o7.net +0.0.0.0 msnaccountservices.112.2o7.net +0.0.0.0 msnbc.112.2o7.net +0.0.0.0 msnbcnewsvine.112.2o7.net +0.0.0.0 msnbcom.112.2o7.net +0.0.0.0 msneshopbase.112.2o7.net +0.0.0.0 msninvite.112.2o7.net +0.0.0.0 msninviteprod.112.2o7.net +0.0.0.0 msnlivefavorites.112.2o7.net +0.0.0.0 msnmercom.112.2o7.net +0.0.0.0 msnmercustacqprod.112.2o7.net +0.0.0.0 msnonecare.112.2o7.net +0.0.0.0 msnportal.112.2o7.net +0.0.0.0 msnportalaffiliate.112.2o7.net +0.0.0.0 msnportalaunews.112.2o7.net +0.0.0.0 msnportalbeetoffice2007.112.2o7.net +0.0.0.0 msnportalgame.112.2o7.net +0.0.0.0 msnportalhome.112.2o7.net +0.0.0.0 msnportallatino.112.2o7.net +0.0.0.0 msnportallive.112.2o7.net +0.0.0.0 msnportalmsgboardsrvc.112.2o7.net +0.0.0.0 msnportalscp.112.2o7.net +0.0.0.0 msnportalvideo.112.2o7.net +0.0.0.0 msnservices.112.2o7.net +0.0.0.0 msntrademarketing.112.2o7.net +0.0.0.0 msnwinonecare.112.2o7.net +0.0.0.0 mssbcprod.112.2o7.net +0.0.0.0 mswindowswolglobal.112.2o7.net +0.0.0.0 mswlspcmktdev.112.2o7.net +0.0.0.0 mswmwpapolloprod.122.2o7.net +0.0.0.0 mtvn.112.2o7.net +0.0.0.0 multiply.112.2o7.net +0.0.0.0 mxmacromedia.112.2o7.net +0.0.0.0 myfamilyancestry.112.2o7.net +0.0.0.0 nandomedia.112.2o7.net +0.0.0.0 nascardigitalsap.d2.sc.omtrdc.net +0.0.0.0 nasdaq.122.2o7.net +0.0.0.0 natgeoedit.112.2o7.net +0.0.0.0 natgeoeditcom.112.2o7.net +0.0.0.0 natgeoglobal.112.2o7.net +0.0.0.0 natgeohomepage.112.2o7.net +0.0.0.0 natgeonavcom.112.2o7.net +0.0.0.0 natgeonews.112.2o7.net +0.0.0.0 natgeongkidsmagccom.112.2o7.net +0.0.0.0 natgeongmcom.112.2o7.net +0.0.0.0 natgeopeopleplaces.112.2o7.net +0.0.0.0 natgeophoto.112.2o7.net +0.0.0.0 natgeotravelermagcom.112.2o7.net +0.0.0.0 natgeovideo.112.2o7.net +0.0.0.0 nationalbankofnewzea.tt.omtrdc.net +0.0.0.0 nationalgeographic.112.2o7.net +0.0.0.0 nautilus.d2.sc.omtrdc.net +0.0.0.0 nautilus.tt.omtrdc.net +0.0.0.0 nbcuniversal.122.2o7.net +0.0.0.0 neber.112.2o7.net +0.0.0.0 nebnr.112.2o7.net +0.0.0.0 neref.112.2o7.net +0.0.0.0 netgear.122.2o7.net +0.0.0.0 networksolutions.112.2o7.net +0.0.0.0 newcom.122.2o7.net +0.0.0.0 newjobs.d1.sc.omtrdc.net +0.0.0.0 newlook.112.2o7.net +0.0.0.0 newsday.122.2o7.net +0.0.0.0 newsinteractive.112.2o7.net +0.0.0.0 newsinternational.122.2o7.net +0.0.0.0 newsok.112.2o7.net +0.0.0.0 newsquestdigitalmedia.122.2o7.net +0.0.0.0 newstimeslivecom.112.2o7.net +0.0.0.0 newyorkandcompany.112.2o7.net +0.0.0.0 newyorkmagazine.112.2o7.net +0.0.0.0 nhl.112.2o7.net +0.0.0.0 nielsen.112.2o7.net +0.0.0.0 nikefootball.112.2o7.net +0.0.0.0 nikefootballglobal.112.2o7.net +0.0.0.0 nikegoddess.112.2o7.net +0.0.0.0 nikehome.112.2o7.net +0.0.0.0 nikerunning.112.2o7.net +0.0.0.0 nikerunningglobal.112.2o7.net +0.0.0.0 njmvc.112.2o7.net +0.0.0.0 nmanchorage.112.2o7.net +0.0.0.0 nmbakersfieldca.112.2o7.net +0.0.0.0 nmbeaufort.112.2o7.net +0.0.0.0 nmbelleville.112.2o7.net +0.0.0.0 nmbradenton.112.2o7.net +0.0.0.0 nmcharlotte.112.2o7.net +0.0.0.0 nmcolumbia.112.2o7.net +0.0.0.0 nmcomnancomedia.112.2o7.net +0.0.0.0 nmeprod.122.2o7.net +0.0.0.0 nmfortworth.112.2o7.net +0.0.0.0 nmfresno.112.2o7.net +0.0.0.0 nmhiltonhead.112.2o7.net +0.0.0.0 nmkansascity.112.2o7.net +0.0.0.0 nmlexington.112.2o7.net +0.0.0.0 nmmclatchy.112.2o7.net +0.0.0.0 nmmerced.112.2o7.net +0.0.0.0 nmmiami.112.2o7.net +0.0.0.0 nmminneapolis.112.2o7.net +0.0.0.0 nmmodesto.112.2o7.net +0.0.0.0 nmraleigh.112.2o7.net +0.0.0.0 nmrockhill.112.2o7.net +0.0.0.0 nmsacramento.112.2o7.net +0.0.0.0 nmsanluisobispo.112.2o7.net +0.0.0.0 nmstatecollege.112.2o7.net +0.0.0.0 nmtacoma.112.2o7.net +0.0.0.0 nmthatsracin.112.2o7.net +0.0.0.0 nortelcom.112.2o7.net +0.0.0.0 northjersey.112.2o7.net +0.0.0.0 northwestairlines.112.2o7.net +0.0.0.0 novell.112.2o7.net +0.0.0.0 novellcom.112.2o7.net +0.0.0.0 nsdldlese.112.2o7.net +0.0.0.0 nttcommunications.122.2o7.net +0.0.0.0 nydailynews.d1.sc.omtrdc.net +0.0.0.0 nysun.com.112.2o7.net +0.0.0.0 nytbglobe.112.2o7.net +0.0.0.0 nytrflorence.112.2o7.net +0.0.0.0 nytrgainesville.112.2o7.net +0.0.0.0 nytrhendersonville.112.2o7.net +0.0.0.0 nytrlakeland.112.2o7.net +0.0.0.0 nytrlexington.112.2o7.net +0.0.0.0 nytrocala.112.2o7.net +0.0.0.0 nytrsantarosa.112.2o7.net +0.0.0.0 nytrsarasota.112.2o7.net +0.0.0.0 nytrthibodaux.112.2o7.net +0.0.0.0 nytrtuscaloosa.112.2o7.net +0.0.0.0 nytrwilmington.112.2o7.net +0.0.0.0 nytrwinterhaven.112.2o7.net +0.0.0.0 nytrworcester.112.2o7.net +0.0.0.0 nyttechnology.112.2o7.net +0.0.0.0 nzz.d3.sc.omtrdc.net +0.0.0.0 oberonincredig.112.2o7.net +0.0.0.0 oberoniplay.112.2o7.net +0.0.0.0 oklahomadepartmentofcommerce.112.2o7.net +0.0.0.0 omniscbt.112.2o7.net +0.0.0.0 omniture.112.2o7.net +0.0.0.0 omniturebanners.112.2o7.net +0.0.0.0 omniturecom.112.2o7.net +0.0.0.0 omvisidtest1.112.2o7.net +0.0.0.0 onetoone.112.2o7.net +0.0.0.0 onlinegurupopularsitecom.112.2o7.net +0.0.0.0 oodpreprod.122.2o7.net +0.0.0.0 optimost.112.2o7.net +0.0.0.0 oraclecom.112.2o7.net +0.0.0.0 oracleglobal.112.2o7.net +0.0.0.0 oreck.tt.omtrdc.net +0.0.0.0 orlandoinfocom.112.2o7.net +0.0.0.0 osiristrading.112.2o7.net +0.0.0.0 ottacknet.112.2o7.net +0.0.0.0 ottdailytidingscom.112.2o7.net +0.0.0.0 overstock.tt.omtrdc.net +0.0.0.0 overstockcom.112.2o7.net +0.0.0.0 overturecom.112.2o7.net +0.0.0.0 overturecomvista.112.2o7.net +0.0.0.0 pandasoftware.112.2o7.net +0.0.0.0 parade.122.2o7.net +0.0.0.0 parship.122.2o7.net +0.0.0.0 partygaming.122.2o7.net +0.0.0.0 partygamingglobal.122.2o7.net +0.0.0.0 patrickhillery.112.2o7.net +0.0.0.0 paypal.112.2o7.net +0.0.0.0 pcconnectioncom.112.2o7.net +0.0.0.0 pch.122.2o7.net +0.0.0.0 pctoolscom.112.2o7.net +0.0.0.0 pcworldcommunication.122.2o7.net +0.0.0.0 pcworldcommunication.d2.sc.omtrdc.net +0.0.0.0 pelmorexmedia.122.2o7.net +0.0.0.0 pennwellco.tt.omtrdc.net +0.0.0.0 pennwellcorp.112.2o7.net +0.0.0.0 pentonmedia.122.2o7.net +0.0.0.0 permissioninteractiv.tt.omtrdc.net +0.0.0.0 petakfc.112.2o7.net +0.0.0.0 petamain.112.2o7.net +0.0.0.0 petfooddirect.d1.sc.omtrdc.net +0.0.0.0 pfizer.122.2o7.net +0.0.0.0 philips.112.2o7.net +0.0.0.0 phillyburbscom.112.2o7.net +0.0.0.0 phillycom.112.2o7.net +0.0.0.0 phillymedia.112.2o7.net +0.0.0.0 pittsburghpostgazette.112.2o7.net +0.0.0.0 planetout.122.2o7.net +0.0.0.0 pldev.112.2o7.net +0.0.0.0 plsoyfoods.112.2o7.net +0.0.0.0 poacprod.122.2o7.net +0.0.0.0 poconorecordcom.112.2o7.net +0.0.0.0 popcapgames.122.2o7.net +0.0.0.0 popsci.com.122.2o7.net +0.0.0.0 powellsbooks.122.2o7.net +0.0.0.0 poweronemedia.122.2o7.net +0.0.0.0 premiumtv.122.2o7.net +0.0.0.0 primediabusiness.122.2o7.net +0.0.0.0 primemensfitness.112.2o7.net +0.0.0.0 primestarmagazine.112.2o7.net +0.0.0.0 primetimesolutions.tt.omtrdc.net +0.0.0.0 prisacom.112.2o7.net +0.0.0.0 prnewswire.122.2o7.net +0.0.0.0 productpartnersllc.tt.omtrdc.net +0.0.0.0 pulkauaiworld.112.2o7.net +0.0.0.0 pultheworldlink.112.2o7.net +0.0.0.0 questiacom.112.2o7.net +0.0.0.0 questsoftware.112.2o7.net +0.0.0.0 qwestfull.112.2o7.net +0.0.0.0 rainbowmedia.122.2o7.net +0.0.0.0 rakuten.112.2o7.net +0.0.0.0 randmcnally.112.2o7.net +0.0.0.0 rcci.122.2o7.net +0.0.0.0 rcntelecom.112.2o7.net +0.0.0.0 readersdigest.tt.omtrdc.net +0.0.0.0 reagroup.122.2o7.net +0.0.0.0 rebtelnetworks.112.2o7.net +0.0.0.0 recordeaglecom.112.2o7.net +0.0.0.0 recordnetcom.112.2o7.net +0.0.0.0 recordonlinecom.112.2o7.net +0.0.0.0 registercom.122.2o7.net +0.0.0.0 registercom.tt.omtrdc.net +0.0.0.0 remodelingonlinecom.112.2o7.net +0.0.0.0 rentcom.112.2o7.net +0.0.0.0 rentcom.tt.omtrdc.net +0.0.0.0 restoredchurchofgod.112.2o7.net +0.0.0.0 reunion.tt.omtrdc.net +0.0.0.0 reunioncom.112.2o7.net +0.0.0.0 ringcentral.112.2o7.net +0.0.0.0 ringierag.112.2o7.net +0.0.0.0 riptownmedia.122.2o7.net +0.0.0.0 riverdeep.112.2o7.net +0.0.0.0 rmgparcelforcecom.112.2o7.net +0.0.0.0 rmgroyalmailcom.112.2o7.net +0.0.0.0 rodale.d1.sc.omtrdc.net +0.0.0.0 rrpartners.122.2o7.net +0.0.0.0 rtst.122.2o7.net +0.0.0.0 rtve.d1.sc.omtrdc.net +0.0.0.0 sa.aol.com.122.2o7.net +0.0.0.0 safaribooks.112.2o7.net +0.0.0.0 saksfifthavenue.122.2o7.net +0.0.0.0 salliemaecom.112.2o7.net +0.0.0.0 samsclub.112.2o7.net +0.0.0.0 santacruzsentinelcom.112.2o7.net +0.0.0.0 saxobutlereagle.122.2o7.net +0.0.0.0 saxoconcordmonitor.122.2o7.net +0.0.0.0 saxoeverett.122.2o7.net +0.0.0.0 saxofosters.122.2o7.net +0.0.0.0 saxogoerie.122.2o7.net +0.0.0.0 saxogreensboro.122.2o7.net +0.0.0.0 saxoorklamedia.122.2o7.net +0.0.0.0 saxopeninsuladailynews.122.2o7.net +0.0.0.0 saxorutland.122.2o7.net +0.0.0.0 saxosumteritem.122.2o7.net +0.0.0.0 saxotech.122.2o7.net +0.0.0.0 saxotechtylerpaper.122.2o7.net +0.0.0.0 saxotelegraph.122.2o7.net +0.0.0.0 saxotoledo.122.2o7.net +0.0.0.0 saxowatertowndailytimes.122.2o7.net +0.0.0.0 saxowenworld.122.2o7.net +0.0.0.0 saxowesterncommunications.122.2o7.net +0.0.0.0 sbsblukgov.112.2o7.net +0.0.0.0 schaeffers.112.2o7.net +0.0.0.0 sciamcom.112.2o7.net +0.0.0.0 scottrade.112.2o7.net +0.0.0.0 scrippsdiy.112.2o7.net +0.0.0.0 scrippsfineliving.112.2o7.net +0.0.0.0 scrippsfoodnet.112.2o7.net +0.0.0.0 scrippsfoodnetnew.112.2o7.net +0.0.0.0 scrippsfrontdoor.112.2o7.net +0.0.0.0 scrippsgac.112.2o7.net +0.0.0.0 scrippshgtv.112.2o7.net +0.0.0.0 scrippshgtvpro.112.2o7.net +0.0.0.0 scrippsrecipezaar.112.2o7.net +0.0.0.0 seacoastonlinecom.112.2o7.net +0.0.0.0 sears.112.2o7.net +0.0.0.0 searscom.112.2o7.net +0.0.0.0 searsholdings.tt.omtrdc.net +0.0.0.0 searskmartcom.112.2o7.net +0.0.0.0 seb.d1.sc.omtrdc.net +0.0.0.0 sento.122.2o7.net +0.0.0.0 sevenoneintermedia.112.2o7.net +0.0.0.0 shawnewspapers.112.2o7.net +0.0.0.0 shopping.112.2o7.net +0.0.0.0 siemens.d1.sc.omtrdc.net +0.0.0.0 sixapart.112.2o7.net +0.0.0.0 skinmedica.122.2o7.net +0.0.0.0 skyauction.122.2o7.net +0.0.0.0 skype.tt.omtrdc.net +0.0.0.0 slbbbcom.112.2o7.net +0.0.0.0 sltravelcom.112.2o7.net +0.0.0.0 smartmoney.112.2o7.net +0.0.0.0 smibs.112.2o7.net +0.0.0.0 smokingeverywhere.122.2o7.net +0.0.0.0 smokinggun.122.2o7.net +0.0.0.0 smpopmech.112.2o7.net +0.0.0.0 smwww.112.2o7.net +0.0.0.0 snagajob.122.2o7.net +0.0.0.0 snapfish.112.2o7.net +0.0.0.0 sofmap.112.2o7.net +0.0.0.0 softlayer.d1.sc.omtrdc.net +0.0.0.0 softonic.112.2o7.net +0.0.0.0 sonychina.112.2o7.net +0.0.0.0 sonycorporate.112.2o7.net +0.0.0.0 sonyelectronicssupportus.112.2o7.net +0.0.0.0 sonymediasoftware.112.2o7.net +0.0.0.0 sonyscei.112.2o7.net +0.0.0.0 southcoasttodaycom.112.2o7.net +0.0.0.0 spamfighter.112.2o7.net +0.0.0.0 sparknetworks.112.2o7.net +0.0.0.0 spencergifts.112.2o7.net +0.0.0.0 sportingnews.122.2o7.net +0.0.0.0 sprintglobal.112.2o7.net +0.0.0.0 stampscom.112.2o7.net +0.0.0.0 starz.122.2o7.net +0.0.0.0 stpetersburgtimes.122.2o7.net +0.0.0.0 stubhub.122.2o7.net +0.0.0.0 stylincom.112.2o7.net +0.0.0.0 subaruofamerica.112.2o7.net +0.0.0.0 summitbusinessmedia.112.2o7.net +0.0.0.0 sunglobal.112.2o7.net +0.0.0.0 superpages.122.2o7.net +0.0.0.0 surfline.112.2o7.net +0.0.0.0 survey.122.2o7.net +0.0.0.0 svd.112.2o7.net +0.0.0.0 swsoft.122.2o7.net +0.0.0.0 sylvane.122.2o7.net +0.0.0.0 symantec.tt.omtrdc.net +0.0.0.0 sympmsnglobalen.112.2o7.net +0.0.0.0 sympmsnmusic.112.2o7.net +0.0.0.0 tacobell.d1.sc.omtrdc.net +0.0.0.0 tangomedia.112.2o7.net +0.0.0.0 tbstv.112.2o7.net +0.0.0.0 tbsveryfunnyads.112.2o7.net +0.0.0.0 tcinvitationsbydawn.112.2o7.net +0.0.0.0 tdameritrade.tt.omtrdc.net +0.0.0.0 techreview.112.2o7.net +0.0.0.0 tehomercacom.112.2o7.net +0.0.0.0 tel3adv.112.2o7.net +0.0.0.0 tele2nl.112.2o7.net +0.0.0.0 telefloracom.112.2o7.net +0.0.0.0 telenor.112.2o7.net +0.0.0.0 tescostores.122.2o7.net +0.0.0.0 tgn.122.2o7.net +0.0.0.0 thayhiltonlongisland.112.2o7.net +0.0.0.0 thayhoteldelcoronado.112.2o7.net +0.0.0.0 thayvenetian.112.2o7.net +0.0.0.0 thedailystarcom.112.2o7.net +0.0.0.0 thegroup.112.2o7.net +0.0.0.0 thelibraryofcongress.122.2o7.net +0.0.0.0 thestar.122.2o7.net +0.0.0.0 thestardev.122.2o7.net +0.0.0.0 thgalecom.112.2o7.net +0.0.0.0 thinkgeek.112.2o7.net +0.0.0.0 thomasvillefurniture.122.2o7.net +0.0.0.0 thome.112.2o7.net +0.0.0.0 timecom.112.2o7.net +0.0.0.0 timecom.122.2o7.net +0.0.0.0 timeessence.122.2o7.net +0.0.0.0 timeew.122.2o7.net +0.0.0.0 timefoodandwine.122.2o7.net +0.0.0.0 timefortune.112.2o7.net +0.0.0.0 timehealthtips.122.2o7.net +0.0.0.0 timeinc.122.2o7.net +0.0.0.0 timelife.122.2o7.net +0.0.0.0 timeoutcommunications.122.2o7.net +0.0.0.0 timepeople.122.2o7.net +0.0.0.0 timepespanol.122.2o7.net +0.0.0.0 timespctenbest.122.2o7.net +0.0.0.0 timeteenpeople.122.2o7.net +0.0.0.0 tirerack.tt.omtrdc.net +0.0.0.0 tjx.112.2o7.net +0.0.0.0 tmslexus.112.2o7.net +0.0.0.0 tmstoyota.112.2o7.net +0.0.0.0 tnttv.112.2o7.net +0.0.0.0 tomsshoes.122.2o7.net +0.0.0.0 torstardigital.122.2o7.net +0.0.0.0 toyotamotorcorporation.122.2o7.net +0.0.0.0 toysrus.tt.omtrdc.net +0.0.0.0 trailblazers.122.2o7.net +0.0.0.0 trailerservicescom.112.2o7.net +0.0.0.0 trane-ir-corp-ingersollrand.112.2o7.net +0.0.0.0 tranest-schlage-link.112.2o7.net +0.0.0.0 travidia.112.2o7.net +0.0.0.0 tribuneinteractive.122.2o7.net +0.0.0.0 trinitymirror.112.2o7.net +0.0.0.0 truevalue.d2.sc.omtrdc.net +0.0.0.0 tumi.112.2o7.net +0.0.0.0 turnerclassic.112.2o7.net +0.0.0.0 turnersports.112.2o7.net +0.0.0.0 tvguide.112.2o7.net +0.0.0.0 uolfreeservers.112.2o7.net +0.0.0.0 uoljunocom2.112.2o7.net +0.0.0.0 uolnetzeronet2.112.2o7.net +0.0.0.0 uolphotosite.112.2o7.net +0.0.0.0 upi.112.2o7.net +0.0.0.0 usatoday1.112.2o7.net +0.0.0.0 usbank.tt.omtrdc.net +0.0.0.0 usdm.122.2o7.net +0.0.0.0 usnews.122.2o7.net +0.0.0.0 ussearch.122.2o7.net +0.0.0.0 vcomdeepdiscount.112.2o7.net +0.0.0.0 vcommerce.112.2o7.net +0.0.0.0 vectrabank.112.2o7.net +0.0.0.0 verisignwildcard.112.2o7.net +0.0.0.0 verizonwireless.tt.omtrdc.net +0.0.0.0 vermontteddybear.112.2o7.net +0.0.0.0 viaaddictingclips.112.2o7.net +0.0.0.0 viaaddictinggames.112.2o7.net +0.0.0.0 viaatom.112.2o7.net +0.0.0.0 viaatomv6.112.2o7.net +0.0.0.0 viabestweekever.112.2o7.net +0.0.0.0 viacomedycentral.112.2o7.net +0.0.0.0 viacomedycentralrl.112.2o7.net +0.0.0.0 viacomedyde.112.2o7.net +0.0.0.0 viagametrailers.112.2o7.net +0.0.0.0 vialogoonline.112.2o7.net +0.0.0.0 vialogorollup.112.2o7.net +0.0.0.0 viamtv.112.2o7.net +0.0.0.0 viamtvcom.112.2o7.net +0.0.0.0 viamtvnvideo.112.2o7.net +0.0.0.0 viamtvromania.112.2o7.net +0.0.0.0 viamtvtr.112.2o7.net +0.0.0.0 viamtvtr3s.112.2o7.net +0.0.0.0 viamtvuk.112.2o7.net +0.0.0.0 viamtvukdev.112.2o7.net +0.0.0.0 vianewnownext.112.2o7.net +0.0.0.0 vianickde.112.2o7.net +0.0.0.0 viaquiz.112.2o7.net +0.0.0.0 viarnd.112.2o7.net +0.0.0.0 viasatsatelliteservices.112.2o7.net +0.0.0.0 viashockwave.112.2o7.net +0.0.0.0 viaspike.112.2o7.net +0.0.0.0 viaukplayer.112.2o7.net +0.0.0.0 viavh1com.112.2o7.net +0.0.0.0 viavh1scandalist.112.2o7.net +0.0.0.0 viavh1video.112.2o7.net +0.0.0.0 viay2m.112.2o7.net +0.0.0.0 victoriaadvocate.112.2o7.net +0.0.0.0 videotroncom.112.2o7.net +0.0.0.0 vintacom.112.2o7.net +0.0.0.0 vintadream.112.2o7.net +0.0.0.0 virginmedia.112.2o7.net +0.0.0.0 virginmobile.122.2o7.net +0.0.0.0 virginmobileusa.tt.omtrdc.net +0.0.0.0 vitacost.122.2o7.net +0.0.0.0 vodafonegroup.122.2o7.net +0.0.0.0 volkswagen.122.2o7.net +0.0.0.0 vpmc.122.2o7.net +0.0.0.0 walgrns.112.2o7.net +0.0.0.0 walmart.112.2o7.net +0.0.0.0 warnerbros.112.2o7.net +0.0.0.0 warnerbrothersrecords.112.2o7.net +0.0.0.0 waterfrontmedia.112.2o7.net +0.0.0.0 wbextecd.112.2o7.net +0.0.0.0 wbnews.112.2o7.net +0.0.0.0 wbprocurement.112.2o7.net +0.0.0.0 wbrostheatricalother.112.2o7.net +0.0.0.0 wcastrprod.122.2o7.net +0.0.0.0 webmdcom.tt.omtrdc.net +0.0.0.0 webmetrodev.122.2o7.net +0.0.0.0 webroot.112.2o7.net +0.0.0.0 webroot.tt.omtrdc.net +0.0.0.0 westernunion.tt.omtrdc.net +0.0.0.0 westernunionglobal.112.2o7.net +0.0.0.0 westwickfarrow.122.2o7.net +0.0.0.0 whitecastle.122.2o7.net +0.0.0.0 wileypublishing.112.2o7.net +0.0.0.0 winecom.112.2o7.net +0.0.0.0 wineenthusiastcom.112.2o7.net +0.0.0.0 winmpmain.112.2o7.net +0.0.0.0 wissende.122.2o7.net +0.0.0.0 wlaptoplogic.122.2o7.net +0.0.0.0 worldnowboston.112.2o7.net +0.0.0.0 wpni.112.2o7.net +0.0.0.0 wpni.tt.omtrdc.net +0.0.0.0 wpnipostcomjobs.112.2o7.net +0.0.0.0 wrigley.122.2o7.net +0.0.0.0 wwatchcomusa.112.2o7.net +0.0.0.0 wweconsumer.112.2o7.net +0.0.0.0 wwecorp2.112.2o7.net +0.0.0.0 xhealth.112.2o7.net +0.0.0.0 xhealthmobiltools.112.2o7.net +0.0.0.0 yamaha.122.2o7.net +0.0.0.0 yellcom.122.2o7.net +0.0.0.0 yellspain.112.2o7.net +0.0.0.0 yrkdsp.112.2o7.net +0.0.0.0 yukoyuko.112.2o7.net +0.0.0.0 zag.112.2o7.net +0.0.0.0 zag.122.2o7.net +0.0.0.0 zango.112.2o7.net +0.0.0.0 zdau-builder.122.2o7.net +0.0.0.0 ziffdavisdesktoplinux.112.2o7.net +0.0.0.0 ziffdavisenterprise.112.2o7.net +0.0.0.0 ziffdavisenterpriseglobal.112.2o7.net +0.0.0.0 ziffdaviseweek.112.2o7.net +0.0.0.0 ziffdavisfilefront.112.2o7.net +0.0.0.0 ziffdavisglobal.112.2o7.net +0.0.0.0 ziffdavispennyarcade.112.2o7.net +0.0.0.0 zipzoomfly.122.2o7.net +0.0.0.0 eonline.pl +0.0.0.0 maendo.tv +0.0.0.0 msphacks.net +0.0.0.0 epliki24.pl +0.0.0.0 seansuj.pl +0.0.0.0 kinson.pl +0.0.0.0 motifiles.com +0.0.0.0 www.fajnefanty.com +0.0.0.0 verify.info4security.org +0.0.0.0 nametests.com +0.0.0.0 nameguess.com +0.0.0.0 konkurs-zwierzak.pl +0.0.0.0 komputery48.pl +0.0.0.0 konkursy24.ml +0.0.0.0 paysafecard-codes.tumblr.com +0.0.0.0 rectangledownloads.com +0.0.0.0 inagrody.pl +0.0.0.0 programyhakerskie.pl +0.0.0.0 riotpoint.eu +0.0.0.0 z8x.pl +0.0.0.0 kotdj.pl +0.0.0.0 www.ebookland.pl +0.0.0.0 update.soft2download.online +0.0.0.0 www.a1a.pl +0.0.0.0 darmowe-ebooki.com.pl +0.0.0.0 fb.pisz.pl +0.0.0.0 dichvutangsub.com +0.0.0.0 fhgfffdsf9.appspot.com +0.0.0.0 pokolorujfb.glt.pl +0.0.0.0 key.y0.pl +0.0.0.0 generatorkodow.hpu.pl +0.0.0.0 top-cards.online +0.0.0.0 please-wait.online +0.0.0.0 secrets-games.online +0.0.0.0 moviestarplanethacks.pl +0.0.0.0 www.moviestarplanethack2016.com +0.0.0.0 moviestarplanetcheatstool.com +0.0.0.0 cheatsgenerator.com +0.0.0.0 www.moviestarplanethackonlines.com +0.0.0.0 www.moviestarplanethack.info +0.0.0.0 techexploits.com +0.0.0.0 vipcheats.us +0.0.0.0 moviestarplanet-haki-i-kody.crazylife.pl +0.0.0.0 hackuj.pl +0.0.0.0 www.sp-niemyslow.pl +0.0.0.0 xtesty.pl +0.0.0.0 odpowiedzi.edu.pl +0.0.0.0 glinkss.com +0.0.0.0 24hoursready.cf +0.0.0.0 nowa24.pl +0.0.0.0 zmieniam-fb.pl +0.0.0.0 hitzhita.pl +0.0.0.0 kupongo.pl +0.0.0.0 kodyrabatowe.16mb.com +0.0.0.0 testy-na--iq.prv.pl +0.0.0.0 h43.pl +0.0.0.0 as9.pl +0.0.0.0 www.penera.pl +0.0.0.0 paysafecard-kody.prv.pl +0.0.0.0 kody-paysafecard-10euro.prv.pl +0.0.0.0 paysafecard-rozdajemy-kody.prv.pl +0.0.0.0 wygrajmy6s.pl +0.0.0.0 24-fakt.pl +0.0.0.0 wiad24omosci.eu +0.0.0.0 24-wiadomosci.com.pl +0.0.0.0 wiad24omosci.warszawa.pl +0.0.0.0 wygrajmyiphone6s.pl +0.0.0.0 wygrajiphone6.pl +0.0.0.0 paysafecard-10eur.prv.pl +0.0.0.0 safensecure.xyz +0.0.0.0 paysafecard10eur-promocja.prv.pl +0.0.0.0 etest-iq.prv.pl +0.0.0.0 doladowanie50zl-kom.prv.pl +0.0.0.0 odbierz-bony.ovp.pl +0.0.0.0 wygrajinternet.pl +0.0.0.0 dodajsteam.pl +0.0.0.0 egofile.pl +0.0.0.0 filmy-365.pl +0.0.0.0 followersinsta.pl +0.0.0.0 freetvonline.com.pl +0.0.0.0 hd-vod.pl +0.0.0.0 kinocda.pl +0.0.0.0 mysocialnetwork.pl +0.0.0.0 oferta4you.com.pl +0.0.0.0 tvfreeonline.pl +0.0.0.0 filmweb-online.pl +0.0.0.0 patrzetu.pl +0.0.0.0 szpiegofon.pl +0.0.0.0 szpieguj.com +0.0.0.0 timerfejs.pl +0.0.0.0 xawards.pl +0.0.0.0 zapisany.pl +0.0.0.0 zgarnijbilety.pl +0.0.0.0 doladuj-fona.pl +0.0.0.0 firesub.pl +0.0.0.0 www.abc7.pl +0.0.0.0 fun3.pl +0.0.0.0 www.enfilm.pl +0.0.0.0 www.bestkino.pl +0.0.0.0 luknij.tv +0.0.0.0 tracksms.pl +0.0.0.0 trackgsm.pl +0.0.0.0 trackgsm.co.uk +0.0.0.0 trackgsm.de +0.0.0.0 halodzwonek.pl +0.0.0.0 dragonflym.com +0.0.0.0 darmowe-filmy.eu +0.0.0.0 playmax.co +0.0.0.0 idownload.com.pl +0.0.0.0 antyspam.latwy.pl +0.0.0.0 zalogowany.nd.pl +0.0.0.0 batman-superman-pl.5x.pl +0.0.0.0 customstyle.pev.pl +0.0.0.0 numer-natalia.opx.pl +0.0.0.0 mobyhit.com +0.0.0.0 zasysaj.pl +0.0.0.0 domeny365.eu +0.0.0.0 film-box.pl +0.0.0.0 www.ultramovie.pl +0.0.0.0 ogladajbezlimitow.pl +0.0.0.0 topseans.pl +0.0.0.0 papla.pl +0.0.0.0 pobierz.biz +0.0.0.0 i-mobi.pl +0.0.0.0 odbierzdarmowedoladowanie.wordpress.com +0.0.0.0 fznajomi.pl +0.0.0.0 bramkasms.co +0.0.0.0 mobila.pl +0.0.0.0 hitmax.pl +0.0.0.0 ibrainer.net +0.0.0.0 oferta1promocyjna.pl +0.0.0.0 krajowe-lato.pl +0.0.0.0 allefoty.pl +0.0.0.0 jpzdd.pl +0.0.0.0 kuot.pl +0.0.0.0 torrius.pl +0.0.0.0 god.com.pl +0.0.0.0 iphone-6s.pl +0.0.0.0 zgarnij-nike.eu +0.0.0.0 freesms.pl +0.0.0.0 darmowefilmy.eu +0.0.0.0 filmowo24.pl +0.0.0.0 strefa18.pl +0.0.0.0 hicioryztop.pl +0.0.0.0 filedownload.com.pl +0.0.0.0 przekierowanko1.pl +0.0.0.0 giftzoid.com +0.0.0.0 downloaduj.pl +0.0.0.0 sztosinternet.pl +0.0.0.0 obam.pl +0.0.0.0 dobra-rzecz.pl +0.0.0.0 wygraj-voucher.com +0.0.0.0 mezczyzna-trendy.pl +0.0.0.0 theprofitsmaker.net +0.0.0.0 szkolainwestycji.pl +0.0.0.0 chris-jasnowidz.pl +0.0.0.0 medicreporters.com +0.0.0.0 eskk.pl +0.0.0.0 afftrack001.com +0.0.0.0 trickmovieyw.cf +0.0.0.0 online-seans24.pl +0.0.0.0 filmasy.pl +0.0.0.0 ogladam.pl +0.0.0.0 watches-live.pl +0.0.0.0 unmillondeutilidades.com +0.0.0.0 stopwirus.pl +0.0.0.0 doladowanko.pl +0.0.0.0 bramkaplaysms.pl +0.0.0.0 space-mobile.co +0.0.0.0 sms-z-internetu.pl +0.0.0.0 bramka-sms-online.pl +0.0.0.0 filmyseriale24online.pl +0.0.0.0 fbpodgladaj.pl +0.0.0.0 nike-winnow.pl +0.0.0.0 fb-color.net.pl +0.0.0.0 pokemongo-konkurs.pl +0.0.0.0 dlmyfile.com +0.0.0.0 tengofoxfiles.com +0.0.0.0 cheatslegend.com +0.0.0.0 gamezhq.nl +0.0.0.0 poznajkoloryfb.pl +0.0.0.0 funskan.pl +0.0.0.0 wygrajbutynike.pl +0.0.0.0 bramkasms365.pl +0.0.0.0 great-files.org +0.0.0.0 w2mobile.com +0.0.0.0 roaringcash.com +0.0.0.0 quizotest.pl +0.0.0.0 agroadamek.pl +0.0.0.0 odkryjfb.pl +0.0.0.0 fejs-podgladacz.pl +0.0.0.0 3n4.pl +0.0.0.0 kino-tv.pl +0.0.0.0 twojefilmy-online.pl +0.0.0.0 kinowepremiery.pl +0.0.0.0 giftcode.pl +0.0.0.0 full-movies-online.cba.pl +0.0.0.0 wygrajrezistyle.pl +0.0.0.0 fejs-colors.com.pl +0.0.0.0 4ksport.pl +0.0.0.0 zarabiajpieniadze.org +0.0.0.0 konkurs1.pl +0.0.0.0 ixweb.pl +0.0.0.0 pokemongo.ixweb.pl +0.0.0.0 pokepakiet.pl +0.0.0.0 fejsowate.com.pl +0.0.0.0 interesuj-ace.pl +0.0.0.0 idupcie.pl +0.0.0.0 showup-tv.com.pl +0.0.0.0 sms-konkurs.pl +0.0.0.0 namierzanie-telefonu.pl +0.0.0.0 bony247.pl +0.0.0.0 flyfile.pl +0.0.0.0 znajdz-numer.pl +0.0.0.0 violetgun.pl +0.0.0.0 xsensation.pl +0.0.0.0 gazetazachodnia.pl +0.0.0.0 fejsbest.pl +0.0.0.0 i-pokemon-go.pl +0.0.0.0 kasazneta.eu +0.0.0.0 facewatch.pl +0.0.0.0 testowoiq.5v.pl +0.0.0.0 bonomania.xyz +0.0.0.0 ekonkursowoip6.pl +0.0.0.0 bony.szczecin.pl +0.0.0.0 dps-zacisze.pl +0.0.0.0 mamatywna.pl +0.0.0.0 artur-glowacki.pl +0.0.0.0 marcelinkafitness.pl +0.0.0.0 fitnessteam24.pl +0.0.0.0 wartoscklienta.edu.pl +0.0.0.0 fabryka-haftu.com.pl +0.0.0.0 sekcjakarpiowa.pl +0.0.0.0 apartamentypoleska.pl +0.0.0.0 jkkf.pl +0.0.0.0 cs-gra.pl +0.0.0.0 thice.pl +0.0.0.0 pudeleq.pl +0.0.0.0 nowglam.com +0.0.0.0 reimageplus.com +0.0.0.0 przyspieszkomputer.pl +0.0.0.0 przyspiesz.pl +0.0.0.0 yac.mx +0.0.0.0 ogladaj24filmy.pl +0.0.0.0 profitmaximizer.co +0.0.0.0 linkz.it +0.0.0.0 sendspace.pw +0.0.0.0 turobit.pw +0.0.0.0 pliczek.pw +0.0.0.0 egofiles.pw +0.0.0.0 catashare.pw +0.0.0.0 rapideo.pw +0.0.0.0 faceclocks.pl +0.0.0.0 sprawdzianyodpowiedzi.pl +0.0.0.0 sprawdzianyszkolne.pl +0.0.0.0 bazasprawdzianow.pl +0.0.0.0 wygrane24.pl +0.0.0.0 hyuiltkpd.pl +0.0.0.0 bierz-bon.pl +0.0.0.0 free-gry.pl +0.0.0.0 konkurs-iphone6.pl +0.0.0.0 odbierz-internet-lte.pl +0.0.0.0 newsik24.pl +0.0.0.0 konkurs-iphone7.pl +0.0.0.0 lektor-cda.pl +0.0.0.0 sprawdziany-odpowiedzi.pl +0.0.0.0 bestphoneapps.mobi +0.0.0.0 specjalniedlaciebie.com +0.0.0.0 enter.thesupermobi.com +0.0.0.0 teespoon.co +0.0.0.0 ladujtanio.pl +0.0.0.0 apteka2000.pl +0.0.0.0 konkurs-fifa17.pl +0.0.0.0 sexmasterka-nago.pl +0.0.0.0 hdmecz.pw +0.0.0.0 lead.network +0.0.0.0 filmland.pl +0.0.0.0 seans24.com.pl +0.0.0.0 kinoman-tv.pl +0.0.0.0 punktowanie.eu +0.0.0.0 ezedukacja.pl +0.0.0.0 buzzonclick.com +0.0.0.0 krebsmethod.com +0.0.0.0 pl-best-trading.com +0.0.0.0 handelbot.com +0.0.0.0 darmowe-doladowania.gsm.pl +0.0.0.0 just-dokamienia.pl +0.0.0.0 svc.bodillycpas.com +0.0.0.0 5000cotydzien.com +0.0.0.0 sprawdzianyonline.pl +0.0.0.0 serialefilmy.pl +0.0.0.0 centrum-poradnikow.pl +0.0.0.0 bonsy.waw.pl +0.0.0.0 filmyiseriale.biz +0.0.0.0 livenewzz.com +0.0.0.0 bustcream-pro.com +0.0.0.0 prokino.pl +0.0.0.0 glaswall.online +0.0.0.0 lamiflor.xyz +0.0.0.0 ficusoid.xyz +0.0.0.0 fabryka-nagrod.com +0.0.0.0 getmyprize36.ru +0.0.0.0 nowykolorfb.pl +0.0.0.0 cptv.eu +0.0.0.0 local-finders.com +0.0.0.0 twoj-voucher.com +0.0.0.0 dziennik24.uyp.pl +0.0.0.0 info24.uyp.pl +0.0.0.0 pokemon.uyp.pl +0.0.0.0 bony.uyp.pl +0.0.0.0 pojebol.pl +0.0.0.0 infowiado.pl +0.0.0.0 ermail.pl +0.0.0.0 zalukaj-tv.com +0.0.0.0 ps3emulator.org +0.0.0.0 skidrowreloaded.pl +0.0.0.0 ps4-hack.pl +0.0.0.0 xboxoneemux.com +0.0.0.0 xbox360emulator.com +0.0.0.0 xbox1emulator.org +0.0.0.0 ps4emulator.info +0.0.0.0 ps4-emulator.com +0.0.0.0 yotafiles.com +0.0.0.0 downloadme.org +0.0.0.0 fileice.net +0.0.0.0 odblokuj-iphone.pl +0.0.0.0 pzubiegnowychidei.pl +0.0.0.0 ziemiazakazana.pl +0.0.0.0 energiaon.pl +0.0.0.0 kadado.pl +0.0.0.0 frankihostessy.pl +0.0.0.0 izaczajka.pl +0.0.0.0 igabytom.pl +0.0.0.0 brytyjskiekoty.com.pl +0.0.0.0 wojnilowicz.pl +0.0.0.0 twojkolorowyfb.pl +0.0.0.0 szaloneupusty.pl +0.0.0.0 ultrapat.xyz +0.0.0.0 wygrajdarmowe-kupony.com +0.0.0.0 maxi-film.pl +0.0.0.0 exhl.pl +0.0.0.0 www.forsa.exhl.pl +0.0.0.0 wirtuozseksu.pl +0.0.0.0 zyski-z-innowacji.pl +0.0.0.0 prawdziwyrozwoj.pl +0.0.0.0 mojadietanamase.pl +0.0.0.0 odchudzaniezpasja.pl +0.0.0.0 gojiberry500.pl +0.0.0.0 getmyprize55.ru +0.0.0.0 kimera.pl +0.0.0.0 probolan50.pl +0.0.0.0 africanmango900.pl +0.0.0.0 iweb24.pl +0.0.0.0 seansik24.pl +0.0.0.0 serialoski.pl +0.0.0.0 triggerinstalls.com +0.0.0.0 www.infolinia-kontakt-telefon.pl +0.0.0.0 www.newpassporn.com +0.0.0.0 kodyumyslu.pl +0.0.0.0 hksfa.org +0.0.0.0 www.cleaningpcvirus.com +0.0.0.0 www.updatestar.com +0.0.0.0 usunwirusa.pl +0.0.0.0 bony.warszawa.pl +0.0.0.0 wygraj-nagrody-konkurs.pl +0.0.0.0 codzienne-wiadomosci.pl +0.0.0.0 swietne-promocje.pl +0.0.0.0 aaad.pl +0.0.0.0 szukajfilmcda.online +0.0.0.0 cda-poczekalnia.pl +0.0.0.0 ifilefinder.com +0.0.0.0 cda-player.pl +0.0.0.0 redirectvoluum.com +0.0.0.0 lottoland.pl +0.0.0.0 wyniki-konkursu.eu +0.0.0.0 www.twojnajlepszydeal.pl +0.0.0.0 odbieraj-promocyjne-doladowanie-50pln.pl +0.0.0.0 ixxy24.pl +0.0.0.0 slodkie-klamstewka.pl +0.0.0.0 formularz-konkursu.eu +0.0.0.0 www.mojezakupy.net +0.0.0.0 enbutique.com +0.0.0.0 kekemobile.com +0.0.0.0 doladowanie.as9.pl +0.0.0.0 naszasa.pl +0.0.0.0 imao.pl +0.0.0.0 locked.one +0.0.0.0 albumleaks.eu +0.0.0.0 downloadtuesday.com +0.0.0.0 nowetorrenty-org.pl +0.0.0.0 www.nowetorrenty-org.pl +0.0.0.0 hdmovies.pl +0.0.0.0 youprize13.com +0.0.0.0 aldaniti.net +0.0.0.0 medianeo.pl +0.0.0.0 otosponsorki.pl +0.0.0.0 doladujzadarmo.pl +0.0.0.0 alinexpres.pl +0.0.0.0 wygrana-konkurs.pl +0.0.0.0 prizeforyou27.com +0.0.0.0 e-sprawdz-punkty-karne.pl +0.0.0.0 e-punkty.pl +0.0.0.0 ile-bedziesz-zyc.pl +0.0.0.0 fbviews.pl +0.0.0.0 views-fb.pl +0.0.0.0 face-color.net.pl +0.0.0.0 fejs-vieewer.pl +0.0.0.0 face-views.info.pl +0.0.0.0 face-view.pl +0.0.0.0 bekiarena.pl +0.0.0.0 fb-views.info.pl +0.0.0.0 face-color.pl +0.0.0.0 sprawdz-date.pl +0.0.0.0 f-podgladacz.pl +0.0.0.0 f-podgladacz.com.pl +0.0.0.0 oddam-yorkii.pl +0.0.0.0 bonomaniacy.wroclaw.pl +0.0.0.0 fb-views.net.pl +0.0.0.0 bhpfirelex.pl +0.0.0.0 szybkapozyczkateraz.pl +0.0.0.0 gotowkatutaj.pl +0.0.0.0 pozyczka-minutowa.pl +0.0.0.0 gotowka-doreki.eu +0.0.0.0 com--win.net +0.0.0.0 sprawdzone-doladowania.pl +0.0.0.0 vfastdownload.com +0.0.0.0 download000.warszawa.pl +0.0.0.0 download000.olsztyn.pl +0.0.0.0 darmowe-doladowania24.pl +0.0.0.0 reupd.net +0.0.0.0 ifb-podgladacz.com.pl +0.0.0.0 fejsvieew.info.pl +0.0.0.0 datasmierci-test.pl +0.0.0.0 fejsviewer.com.pl +0.0.0.0 abdcn.pro +0.0.0.0 abcdg.pro +0.0.0.0 pl2.titan-man.pro +0.0.0.0 ac-feedback.com +0.0.0.0 st.acstnst.com +0.0.0.0 www.cashcapitalsystem.com +0.0.0.0 automoneygenerator.biz +0.0.0.0 lokalizacjasatelitarna.pl +0.0.0.0 xbox-code.eu +0.0.0.0 solvusoft.com +0.0.0.0 odbierz-nagrode.sklep.pl +0.0.0.0 xsuper-filmy.pl +0.0.0.0 spreadyourtentacles.com +0.0.0.0 africanmango.pl +0.0.0.0 titangel-original.com +0.0.0.0 new-power-life.com +0.0.0.0 gojislim-original.com +0.0.0.0 slimg0ji-berry.com +0.0.0.0 5000cotydzien.net +0.0.0.0 ifb-viewer.pl +0.0.0.0 ad0007.net +0.0.0.0 anuluj-mandat.pl +0.0.0.0 anuluj-dlug.pl +0.0.0.0 gilgotka.pl +0.0.0.0 formularz-nagroda.pl +0.0.0.0 konkurs-lotto.pl +0.0.0.0 odbieramy.pl +0.0.0.0 sprawdzpunktykarne.eu +0.0.0.0 bardzofunny.co.pl +0.0.0.0 nxd.pl +0.0.0.0 fejsbuczkowy.xyz +0.0.0.0 spokeo.pl +0.0.0.0 formularz-odbioru-nagrody.eu +0.0.0.0 nazywo-24.pl +0.0.0.0 levox.pl +0.0.0.0 stop-subskrypcji-sms.pl +0.0.0.0 iphonee7s-konkurs.pl +0.0.0.0 iphone7silver-konkurs.pl +0.0.0.0 doladuj-50zl-promocja.pl +0.0.0.0 konkrs-iphone7.pl +0.0.0.0 zbq.pl +0.0.0.0 konkursy-24.pl +0.0.0.0 promocje.xaa.pl +0.0.0.0 formularz-wygranego.eu +0.0.0.0 formularz-wygranego2017.eu +0.0.0.0 formularz-odbioru-nagrody.info.pl +0.0.0.0 psn-code.eu +0.0.0.0 psn-code.xyz +0.0.0.0 petitpolska.pl +0.0.0.0 doladuj-fona-50pln.pl +0.0.0.0 odbierz-doladowanie-50zl.pl +0.0.0.0 dodajlike.pl +0.0.0.0 stop-subskrypcji.pl +0.0.0.0 grey2017.pl +0.0.0.0 areyouabot.net +0.0.0.0 jetparty.net +0.0.0.0 szafir-jubiler.pl +0.0.0.0 worldtour.com.pl +0.0.0.0 gazetainfo.pl +0.0.0.0 sknerus.pl +0.0.0.0 krdn.pl +0.0.0.0 tzxse.pl +0.0.0.0 i-drogeryjne-bony-2017.pl +0.0.0.0 towazne.pl +0.0.0.0 wiadomosci24.warszawa.pl +0.0.0.0 klikijuz.com +0.0.0.0 jetzt-teilnehmen.net +0.0.0.0 kupzytax.pl +0.0.0.0 odbieraj-doladowania.pl +0.0.0.0 iphone7silver-wygraj.pl +0.0.0.0 promocja-doladowanie-50-pln.pl +0.0.0.0 darmowe-buty-nike-2017.pl +0.0.0.0 formularz.sklep.pl +0.0.0.0 20pascals.nl +0.0.0.0 zostan-testerka.club +0.0.0.0 milkatesterzy.club +0.0.0.0 odbierz-50.pl +0.0.0.0 ipzd.pl +0.0.0.0 5000-cotydzien.com +0.0.0.0 odbior-nagrody.pl +0.0.0.0 chomikuj-pobieranie.net +0.0.0.0 instytut-pomocy.pl +0.0.0.0 ewa-chodakowska-dieta.pl +0.0.0.0 eodbierz-swoja-pare-butow-od-sizeera.pl +0.0.0.0 profilefacebook.pl +0.0.0.0 nikeodbierz48.com.pl +0.0.0.0 doladowanie-okazja.pl +0.0.0.0 poznaj-wynik.pl +0.0.0.0 wyniki-konkursu2017.eu +0.0.0.0 kiinomaniak.pl +0.0.0.0 samochod-odbior.pl +0.0.0.0 itis4you.com +0.0.0.0 wygraj-teraz.com +0.0.0.0 wygraj-skiny.win +0.0.0.0 wejdz-tu.pl +0.0.0.0 matusik-lipiec.pl +0.0.0.0 kinomaniatv.pl +0.0.0.0 bon-do-drogerii.pl +0.0.0.0 i-odbierz-nike.pl +0.0.0.0 bonydodrogeri.pl +0.0.0.0 ciekawinki.pl +0.0.0.0 chocolateslim-original.com +0.0.0.0 chocoslim.pro +0.0.0.0 health-line.me +0.0.0.0 ecoslimmer.pro +0.0.0.0 aktywator-windows-7.pl +0.0.0.0 pelna-wersja.pl +0.0.0.0 elite-crack.ml +0.0.0.0 cskin.pl +0.0.0.0 masseffect-ea.pl +0.0.0.0 sprawdziany123.pl +0.0.0.0 megavideo-bezlimitu.pl +0.0.0.0 dating-time-now.com +0.0.0.0 doladuj-5gb-lte.pl +0.0.0.0 bertha.website +0.0.0.0 probably.space +0.0.0.0 kinobest.pl +0.0.0.0 podgladnijmnie.pl +0.0.0.0 hd-film.pl +0.0.0.0 play-movie.pl +0.0.0.0 biazaceinformacje.pl +0.0.0.0 contentlockingnetworks.com +0.0.0.0 zobacz24.pl +0.0.0.0 videoo.pl +0.0.0.0 micartshop.pl +0.0.0.0 telewizjada.net +0.0.0.0 extravod.pl +0.0.0.0 worldoftanks-24.pl +0.0.0.0 quiznow.pl +0.0.0.0 wizjatv-kody.pl +0.0.0.0 wizjatv.za-darmo.eu +0.0.0.0 pobierz-to.pl +0.0.0.0 www.flexnice.club +0.0.0.0 leadn.pl +0.0.0.0 linkdebrideur.xyz +0.0.0.0 seansonline24.pl +0.0.0.0 zarabiaj-dzis.pl +0.0.0.0 naj-filmy24.pl +0.0.0.0 skutecznetabletkinaporostwlosow.pl +0.0.0.0 profolan.pl +0.0.0.0 szamponrevita.pl +0.0.0.0 pobeiranie.pl +0.0.0.0 ekosmetyki.net.pl +0.0.0.0 kosmetyki.tm.pl +0.0.0.0 skuteczna-dieta.co.pl +0.0.0.0 kinujemy.pl +0.0.0.0 zed21.net +0.0.0.0 wyniki-lista.pl +0.0.0.0 tanieaukcje.com.pl +0.0.0.0 firebid.pl +0.0.0.0 tilido.com +0.0.0.0 kobieta-kobietom.com.pl +0.0.0.0 skracacz.com +0.0.0.0 mecze-live24.pl +0.0.0.0 ogladamy24.pl +0.0.0.0 pobieranko.eu +0.0.0.0 promocionesparati.com +0.0.0.0 prawdziwe-konkursy.pl +0.0.0.0 blissinstalls.com +0.0.0.0 rfv.pl +0.0.0.0 lnfo.eu +0.0.0.0 szort.pl +0.0.0.0 cs-passion.pl +0.0.0.0 8xs.pl +0.0.0.0 z0x.pl +0.0.0.0 uvy3.pl +0.0.0.0 nu7.pl +0.0.0.0 r.xyz1.pl +0.0.0.0 sprawdz-to.ga +0.0.0.0 o9d.pl +0.0.0.0 ue5.pl +0.0.0.0 fbaps.pl +0.0.0.0 ma0.pl +0.0.0.0 c0.atm.pl +0.0.0.0 bi.mil.pl +0.0.0.0 pobieralnia.com.pl +0.0.0.0 firecpa.com +0.0.0.0 t.app5.pw +0.0.0.0 poort.pl +0.0.0.0 9xa.pl +0.0.0.0 9sx.pl +0.0.0.0 jx8.pl +0.0.0.0 dj3.com.pl +0.0.0.0 d74.com.pl +0.0.0.0 om9.pl +0.0.0.0 de1.pl +0.0.0.0 ae1.com.pl +0.0.0.0 q8d.com.pl +0.0.0.0 z9x.pl +0.0.0.0 livedownloadnet.pl +0.0.0.0 adresik.gq +0.0.0.0 24klik.pl +0.0.0.0 7as.pl +0.0.0.0 02m.pl +0.0.0.0 pu2.pl +0.0.0.0 s9c.com.pl +0.0.0.0 acut.pl +0.0.0.0 cw8.pl +0.0.0.0 liin.ml +0.0.0.0 59m.pl +0.0.0.0 2hx.pl +0.0.0.0 d8x.pl +0.0.0.0 20kd.pl +0.0.0.0 getlink.gq +0.0.0.0 pw0.pl +0.0.0.0 monetizer.info +0.0.0.0 go2cloud.org +0.0.0.0 l1nk.pl +0.0.0.0 0xm.com.pl +0.0.0.0 9sk.pl +0.0.0.0 ujewq.pl +0.0.0.0 0io.pl +0.0.0.0 f52.pl +0.0.0.0 cn1.com.pl +0.0.0.0 d5h.pl +0.0.0.0 mobile-redirection.com +0.0.0.0 exit-o.com +0.0.0.0 mobstarr.com +0.0.0.0 myaff.pl +0.0.0.0 myaf.pl +0.0.0.0 wap.mobiltek.pl +0.0.0.0 swshlds.com +0.0.0.0 stream-online.com.pl +0.0.0.0 promoferta.pl +0.0.0.0 skroc-link.ga +0.0.0.0 zk2.pl +0.0.0.0 t1ny.in +0.0.0.0 sm4ll.in +0.0.0.0 pliki.pw +0.0.0.0 rapidsmo.pl +0.0.0.0 29jm.pl +0.0.0.0 testujmy.pl +0.0.0.0 xweb24.pl +0.0.0.0 s8x.pl +0.0.0.0 readyfile.pl +0.0.0.0 8x1.pl +0.0.0.0 qmx7.pl +0.0.0.0 ye6.pl +0.0.0.0 3kmf.pl +0.0.0.0 uio7.pl +0.0.0.0 qwer3.pl +0.0.0.0 tyi4.pl +0.0.0.0 vcxz.pl +0.0.0.0 iuy7.pl +0.0.0.0 vbn6.pl +0.0.0.0 jhgf.pl +0.0.0.0 gfds.pl +0.0.0.0 mik2.pl +0.0.0.0 c9d.pl +0.0.0.0 ppl3.pl +0.0.0.0 iuyt.pl +0.0.0.0 url1.pl +0.0.0.0 7sdn.pl +0.0.0.0 23rf.pl +0.0.0.0 2mx9.pl +0.0.0.0 platnosc.link +0.0.0.0 formularz-konkurs.tk +0.0.0.0 s8-nowy-wygraj.comli.com +0.0.0.0 ssd4.pdns.cz +0.0.0.0 walesa.pdns.download +0.0.0.0 informacjeztwojegoregionu.5v.pl +0.0.0.0 ogloszeniapolska24.ga +0.0.0.0 netflix-generator.esy.es +0.0.0.0 senti.5v.pl +0.0.0.0 wydarzeniaonline.pl +0.0.0.0 mega-bony-2017.pl +0.0.0.0 wiosenny-bon-1500.pl +0.0.0.0 mega-bony2017.pl +0.0.0.0 info1.xh.pl +0.0.0.0 telefon-50-zl.is-best.net +0.0.0.0 zasilse-50.is-best.net +0.0.0.0 offside2.5v.pl +0.0.0.0 marcowebonyodziezowe.pl +0.0.0.0 najlepsze-bony-2017.pl +0.0.0.0 atrakcyjnakarta2017.pl +0.0.0.0 twojeiq.weebly.com +0.0.0.0 walentynkowybon2017.pl +0.0.0.0 darmowe-buty-od-nike-2017.eu +0.0.0.0 ebony1500.pl +0.0.0.0 bon-podarunkowy.com.pl +0.0.0.0 bony-konkursy.pl +0.0.0.0 lowcy-bonow.pl +0.0.0.0 fakty-online-24.pl +0.0.0.0 faktywiadomosci24.com.pl +0.0.0.0 faktywydarzenia24.pl +0.0.0.0 gitarkasiema42.5v.pl +0.0.0.0 dzieci4.89.pl +0.0.0.0 gitarkasiema40.5v.pl +0.0.0.0 dzieci2.89.pl +0.0.0.0 ciemniejszastronagreya.tk +0.0.0.0 polskieinfo365.wordpress.com +0.0.0.0 karnawalowe-bony-do-drogerii.pl +0.0.0.0 gitarasiema39.5v.pl +0.0.0.0 focie-i-foczki.hitowy.pl +0.0.0.0 bon-paliwowy.tk +0.0.0.0 siwir.borec.cz +0.0.0.0 fbtool.glt.pl +0.0.0.0 testimisional.5v.pl +0.0.0.0 pormn.ga +0.0.0.0 pormn.tk +0.0.0.0 r6faz.eu +0.0.0.0 tennisowo.glt.pl +0.0.0.0 poldens.5v.pl +0.0.0.0 pffn.pl.tn +0.0.0.0 easy.eu.ai +0.0.0.0 fbtools.glt.pl +0.0.0.0 kalczedonia.c0.pl +0.0.0.0 romo.borec.cz +0.0.0.0 pffn.borec.cz +0.0.0.0 nowema.borec.cz +0.0.0.0 foto-opisik.w8w.pl +0.0.0.0 oazaspokoju.c0.pl +0.0.0.0 fbnarzedzie.borec.cz +0.0.0.0 facepodgladacz.glt.pl +0.0.0.0 qpodgladacz.glt.pl +0.0.0.0 portret.5v.pl +0.0.0.0 homy-plating.000webhostapp.com +0.0.0.0 giant.5v.pl +0.0.0.0 facebook01.5v.pl +0.0.0.0 protip.5v.pl +0.0.0.0 bucik.y0.pl +0.0.0.0 kosmetykii.5v.pl +0.0.0.0 nevvs.cf +0.0.0.0 fotlu.brejk.pl +0.0.0.0 fotlo.brejk.pl +0.0.0.0 bajka.czweb.org +0.0.0.0 sportowo.sportsontheweb.net +0.0.0.0 ledbuty.prv.pl +0.0.0.0 gitarka32.5v.pl +0.0.0.0 qazws.y0.pl +0.0.0.0 paysoft.webd.pl +0.0.0.0 siemanki31.5v.pl +0.0.0.0 polenk.y0.pl +0.0.0.0 fbadds.borec.cz +0.0.0.0 zdarma.nazory.cz +0.0.0.0 pilkanozna.yolasite.com +0.0.0.0 bes.sportsontheweb.net +0.0.0.0 ecadutaro.yadozalamom.pw +0.0.0.0 mitobeb.yadozalamom.pw +0.0.0.0 ibaveh.yadozalamom.pw +0.0.0.0 zbyek.5v.pl +0.0.0.0 koala.brejk.pl +0.0.0.0 ipolskiemamusiie.aq.pl +0.0.0.0 fotla.awsome.pl +0.0.0.0 kluski.grejt.pl +0.0.0.0 poland2.gift-today89.online +0.0.0.0 koko-kokos.grejt.pl +0.0.0.0 kokikoki.grejt.pl +0.0.0.0 infoko.grejt.pl +0.0.0.0 innstaranny.hitowy.pl +0.0.0.0 ifotymamy.za.pl +0.0.0.0 kgile.grejt.pl +0.0.0.0 ingsa.grejt.pl +0.0.0.0 fotle.grejt.pl +0.0.0.0 kogiel.grejt.pl +0.0.0.0 filmonlinepl.blog.pl +0.0.0.0 info-konkurs.w8w.pl +0.0.0.0 tvonline.hol.es +0.0.0.0 nowa.ayz.pl +0.0.0.0 xerra.5v.pl +0.0.0.0 xexe.5v.pl +0.0.0.0 jwfdyujffrzt.com +0.0.0.0 hnoajsaivjsg.com +0.0.0.0 srppykbedhqp.com +0.0.0.0 ibqmccuuhjqc.com +0.0.0.0 pffn.5v.pl +0.0.0.0 daybuchibark.bloog.pl +0.0.0.0 podgladafejsa.5v.pl +0.0.0.0 konkurs-uyp.j.pl +0.0.0.0 siemanki20.atwebpages.com +0.0.0.0 siemka1.atwebpages.com +0.0.0.0 informacje3-24h.5v.pl +0.0.0.0 yfysudyyymexe.xpg.uol.com.br +0.0.0.0 heh123.5v.pl +0.0.0.0 igloska.za.pl +0.0.0.0 konkurs-jesien2016.esy.es +0.0.0.0 onlinepl.blog.pl +0.0.0.0 kuyxjgf.ga +0.0.0.0 kolorowanka.za.pl +0.0.0.0 iggnneel.za.pl +0.0.0.0 iignell.za.pl +0.0.0.0 igggnel.za.pl +0.0.0.0 koloroweinformacje.w8w.pl +0.0.0.0 koraloweinformacje.aq.pl +0.0.0.0 cda-online-studio.oxn.pl +0.0.0.0 xchronic.ayz.pl +0.0.0.0 tikitaka.borec.cz +0.0.0.0 caly-film-online-pl.epoznan.pl +0.0.0.0 piotrkowskijakub.wixsite.com +0.0.0.0 lulu.6te.net +0.0.0.0 steamgifts.5v.pl +0.0.0.0 yenna.6te.net +0.0.0.0 wokwok.6te.net +0.0.0.0 wonka.6te.net +0.0.0.0 petycje.wixsite.com +0.0.0.0 biznesalbercig.wixsite.com +0.0.0.0 konkurs-fotograficzny-kobiety.wapka.mobi +0.0.0.0 informujemy24h.cba.pl +0.0.0.0 iilluuzja.w8w.pl +0.0.0.0 whosfb.6te.net +0.0.0.0 informuj-23.5v.pl +0.0.0.0 newsy-25.5v.pl +0.0.0.0 newsy-25.ujm.pl +0.0.0.0 pierwszaligablog.wordpress.com +0.0.0.0 mecz.ujm.pl +0.0.0.0 infoin.6te.net +0.0.0.0 nagranie-galeria.ujm.pl +0.0.0.0 bestaoe.atwebpages.com +0.0.0.0 bony1500.ujm.pl +0.0.0.0 megabonyzakupowe.ujm.pl +0.0.0.0 informuj28.5v.pl +0.0.0.0 ijas.za.pl +0.0.0.0 illluzja.w8w.pl +0.0.0.0 iiiluzjonista.za.pl +0.0.0.0 zgarnijdoladowanie.5x.pl +0.0.0.0 info27.5v.pl +0.0.0.0 ijer.za.pl +0.0.0.0 iiiilustracje.za.pl +0.0.0.0 kotel.za.pl +0.0.0.0 koleka.w8w.pl +0.0.0.0 informuj-27.5v.pl +0.0.0.0 newbalancepl.ujm.pl +0.0.0.0 doladowanie-na-telefon.ujm.pl +0.0.0.0 itea.za.pl +0.0.0.0 newsy22.5v.pl +0.0.0.0 ikrys.za.pl +0.0.0.0 illuzzjonniska.za.pl +0.0.0.0 gitarasiema.atwebpages.com +0.0.0.0 foto-konkurs-zdjecie201.bo.pl +0.0.0.0 zdjecia-mam-fota19.bo.pl +0.0.0.0 zajrzyjnafotke.bo.pl +0.0.0.0 kolka.xonx.pl +0.0.0.0 wyroznione-zdjecia.bo.pl +0.0.0.0 wrzuc-foteczke.bo.pl +0.0.0.0 komy-fota.bo.pl +0.0.0.0 fota-komentuj.bo.pl +0.0.0.0 pobieraj.xh.pl +0.0.0.0 przechwytuj-snapa.5x.pl +0.0.0.0 gofollow.bo.pl +0.0.0.0 yourfollowers.bo.pl +0.0.0.0 kleska.aq.pl +0.0.0.0 iluzjonnisttka.za.pl +0.0.0.0 klaskanie.w8w.pl +0.0.0.0 mania-fotek.bo.pl +0.0.0.0 foto-mania.bo.pl +0.0.0.0 koment-fotomania.bo.pl +0.0.0.0 lajknij-foteczke.bo.pl +0.0.0.0 foteczka-komenty.bo.pl +0.0.0.0 konkursyy.bo.pl +0.0.0.0 dbcx.1ts.pl +0.0.0.0 mklj.1ts.pl +0.0.0.0 gtav5onlinehack.5x.pl +0.0.0.0 ikd.w8w.pl +0.0.0.0 ikjs.w8w.pl +0.0.0.0 iluzjonisttka.w8w.pl +0.0.0.0 zdjecia-wasze.bo.pl +0.0.0.0 kleopatre.aq.pl +0.0.0.0 ale-fotka.bo.pl +0.0.0.0 aktualnosci24.tk +0.0.0.0 galatransmisja.pe.hu +0.0.0.0 galatransmisja.lt.pl +0.0.0.0 live2.lt.pl +0.0.0.0 sporttv.xn.pl +0.0.0.0 glosowanie.ujm.pl +0.0.0.0 doladuj-telefon.ujm.pl +0.0.0.0 polsatboxingnight-transmisjahd.ujm.pl +0.0.0.0 odbierz-paysafecard.ujm.pl +0.0.0.0 pitbull-video.ujm.pl +0.0.0.0 rzeczyzadarmo.bo.pl +0.0.0.0 pobieramy.lt.pl +0.0.0.0 facebook-zdjecia.bo.pl +0.0.0.0 bf1.ujm.pl +0.0.0.0 lajknijfote.bo.pl +0.0.0.0 iluzjaa.za.pl +0.0.0.0 itorka.w8w.pl +0.0.0.0 zdjecia-facebook.bo.pl +0.0.0.0 alefotaa.bo.pl +0.0.0.0 kutasiki.za.pl +0.0.0.0 kolorowo.w8w.pl +0.0.0.0 fkoisu.xonx.pl +0.0.0.0 iluunstracje.wpaski.com +0.0.0.0 polubiszfoteczke.bo.pl +0.0.0.0 fejs-podgladacz.esy.es +0.0.0.0 fornalsroka.za.pl +0.0.0.0 fornalj.za.pl +0.0.0.0 ogladaj-zdjecia.bo.pl +0.0.0.0 komentuj-swoje-foto.bo.pl +0.0.0.0 galeriaa-zdjec.bo.pl +0.0.0.0 galeria-zdjecc.bo.pl +0.0.0.0 yoyo-zdjecia.bo.pl +0.0.0.0 ale-fotogragia.bo.pl +0.0.0.0 zejrzyj-zdjecia.bo.pl +0.0.0.0 sprawdz-ogladaj.bo.pl +0.0.0.0 odbieraj-buty1.pl +0.0.0.0 download.ujm.pl +0.0.0.0 ikuk.w8w.pl +0.0.0.0 irem.w8w.pl +0.0.0.0 fornalki.za.pl +0.0.0.0 ilunstracje.za.pl +0.0.0.0 finalq.za.pl +0.0.0.0 apple7.bo.pl +0.0.0.0 iphone.dz.pl +0.0.0.0 zgarnij-reeboki.lt.pl +0.0.0.0 kaczkipyrpyr.za.pl +0.0.0.0 iluzjonista.w8w.pl +0.0.0.0 ranking--zdjec.bo.pl +0.0.0.0 polub-fote.bo.pl +0.0.0.0 odbierzskina.none.pl +0.0.0.0 poldn.pl +0.0.0.0 ikonka.w8w.pl +0.0.0.0 konkurs-fotek.bo.pl +0.0.0.0 zaklete-zdjecia.bo.pl +0.0.0.0 nasze-fotki.bo.pl +0.0.0.0 igory.w8w.pl +0.0.0.0 izolat.w8w.pl +0.0.0.0 killer.iscool.pl +0.0.0.0 ikij.w8w.pl +0.0.0.0 testinteligencji.bo.pl +0.0.0.0 ktosprawdzafb.qpq.pl +0.0.0.0 wtyczka-wejsciazfb.qpq.pl +0.0.0.0 czas-na-fb.bo.pl +0.0.0.0 kolorowo.grupki.com +0.0.0.0 igorek.brejk.pl +0.0.0.0 uzalezniaczfb.5v.pl +0.0.0.0 itrak.w8w.pl +0.0.0.0 kokas.za.pl +0.0.0.0 kokis.aq.pl +0.0.0.0 kutas.w8w.pl +0.0.0.0 ktopodglada.com +0.0.0.0 ultradiscrimination.xyz +0.0.0.0 serafintv.5x.pl +0.0.0.0 gonciarz.edj.pl +0.0.0.0 isamu.edj.pl +0.0.0.0 rotacja-zdjec.bo.pl +0.0.0.0 sprawdzamy-najfotki.bo.pl +0.0.0.0 najlepsze-foty-2016.bo.pl +0.0.0.0 wrzucfote-znajomego.bo.pl +0.0.0.0 ostre-foto.bo.pl +0.0.0.0 15b37.skroc.pl +0.0.0.0 841d3.latwy.pl +0.0.0.0 ilas.w8w.pl +0.0.0.0 kasaa.w8w.pl +0.0.0.0 iron.w8w.pl +0.0.0.0 superfilmsy.site88.net +0.0.0.0 fejs-kolor.bo.pl +0.0.0.0 zbierajnagrody.bo.pl +0.0.0.0 kjhkgh.skroc.pl +0.0.0.0 oilk.pl +0.0.0.0 bony.bialystok.pl +0.0.0.0 wartega.5v.pl +0.0.0.0 rex.co.pl +0.0.0.0 zegarczasu.rdx.pl +0.0.0.0 bon-1000.ujm.pl +0.0.0.0 doladowanie-50pln.ujm.pl +0.0.0.0 promo-lte.rdx.pl +0.0.0.0 pokemon-vip.rdx.pl +0.0.0.0 doladowanie50pln.ujm.pl +0.0.0.0 fb-color.qpq.pl +0.0.0.0 face-kolor.rdx.pl +0.0.0.0 face-vip.ujm.pl +0.0.0.0 podgfb.5x.pl +0.0.0.0 sprawdzkto.5x.pl +0.0.0.0 sprawdzto.5x.pl +0.0.0.0 newsy-26.freeoda.com +0.0.0.0 quizujkolego.me +0.0.0.0 odbieraj-bony.waw.pl +0.0.0.0 mirabelki.5v.pl +0.0.0.0 edtsaa.tumblr.com +0.0.0.0 testy-iq.osc.pl +0.0.0.0 facebook-color.5v.pl +0.0.0.0 wygraj-domek.5v.pl +0.0.0.0 dietalux.5v.pl +0.0.0.0 s59.hekko.pl +0.0.0.0 ktotowie.atwebpages.com +0.0.0.0 i-foka.za.pl +0.0.0.0 zaglosujenazdjecie.prv.pl +0.0.0.0 zegarysmierci.prv.pl +0.0.0.0 online-test-iq.prv.pl +0.0.0.0 ktopodgladfejs.5v.pl +0.0.0.0 worldsport.pro +0.0.0.0 rekrutacja.zafriko.pl +0.0.0.0 zgarniij_vouchher.skroc.pl +0.0.0.0 sexcleo.lnfo.pl +0.0.0.0 vip.eeu.pl +0.0.0.0 zgarnijjsamsungi.eeu.pl +0.0.0.0 xzegarsmiercix.prv.pl +0.0.0.0 ktotenwie.5v.pl +0.0.0.0 smiercidata.5v.pl +0.0.0.0 ktotowie.5v.pl +0.0.0.0 ktoodwiedza.5v.pl +0.0.0.0 viewerfb.glt.pl +0.0.0.0 sexcleo.edj.pl +0.0.0.0 super-buty.tk +0.0.0.0 nie.atwebpages.com +0.0.0.0 tak.atwebpages.com +0.0.0.0 flaczki.firmowo.net +0.0.0.0 foty-najfajniejsze.bo.pl +0.0.0.0 duu.c0.pl +0.0.0.0 duuu.c0.pl +0.0.0.0 nowalternatywa.cba.pl +0.0.0.0 novator.c0.pl +0.0.0.0 podglad-anie.pl +0.0.0.0 karty-drogerie-1000-pln.pl +0.0.0.0 plsdont.atwebpages.com +0.0.0.0 wtyczka-fejs.6te.net +0.0.0.0 iglox.w8w.pl +0.0.0.0 mecze24.6ka.info +0.0.0.0 szokinf24.6ka.info +0.0.0.0 sprytnebabkidoladowanie50.6ka.info +0.0.0.0 isamuxpompapsc50.6ka.info +0.0.0.0 doladowanie-telefon.prv.pl +0.0.0.0 online-tarzan-legenda-lektor-pl.prv.pl +0.0.0.0 tarzan-legenda-ogladaj-2016-pl.prv.pl +0.0.0.0 movie.g.info.pl +0.0.0.0 down.g.info.pl +0.0.0.0 batman-v-superman-lektor.5v.pl +0.0.0.0 batman-v-superman-film-online.prv.pl +0.0.0.0 klub-msp.hol.es +0.0.0.0 kody-do-msp.esy.es +0.0.0.0 serwer160669420.twojeaz.pl +0.0.0.0 ringtonepartner.com +0.0.0.0 goracynews24.prv.pl +0.0.0.0 fb-viewer20.bo.pl +0.0.0.0 doladowanie-za-50zl.bo.pl +0.0.0.0 fizjoterapia.5v.pl +0.0.0.0 inteligencja.wirtualnie.pl +0.0.0.0 twoj-podgladacz-fb.wirtualnie.pl +0.0.0.0 kolorowyfejs.wirtualnie.pl +0.0.0.0 nowy-kolor-fb.wirtualnie.pl +0.0.0.0 otworz-pokeball.wirtualnie.pl +0.0.0.0 ile-dzieci.wirtualnie.pl +0.0.0.0 sex-w-biurze.wirtualnie.pl +0.0.0.0 podgladfacebook.wirtualnie.pl +0.0.0.0 liczba-dzieci.wirtualnie.pl +0.0.0.0 petycja-podpisz.wirtualnie.pl +0.0.0.0 twoja-smierc.wirtualnie.pl +0.0.0.0 data-smierci.wirtualnie.pl +0.0.0.0 data-smierci-sprawdz.wirtualnie.pl +0.0.0.0 facebook-uzaleznienie.wirtualnie.pl +0.0.0.0 uzaleznienie-od-fejsa.wirtualnie.pl +0.0.0.0 aplikacja-podgladacz.wirtualnie.pl +0.0.0.0 pokecoinsy.wirtualnie.pl +0.0.0.0 foryou.wirtualnie.pl +0.0.0.0 face-szpieg.wirtualnie.pl +0.0.0.0 downoload-privfolderelizka.wirtualnie.pl +0.0.0.0 showtime.wirtualnie.pl +0.0.0.0 twoja-data-smierci.wirtualnie.pl +0.0.0.0 twojadatasmierci.wirtualnie.pl +0.0.0.0 wysportowanalicealistka.wirtualnie.pl +0.0.0.0 facebookpodglad.wirtualnie.pl +0.0.0.0 pakiety-pokemongo.wirtualnie.pl +0.0.0.0 podgladacz-fejsa.wirtualnie.pl +0.0.0.0 yotubecom-gimnazjalistka-mp4.prv.pl +0.0.0.0 fbviewer-6.bo.pl +0.0.0.0 wizyty-face2.bo.pl +0.0.0.0 fbszpieg.aq.pl +0.0.0.0 fb-viwer.5v.pl +0.0.0.0 facebarwy.prv.pl +0.0.0.0 10gb.6ka.info +0.0.0.0 wtftube-gimnazjalistka-mp4.prv.pl +0.0.0.0 twojpodgaladcz.glt.pl +0.0.0.0 facebookszpieg.glt.pl +0.0.0.0 becel.atwebpages.com +0.0.0.0 fb-colors.ct8.pl +0.0.0.0 nikebuty-zgarnij.freetzi.com +0.0.0.0 nike-zgarnijbuty.coolpage.biz +0.0.0.0 butynike-zgarnij.coolpage.biz +0.0.0.0 smiertelnywypadek.prv.pl +0.0.0.0 imigranci.prv.pl +0.0.0.0 gadzet9999.atwebpages.com +0.0.0.0 airmaxy-konkurs.coolpage.biz +0.0.0.0 sprawdzaj-gosci6.6te.net +0.0.0.0 zgarnij-butynike.coolpage.biz +0.0.0.0 zgarnij-nikebuty.coolpage.biz +0.0.0.0 nike90-wygraj.coolpage.biz +0.0.0.0 informuj21.tk +0.0.0.0 odbierz-nike.coolpage.biz +0.0.0.0 spwsczeladz.my3gb.com +0.0.0.0 iphone63.atwebpages.com +0.0.0.0 wiadomosci25.atwebpages.com +0.0.0.0 podlad-facee4.6te.net +0.0.0.0 brutalnygwaltpolkii.freetzi.com +0.0.0.0 brutalnygwalt16lat.freetzi.com +0.0.0.0 polkagwalcona.freetzi.com +0.0.0.0 gwalt22.freetzi.com +0.0.0.0 infoszokk.freetzi.com +0.0.0.0 wygraj-nike.coolpage.biz +0.0.0.0 info27.coolpage.biz +0.0.0.0 sexafera.coolpage.biz +0.0.0.0 polkaaszok.freetzi.com +0.0.0.0 polska24.c0.pl +0.0.0.0 gwaltnapolce.freetzi.com +0.0.0.0 szookinfoo244.freetzi.com +0.0.0.0 gwaltpolki24.freetzi.com +0.0.0.0 polkazgwaalcona1.freetzi.com +0.0.0.0 gwaaltiinfo24.freetzi.com +0.0.0.0 szoknews221.freetzi.com +0.0.0.0 polskawiadomsci44.atwebpages.com +0.0.0.0 info26.tk +0.0.0.0 wiadozeswiata24.atwebpages.com +0.0.0.0 szokinf.atwebpages.com +0.0.0.0 hewra.atwebpages.com +0.0.0.0 szamus5.my3gb.com +0.0.0.0 szamus2.my3gb.com +0.0.0.0 gadzet099.my3gb.com +0.0.0.0 plwiadomosci.my3gb.com + + +0.0.0.0 www.ultrabehead.xyz +0.0.0.0 www.reward-bureau.com +0.0.0.0 speedit.download +0.0.0.0 p.24-7.help +0.0.0.0 www.mobilew.xyz +0.0.0.0 www.linkbathroom.xyz +0.0.0.0 www.prosec-mobile.com +0.0.0.0 v7pjo.voluumtrk.com +0.0.0.0 dvzwh.voluumtrk.com +0.0.0.0 lci1a.voluumtrk.com +0.0.0.0 phonesecure.mobi +0.0.0.0 www.xtremedailynews.com +0.0.0.0 fun-clix.com +0.0.0.0 aigames.mobi +0.0.0.0 mobilegur.com +0.0.0.0 mobile-supportinfo.com +0.0.0.0 system-alert1.com +0.0.0.0 mememakers.mobi +0.0.0.0 lnktk.com +0.0.0.0 zcontentlocker7gpa8a.xyz +0.0.0.0 gldr6e.xyz +0.0.0.0 appz4u.xyz +0.0.0.0 www.linkcousin.xyz +0.0.0.0 kmavj.ab4all.com +0.0.0.0 winareward.club +0.0.0.0 0764.pics +0.0.0.0 national-reward-center.com +0.0.0.0 com-protect.info +0.0.0.0 mobyapps.net +0.0.0.0 com-wybrane-szczesliwym-zwyciezca.top +0.0.0.0 com-odebrac-nagrode.pw +0.0.0.0 click2win.online +0.0.0.0 mobistos.com +0.0.0.0 hthb.pl +0.0.0.0 online-software-checker.com +0.0.0.0 checkapi.xyz +0.0.0.0 4332.ws +0.0.0.0 mobileappscenters.com +0.0.0.0 mobile-installs.top +0.0.0.0 biedronka.pl-nagroda.xyz +0.0.0.0 poland.instant-winner10.online +0.0.0.0 check24.setting4upgradefreshandforyou.site +0.0.0.0 mob.pobierzteraz.mobi +0.0.0.0 pobierzteraz.mobi +0.0.0.0 web.yuppipuppy.com +0.0.0.0 win.mobile-installs2.top +0.0.0.0 iphone7-forsubs.xyz +0.0.0.0 www.download.ewygrane.pl +0.0.0.0 go.todolize.com +0.0.0.0 vouchery.online +0.0.0.0 hotdailynews.co +0.0.0.0 iotiot.cf +0.0.0.0 onef.cf +0.0.0.0 wydawca.lead.network +0.0.0.0 widget.konkurs1.pl +0.0.0.0 www.e-punkty.pl +0.0.0.0 www.google.xweb24.pl +0.0.0.0 www.twoj-voucher.com +0.0.0.0 ace.jamba.pl +0.0.0.0 www.aldaniti.net +0.0.0.0 pl.titan-man.pro +0.0.0.0 pl1.titan-man.pro +0.0.0.0 www.spreadyourtentacles.com +0.0.0.0 pl.new-power-life.com +0.0.0.0 pl.slimg0ji-berry.com +0.0.0.0 pl1.slimg0ji-berry.com +0.0.0.0 pl2.slimg0ji-berry.com +0.0.0.0 www.odliczamy.net +0.0.0.0 www.fabryka-nagrod.com +0.0.0.0 instant-winner275.online +0.0.0.0 poland3.instant-winner275.online +0.0.0.0 nowy-bonusy-codzienne.racing +0.0.0.0 microsoft.com-m-pl-bus8.nowy-bonusy-codzienne.racing +0.0.0.0 paliwo.as9.pl +0.0.0.0 www.read-facebook.exhl.pl +0.0.0.0 instant-winner318.online +0.0.0.0 facebookdating.link +0.0.0.0 youtubevideocheckling.com +0.0.0.0 monthlywinners.com +0.0.0.0 app-ready.xyz +0.0.0.0 uroffer.link +0.0.0.0 tracersotra199.com +0.0.0.0 www.areyouabot.net +0.0.0.0 m.pl.pornmania.pl +0.0.0.0 play.appiq.mobi +0.0.0.0 promotions.monthlywinners.com +0.0.0.0 p.funtoonez.com +0.0.0.0 play.mobsfun.net +0.0.0.0 www.download3x.exhl.pl +0.0.0.0 www.klikijuz.com +0.0.0.0 pl.jetzt-teilnehmen.net +0.0.0.0 doladowanie.02k.pl +0.0.0.0 www.webfolder.exhl.pl +0.0.0.0 www.the-best-movies.exhl.pl +0.0.0.0 www.5000-cotydzien.com +0.0.0.0 silaintelektu.as9.pl +0.0.0.0 www.download3x.xcc24.pl +0.0.0.0 www.streaming.xcc24.pl +0.0.0.0 www.the-best-movies.xcc24.pl +0.0.0.0 www.files-download.xcc24.pl +0.0.0.0 www.odbior-nagrody.pl +0.0.0.0 www.ross.exhl.pl +0.0.0.0 www.fun2cell.net +0.0.0.0 pl.health-line.me +0.0.0.0 rossmann2.wygraj-teraz.com +0.0.0.0 www.wygraj-skiny.win +0.0.0.0 www.nike.wygrane24.pl +0.0.0.0 prizefestival.mobi +0.0.0.0 ample-awards-today.us +0.0.0.0 prezenty-pl.info +0.0.0.0 cellfun.mobi +0.0.0.0 web.cellfun.mobi +0.0.0.0 onlineslotmaschine.com +0.0.0.0 www.onlineslotmaschine.com +0.0.0.0 cbb1smartlist12.click +0.0.0.0 www.contentlockingnetworks.com +0.0.0.0 fbdetect.konkurs1.pl +0.0.0.0 best-rated-offers.com +0.0.0.0 go.playoosh.com +0.0.0.0 4ur.click +0.0.0.0 my.coolestmobi.com +0.0.0.0 asdfz.pro +0.0.0.0 patol01.pw +0.0.0.0 free-deals.faith +0.0.0.0 prizeestates.cricket +0.0.0.0 www.bramka-sms-za-darmo.pl +0.0.0.0 api.myeforsa.pl +0.0.0.0 m.pl.videoinbox.net +0.0.0.0 p.promocionesparati.com +0.0.0.0 iphone7.wygraj-teraz.com +0.0.0.0 www.downloads-mobile.com +0.0.0.0 www.prawdziwe-konkursy.pl +0.0.0.0 freshiuz.com +0.0.0.0 downloads-mobile.com +0.0.0.0 wygrajfidgetspinner.pl +0.0.0.0 win-wot.pl +0.0.0.0 highspeednow1.net +0.0.0.0 videoinbox.net +0.0.0.0 myeforsa.pl +0.0.0.0 eforsa.pl +0.0.0.0 widget-eforsa.pl +0.0.0.0 oddamzadarmo.eu +0.0.0.0 m3gadownload.pl +0.0.0.0 downloaddy.net +0.0.0.0 4k-player.pl +0.0.0.0 dieta-personalna.pl +0.0.0.0 beauty-b0x.pl +0.0.0.0 pay2me.pl +0.0.0.0 yourmovies.pl +0.0.0.0 top-deal.com.pl +0.0.0.0 downloadeer.net +0.0.0.0 konkursowo-24.pl +0.0.0.0 highspeed5.net +0.0.0.0 high-speed1.net +0.0.0.0 monety-pokemony.pl +0.0.0.0 ebookeo.pl +0.0.0.0 sex-tele.pl +0.0.0.0 ezoteryka24h.pl +0.0.0.0 wins8.pl +0.0.0.0 iphone-siedem.pl +0.0.0.0 instagram-followers.pl +0.0.0.0 hdvodtv.pl +0.0.0.0 steam-recharger.pl +0.0.0.0 swiat-pobran.pl +0.0.0.0 sms-napisz.pl +0.0.0.0 paysafe-deals.pl +0.0.0.0 multiwygrane.pl +0.0.0.0 ezoporady24.com.pl +0.0.0.0 najlepszyzestawtrenerapokemon.pl +0.0.0.0 save-my-snap.pl +0.0.0.0 multiclashgems.pl +0.0.0.0 myairmaxhit.pl +0.0.0.0 mygalaxyquiz.pl +0.0.0.0 super-ciuchy24.pl +0.0.0.0 csgobestskinschoice.pl +0.0.0.0 kimbyleswprzeszlosci.pl +0.0.0.0 najlepszakonsolaxbox.pl +0.0.0.0 prezentowo.org +0.0.0.0 fulldownload.pl +0.0.0.0 all-player.pl +0.0.0.0 easydownload.pl +0.0.0.0 cs-skin.pl +0.0.0.0 pokemonzestaw.pl +0.0.0.0 filmu.pl +0.0.0.0 filedownloads.pl +0.0.0.0 twojeslodkiebobasy.pl +0.0.0.0 besttestyiq24.pl +0.0.0.0 faktopedia.com.pl +0.0.0.0 superdeals.com.pl +0.0.0.0 best-quizy.pl +0.0.0.0 szybki-internet24.pl +0.0.0.0 twojapewnadata.pl +0.0.0.0 przelicznikczasufb.pl +0.0.0.0 hdseriale.pl +0.0.0.0 nowepliki.pl +0.0.0.0 skincrate.net +0.0.0.0 winwotgold.pl +0.0.0.0 watchmyfb.pl +0.0.0.0 wygraj-butki.pl +0.0.0.0 gw.firesub.pl +0.0.0.0 xcc24.pl +0.0.0.0 pliks.pl +0.0.0.0 pobierz.shop.pl +0.0.0.0 mega-download.eu +0.0.0.0 zalukaj-player.pl +0.0.0.0 za-rejestrowany.pl +0.0.0.0 4kplayer.pl +0.0.0.0 tvseriesmovies.pl +0.0.0.0 24pliki.pl +0.0.0.0 best-coupon-offer.com +0.0.0.0 cda-premiery.pl +0.0.0.0 speed-lte.pl +0.0.0.0 pobierz1234.pl +0.0.0.0 play-logic-games.com +0.0.0.0 mobsfun.net +0.0.0.0 funtoonez.com +0.0.0.0 appiq.mobi +0.0.0.0 pornmania.pl +0.0.0.0 esemeso.pl +0.0.0.0 chargx.pl +0.0.0.0 airmax-kupony.pl +0.0.0.0 wylosujgry.pl +0.0.0.0 i-wiadomosci.pl +0.0.0.0 przepismix.pl +0.0.0.0 rejestrowanko.com.pl +0.0.0.0 bony-paliwowe.pl +0.0.0.0 funriver.pl +0.0.0.0 bon-bon-bon.pl +0.0.0.0 chrome-setup.bid +0.0.0.0 idzdalej.pl +0.0.0.0 tescikiq.pl +0.0.0.0 steamdoladowanie.pl +0.0.0.0 ladujpsc.pl +0.0.0.0 wygrajjacka.pl +0.0.0.0 bonykupony.pl +0.0.0.0 mojeiq.pl +0.0.0.0 odliczamy.net +0.0.0.0 odbierambony.pl +0.0.0.0 tankuje-paliwo.pl +0.0.0.0 videoroom.pl +0.0.0.0 movies-base.pl +0.0.0.0 wygrajps4pro.pl +0.0.0.0 wygrajairpods.pl +0.0.0.0 mediainner.pl +0.0.0.0 wygrajxboxones.pl +0.0.0.0 yourfashions.pl +0.0.0.0 dopeclothing.pl +0.0.0.0 makeittrue.pl +0.0.0.0 mega-download.pl +0.0.0.0 wygrajriotsy.pl +0.0.0.0 followinsta.pl +0.0.0.0 streamsportowy.pl +0.0.0.0 askfm-like.pl +0.0.0.0 sledzememes.pl +0.0.0.0 wygrajgiftcard.pl +0.0.0.0 fifa17-coins.pl +0.0.0.0 monetypokemon.pl +0.0.0.0 winiphone7.pl +0.0.0.0 poke-zestaw.pl +0.0.0.0 sexstream.pl +0.0.0.0 twojapozyczka24h.pl +0.0.0.0 zapiszto.pl +0.0.0.0 odbierzpokemon.pl +0.0.0.0 file-folders.pl +0.0.0.0 fspys.pl +0.0.0.0 hdsport-stream.pl +0.0.0.0 insta-follow.pl +0.0.0.0 fb-colors.pl +0.0.0.0 skin-konkurs.pl +0.0.0.0 youraticles.pl +0.0.0.0 win-skin.pl +0.0.0.0 nikeswin.pl +0.0.0.0 win-cosmetics.pl +0.0.0.0 winshoess.pl +0.0.0.0 sg7e.pl +0.0.0.0 koszkosmetykii.pl +0.0.0.0 hd-films.pl +0.0.0.0 dieta-lux.pl +0.0.0.0 getsnaps.pl +0.0.0.0 riotpoints.pl +0.0.0.0 swiatpobran.pl +0.0.0.0 ustrzelskina.pl +0.0.0.0 twojepetycje.pl +0.0.0.0 you-vids.com +0.0.0.0 podgladamy.com +0.0.0.0 videos-base.pl +0.0.0.0 bazafilmowa.org +0.0.0.0 videtubs.pl +0.0.0.0 carking.pl +0.0.0.0 djcombox.pl +0.0.0.0 jamba.pl +0.0.0.0 i-payment.pl +0.0.0.0 cinex.pl +0.0.0.0 pomocdlalenki.pl +0.0.0.0 viewfile.pl +0.0.0.0 wygrajfinalfantasy.pl +0.0.0.0 wygrajmafia3.pl +0.0.0.0 wygrajgalaxy7edge.pl +0.0.0.0 wygrajhamak.pl +0.0.0.0 wygrajnamiot.pl +0.0.0.0 wygrajtrampoline.pl +0.0.0.0 doladuj-steam.pl +0.0.0.0 twojeartykuly.com +0.0.0.0 fastpay.pl +0.0.0.0 wygrane-konkurs.pl +0.0.0.0 wrzutkaplikow.pl +0.0.0.0 freehd.pl +0.0.0.0 bluedownload.pl +0.0.0.0 doladowanie.zx8.pl +0.0.0.0 fun2me.pl +0.0.0.0 buty-kupony.pl +0.0.0.0 r0ckethost.pl +0.0.0.0 getsnap.pl +0.0.0.0 winjordan.pl +0.0.0.0 steamadd.pl +0.0.0.0 sg7edges.pl +0.0.0.0 winpool.pl +0.0.0.0 pakietltes.pl +0.0.0.0 filmy-i-seriale.pl +0.0.0.0 platnkom.pl +0.0.0.0 nocnyseans.pl +0.0.0.0 zalukaj-online.pl +0.0.0.0 vod-plex.pl +0.0.0.0 ecda.pl +0.0.0.0 vodhd.pl +0.0.0.0 mega-movies.pl +0.0.0.0 darmowetesty.com +0.0.0.0 wygrania.com +0.0.0.0 streamuj.org +0.0.0.0 wiecejnetu.pl +0.0.0.0 yourhosts.pl +0.0.0.0 megadown.net +0.0.0.0 fifa17coins.com.pl +0.0.0.0 pobieraj-pliczki.pl +0.0.0.0 zaile-umrzesz.pl +0.0.0.0 mojewyspy.com +0.0.0.0 wygrajiiphone7.pl +0.0.0.0 herjacket.pl +0.0.0.0 wpisz-to.pl +0.0.0.0 pffn.pl +0.0.0.0 afisz24.eu +0.0.0.0 rankingkwiaciarni.pl +0.0.0.0 rzetelnebiuro.pl +0.0.0.0 rzetelneapteki.pl +0.0.0.0 rankingfryzjerow.pl +0.0.0.0 vitrigroup.pl +0.0.0.0 dowiecznosci.pl +0.0.0.0 pl.team +0.0.0.0 polecamhotel.pl +0.0.0.0 kadrymilosci.pl +0.0.0.0 zamow-najacze1.pl +0.0.0.0 vodlive.pl +0.0.0.0 odbierznagrody24.pl +0.0.0.0 gold-nagrody.pl +0.0.0.0 zapisujemy24.pl +0.0.0.0 torrenty-org.pl +0.0.0.0 herssneakers.pl +0.0.0.0 za-rejestruj.pl +0.0.0.0 wygrajfifa17.pl +0.0.0.0 zjesz-mnie.pl +0.0.0.0 konkurs-adidas.pl +0.0.0.0 todolize.com +0.0.0.0 mega-zakupy.com.pl +0.0.0.0 wielkikonkurs.pl +0.0.0.0 odbierz-50pl.pl +0.0.0.0 swietne-bony.pl +0.0.0.0 iphone7konkurs.pl +0.0.0.0 megastream.pl +0.0.0.0 glosowanie24.pl +0.0.0.0 youvids.pl +0.0.0.0 grajwygrywaj.pl +0.0.0.0 wygrajbattlefield.pl +0.0.0.0 streamgo.pl +0.0.0.0 fileup.com.pl +0.0.0.0 swietne-kolekcje.pl +0.0.0.0 zgarnijbuty.pl +0.0.0.0 sh4refiles.pl +0.0.0.0 friendlist.pl +0.0.0.0 pobierz-plik.com.pl +0.0.0.0 gigup.net +0.0.0.0 ktotopaczy.pl +0.0.0.0 konkursowe-smsy.pl +0.0.0.0 odbierzpokemonyy.pl +0.0.0.0 kliknij-wygraj.pl +0.0.0.0 odbieram-nagrode.com.pl +0.0.0.0 fcolors.pl +0.0.0.0 podgladaczek.pl +0.0.0.0 bony-drogeria.pl +0.0.0.0 download-file24.pl +0.0.0.0 e-erotic.pl +0.0.0.0 juicywin.pl +0.0.0.0 ksiazka-telefoniczna-online.pl +0.0.0.0 rzeczyzadarmo.pl +0.0.0.0 bony-drogerie.pl +0.0.0.0 czyjtonr.info +0.0.0.0 sharefile365.com +0.0.0.0 wlaczpodgladfejs.pl +0.0.0.0 air-max-wygrywamy.pl +0.0.0.0 buty-konkurs.pl +0.0.0.0 movieplaytubes.pl +0.0.0.0 hdsportstreams.pl +0.0.0.0 streams18plus.pl +0.0.0.0 streamershd.pl +0.0.0.0 24streamers.pl +0.0.0.0 foldersfiles.pl +0.0.0.0 filesfolders.pl +0.0.0.0 yourhost.pl +0.0.0.0 megadowner.pl +0.0.0.0 weebgazeta.pl +0.0.0.0 booksstar.pl +0.0.0.0 air-maxy.eu +0.0.0.0 yourarticle.pl +0.0.0.0 flycell.pl +0.0.0.0 viralsite.top +0.0.0.0 quizalot.me +0.0.0.0 zloty-konkurs.pl +0.0.0.0 dobrebony.pl +0.0.0.0 150-sekund.pl +0.0.0.0 golds-bon.pl +0.0.0.0 hothub.pl +0.0.0.0 vodplex.pl +0.0.0.0 deadwalking.tv +0.0.0.0 wygrajpokecoins.pl +0.0.0.0 v-shared.net +0.0.0.0 skinskonkurs.pl +0.0.0.0 sg6edges.pl +0.0.0.0 odbierzpokemony.pl +0.0.0.0 grabgame.pl +0.0.0.0 live2016.pl +0.0.0.0 winskinss.pl +0.0.0.0 playmobia.com +0.0.0.0 ollando.com +0.0.0.0 fszpieg.pl +0.0.0.0 qubble.com +0.0.0.0 mobiworld.biz +0.0.0.0 poke-coins.pl +0.0.0.0 quiz-fun.com.my +0.0.0.0 lifehackz.net +0.0.0.0 p0rnking.com +0.0.0.0 update-1.com +0.0.0.0 smsiaki.eu +0.0.0.0 ewygrane.pl +0.0.0.0 pokemon-go.ewygrane.pl +0.0.0.0 za10groszy.pl +0.0.0.0 trafisz.com +0.0.0.0 viewerapp.pl +0.0.0.0 pokemon-go-plus.pl +0.0.0.0 pokemonkonkurs.pl +0.0.0.0 fileengine.org +0.0.0.0 punkty-karne.pl +0.0.0.0 patqut.com +0.0.0.0 napiszsms.pl +0.0.0.0 slodkieklamstewka.eu +0.0.0.0 vv9.pl +0.0.0.0 globile.co +0.0.0.0 stream24h.pl +0.0.0.0 soft4click.com +0.0.0.0 crowdcube.pl +0.0.0.0 wygrajbasen.pl +0.0.0.0 i-cloudnet.com.pl +0.0.0.0 moviemega.pl +0.0.0.0 info-24h.pl +0.0.0.0 winiphone6.pl +0.0.0.0 wwygrana.pl +0.0.0.0 lays.wwygrana.pl +0.0.0.0 netsa.pl +0.0.0.0 doladowania.netsa.pl +0.0.0.0 www.specials.facebook.netsa.pl +0.0.0.0 elimit.pl +0.0.0.0 zlokalizujtelefon.pl +0.0.0.0 drpenis.pl +0.0.0.0 mobigra.com +0.0.0.0 ver.ovh +0.0.0.0 tapeciakowo.pl +0.0.0.0 onliine.pl +0.0.0.0 www.profitboosterapp.com +0.0.0.0 bardzociekawec.pl +0.0.0.0 mylead.eu +0.0.0.0 mylead.pl +0.0.0.0 mediavideo.pl +0.0.0.0 hotprizes.pl +0.0.0.0 mobsfun.com +0.0.0.0 cool4mob.com +0.0.0.0 zgarnijciuchy.pl +0.0.0.0 redcloud.com.pl +0.0.0.0 wygraj-quiz.pl +0.0.0.0 funsolo.net +0.0.0.0 mega-gry.com +0.0.0.0 www.plstation.pl +0.0.0.0 zgarnij.net +0.0.0.0 psialapka.pl +0.0.0.0 topfotki.pl +0.0.0.0 www.7218.pl +0.0.0.0 ogladajmecz.com.pl +0.0.0.0 hotcash.pro +0.0.0.0 fullplayer.pl +0.0.0.0 zalogowany.pl +0.0.0.0 kekuko.com +0.0.0.0 klubmp3.pl +0.0.0.0 jedz-eco.pl +0.0.0.0 zgarnijplik.pl +0.0.0.0 n-mobile.net +0.0.0.0 icloudnet.com.pl +0.0.0.0 kocham-cie.c0.pl +0.0.0.0 najlepszewrozby.pl +0.0.0.0 www.darmowe-wrozby.com +0.0.0.0 telefotki.pl +0.0.0.0 wygrajz5.pl +0.0.0.0 wygrajxboxone.eu +0.0.0.0 wygrajgtavpc.pl +0.0.0.0 wygraj-iphone6s.pl +0.0.0.0 wybierz-nagrode.pl +0.0.0.0 wotgold.pl +0.0.0.0 winscandy.pl +0.0.0.0 winbike.pl +0.0.0.0 wikingowie.tv +0.0.0.0 twojeartykuly.pl +0.0.0.0 twojdziennik.eu +0.0.0.0 tv-internetowa.pl +0.0.0.0 ftimer.pl +0.0.0.0 telewizja-internetowa24.pl +0.0.0.0 lightcloud.pl +0.0.0.0 szpiegfriend.pl +0.0.0.0 szpieg-sms.pl +0.0.0.0 strefasexlive.pl +0.0.0.0 streamoo.pl +0.0.0.0 hd-stream.pl +0.0.0.0 speedfile.info +0.0.0.0 skinykonkurs.pl +0.0.0.0 samsung6edge.pl +0.0.0.0 rejestrowanko.pl +0.0.0.0 pl.mevida.me +0.0.0.0 realybooks.com +0.0.0.0 profileszpieg.pl +0.0.0.0 podarunkowartvagd.pl +0.0.0.0 pobierzgo.pl +0.0.0.0 playmovie.pl +0.0.0.0 pl.wizappz.com +0.0.0.0 pl.tappsms.com +0.0.0.0 pl.mysafesmartphone.com +0.0.0.0 pamietnikiwampirow.tv +0.0.0.0 tvplayer24.pl +0.0.0.0 onlinecalyfilm.pl +0.0.0.0 odpowiadam.pl +0.0.0.0 oculusvsvr.pl +0.0.0.0 napisany.pl +0.0.0.0 mysocials.pl +0.0.0.0 motoawards.pl +0.0.0.0 momoxxio.com +0.0.0.0 megamovie.pl +0.0.0.0 lovelybox.eu +0.0.0.0 losujgre.pl +0.0.0.0 ktocieusunal.pl +0.0.0.0 getcosmetics.pl +0.0.0.0 kiedy-umrzesz.pl +0.0.0.0 klucze-csgo.pl +0.0.0.0 iqsfree.pl +0.0.0.0 instalike.pl +0.0.0.0 info-fitness.com +0.0.0.0 hostshare.pl +0.0.0.0 gangzalbani.pl +0.0.0.0 graotron.tv +0.0.0.0 hdfilms.pl +0.0.0.0 films-hd.pl +0.0.0.0 instafollow.pl +0.0.0.0 filmy.a33.pl +0.0.0.0 ero-tv.pl +0.0.0.0 emotikonfb.com +0.0.0.0 downloadfiles.pl +0.0.0.0 addsteam.pl +0.0.0.0 dieta-personalna.eu +0.0.0.0 diamondmakeup.pl +0.0.0.0 chron-telefon.com +0.0.0.0 cda-filmy.com.pl +0.0.0.0 bookstar.pl +0.0.0.0 askfmlike.pl +0.0.0.0 akademiagreya.pl +0.0.0.0 bemydate.mobi +0.0.0.0 as.dialog.si +0.0.0.0 pobraniowo.pl +0.0.0.0 nagroportal.pl +0.0.0.0 darmowe-gierki.eu +0.0.0.0 filmomaniacy.pl +0.0.0.0 24filmyonline.pl +0.0.0.0 www.iphone6plus.ewygrana.pl +0.0.0.0 www.smartwatch.ewygrana.pl +0.0.0.0 www.odszukaj-telefon.ienet.pl +0.0.0.0 www.sedoxo.ewygrana.pl +0.0.0.0 www.psc.ewygrana.pl +0.0.0.0 www.zlokalizuj.ienet.pl +0.0.0.0 www.doladowania.ienet.pl +0.0.0.0 www.operatorium.ienet.pl +0.0.0.0 www.google.ienet.pl +0.0.0.0 www.operator.ienet.pl +0.0.0.0 www.4download.ienet.pl +0.0.0.0 www.lays.ewygrana.pl +0.0.0.0 www.bmw.ewygrana.pl +0.0.0.0 www.granie-na-czekanie.ienet.pl +0.0.0.0 www.bizuteria.ewygrana.pl +0.0.0.0 www.kino.ewygrana.pl +0.0.0.0 www.justin-polska.ewygrana.pl +0.0.0.0 www.download.ienet.pl +0.0.0.0 www.sport-stream.ienet.pl +0.0.0.0 www.forsa.ienet.pl +0.0.0.0 www.testery.ewygrana.pl +0.0.0.0 www.minionki.ewygrana.pl +0.0.0.0 www.okulary3d.ewygrana.pl +0.0.0.0 www.samsung.ewygrana.pl +0.0.0.0 www.cloudown.ienet.pl +0.0.0.0 www.ciuchy.ewygrana.pl +0.0.0.0 www.dron.ewygrana.pl +0.0.0.0 www.test-iq.ienet.pl +0.0.0.0 www.new-balance.ewygrana.pl +0.0.0.0 www.bluzy.ewygrana.pl +0.0.0.0 www.bilety.ewygrana.pl +0.0.0.0 www.e-papierosy.ewygrana.pl +0.0.0.0 www.cs-go.ienet.pl +0.0.0.0 www.nike.ewygrana.pl +0.0.0.0 www.snapchat.ienet.pl +0.0.0.0 www.streams.ienet.pl +0.0.0.0 www.sexy-kamerki.ienet.pl +0.0.0.0 www.online-city.ienet.pl +0.0.0.0 konkurs6.com.pl +0.0.0.0 zegar-fb.pl +0.0.0.0 watchonline24.pl +0.0.0.0 filmonline.com.pl +0.0.0.0 www.twojprofil.eu +0.0.0.0 02k.pl +0.0.0.0 enagrody.com +0.0.0.0 looool.pl +0.0.0.0 nieogar.pl +0.0.0.0 pobieramy-pliki.pl +0.0.0.0 hdstream24.pl +0.0.0.0 hdvod24.pl +0.0.0.0 sharehosting.pl +0.0.0.0 webgazeta.pl +0.0.0.0 hdsportstream.pl +0.0.0.0 naszesprawdziany.pl +0.0.0.0 mediafile.pl +0.0.0.0 yotefiles.com +0.0.0.0 getgamecheats.com +0.0.0.0 instantdownloadsz.com +0.0.0.0 tinyfileshost.com +0.0.0.0 pokolorujfejs.eu +0.0.0.0 pokolorujfb.pl +0.0.0.0 welovetheapp.com +0.0.0.0 cs-goskiny.pl +0.0.0.0 1freesoftwareonline.com +0.0.0.0 5m4.pl +0.0.0.0 accessonline.biz +0.0.0.0 adeforsa.pl +0.0.0.0 adschimp.com +0.0.0.0 ajakbytak.pl +0.0.0.0 akazoo.pl +0.0.0.0 allmovies.com.pl +0.0.0.0 allplayer.pl +0.0.0.0 androidsecurityplus.com +0.0.0.0 appsdorado.com +0.0.0.0 areagame.pl +0.0.0.0 astrocash.org +0.0.0.0 bez-limitu.tv +0.0.0.0 booostphone.pl +0.0.0.0 boostphone.gq +0.0.0.0 buz2mobile.com +0.0.0.0 captainquizz.de +0.0.0.0 carambaba.com +0.0.0.0 centrumplay.pl +0.0.0.0 chirurdzy.tv +0.0.0.0 cinemastar.pl +0.0.0.0 colors-app.pl +0.0.0.0 cpagrip.com +0.0.0.0 daarmowe-doladowania.ovp.pl +0.0.0.0 dajemy50.pl +0.0.0.0 darmowe-doladowania-uniia.ovp.pl +0.0.0.0 darmowe-doladowania.net.pl +0.0.0.0 darmowe-doladowanie.pl +0.0.0.0 darmowe-sms.pl +0.0.0.0 darmowedoladowania24.pl +0.0.0.0 darmowedoladowania50zl.wordpress.com +0.0.0.0 darmowyminecraftpremium.jimdo.com +0.0.0.0 deletefriend.pl +0.0.0.0 doladowania-telefonu.pl +0.0.0.0 doladowania.joi.pl +0.0.0.0 doladowaniasteam.pl +0.0.0.0 doladowanie.za.pl +0.0.0.0 doladowanko.com +0.0.0.0 doladowanieplus24.pl +0.0.0.0 doladuj50.pev.pl +0.0.0.0 doladujfona.net +0.0.0.0 doladujfona.org +0.0.0.0 doladujsteam.pl +0.0.0.0 downloaded.pl +0.0.0.0 downloadfile.eu +0.0.0.0 e-doladowania.com.pl +0.0.0.0 edoladowanie.com.pl +0.0.0.0 efun.net.pl +0.0.0.0 enagrody24.pl +0.0.0.0 exeos.ws +0.0.0.0 extratesty.pl +0.0.0.0 ezdownloadpro.info +0.0.0.0 faceapp.eu +0.0.0.0 faceportal.pl +0.0.0.0 faceroute.pl +0.0.0.0 facetools.pl +0.0.0.0 fb-szpieg.com +0.0.0.0 fb-szpieg.com.pl +0.0.0.0 fb-szpieg.pl +0.0.0.0 fbpodgladacz.wordpress.com +0.0.0.0 fejs-podgladamy.pl +0.0.0.0 fejspejs.pl +0.0.0.0 fejspodgladamy.pl +0.0.0.0 fejstools.pl +0.0.0.0 file-share365.com +0.0.0.0 filebay.org +0.0.0.0 filecom.net +0.0.0.0 filecom.pl +0.0.0.0 filefolders.pl +0.0.0.0 filerom.com +0.0.0.0 filescloud.pl +0.0.0.0 filespeedy.net +0.0.0.0 filespeedy.org +0.0.0.0 fileston.com +0.0.0.0 filestrue.com +0.0.0.0 film-base.pl +0.0.0.0 filmline.pl +0.0.0.0 filmowabaza.pl +0.0.0.0 filmycda.pl +0.0.0.0 filmyhd-online24.pl +0.0.0.0 filmynet.eu +0.0.0.0 filmyonlinebezlimitu.pl +0.0.0.0 firecash.org +0.0.0.0 fotomonto.pl +0.0.0.0 freedoladowania.pl +0.0.0.0 freegiftcode.com +0.0.0.0 freehackpl.com +0.0.0.0 freeminecraft.cc +0.0.0.0 freeminecraftgiftcode.net +0.0.0.0 friendviewer.pl +0.0.0.0 fullhd.pl +0.0.0.0 fun2cell.net +0.0.0.0 futurepay.globway.eu +0.0.0.0 gamer24.pl +0.0.0.0 geek24.pl +0.0.0.0 getfilesfrom.net +0.0.0.0 getthis.pl +0.0.0.0 giftsofsnowdown.com +0.0.0.0 gigup.pl +0.0.0.0 giveskincs.nd.pl +0.0.0.0 goracenagrody.pl +0.0.0.0 goracezdobycze.pl +0.0.0.0 gosciefb.pl +0.0.0.0 gurucheats.com +0.0.0.0 hdplayer.pl +0.0.0.0 hdstream.pl +0.0.0.0 hdvod.pl +0.0.0.0 heheszky.pl +0.0.0.0 hostujmy.pl +0.0.0.0 hotapp.pl +0.0.0.0 hotawards.pl +0.0.0.0 i4you.pl +0.0.0.0 ilemasziq.pl +0.0.0.0 ilovemobi.com +0.0.0.0 info24online.pl +0.0.0.0 insanegift.com +0.0.0.0 islandmob.com +0.0.0.0 jamster.pl +0.0.0.0 kingprizes.pl +0.0.0.0 konkursy.de +0.0.0.0 ktodwiedza.pl +0.0.0.0 ktopodgladamnienafacebooku.wordpress.com +0.0.0.0 leadzupc.com +0.0.0.0 liversely.com +0.0.0.0 magadownloader.com +0.0.0.0 megabony.pl +0.0.0.0 megacloud.com.pl +0.0.0.0 megacloudz.net +0.0.0.0 megadown.us +0.0.0.0 megafotki.pl +0.0.0.0 minecraftdarmowygiftcode.wordpress.com +0.0.0.0 minecraftpro.pl +0.0.0.0 mobileaps.co +0.0.0.0 mobzones.com +0.0.0.0 moviecreator.pl +0.0.0.0 moviestarplanet-hacki.pl +0.0.0.0 moviestarplanethack.net.pl +0.0.0.0 moviestarplanethack.org.pl +0.0.0.0 moviestarplanethackandcheats.com +0.0.0.0 moviestarplanethackers.co +0.0.0.0 moviestarplanethackmasters.com +0.0.0.0 msphack.com.pl +0.0.0.0 msphack.pl +0.0.0.0 msphackonline.com +0.0.0.0 namierz-telefon.pl +0.0.0.0 needforfile.net +0.0.0.0 newclashgems.com +0.0.0.0 no-survey.com +0.0.0.0 nonstopvideos.pl +0.0.0.0 nowedoladowanie.pl +0.0.0.0 o5h.pl +0.0.0.0 obrazkovo.pl +0.0.0.0 odbierz-nagrody.pl +0.0.0.0 odwiedziny-fb.pl +0.0.0.0 onlyfiles.net +0.0.0.0 orange-kodzik.890m.com +0.0.0.0 otobony.pl +0.0.0.0 pakietylte.pl +0.0.0.0 playhd.pl +0.0.0.0 playnowunlimited.biz +0.0.0.0 playvod.tv +0.0.0.0 plikson.pl +0.0.0.0 plikson24.pl +0.0.0.0 pobierz-123.pl +0.0.0.0 pobierz123.pl +0.0.0.0 pobierzebooka.pl +0.0.0.0 pobierzplik.net +0.0.0.0 pobierzpliki.net +0.0.0.0 pobierzpliki.pl +0.0.0.0 podpiszpetycje.pl +0.0.0.0 pointhost.pl +0.0.0.0 polub.co +0.0.0.0 profbhack.com +0.0.0.0 promocyjne50zl.pl +0.0.0.0 rapidfile.pl +0.0.0.0 restricted.pl +0.0.0.0 riotpointslol.pl +0.0.0.0 safe-app.net +0.0.0.0 searchrapid.pl +0.0.0.0 share-files.eu +0.0.0.0 showmeflix.com +0.0.0.0 showsplash.com +0.0.0.0 skidrowcrack.com +0.0.0.0 skippyfile.com +0.0.0.0 smartawards.pl +0.0.0.0 sms4all.pl +0.0.0.0 socialpeeper.pl +0.0.0.0 softsmart.mobi +0.0.0.0 sprawdz-to.cba.pl +0.0.0.0 steam-wallet-gifts.com +0.0.0.0 steam-wallet-money.com +0.0.0.0 steamco.de +0.0.0.0 steamgrygive.lt.pl +0.0.0.0 stebox.pl +0.0.0.0 streams.net.pl +0.0.0.0 streamy.pl +0.0.0.0 subkiller.pl +0.0.0.0 subscribersgifts.com +0.0.0.0 supere.pl +0.0.0.0 superserwisy.pl +0.0.0.0 tapetkowo.pl +0.0.0.0 techawards.pl +0.0.0.0 techkonkurs.pl +0.0.0.0 teenzforfun.com +0.0.0.0 themovienation.com +0.0.0.0 tinyfilehost.com +0.0.0.0 transmisje24.net +0.0.0.0 truegamers.ga +0.0.0.0 twojanagroda.pl +0.0.0.0 upshare.org +0.0.0.0 upshare.pl +0.0.0.0 videobay.tv +0.0.0.0 videorazr.com +0.0.0.0 videostream.pl +0.0.0.0 videoway.net +0.0.0.0 videoway.pl +0.0.0.0 vimeoo.net +0.0.0.0 vod24.pl +0.0.0.0 vod24.tv +0.0.0.0 watchonline.pl +0.0.0.0 wentworth.pl +0.0.0.0 werwer.pl +0.0.0.0 wgrajka.pl +0.0.0.0 www.congratulations.website +0.0.0.0 www.darmowedoladowanko.pl +0.0.0.0 www.doladowywacztel.pl +0.0.0.0 www.eseansik.pl +0.0.0.0 www.fbony.pl +0.0.0.0 www.fcgol.pl +0.0.0.0 www.gifts-polska.pl +0.0.0.0 www.lolgifting.com +0.0.0.0 www.lolrpgifts.com +0.0.0.0 www.minecraftzadarmo.pl +0.0.0.0 www.mobilejmp.com +0.0.0.0 www.mobjmp.com +0.0.0.0 www.msp-hack.com +0.0.0.0 www.polubish.pl +0.0.0.0 www.rozrywkabox.com +0.0.0.0 www.rp4free.pl +0.0.0.0 secure4app.com +0.0.0.0 zmianakolorfuffb.pl +0.0.0.0 zmianakoloruffb.pl +0.0.0.0 wygrajpsc.eu +0.0.0.0 wygrajskiny.pl +0.0.0.0 wygrywa.pl +0.0.0.0 yourfiles.pl +0.0.0.0 yuppipuppy.com +0.0.0.0 zacne.eu +0.0.0.0 zarabiajwsieci.5v.pl +0.0.0.0 zasil-konto.tk +0.0.0.0 zasilkonto.cba.pl +0.0.0.0 zegarfb.pl +0.0.0.0 zgarnijdarmowedoladowanie.pl +0.0.0.0 zgarnijdoladowanie.pl +0.0.0.0 zgarnijfona.pl +0.0.0.0 zgarnijkonsole.pl +0.0.0.0 zlektorem.pl +0.0.0.0 znapisami.pl +0.0.0.0 zumodi.com +0.0.0.0 xn--fejs-podgldacz-kwb.pl +0.0.0.0 xn--rankingdentystw-8rb.pl +0.0.0.0 xn--dowiecznoci-mfc.pl +0.0.0.0 xn--kadrymioci-g0b51a.pl +0.0.0.0 xn--data-mierci-24-9xc.pl +0.0.0.0 xn--data-mierci-sprawdz-kud.pl +0.0.0.0 xn--data-mierci-ifc.net.pl +0.0.0.0 xn--data-mier-3db33g.pl +0.0.0.0 www.nagroda-sms.pl +0.0.0.0 bramka-sms-zadarmo.pl +0.0.0.0 bramka-sms-za-darmo.pl +0.0.0.0 www.najtanszegryjava.pl +0.0.0.0 www.centrumgierjava.pl +0.0.0.0 wapster.malutki.pl +0.0.0.0 www.gryjava.gsm.pl +0.0.0.0 gry-za-darmo.pl +0.0.0.0 www.diamentyatlantydy.pl +0.0.0.0 www.zwierzakiatakuja.pl +0.0.0.0 www.owocowebabelki.pl +0.0.0.0 www.cuksy.pl +0.0.0.0 www.grakreatorkamody.pl +0.0.0.0 www.superdetektor.pl +0.0.0.0 www.zywawoda.pl +0.0.0.0 www.test-zdrady-na-telefon.pl +0.0.0.0 www.odpicujfure.pl +0.0.0.0 beka.pl +0.0.0.0 kasa-sms.pl +0.0.0.0 pinkstar.pl +0.0.0.0 72933.pl +0.0.0.0 mobilertg.pl +0.0.0.0 www.wuwuzela-na-telefon.pl +0.0.0.0 www.arkanoidgra.pl +0.0.0.0 www.wojownicyzulicy.pl +0.0.0.0 www.pasjanspro.pl +0.0.0.0 misswapster.pl +0.0.0.0 www.magiczneruny.pl +0.0.0.0 www.operacjarzeka.pl +0.0.0.0 www.piekielnakuchnia.mobi +0.0.0.0 www.gradiamenty.pl +0.0.0.0 www.wykreslanka.com.pl +0.0.0.0 www.piardofon.pl +0.0.0.0 www.magicznytotem.pl +0.0.0.0 www.mojarybka.pl +0.0.0.0 www.trzepwleb.pl +0.0.0.0 www.bombkimikolaja.pl +0.0.0.0 iqmilionera.pl +0.0.0.0 wisielec.com +0.0.0.0 czarnypunktgra.pl +0.0.0.0 www.roslinkivsrobale.pl +0.0.0.0 striprtg.pl +0.0.0.0 www.superpyton.pl +0.0.0.0 www.dragondefense.pl +0.0.0.0 www.zlotyskok.pl +0.0.0.0 www.roslinkivsduchy.pl +0.0.0.0 www.grajwciemno.pl +0.0.0.0 www.drpacman.pl +0.0.0.0 www.super-barman.pl +0.0.0.0 www.data-smierci-na-telefon.pl +0.0.0.0 www.prezentofon.pl +0.0.0.0 www.magicznarybka.pl +0.0.0.0 www.wojnaczolgow.pl +0.0.0.0 www.mobisciaga.pl +0.0.0.0 www.footballmanager.com.pl +0.0.0.0 ptgame.eu +0.0.0.0 wapster.pl +0.0.0.0 sms-za-darmo.pl +0.0.0.0 bon-na-dzienkobiet2017.blogspot.com +0.0.0.0 bony-na-dzienkobiet2017.blogspot.com +0.0.0.0 e-bony-1500zl.blogspot.com +0.0.0.0 fbviewerv75.blogspot.com +0.0.0.0 kolorfacebooka24.blogspot.com +0.0.0.0 facebookcolors24.blogspot.com +0.0.0.0 szybki-przeglad.blogspot.com +0.0.0.0 zachomikowane.blogspot.com +0.0.0.0 bon1500.blogspot.com +0.0.0.0 natkaaa1998.blogspot.com +0.0.0.0 testowanietwojegoiq.blogspot.com +0.0.0.0 friendslistfbb.blogspot.com +0.0.0.0 5facebookfrienddel.blogspot.com +0.0.0.0 doladuj-tutaj.blogspot.com +0.0.0.0 doladowanie50pln.blogspot.com +0.0.0.0 ufc202-live.blogspot.com +0.0.0.0 5gb-internetu-pakiety.blogspot.com +0.0.0.0 pokemon2k16go.blogspot.com +0.0.0.0 cs-goskiny.blogspot.com +0.0.0.0 hackidomsp.blogspot.com +0.0.0.0 fejsopodgladacz.blogspot.com +0.0.0.0 doladowania50pln.blogspot.com +0.0.0.0 pokemon-go-pakiety.blogspot.com +0.0.0.0 zmienkolory.blogspot.com +0.0.0.0 euro2016-doladowanie.blogspot.com +0.0.0.0 pakiety-pokemon-go.blogspot.com +0.0.0.0 1kolorrfaceb.blogspot.com +0.0.0.0 fejs-colors.blogspot.com +0.0.0.0 internet-lte-5gb.blogspot.com +0.0.0.0 euro-doladowania.blogspot.com +0.0.0.0 blyskawiczne-doladowania.blogspot.com +0.0.0.0 snapchat-save.blogspot.com +0.0.0.0 facebookkoloruj.blogspot.com +0.0.0.0 kolorowy-fejs.blogspot.com +0.0.0.0 aktualizacjafacebooka.blogspot.com +0.0.0.0 facebookaplikacje.blogspot.com +0.0.0.0 sexfabryki.blogspot.com +0.0.0.0 nauczycielkasex.blogspot.com +0.0.0.0 szokgwalt.blogspot.com +0.0.0.0 infoszook24.blogspot.com +0.0.0.0 szokinfor24.blogspot.com +0.0.0.0 szokinfo247.blogspot.com +0.0.0.0 informacjeszok24.blogspot.com +0.0.0.0 sex-fabryka.blogspot.com +0.0.0.0 sexfabryka.blogspot.com +0.0.0.0 fabryka-chinczykow.blogspot.com +0.0.0.0 zgarnijnike.blogspot.com +0.0.0.0 polkawlesie.blogspot.com +0.0.0.0 wygrajnike.blogspot.com +0.0.0.0 fbpodglad.blogspot.com +0.0.0.0 facebook-kolor.blogspot.com +0.0.0.0 wideo-pryszcz.blogspot.com +0.0.0.0 odzyskajsnapy.blogspot.com +0.0.0.0 pryszcz-wideo.blogspot.com +0.0.0.0 twoj-test-iq.blogspot.com +0.0.0.0 czas-na-fb.blogspot.com +0.0.0.0 wilkzwallstreet.blogspot.com +0.0.0.0 facebokznajomi.blogspot.com +0.0.0.0 sspawdzktopodgglada.blogspot.com +0.0.0.0 sprawdzktopodgglada.blogspot.com +0.0.0.0 colors-app.blogspot.com +0.0.0.0 ustaw--tlo-fb.blogspot.com +0.0.0.0 face--viewer.blogspot.com +0.0.0.0 mojekumpele.blogspot.com +0.0.0.0 facebookkviewer.blogspot.com +0.0.0.0 motyw-fb.blogspot.com +0.0.0.0 zamiana-koloru.blogspot.com +0.0.0.0 wyciskanie-pryszcza.blogspot.com +0.0.0.0 fejspodgllaadacz.blogspot.com +0.0.0.0 fejspodglladacz.blogspot.com +0.0.0.0 podgladfacebokaa.blogspot.com +0.0.0.0 faceviewe.blogspot.com +0.0.0.0 fbcolor0156.blogspot.com +0.0.0.0 fbcolor0141.blogspot.com +0.0.0.0 fbcolor071.blogspot.com +0.0.0.0 fb-podglad5.blogspot.com +0.0.0.0 fb-podglad6.blogspot.com +0.0.0.0 zmienienie-koloru.blogspot.com +0.0.0.0 kolorowy-f-b.blogspot.com +0.0.0.0 kollory-fejsa.blogspot.com +0.0.0.0 koloryfejsa.blogspot.com +0.0.0.0 test--na--iq.blogspot.com +0.0.0.0 zobaczktopodgladaa.blogspot.com +0.0.0.0 datasmierci01.blogspot.com +0.0.0.0 suczki-mlode.blogspot.com +0.0.0.0 dataasmierci.blogspot.com +0.0.0.0 okaleczenie15laatkii.blogspot.com +0.0.0.0 okaleczona15--latka.blogspot.com +0.0.0.0 okaleczona15-llatka.blogspot.com +0.0.0.0 okaleczon15-lattka.blogspot.com +0.0.0.0 wypad3k0.blogspot.com +0.0.0.0 kolloryfejsa.blogspot.com +0.0.0.0 ustaw-tlo.blogspot.com +0.0.0.0 fb-kolor.blogspot.com +0.0.0.0 zmienkolorfejsazafree.blogspot.com +0.0.0.0 zmien-motyw.blogspot.com +0.0.0.0 zmien-koolor.blogspot.com +0.0.0.0 darmowygenerator.blogspot.com +0.0.0.0 darmowedoladowania25.blogspot.com +0.0.0.0 programyfb.blogspot.com +0.0.0.0 narzedzia-fb.blogspot.com +0.0.0.0 generatorfreegames.blogspot.com +0.0.0.0 najprzydatniejsze.blogspot.com +0.0.0.0 ads.pubmatic.com +0.0.0.0 gads.pubmatic.com +0.0.0.0 pubads.g.doubleclick.net +0.0.0.0 securepubads.g.doubleclick.net +0.0.0.0 spclient.wg.spotify.com +0.0.0.0 www.googletagservices.com +0.0.0.0 100.1qingdao.com +0.0.0.0 100lend.in.net +0.0.0.0 7minuteworkout.com +0.0.0.0 www.7minuteworkout.com +0.0.0.0 acillst.dissilal.com +0.0.0.0 addshoppers.com +0.0.0.0 www.addshoppers.com +0.0.0.0 affiliatecashpile.go2jump.org +0.0.0.0 amasuv.in.net +0.0.0.0 amazingarcinias.com +0.0.0.0 www.amazingarcinias.com +0.0.0.0 amazingnewphonetips.xyz +0.0.0.0 www.amazingnewphonetips.xyz +0.0.0.0 amoxicillin-amoxil-buy.com +0.0.0.0 www.amoxicillin-amoxil-buy.com +0.0.0.0 amzingsuv.in.net +0.0.0.0 app.mailersend.co +0.0.0.0 arklighting.co +0.0.0.0 www.arklighting.co +0.0.0.0 autoinfo.yourautoupdatedinfo.xyz +0.0.0.0 bathtubb.in.net +0.0.0.0 beamark.noiselolpainoff.com +0.0.0.0 beaverday.biz +0.0.0.0 www.beaverday.biz +0.0.0.0 bechloredu.bid +0.0.0.0 www.bechloredu.bid +0.0.0.0 bigpayout.go2jump.org +0.0.0.0 blhind.amazingarcinias.com +0.0.0.0 blind.nomosrewrinkles.com +0.0.0.0 bqktgpxo.secureonlinesale.ru +0.0.0.0 brandedleadgeneration.com +0.0.0.0 www.brandedleadgeneration.com +0.0.0.0 burnfudd.in.net +0.0.0.0 buylasix-online.net +0.0.0.0 www.buylasix-online.net +0.0.0.0 cgyw7.greatnewsafetyfeatures.xyz +0.0.0.0 charitywithoutborders.com +0.0.0.0 www.charitywithoutborders.com +0.0.0.0 clicktshirtprinting.co.uk +0.0.0.0 www.clicktshirtprinting.co.uk +0.0.0.0 compitin.in.net +0.0.0.0 creditauthpagev3.info +0.0.0.0 www.creditauthpagev3.info +0.0.0.0 creditorrs.bid +0.0.0.0 www.creditorrs.bid +0.0.0.0 credomobile.com +0.0.0.0 www.credomobile.com +0.0.0.0 csgu1.yourlatestphonespecials.xyz +0.0.0.0 csug8.updatedonlinepestinfo.xyz +0.0.0.0 csuh5.newshoppingbonuspoints.xyz +0.0.0.0 dandingo.go2jump.org +0.0.0.0 defenderxtactical.com +0.0.0.0 www.defenderxtactical.com +0.0.0.0 dentalcarre.us +0.0.0.0 www.dentalcarre.us +0.0.0.0 dhwe4.greatnewonlinebonus.xyz +0.0.0.0 disristal.dissilal.com +0.0.0.0 dissilal.com +0.0.0.0 www.dissilal.com +0.0.0.0 divisioncore.com +0.0.0.0 www.divisioncore.com +0.0.0.0 dmwt9.onlinephonenewtips.xyz +0.0.0.0 domainseoorders.com +0.0.0.0 www.domainseoorders.com +0.0.0.0 ebaychristmas.com +0.0.0.0 www.ebaychristmas.com +0.0.0.0 eggis.noiselolpainoff.com +0.0.0.0 email.otherinbox.com +0.0.0.0 enviolista.info +0.0.0.0 www.enviolista.info +0.0.0.0 eractchr.xyz +0.0.0.0 www.eractchr.xyz +0.0.0.0 erectile.bid +0.0.0.0 www.erectile.bid +0.0.0.0 exostiastics.xyz +0.0.0.0 www.exostiastics.xyz +0.0.0.0 faucett.bid +0.0.0.0 www.faucett.bid +0.0.0.0 fitnesshealthreporter.com +0.0.0.0 www.fitnesshealthreporter.com +0.0.0.0 freeforums.org +0.0.0.0 www.freeforums.org +0.0.0.0 fucensoned.dissilal.com +0.0.0.0 gagfi.com +0.0.0.0 www.gagfi.com +0.0.0.0 generic-onlinenexium.net +0.0.0.0 www.generic-onlinenexium.net +0.0.0.0 genericnexium40mg.net +0.0.0.0 www.genericnexium40mg.net +0.0.0.0 gilletteraz.in.net +0.0.0.0 go2jump.org +0.0.0.0 www.go2jump.org +0.0.0.0 greatnewonlinebonus.xyz +0.0.0.0 www.greatnewonlinebonus.xyz +0.0.0.0 greatnewsafetyfeatures.xyz +0.0.0.0 www.greatnewsafetyfeatures.xyz +0.0.0.0 gtradersoft.com +0.0.0.0 www.gtradersoft.com +0.0.0.0 gusw2.amazingnewphonetips.xyz +0.0.0.0 healthinfo.healthyspecialnewinfo.rocks +0.0.0.0 healthyspecialnewinfo.rocks +0.0.0.0 www.healthyspecialnewinfo.rocks +0.0.0.0 heartrevitalized.com +0.0.0.0 www.heartrevitalized.com +0.0.0.0 highestmrket.bid +0.0.0.0 www.highestmrket.bid +0.0.0.0 hike.nomosrewrinkles.com +0.0.0.0 hudsonleadership.com +0.0.0.0 www.hudsonleadership.com +0.0.0.0 idobioit.ru +0.0.0.0 www.idobioit.ru +0.0.0.0 janeaustenjoy.com +0.0.0.0 www.janeaustenjoy.com +0.0.0.0 jnwky.misterjoy.ru +0.0.0.0 keeping.amazingarcinias.com +0.0.0.0 lazyprofits.go2jump.org +0.0.0.0 link.credomobile.com +0.0.0.0 lyha.neurotrascending.com +0.0.0.0 mealbonusnewonlinetips.eu +0.0.0.0 www.mealbonusnewonlinetips.eu +0.0.0.0 medtecchina.com +0.0.0.0 www.medtecchina.com +0.0.0.0 misterjoy.ru +0.0.0.0 www.misterjoy.ru +0.0.0.0 mkt.repairproducts.net +0.0.0.0 motoren.ru +0.0.0.0 www.motoren.ru +0.0.0.0 mydreamdegree.com +0.0.0.0 www.mydreamdegree.com +0.0.0.0 nennrxuc.ru +0.0.0.0 www.nennrxuc.ru +0.0.0.0 nero-us.com +0.0.0.0 www.nero-us.com +0.0.0.0 neurotrascending.com +0.0.0.0 www.neurotrascending.com +0.0.0.0 newcams.youronlinenewcamtips.xyz +0.0.0.0 newgllasses.xyz +0.0.0.0 www.newgllasses.xyz +0.0.0.0 newlights.greatnewonlinebonus.xyz +0.0.0.0 newphone.onlinephonenewtips.xyz +0.0.0.0 newphone.yourlatestphonespecials.xyz +0.0.0.0 newphonespecialtips.eu +0.0.0.0 www.newphonespecialtips.eu +0.0.0.0 newreward.newshoppingbonuspoints.xyz +0.0.0.0 news.nero-emea.com +0.0.0.0 news.nero-us.com +0.0.0.0 newshoppingbonuspoints.xyz +0.0.0.0 www.newshoppingbonuspoints.xyz +0.0.0.0 newspecialyachttips.eu +0.0.0.0 www.newspecialyachttips.eu +0.0.0.0 noiselolpainoff.com +0.0.0.0 www.noiselolpainoff.com +0.0.0.0 nomosrewrinkles.com +0.0.0.0 www.nomosrewrinkles.com +0.0.0.0 novastarled.com +0.0.0.0 www.novastarled.com +0.0.0.0 nwllockkk.xyz +0.0.0.0 www.nwllockkk.xyz +0.0.0.0 offerscience.go2jump.org +0.0.0.0 online-buyprednisone.com +0.0.0.0 www.online-buyprednisone.com +0.0.0.0 onlineloan-personal.net +0.0.0.0 www.onlineloan-personal.net +0.0.0.0 onlinenewgreecetrips.xyz +0.0.0.0 www.onlinenewgreecetrips.xyz +0.0.0.0 onlinephonenewtips.xyz +0.0.0.0 www.onlinephonenewtips.xyz +0.0.0.0 organicwelnesssale.ru +0.0.0.0 www.organicwelnesssale.ru +0.0.0.0 otherinbox.com +0.0.0.0 www.otherinbox.com +0.0.0.0 www.oz-offers.com +0.0.0.0 pcbutts1-therealtruth.blogspot.com +0.0.0.0 pestcontrol.updatedonlinepestinfo.xyz +0.0.0.0 phoneupdatednewsetup.eu +0.0.0.0 www.phoneupdatednewsetup.eu +0.0.0.0 playlott.com +0.0.0.0 www.playlott.com +0.0.0.0 pngjmz.misterjoy.ru +0.0.0.0 printdating.ru +0.0.0.0 www.printdating.ru +0.0.0.0 profitsitesbiz.com +0.0.0.0 www.profitsitesbiz.com +0.0.0.0 prrotocoll.xyz +0.0.0.0 www.prrotocoll.xyz +0.0.0.0 quickloanbank.com +0.0.0.0 www.quickloanbank.com +0.0.0.0 rank3w.com +0.0.0.0 www.rank3w.com +0.0.0.0 redhotfreebies.co.uk +0.0.0.0 www.redhotfreebies.co.uk +0.0.0.0 rentalspecialnewupdates.eu +0.0.0.0 www.rentalspecialnewupdates.eu +0.0.0.0 repairproducts.net +0.0.0.0 www.repairproducts.net +0.0.0.0 reverse-mortgage-info.com +0.0.0.0 www.reverse-mortgage-info.com +0.0.0.0 reversemortg.xyz +0.0.0.0 www.reversemortg.xyz +0.0.0.0 reverzz.in.net +0.0.0.0 safarispecialtravelinfo.eu +0.0.0.0 www.safarispecialtravelinfo.eu +0.0.0.0 safetytips.greatnewsafetyfeatures.xyz +0.0.0.0 sdke9.youronlinenewcamtips.xyz +0.0.0.0 secureonlinesale.ru +0.0.0.0 www.secureonlinesale.ru +0.0.0.0 securesignupoffers.net +0.0.0.0 www.securesignupoffers.net +0.0.0.0 securesignupoffers.org +0.0.0.0 www.securesignupoffers.org +0.0.0.0 sendingmarketing.com +0.0.0.0 www.sendingmarketing.com +0.0.0.0 sghu.misterjoy.ru +0.0.0.0 sgme3.yourautoupdatedinfo.xyz +0.0.0.0 shbkxgof.organicwelnesssale.ru +0.0.0.0 snws8.healthyspecialnewinfo.rocks +0.0.0.0 stsoftware.biz +0.0.0.0 www.stsoftware.biz +0.0.0.0 tekindustri.upnjatim.ac.id +0.0.0.0 thatinvite.top +0.0.0.0 www.thatinvite.top +0.0.0.0 thedatingconference.com +0.0.0.0 www.thedatingconference.com +0.0.0.0 tinaborg.com +0.0.0.0 www.tinaborg.com +0.0.0.0 tinee.amazingarcinias.com +0.0.0.0 titinc.nomosrewrinkles.com +0.0.0.0 www.tkdami.net +0.0.0.0 ujdmziqh.printdating.ru +0.0.0.0 unionleisurewear.com +0.0.0.0 www.unionleisurewear.com +0.0.0.0 updatedearningnewinfo.eu +0.0.0.0 www.updatedearningnewinfo.eu +0.0.0.0 updatedonlinepestinfo.xyz +0.0.0.0 www.updatedonlinepestinfo.xyz +0.0.0.0 va.tawk.to +0.0.0.0 vitamxx.in.net +0.0.0.0 vntanktransport.com +0.0.0.0 www.vntanktransport.com +0.0.0.0 vp5.sudohost.com.br +0.0.0.0 vydoxtrial.com +0.0.0.0 www.vydoxtrial.com +0.0.0.0 vydoxx.xyz +0.0.0.0 www.vydoxx.xyz +0.0.0.0 walkintubb.bid +0.0.0.0 www.walkintubb.bid +0.0.0.0 whiteboxin.com +0.0.0.0 www.whiteboxin.com +0.0.0.0 wmte3.onlinenewgreecetrips.xyz +0.0.0.0 xoxcenter.com +0.0.0.0 www.xoxcenter.com +0.0.0.0 xyrjtq.misterjoy.ru +0.0.0.0 yourautoupdatedinfo.xyz +0.0.0.0 www.yourautoupdatedinfo.xyz +0.0.0.0 yourhealthynewupdates.eu +0.0.0.0 www.yourhealthynewupdates.eu +0.0.0.0 yourlatestphonespecials.xyz +0.0.0.0 www.yourlatestphonespecials.xyz +0.0.0.0 youronlinenewcamtips.xyz +0.0.0.0 www.youronlinenewcamtips.xyz +0.0.0.0 yourphone.amazingnewphonetips.xyz +0.0.0.0 yourtravel.onlinenewgreecetrips.xyz +0.0.0.0 000free.us +0.0.0.0 007angels.com +0.0.0.0 00author.com +0.0.0.0 00go.com +0.0.0.0 00it.com +0.0.0.0 00webcams.com +0.0.0.0 0912701309f8ce.com +0.0.0.0 0c47f8422d3f.com +0.0.0.0 0n-line.tv +0.0.0.0 100dollars-seo.com +0.0.0.0 101billion.com +0.0.0.0 101flag.ru +0.0.0.0 101imagedatabase.com +0.0.0.0 101lesbian.xyz +0.0.0.0 101raccoon.ru +0.0.0.0 108shot.com +0.0.0.0 10bet.com +0.0.0.0 11235813.webzdarma.cz +0.0.0.0 11pikachu.ru +0.0.0.0 123any.com +0.0.0.0 123cha.com +0.0.0.0 123kuma.com +0.0.0.0 123locker.com +0.0.0.0 12bet.com +0.0.0.0 12masterov.com +0.0.0.0 1314dh.com +0.0.0.0 160117rd.xyz +0.0.0.0 178evakuator178.ru +0.0.0.0 1-99seo.com +0.0.0.0 1adult.com +0.0.0.0 1bet.com +0.0.0.0 1-free-share-buttons.com +0.0.0.0 1hwy.com +0.0.0.0 1j7740kd.website +0.0.0.0 1kinobig.ru +0.0.0.0 1millionusd.xyz +0.0.0.0 1pamm.ru +0.0.0.0 1stat.ru +0.0.0.0 2015god.org +0.0.0.0 2020iscoming.info +0.0.0.0 202ch.com +0.0.0.0 214jaluwobapef.cf +0.0.0.0 24videos.tv +0.0.0.0 24x7-server-support.site +0.0.0.0 256bit.by +0.0.0.0 2728fb936f0.com +0.0.0.0 273-fz.ru +0.0.0.0 28n2gl3wfyb0.ru +0.0.0.0 2ads.co.uk +0.0.0.0 2drittel.de +0.0.0.0 2girls1cup-free.com +0.0.0.0 2itech.ru +0.0.0.0 2kata.ru +0.0.0.0 2nt.ru +0.0.0.0 2rich4bitches.com +0.0.0.0 300richmond.co.nz +0.0.0.0 34.gs +0.0.0.0 3dracergames.com +0.0.0.0 3-letter-domains.net +0.0.0.0 3rbseyes.com +0.0.0.0 3weekdiet.com +0.0.0.0 3xforum.ro +0.0.0.0 40cg.com +0.0.0.0 45en.ru +0.0.0.0 45tahunkhongguan.com +0.0.0.0 4istoshop.com +0.0.0.0 4pp13.com +0.0.0.0 4rent.ru +0.0.0.0 4replicawatch.net +0.0.0.0 4ureyesonly.com +0.0.0.0 4webmasters.com +0.0.0.0 51.la +0.0.0.0 51unlim.ru +0.0.0.0 55wmz.ru +0.0.0.0 57883.net +0.0.0.0 5elementov.ru +0.0.0.0 5forex.ru +0.0.0.0 5i2.net +0.0.0.0 5kstore.com +0.0.0.0 5u.com +0.0.0.0 66cpwgln.space +0.0.0.0 6hopping.com +0.0.0.0 72-news.com +0.0.0.0 76brighton.co.uk +0.0.0.0 777-club.ru +0.0.0.0 7fon.ru +0.0.0.0 7makemoneyonline.com +0.0.0.0 7wind.ru +0.0.0.0 7yue.org +0.0.0.0 7zap.com +0.0.0.0 83net.jp +0.0.0.0 8558l.jobs.net +0.0.0.0 883zy.com +0.0.0.0 888.com +0.0.0.0 8gold.com +0.0.0.0 8kisses.eu +0.0.0.0 8si.ru +0.0.0.0 8xv8.com +0.0.0.0 98oi.ru +0.0.0.0 999webdesign.com +0.0.0.0 9icmzvn6.website +0.0.0.0 9med.net +0.0.0.0 a342ae9750004b14b55f7310eff0ab65.com +0.0.0.0 aa08daf7e13b6345e09e92f771507fa5f4.com +0.0.0.0 aa14ab57a3339c4064bd9ae6fad7495b5f.com +0.0.0.0 aa625d84f1587749c1ab011d6f269f7d64.com +0.0.0.0 aa81bf391151884adfa3dd677e41f94be1.com +0.0.0.0 aa8780bb28a1de4eb5bff33c28a218a930.com +0.0.0.0 aa8b68101d388c446389283820863176e7.com +0.0.0.0 aa9bd78f328a6a41279d0fad0a88df1901.com +0.0.0.0 aa9d046aab36af4ff182f097f840430d51.com +0.0.0.0 aaa38852e886ac4af1a3cff9b47cab6272.com +0.0.0.0 aab94f698f36684c5a852a2ef272e031bb.com +0.0.0.0 aac500b7a15b2646968f6bd8c6305869d7.com +0.0.0.0 aac52006ec82a24e08b665f4db2b5013f7.com +0.0.0.0 aad1f4acb0a373420d9b0c4202d38d94fa.com +0.0.0.0 aadroid.net +0.0.0.0 aarbur.com +0.0.0.0 abbanreddy.com +0.0.0.0 abbp1.website +0.0.0.0 abclauncher.com +0.0.0.0 abctoppictures.net +0.0.0.0 abiente.ru +0.0.0.0 abovetherivernc.com +0.0.0.0 absolutelyanalog.com +0.0.0.0 absolute-s.ru +0.0.0.0 absugars.com +0.0.0.0 abtasty.com +0.0.0.0 abusora.com +0.0.0.0 abwa.tk +0.0.0.0 academia-nsk.org +0.0.0.0 acads.net +0.0.0.0 accessoires-mode.in +0.0.0.0 acc.eu.org +0.0.0.0 acgs.tk +0.0.0.0 acheterviagrafr24.com +0.0.0.0 acortarurl.es +0.0.0.0 actionnooz.com +0.0.0.0 activepr.ru +0.0.0.0 actremage.com +0.0.0.0 actulite.com +0.0.0.0 adamoads.com +0.0.0.0 adcash.com +0.0.0.0 add-add.men +0.0.0.0 addbin.men +0.0.0.0 addblueoff.com.ua +0.0.0.0 addray.pro +0.0.0.0 addtoadd.men +0.0.0.0 adelly.bg +0.0.0.0 adexprts.com +0.0.0.0 adf.ly +0.0.0.0 adhome.biz +0.0.0.0 adidas.frwebs.fr +0.0.0.0 adimmix.com +0.0.0.0 adinterax.com +0.0.0.0 adktrailmap.com +0.0.0.0 adloads.com +0.0.0.0 adloads.net +0.0.0.0 admanaerofoil.com +0.0.0.0 adman.gr +0.0.0.0 adman.se +0.0.0.0 admatic.com.tr +0.0.0.0 adminshop.com +0.0.0.0 admitad.com +0.0.0.0 adnotbad.com +0.0.0.0 adpremium.org +0.0.0.0 adrenalin-stk.ru +0.0.0.0 ads-cool.pro +0.0.0.0 adserver-e7.com +0.0.0.0 adservme.com +0.0.0.0 adsfresh.men +0.0.0.0 ads.gold +0.0.0.0 adsland.men +0.0.0.0 adssafeprotected.com +0.0.0.0 ads-seo.men +0.0.0.0 ads.tremorhub.com +0.0.0.0 adtech.de +0.0.0.0 adtech.fr +0.0.0.0 adtech.us +0.0.0.0 adtiger.tk +0.0.0.0 adult3dgames.com +0.0.0.0 adultactioncam.com +0.0.0.0 adultfriendfinder.com +0.0.0.0 adultfullhd.com +0.0.0.0 adultgalls.com +0.0.0.0 adultmeetonline.info +0.0.0.0 adultnet.in +0.0.0.0 adultwebhosting.info +0.0.0.0 adventureparkcostarica.com +0.0.0.0 adverster.com +0.0.0.0 advertisingtag.net +0.0.0.0 advocatemsk.ru +0.0.0.0 advokateg.ru +0.0.0.0 ad-words.ru +0.0.0.0 adzerg.com +0.0.0.0 adzpower.com +0.0.0.0 aero2.ru +0.0.0.0 aerogo.com +0.0.0.0 affiliate-fr.com +0.0.0.0 affordablewebsitesandmobileapps.com +0.0.0.0 afmuseum.com +0.0.0.0 afora.ru +0.0.0.0 afslankpillen2017nl.eu +0.0.0.0 agahinameh.com +0.0.0.0 agardomains.com +0.0.0.0 agecheckadult.com +0.0.0.0 aghanyna.com +0.0.0.0 agreda.pluto.ro +0.0.0.0 agroeconom.kz +0.0.0.0 agysya.ru +0.0.0.0 air-edem.ru +0.0.0.0 airlandsea.info +0.0.0.0 airmaxshoes-2016.com +0.0.0.0 akama.com +0.0.0.0 akita.kz +0.0.0.0 aktivator-windows10.blogspot.com +0.0.0.0 akuhni.by +0.0.0.0 akusherok.ru +0.0.0.0 akvamaster.dp.ua +0.0.0.0 alarmobninsk.ru +0.0.0.0 albamargroup.com +0.0.0.0 alekseevec.ru +0.0.0.0 alert-fdm.xyz +0.0.0.0 alert-fjg.xyz +0.0.0.0 alert-hgd.xyz +0.0.0.0 alert-jdh.xyz +0.0.0.0 alessandraleone.com +0.0.0.0 alfa9.com +0.0.0.0 alfa-img.com +0.0.0.0 alfa-medosmotr.ru +0.0.0.0 alfapro.ru +0.0.0.0 alf-img.com +0.0.0.0 algerianembassy.co.in +0.0.0.0 alibestsale.com +0.0.0.0 alienwheel.es +0.0.0.0 alienwheels.de +0.0.0.0 aliexpresscashback.club +0.0.0.0 alif-ba-ta.com +0.0.0.0 alive-ua.com +0.0.0.0 all4invest.info +0.0.0.0 all4invest.ru +0.0.0.0 allboard.xobor.de +0.0.0.0 allcredits.su +0.0.0.0 alldubai.biz +0.0.0.0 allesohnegirls.net +0.0.0.0 allforminecraft.ru +0.0.0.0 allknow.info +0.0.0.0 allkrim.com +0.0.0.0 allnews24.in +0.0.0.0 allnews.md +0.0.0.0 all-number.com +0.0.0.0 alloysteel.ru +0.0.0.0 allpdfmags.net +0.0.0.0 allsilver925.co.il +0.0.0.0 all-streaming-media.com +0.0.0.0 alltheviews.com +0.0.0.0 allwidewallpapers.com +0.0.0.0 allwomen.info +0.0.0.0 aloofly.com +0.0.0.0 alot.com +0.0.0.0 alphacarolinas.com +0.0.0.0 alphaforum.ru +0.0.0.0 alphahoverboards.com +0.0.0.0 alpharma.net +0.0.0.0 alpinism.ru +0.0.0.0 alveris.ru +0.0.0.0 alyeskaresort.com +0.0.0.0 am15.net +0.0.0.0 amanda-porn.ga +0.0.0.0 amateurgalls.com +0.0.0.0 amateurlivechat.org +0.0.0.0 amateurmatch.com +0.0.0.0 amazon-seo-service.com +0.0.0.0 amehdaily.com +0.0.0.0 amigobulls.com +0.0.0.0 amoi.tn +0.0.0.0 amospalla.es +0.0.0.0 am-se.com +0.0.0.0 amt-k.ru +0.0.0.0 amyfoxfitness.com +0.0.0.0 anaksma.info +0.0.0.0 anal-acrobats.com +0.0.0.0 analytics-ads.xyz +0.0.0.0 anapa-inns.ru +0.0.0.0 an-donut.com +0.0.0.0 andpolice.com +0.0.0.0 android4fun.org +0.0.0.0 androids-store.com +0.0.0.0 android-style.com +0.0.0.0 android-systems.ru +0.0.0.0 android-vsem.org +0.0.0.0 angigreene.com +0.0.0.0 animali.deagostinipassion.it +0.0.0.0 animebox.com.ua +0.0.0.0 anime.dougasouko.com +0.0.0.0 anlimebel.kiev.ua +0.0.0.0 anonymizeme.pro +0.0.0.0 anticrawler.org +0.0.0.0 anti-virus-removal.info +0.0.0.0 aosexkontakte.net +0.0.0.0 aosheng-tech.com +0.0.0.0 apartmentbay.ru +0.0.0.0 apartmentratings.com +0.0.0.0 apartment.ru +0.0.0.0 apccargo.com +0.0.0.0 apiadanaknet-a.akamaihd.net +0.0.0.0 apiallgeniusinfo-a.akamaihd.net +0.0.0.0 apiappenableinfo-a.akamaihd.net +0.0.0.0 apibatbrowsecom-a.akamaihd.net +0.0.0.0 apibetweenlinesn-a.akamaihd.net +0.0.0.0 apibrowsesmartne-a.akamaihd.net +0.0.0.0 apidiamondatanet-a.akamaihd.net +0.0.0.0 apifasterlightin-a.akamaihd.net +0.0.0.0 apiholdingmypage-a.akamaihd.net +0.0.0.0 apiitsthirteende-a.akamaihd.net +0.0.0.0 apilinkswiftco-a.akamaihd.net +0.0.0.0 apimegabrowsebiz-a.akamaihd.net +0.0.0.0 apimossnetinfo-a.akamaihd.net +0.0.0.0 apimountainbikei-a.akamaihd.net +0.0.0.0 apioasisspacenet-a.akamaihd.net +0.0.0.0 apioutoboxnet-a.akamaihd.net +0.0.0.0 apiportalmorecom-a.akamaihd.net +0.0.0.0 apishops.ru +0.0.0.0 apispringsmartne-a.akamaihd.net +0.0.0.0 apiwebwebgetcom-a.akamaihd.net +0.0.0.0 apiwoodensealcom-a.akamaihd.net +0.0.0.0 apparel-offer.com +0.0.0.0 apper.de +0.0.0.0 appfixing.space +0.0.0.0 appleid-verification.com +0.0.0.0 applicationg29.com +0.0.0.0 approved.su +0.0.0.0 appsaurus.com +0.0.0.0 apxeo.info +0.0.0.0 aquarium-pro.ru +0.0.0.0 arabgirls.adultgalls.com +0.0.0.0 arabsexxxtube.com +0.0.0.0 arabseyes.com +0.0.0.0 aramaicmedia.org +0.0.0.0 arate.ru +0.0.0.0 arcadepages.com +0.0.0.0 arcadeplayhouse.com +0.0.0.0 architecturebest.com +0.0.0.0 arclk.net +0.0.0.0 arcteryxsale.online +0.0.0.0 arcteryxstore.online +0.0.0.0 arenanews.com.ua +0.0.0.0 arenda-avtoprokat-krasnodar.ru +0.0.0.0 arendakvartir.kz +0.0.0.0 arendas.net +0.0.0.0 arendatora.ru +0.0.0.0 arenda-yeisk.ru +0.0.0.0 arendovalka.xyz +0.0.0.0 arewater.com +0.0.0.0 arkartex.ru +0.0.0.0 arraty.altervista.org +0.0.0.0 artavenuegardenstudios.com +0.0.0.0 artdeko.info +0.0.0.0 artefakct.com +0.0.0.0 articlesdirectoryme.info +0.0.0.0 artpicso.com +0.0.0.0 aruplighting.com +0.0.0.0 arvut.org +0.0.0.0 as5000.com +0.0.0.0 asacopaco.tk +0.0.0.0 ascat.porn +0.0.0.0 asdfg.pro +0.0.0.0 asia-forum.ru +0.0.0.0 asiengirls.net +0.0.0.0 asmxsatadriverin.aircus.com +0.0.0.0 asophoto.com +0.0.0.0 asrv-a.akamaihd.net +0.0.0.0 asrv-a.akamoihd.net +0.0.0.0 asrvrep-a.akamaihd.net +0.0.0.0 asrvvv-a.akamaihd.net +0.0.0.0 asscenihotosidea.blogspot.com +0.0.0.0 asscenihotosidea.blogspot.co.za +0.0.0.0 asseenontvonline.ru +0.0.0.0 asseenontv.ru +0.0.0.0 astrochicks.com +0.0.0.0 atelielembrancaqueencanta.com.br +0.0.0.0 atlant-auto.info +0.0.0.0 atlasvkusov.ru +0.0.0.0 atleticpharm.org +0.0.0.0 atley.eu.pn +0.0.0.0 atmagroup.ru +0.0.0.0 atovh.local-finders.com +0.0.0.0 audiobangout.com +0.0.0.0 ausergrubhof.info +0.0.0.0 auspolice.com +0.0.0.0 aussie-prizes.com +0.0.0.0 australia-opening-times.com +0.0.0.0 auto4style.ru +0.0.0.0 autoblogger24.info +0.0.0.0 autobudpostach.club +0.0.0.0 autochoixspinelli.com +0.0.0.0 autogrep.ru +0.0.0.0 autoloans.com +0.0.0.0 autolombard-krasnodar.ru +0.0.0.0 auto-moto-elektronika.cz +0.0.0.0 autonew.biz +0.0.0.0 autoplate.info +0.0.0.0 autorn.ru +0.0.0.0 auto.rusvile.lt +0.0.0.0 autotop.com.ua +0.0.0.0 autotrends.today +0.0.0.0 autoua.top +0.0.0.0 autovideobroadcast.com +0.0.0.0 autowebmarket.com.ua +0.0.0.0 auto-zapchasti.org +0.0.0.0 availit.weebly.com +0.0.0.0 avek.ru +0.0.0.0 aversis.net +0.0.0.0 aviapanda.ru +0.0.0.0 aviav.co +0.0.0.0 aviav.eu +0.0.0.0 aviav.org +0.0.0.0 aviav.ru +0.0.0.0 aviav.ru.com +0.0.0.0 avirasecureserver.com +0.0.0.0 avitocars.ru +0.0.0.0 avkzarabotok.com +0.0.0.0 avkzarabotok.info +0.0.0.0 avon-novosib.ru +0.0.0.0 avon-severozapad.ru +0.0.0.0 avon-ukraine.com +0.0.0.0 avramstroy.ru +0.0.0.0 avtoarenda.by +0.0.0.0 avtochehli.by +0.0.0.0 avtocredit-legko.ru +0.0.0.0 avtointeres.ru +0.0.0.0 avtolombard-krasnodar.com +0.0.0.0 avtolombard-krasnodar.ru +0.0.0.0 avtovolop.ru +0.0.0.0 awency.com +0.0.0.0 axbocz.net +0.0.0.0 ayakino.net +0.0.0.0 ayanaspa.com +0.0.0.0 ayerbo.xhost.ro +0.0.0.0 azadnegar.com +0.0.0.0 azartmix.com +0.0.0.0 azartniy-bonus.com +0.0.0.0 azazaporn.com +0.0.0.0 azazu.ru +0.0.0.0 azbaseimages.net +0.0.0.0 azbukadiets.ru +0.0.0.0 azbukafree.com +0.0.0.0 azbuka-mo.ru +0.0.0.0 azlex.uz +0.0.0.0 azte.ch +0.0.0.0 babespcs.com +0.0.0.0 babieca.com +0.0.0.0 bablonow.ru +0.0.0.0 babyguns.ru +0.0.0.0 backgroundpictures.net +0.0.0.0 backlink4u.net +0.0.0.0 backlinkwatch.com +0.0.0.0 backuperwebcam.weebly.com +0.0.0.0 bad-stars.net +0.0.0.0 baersaratov.ru +0.0.0.0 bag77.ru +0.0.0.0 bagcionderlab.com +0.0.0.0 bagsonsale.online +0.0.0.0 baixar-musicas-gratis.com +0.0.0.0 baksman.com +0.0.0.0 baladur.ru +0.0.0.0 bala.getenjoyment.net +0.0.0.0 balitouroffice.com +0.0.0.0 balkanfarma.org +0.0.0.0 balkanfarma.ru +0.0.0.0 balla-boo.se +0.0.0.0 balois.worldbreak.com +0.0.0.0 bambi.ck.ua +0.0.0.0 bamo.xsl.pt +0.0.0.0 banan.tv +0.0.0.0 bangla-chat-uk-paralud.ga +0.0.0.0 bankcrediti.ru +0.0.0.0 banki76.ru +0.0.0.0 bankiem.pl +0.0.0.0 bankofthewext.com +0.0.0.0 bannerads.de +0.0.0.0 bannerbank.ru +0.0.0.0 bannerconnect.net +0.0.0.0 bannerpower.com +0.0.0.0 bannerspace.com +0.0.0.0 bannerswap.com +0.0.0.0 bannertesting.com +0.0.0.0 barbourjackets.online +0.0.0.0 bard-real.com.ua +0.0.0.0 barnfurnituremart.com +0.0.0.0 basedecor.ru +0.0.0.0 bashtime.ru +0.0.0.0 basisches-wasser.net +0.0.0.0 batanga.net +0.0.0.0 battlecarnival.su +0.0.0.0 bausparen.bz.it +0.0.0.0 bazaronline24.ru +0.0.0.0 bbtec.net +0.0.0.0 bdsmgalls.net +0.0.0.0 beachpics.com +0.0.0.0 beamfall.info +0.0.0.0 beauby.ru +0.0.0.0 beauty-bracelet.com +0.0.0.0 beauty-clinic.ru +0.0.0.0 beauty-things.com +0.0.0.0 becuo.com +0.0.0.0 bedandbreakfast.com +0.0.0.0 bedcapdealers.com +0.0.0.0 belinka.com.ua +0.0.0.0 belinvestdom.by +0.0.0.0 belstaffstore.online +0.0.0.0 benchmarkcommunications.co.uk +0.0.0.0 bensbargains.net +0.0.0.0 berdasovivan.ru +0.0.0.0 berlininsl.com +0.0.0.0 berrymall.ru +0.0.0.0 best-businessman.ru +0.0.0.0 bestbuy.ca +0.0.0.0 bestcalovebracelet.cn +0.0.0.0 bestchoice.cf +0.0.0.0 bestcurs.org +0.0.0.0 bestdooz.com +0.0.0.0 bestdraws.com +0.0.0.0 bestempresas.es +0.0.0.0 bestimagecoollibrary.com +0.0.0.0 bestkfiledxd.cf +0.0.0.0 bestmarriages.com +0.0.0.0 bestmobilityscooterstoday.com +0.0.0.0 bestofferswalkmydogouteveryday.gq +0.0.0.0 bestofpicture.com +0.0.0.0 bestofupload.info +0.0.0.0 bestplacetobuyeriacta.jw.lt +0.0.0.0 bestpriceninja.com +0.0.0.0 best-seo-offer.com +0.0.0.0 best-seo-software.xyz +0.0.0.0 best-seo-solution.com +0.0.0.0 bestssaker.com +0.0.0.0 bestwebsiteawards.com +0.0.0.0 bestwebsitesawards.com +0.0.0.0 bestwrinklecreamnow.com +0.0.0.0 bet365.com +0.0.0.0 beta.hotkeys.com +0.0.0.0 betonka.pro +0.0.0.0 bet-prognoz.com +0.0.0.0 betterhdporn.com +0.0.0.0 betterscooter.com +0.0.0.0 betune.onlinewebshop.net +0.0.0.0 betwinservice.com +0.0.0.0 beyan.host.sk +0.0.0.0 bezcmexa.ru +0.0.0.0 bezsporno.ru +0.0.0.0 beztuberkuleza.ru +0.0.0.0 bfz.biz +0.0.0.0 bharatdefencekavach.com +0.0.0.0 bidbuy.co.kr +0.0.0.0 bidr.trellian.com +0.0.0.0 bif-ru.info +0.0.0.0 bigames.online +0.0.0.0 big-boards.info +0.0.0.0 bigcities.org +0.0.0.0 biglistofwebsites.com +0.0.0.0 biketank.ga +0.0.0.0 bikini-image.com +0.0.0.0 bildsuche.ru +0.0.0.0 billiard-classic.com.ua +0.0.0.0 bimatoprost-careprost.com +0.0.0.0 bimatoprost-careprost.com.ua +0.0.0.0 binaryoptionscops.info +0.0.0.0 bingo8888.com +0.0.0.0 binomo.kz +0.0.0.0 bioca.org +0.0.0.0 bio-japan.net +0.0.0.0 bio-market.kz +0.0.0.0 bio-optomarket.ru +0.0.0.0 bioscorp.ru +0.0.0.0 bio.trade-jp.net +0.0.0.0 birzha-truda.eu +0.0.0.0 bitcoinpile.com +0.0.0.0 bitcoins-live.ru +0.0.0.0 bitporno.sx +0.0.0.0 bizcheapjerseyswholesalechina.com +0.0.0.0 bizfly.info +0.0.0.0 biznesluxe.ru +0.0.0.0 biznesrealnost.ru +0.0.0.0 biznesschat.net +0.0.0.0 bizru.info +0.0.0.0 bjanshee.ru +0.0.0.0 bkns.vn +0.0.0.0 blackcurranthumidifiers.site +0.0.0.0 blackhatworth.com +0.0.0.0 blackle.com +0.0.0.0 blackwitchcraft.ru +0.0.0.0 blagovest-med.ru +0.0.0.0 blavia.00author.com +0.0.0.0 blockworld.ru +0.0.0.0 blog.f00kclan.de +0.0.0.0 bloggedporn.com +0.0.0.0 bloggen.be +0.0.0.0 bloggerads.net +0.0.0.0 bloggers.nl +0.0.0.0 blogig.org +0.0.0.0 blog.koorg.ru +0.0.0.0 blogos.kz +0.0.0.0 blogporn.in +0.0.0.0 blogqpot.com +0.0.0.0 blog.remote-computer.de +0.0.0.0 blogs.rediff.com +0.0.0.0 blogster.com +0.0.0.0 blogtotal.de +0.0.0.0 blog.yam.com +0.0.0.0 bloke.com +0.0.0.0 bluejays-jerseys.us +0.0.0.0 bluerobot.info +0.0.0.0 bluesman.nu +0.0.0.0 board.f00d.de +0.0.0.0 bobba.dzaba.com +0.0.0.0 bobinoz.com +0.0.0.0 bochemit.com.ua +0.0.0.0 bocoarchives.org +0.0.0.0 bodybuilding-shop.biz +0.0.0.0 boleznikogi.com +0.0.0.0 bolezniorganov.ru +0.0.0.0 bolitgorlo.net +0.0.0.0 bombla.org +0.0.0.0 bongacams.com +0.0.0.0 bongiornos.info +0.0.0.0 bonux.nextview.ru +0.0.0.0 boobsimge.com +0.0.0.0 bookmaker-bet.com +0.0.0.0 bookmark4you.com +0.0.0.0 boole.onlinewebshop.net +0.0.0.0 boostmyppc.com +0.0.0.0 bosman.pluto.ro +0.0.0.0 bouda.kvalitne.cz +0.0.0.0 bpro1.top +0.0.0.0 brains2.biz +0.0.0.0 brainsandeggs.blogspot.com +0.0.0.0 brainxs.us +0.0.0.0 braip.com.br +0.0.0.0 brakehawk.com +0.0.0.0 brandov.ru +0.0.0.0 break-the-chains.com +0.0.0.0 breastaugmentation.co.za +0.0.0.0 brendbutik.ru +0.0.0.0 brewdom.ru +0.0.0.0 brg8.com +0.0.0.0 brimstonehillfortress.org +0.0.0.0 bristolhostel.com +0.0.0.0 bristolhotel.com +0.0.0.0 bristolhotel.com.ua +0.0.0.0 brk-rti.ru +0.0.0.0 brokergid.ru +0.0.0.0 bronzeaid-a.akamaihd.net +0.0.0.0 brothers-smaller.ru +0.0.0.0 browsepulse-a.akamaihd.net +0.0.0.0 browserprotecter.com +0.0.0.0 brus.city +0.0.0.0 brus-vsem.ru +0.0.0.0 bryansk.zrus.org +0.0.0.0 bscodecs.com +0.0.0.0 b-styles.xyz +0.0.0.0 btc4u.ru +0.0.0.0 btvn.ru +0.0.0.0 buchananshardware.com +0.0.0.0 budpost.com.ua +0.0.0.0 bugof.gq +0.0.0.0 buigas.00it.com +0.0.0.0 builtwith.com +0.0.0.0 bum.com.ru +0.0.0.0 bumskontakte.org +0.0.0.0 bupropion-sr-150-mg.us +0.0.0.0 buqayy0.livejournal.com +0.0.0.0 buqyxa.rincian.info +0.0.0.0 burger-imperia.com +0.0.0.0 burkesales.com +0.0.0.0 burn-fat.ga +0.0.0.0 business-made-fun.com +0.0.0.0 businesxxl.com +0.0.0.0 bus-offer.com +0.0.0.0 buttons-for-website.com +0.0.0.0 buttons-for-your-website.com +0.0.0.0 buyantiviralwp.com +0.0.0.0 buybest1.biz +0.0.0.0 buy-cheap-online.info +0.0.0.0 buy-cheap-pills-order-online.com +0.0.0.0 buyessay3.blogspot.ru +0.0.0.0 buyessaynow.biz +0.0.0.0 buyessayonline19.blogspot.ru +0.0.0.0 buy-forum.ru +0.0.0.0 buyfriend.ru +0.0.0.0 buyhoverboard.com +0.0.0.0 buyk.host.sk +0.0.0.0 buy-loft.ru +0.0.0.0 buynorxx.com +0.0.0.0 buypanicdisorderpill.com +0.0.0.0 buyparajumpers.online +0.0.0.0 buypillsorderonline.com +0.0.0.0 buypuppies.ca +0.0.0.0 buyscabiescream.com +0.0.0.0 buytizanidineonline.blogspot.com +0.0.0.0 buytizanidineonlinenoprescription.blogspot.com +0.0.0.0 buyviagraa.blogspot.com +0.0.0.0 buzzsumo.com +0.0.0.0 buzzurl.jp +0.0.0.0 bvlgaribracelet.xyz +0.0.0.0 bvlgariring.xyz +0.0.0.0 bycontext.com +0.0.0.0 byme.se +0.0.0.0 bytimedance.ru +0.0.0.0 bzero1jewelry.net +0.0.0.0 cablecar.us +0.0.0.0 cacheimages.com +0.0.0.0 cactussoft.biz +0.0.0.0 cakics.com +0.0.0.0 calc-for-credit.ru +0.0.0.0 calcularpagerank.com +0.0.0.0 californianews.cf +0.0.0.0 callawaygolfoutlet.online +0.0.0.0 callawaygolfstore.online +0.0.0.0 callejondelpozo.es +0.0.0.0 callmd5map.com +0.0.0.0 call-of-duty.info +0.0.0.0 calstaterealty.us +0.0.0.0 calvet.altervista.org +0.0.0.0 camdenmemorials.com +0.0.0.0 camdolls.com +0.0.0.0 cam-kontakte.org +0.0.0.0 candcstuccoandstone.com +0.0.0.0 candelluxsklep.pl +0.0.0.0 candiceloves.us +0.0.0.0 cand.jp +0.0.0.0 candlehandmade.com +0.0.0.0 candycrushshop.com +0.0.0.0 candy-glam-hp.com +0.0.0.0 candypeople.se +0.0.0.0 candytiner.com +0.0.0.0 canoncdriverq3.pen.io +0.0.0.0 canphotograph.com +0.0.0.0 canrole.com +0.0.0.0 canyougethighofftizanidine.blogspot.com +0.0.0.0 canzoni.ru +0.0.0.0 capture-room.com +0.0.0.0 carabela.com.do +0.0.0.0 carapics.com +0.0.0.0 cardiosport.com.ua +0.0.0.0 cardsharp1.ru +0.0.0.0 cardul.ru +0.0.0.0 carfax.com.ua +0.0.0.0 carina-sy.de +0.0.0.0 carloans.com +0.0.0.0 carsdined.org +0.0.0.0 carsoncitypizza.com +0.0.0.0 carson.getenjoyment.net +0.0.0.0 carsplate.com +0.0.0.0 cartechnic.ru +0.0.0.0 cartierbraceletsreplica.pw +0.0.0.0 cartierbracelet.xyz +0.0.0.0 cartierlove2u.com +0.0.0.0 cartierlove2u.xyz +0.0.0.0 cartierlovebraceletreplica.xyz +0.0.0.0 cartierlovebracelet.xyz +0.0.0.0 cartierloveringreplica.xyz +0.0.0.0 cartierlovestore.xyz +0.0.0.0 cartierlove.xyz +0.0.0.0 cartierreplica.pw +0.0.0.0 cartierreplica.top +0.0.0.0 cartierring.xyz +0.0.0.0 cartiertrinity.xyz +0.0.0.0 cartierwatch.xyz +0.0.0.0 casablancamanor.co.za +0.0.0.0 cashkitten-a.akamaihd.net +0.0.0.0 cashonads.com +0.0.0.0 casinorewards.info +0.0.0.0 castingbank.ru +0.0.0.0 catalogs-parts.com +0.0.0.0 cayado.snn.gr +0.0.0.0 cbcseward.com +0.0.0.0 cbox.ws +0.0.0.0 cbys.tk +0.0.0.0 ccbill.com +0.0.0.0 cdncash.com +0.0.0.0 cdncash.net +0.0.0.0 cdncash.org +0.0.0.0 cejewelry.xyz +0.0.0.0 celebsopics.com +0.0.0.0 c-english.ru +0.0.0.0 cenokos.ru +0.0.0.0 cenoval.ru +0.0.0.0 centraletermice.us +0.0.0.0 centrdebut.ru +0.0.0.0 centre-indigo.org.ua +0.0.0.0 centrumcoachingu.com +0.0.0.0 ceotrk.com +0.0.0.0 cercacamion.it +0.0.0.0 cete.ru +0.0.0.0 cezartabac.ro +0.0.0.0 cfacarrosserie74.com +0.0.0.0 cfcl.co.uk +0.0.0.0 cfjump.com +0.0.0.0 cfsrating.sonicwall.com +0.0.0.0 c-gainsbourg.com +0.0.0.0 cgi2.nintendo.co.jp +0.0.0.0 charmstroy.info +0.0.0.0 chastnoeporno.com +0.0.0.0 chat.ru +0.0.0.0 chatseo.com +0.0.0.0 chcu.net +0.0.0.0 cheapbarbour.online +0.0.0.0 cheapbelstaff.online +0.0.0.0 cheapcigarettesc.info +0.0.0.0 cheapestjerseys-wholesale.com +0.0.0.0 cheapjerseysa.com +0.0.0.0 cheapjerseysap.com +0.0.0.0 cheapjerseysbizwholesale.us +0.0.0.0 cheapjerseysfootballshop.com +0.0.0.0 cheapmarmot.online +0.0.0.0 cheapmoncler.pw +0.0.0.0 cheapmoncler.win +0.0.0.0 cheappatagonia.online +0.0.0.0 cheap-pills-norx.com +0.0.0.0 cheapsergiorossi.online +0.0.0.0 cheatcode-lita12.rhcloud.com +0.0.0.0 checkhit.com +0.0.0.0 checkm8.com +0.0.0.0 checkpagerank.net +0.0.0.0 checktext.org +0.0.0.0 chee-by.biz +0.0.0.0 cheerlemage.com +0.0.0.0 chelnytruck.ru +0.0.0.0 chelyabinsk.xrus.org +0.0.0.0 cherrypointplace.ca +0.0.0.0 cherubinimobili.it +0.0.0.0 chiblackhawks-jerseys.com +0.0.0.0 chimiver.info +0.0.0.0 chinacheapelitejerseys.com +0.0.0.0 chinaelitecheapjerseys.com +0.0.0.0 chinajerseyswholesalecoupons.com +0.0.0.0 chinese-amezon.com +0.0.0.0 chiptuninger.com +0.0.0.0 chlooe.com +0.0.0.0 choosecuisine.com +0.0.0.0 christianlouboutinoutlet.win +0.0.0.0 christianlouboutinreplica.pw +0.0.0.0 christianlouboutinsaleonline.us +0.0.0.0 christianlouboutinsaleoutletonline.us +0.0.0.0 christianlouboutinshoes.xyz +0.0.0.0 cialisovercounteratwalmartusa.com +0.0.0.0 cialiswithoutadoctor.net +0.0.0.0 cigarpass.com +0.0.0.0 cineacademy.ru +0.0.0.0 cinemaenergy-hd.ru +0.0.0.0 ciproandtizanidine.blogspot.com +0.0.0.0 citizenclsdriveri7.pen.io +0.0.0.0 cityadspix.com +0.0.0.0 citysecurity.nu +0.0.0.0 ci.ua +0.0.0.0 civilwartheater.com +0.0.0.0 clarithromycin500mg.com +0.0.0.0 clash-clans.ru +0.0.0.0 classicakuhni.ru +0.0.0.0 classiquebijoux.ru +0.0.0.0 claytransformations.info +0.0.0.0 clean-virus-mac.com +0.0.0.0 clevernt.com +0.0.0.0 clgrmgds.com +0.0.0.0 clickaider.com +0.0.0.0 clickhype.com +0.0.0.0 clickpapa.com +0.0.0.0 clickso.com +0.0.0.0 clicksor.com +0.0.0.0 clicksor.net +0.0.0.0 clicksotrk.com +0.0.0.0 clinchimage.com +0.0.0.0 clipartnew.com +0.0.0.0 clips.ua.ac.be +0.0.0.0 clmforexeu.com +0.0.0.0 cl.s7.exct.net +0.0.0.0 club-musics.ru +0.0.0.0 club-samodelkin.ru +0.0.0.0 cmd.kz +0.0.0.0 cmhomestayagency.com +0.0.0.0 cntravelre.com +0.0.0.0 cobaltpro.ru +0.0.0.0 cocyq.inwtrade.com +0.0.0.0 coderstate.com +0.0.0.0 codq.info +0.0.0.0 codysbbq.com +0.0.0.0 cognitiveseo.com +0.0.0.0 coindirect.io +0.0.0.0 coinsspb.com +0.0.0.0 coldfilm.ru +0.0.0.0 colehaanoutlet.store +0.0.0.0 collegeessay19.blogspot.ru +0.0.0.0 cometorussia.net +0.0.0.0 comissionka.net +0.0.0.0 communisave.co.za +0.0.0.0 community.allhiphop.com +0.0.0.0 com-onlinesupport.host +0.0.0.0 com-onlinesupport.site +0.0.0.0 compliance-checker.info +0.0.0.0 compucelunlock.net +0.0.0.0 com-secure.download +0.0.0.0 com-supportcenter.website +0.0.0.0 concealthyself.com +0.0.0.0 conciergegroup.org +0.0.0.0 concordexoticrentals.com +0.0.0.0 confib.ifmo.ru +0.0.0.0 connectionstrenth.com +0.0.0.0 conocer-sanabria.com +0.0.0.0 constantaservice.net +0.0.0.0 construmac.com.mx +0.0.0.0 contextualyield.com +0.0.0.0 cookielawblog.wordpress.com +0.0.0.0 cookingmeat.ru +0.0.0.0 coolbar.pro +0.0.0.0 coolgramgoods.com +0.0.0.0 coolingoods.com +0.0.0.0 coolinstagoods.com +0.0.0.0 cool-wedding.net +0.0.0.0 coop-gamers.ru +0.0.0.0 copblock.org +0.0.0.0 copyrightclaims.org +0.0.0.0 cosmetic.donna7753191.ru +0.0.0.0 cottageofgrace.com +0.0.0.0 cougfan.info +0.0.0.0 counciltally.com +0.0.0.0 countbertwistdisp26.soup.io +0.0.0.0 counter.bloke.com +0.0.0.0 counterbot.com +0.0.0.0 countercrazy.com +0.0.0.0 counter.yadro.ru +0.0.0.0 country-chic.ru +0.0.0.0 covadhosting.biz +0.0.0.0 covetnica.com +0.0.0.0 cowblog.fr +0.0.0.0 cpabegins.ru +0.0.0.0 craftburg.ru +0.0.0.0 crafthubs.com +0.0.0.0 craftinsta.ru +0.0.0.0 cranly.net +0.0.0.0 crazyboost.pro +0.0.0.0 crd.clan.su +0.0.0.0 creams.makeforum.eu +0.0.0.0 creativehutindia.com +0.0.0.0 creditmoney.com.ua +0.0.0.0 crest3d.ru +0.0.0.0 crest-poloski.ru +0.0.0.0 crests.com +0.0.0.0 crests.org +0.0.0.0 crirussian.ru +0.0.0.0 crystalslot.com +0.0.0.0 cscwtalkto.site +0.0.0.0 cubook.supernew.org +0.0.0.0 cubs-jerseys.us +0.0.0.0 culturevie.info +0.0.0.0 cupday.com +0.0.0.0 curatorimages.com +0.0.0.0 custodieva.ru +0.0.0.0 customboxes4less.com +0.0.0.0 customcatchcan.com +0.0.0.0 customchocolate.business-for-home.com +0.0.0.0 customcollegeessays.net +0.0.0.0 custom-electric-guitar.com +0.0.0.0 customergrowthsystems.com +0.0.0.0 customerguru.in +0.0.0.0 custom-product-labels.com +0.0.0.0 customsua.com.ua +0.0.0.0 cutalltheshit.com +0.0.0.0 cvety24.by +0.0.0.0 cxpromote.com +0.0.0.0 cyclobenzaprinevstizanidine.blogspot.com +0.0.0.0 cymbaltaandtizanidine.blogspot.com +0.0.0.0 cypernhuset.se +0.0.0.0 cyprusbuyproperties.com +0.0.0.0 cyse.tk +0.0.0.0 czat.wp.pl +0.0.0.0 dailyrank.net +0.0.0.0 dailystrength.org +0.0.0.0 dairyindia.in +0.0.0.0 dalavia.ru +0.0.0.0 damedingel.ya.ru +0.0.0.0 dame-ns.kz +0.0.0.0 danashop.ru +0.0.0.0 danceuniverse.ru +0.0.0.0 dandiyabeats.in +0.0.0.0 dangphoto.trade +0.0.0.0 danschawbel.com +0.0.0.0 daooda.com +0.0.0.0 daptravel.com +0.0.0.0 darkbooks.org +0.0.0.0 darmebel.com.ua +0.0.0.0 darodar.com +0.0.0.0 dataloading.net +0.0.0.0 data-mining.tk +0.0.0.0 data.vtc.pw +0.0.0.0 datsun-do.com +0.0.0.0 davebestdeals.com +0.0.0.0 daydream-studio.ru +0.0.0.0 daymusam.com +0.0.0.0 day-news.info +0.0.0.0 dbmkfhqk.bloger.index.hr +0.0.0.0 dcj-nn.ru +0.0.0.0 ddlmega.net +0.0.0.0 ddospanel.com +0.0.0.0 ddpills.com +0.0.0.0 deadlinkchecker.com +0.0.0.0 dealighted.com +0.0.0.0 dealitright.click +0.0.0.0 dealright.click +0.0.0.0 dealwifi.com +0.0.0.0 deanmoore.ie +0.0.0.0 dear-diary.ru +0.0.0.0 decenttools.com +0.0.0.0 decorationspcs.com +0.0.0.0 degerlund.net +0.0.0.0 dekoration.us +0.0.0.0 dekorkeramik.ru +0.0.0.0 delayreferat.ru +0.0.0.0 delfin-aqua.com.ua +0.0.0.0 dellalimov.com +0.0.0.0 deluxedumps.com +0.0.0.0 demenageur.com +0.0.0.0 dengi-pod-zalog-nedvizhimosti.ru +0.0.0.0 deniven.1bb.ru +0.0.0.0 den-noch24.ru +0.0.0.0 dentalpearls.com.au +0.0.0.0 depositfiles-porn.ga +0.0.0.0 descargar-musica-gratis.net +0.0.0.0 designdevise.com +0.0.0.0 design-ideas.info +0.0.0.0 design-lands.ru +0.0.0.0 destinationrealestate.com +0.0.0.0 detalizaciya-tut.biz +0.0.0.0 detective01.ru +0.0.0.0 detki-opt.ru +0.0.0.0 detskie-konstruktory.ru +0.0.0.0 detskie-zabavi.ru +0.0.0.0 devochki.top +0.0.0.0 de.zapmeta.com +0.0.0.0 dfiles.me +0.0.0.0 dfwu1013.info +0.0.0.0 dfwu1019.info +0.0.0.0 diarioaconcagua.com +0.0.0.0 dickssportinggoods.com +0.0.0.0 diegolopezcastan.com +0.0.0.0 diesel-parts28.ru +0.0.0.0 dieswaene.com +0.0.0.0 diffbot.com +0.0.0.0 digest-project.ru +0.0.0.0 digilander.libero.it +0.0.0.0 digitalfaq.com +0.0.0.0 digital-sale.su +0.0.0.0 digital-video-processing.com +0.0.0.0 dignitasdata.se +0.0.0.0 dikx.gdn +0.0.0.0 dildofotzen.net +0.0.0.0 diminishedvalueoforegon.com +0.0.0.0 dimkino.ru +0.0.0.0 dinkolove.ya.ru +0.0.0.0 dipstar.org +0.0.0.0 directrev.com +0.0.0.0 discountbarbour.online +0.0.0.0 discountliv.com +0.0.0.0 discovertreasure-a.akamaihd.net +0.0.0.0 discovertreasurenow.com +0.0.0.0 dispo.de +0.0.0.0 disruptingdinnerparties.com +0.0.0.0 distver.ru +0.0.0.0 div.as +0.0.0.0 divatraffic.com +0.0.0.0 diy-handmade-ideas.com +0.0.0.0 djekxa.ru +0.0.0.0 djonwatch.ru +0.0.0.0 djstools.com +0.0.0.0 dktr.ru +0.0.0.0 dkvorota.ru +0.0.0.0 dlya-android.org +0.0.0.0 dms-sw.ru +0.0.0.0 dnepr-avtospar.com.ua +0.0.0.0 dnepropetrovsk.mistr-x.org +0.0.0.0 dneprsvet.com.ua +0.0.0.0 docstoc.com +0.0.0.0 doctissimo.fr +0.0.0.0 doctormakarova.ru +0.0.0.0 dodlive.mil +0.0.0.0 doeco.ru +0.0.0.0 dogbreedspicture.net +0.0.0.0 dogoimage.com +0.0.0.0 dogsrun.net +0.0.0.0 dojki-hd.com +0.0.0.0 dokfilms.net +0.0.0.0 doktoronline.no +0.0.0.0 dokumentalkino.net +0.0.0.0 domain2008.com +0.0.0.0 domaincrawler.com +0.0.0.0 domainsatcost.com +0.0.0.0 domain-submit.info +0.0.0.0 domain-tracker.com +0.0.0.0 domcran.net +0.0.0.0 domik-derevne.ru +0.0.0.0 dominateforex.ml +0.0.0.0 domination.ml +0.0.0.0 domini.cat +0.0.0.0 dominterior.org +0.0.0.0 domoysshop.ru +0.0.0.0 domznaniy.ru +0.0.0.0 donna7753191.ru +0.0.0.0 donvito.unas.cz +0.0.0.0 doska-vsem.ru +0.0.0.0 dostavimvdom.ru +0.0.0.0 dostavka-v-krym.com +0.0.0.0 dostavka-v-ukrainu.ru +0.0.0.0 dosug-lux.ru +0.0.0.0 dotnetdotcom.org +0.0.0.0 doublepimp.com +0.0.0.0 downloader12.ru +0.0.0.0 downloadkakaotalk.com +0.0.0.0 downloadmefiranaratb1972.xpg.com.br +0.0.0.0 download-of-the-warez.blogspot.com +0.0.0.0 downtuptv.gq +0.0.0.0 doxyporno.com +0.0.0.0 drillsaw.ru +0.0.0.0 driving.kiev.ua +0.0.0.0 droidlook.net +0.0.0.0 drugspowerstore.com +0.0.0.0 drugstoreforyou.com +0.0.0.0 drunkmoms.net +0.0.0.0 drupa.com +0.0.0.0 druzhbany.ru +0.0.0.0 druzhininevgeniy63.blogspot.com +0.0.0.0 dstroy.su +0.0.0.0 dustyorate.com +0.0.0.0 dvd-famille.com +0.0.0.0 dvervmoskvu.ru +0.0.0.0 dvr.biz.ua +0.0.0.0 dvrlists.com +0.0.0.0 dyshagi.ru +0.0.0.0 dyt.net +0.0.0.0 e705.net +0.0.0.0 eandsgallery.com +0.0.0.0 eaplay.ru +0.0.0.0 earl-brown.info +0.0.0.0 eas-seo.com +0.0.0.0 easycommerce.cf +0.0.0.0 easync.io +0.0.0.0 easyshoppermac.com +0.0.0.0 easytuningshop.ru +0.0.0.0 eat.besplatno-skachat-washington.bid +0.0.0.0 e-avon.ru +0.0.0.0 e-biznes.info +0.0.0.0 e-buyeasy.com +0.0.0.0 ec-file.info +0.0.0.0 e-collantes.com +0.0.0.0 e-commerce-seo1.com +0.0.0.0 e-commerce-seo.com +0.0.0.0 ecommerce-seo.com +0.0.0.0 ecommerce-seo.org +0.0.0.0 ecomp3.ru +0.0.0.0 econom.co +0.0.0.0 ecookna.com.ua +0.0.0.0 ecxtracking.com +0.0.0.0 edelstahlschornstein-123.de +0.0.0.0 editmedios.com +0.0.0.0 ed-shop01.ru +0.0.0.0 edshopping.net +0.0.0.0 education-cz.ru +0.0.0.0 efkt.jp +0.0.0.0 egovaleo.it +0.0.0.0 egvar.net +0.0.0.0 ekaterinburg.xrus.org +0.0.0.0 ekobata.ru +0.0.0.0 ekspertmed.com +0.0.0.0 ekto.ee +0.0.0.0 e-kwiaciarz.pl +0.0.0.0 eldiariodeguadalajara.com +0.0.0.0 electricwheelchairsarea.com +0.0.0.0 electronicadirect.com +0.0.0.0 electro-prom.com +0.0.0.0 elektir.ru +0.0.0.0 elektrischezi.canalblog.com +0.0.0.0 elektrischeziga.livejournal.com +0.0.0.0 elektrischezigarette1.blog.pl +0.0.0.0 elektrischezigarette1.onsugar.com +0.0.0.0 elektrischezigarette2.devhub.com +0.0.0.0 elektrischezigarette2.onsugar.com +0.0.0.0 elektrischezigarettekaufen2.cowblog.fr +0.0.0.0 elektrischezigaretten1.blogse.nl +0.0.0.0 elektrischezigaretten2.beeplog.com +0.0.0.0 elektronischezigarette2.mex.tl +0.0.0.0 elektronischezigarettekaufen1.beeplog.com +0.0.0.0 elektronischezigarettekaufen1.myblog.de +0.0.0.0 elektronischezigarettekaufen2.tumblr.com +0.0.0.0 elektronischezi.livejournal.com +0.0.0.0 elektrozigarette1.dreamwidth.org +0.0.0.0 elektrozigarette2.webs.com +0.0.0.0 elektrozigarette2.wordpressy.pl +0.0.0.0 elektrozigarettekaufen1.devhub.com +0.0.0.0 elektrozigarettekaufen2.blogse.nl +0.0.0.0 elektrozigaretten1.postbit.com +0.0.0.0 elektrozigaretten1.tumblr.com +0.0.0.0 elektrozigaretten1.webs.com +0.0.0.0 elektrozigaretten2.yn.lt +0.0.0.0 elidelcream.weebly.com +0.0.0.0 elitedollars.com +0.0.0.0 elitepcgames.com +0.0.0.0 elitesportsadvisor.com +0.0.0.0 elkacentr.ru +0.0.0.0 elmacho.xyz +0.0.0.0 el-nation.com +0.0.0.0 eloconcream.blogspot.com +0.0.0.0 eloxal.ru +0.0.0.0 elstal.com.pl +0.0.0.0 elvel.com.ua +0.0.0.0 embedle.com +0.0.0.0 emediate.eu +0.0.0.0 empathica.com +0.0.0.0 empirepoker.com +0.0.0.0 empis.magix.net +0.0.0.0 en.altezza.travel +0.0.0.0 encodable.com +0.0.0.0 energydiet24.ru +0.0.0.0 energydiet-info.ru +0.0.0.0 energy-ua.com +0.0.0.0 enge-fotzen.info +0.0.0.0 enginebay.ru +0.0.0.0 englate.com +0.0.0.0 englishdictionaryfree.com +0.0.0.0 englishgamer.com +0.0.0.0 enhand.se +0.0.0.0 enskedesquashclub.se +0.0.0.0 enternet.ee +0.0.0.0 envaseslotusama.com +0.0.0.0 enviromusic.net +0.0.0.0 eonpal.com +0.0.0.0 eorogo.top +0.0.0.0 epngo.bz +0.0.0.0 e-poker-2005.com +0.0.0.0 eralph.tk +0.0.0.0 erank.eu +0.0.0.0 eredijovon.com +0.0.0.0 ereko.ru +0.0.0.0 ero-advertising.com +0.0.0.0 eropornosex.ru +0.0.0.0 erot.co +0.0.0.0 erotik0049.com +0.0.0.0 erotikchat-24.com +0.0.0.0 erotikstories.ru +0.0.0.0 erotiktreff24.info +0.0.0.0 errorfixing.space +0.0.0.0 es5.com +0.0.0.0 escortplius.com +0.0.0.0 escort-russian.com +0.0.0.0 escortslet.net +0.0.0.0 eshop4u.jp +0.0.0.0 eshop.md +0.0.0.0 esnm.ru +0.0.0.0 espaceinventoristes.com +0.0.0.0 este-line.com.ua +0.0.0.0 estibot.com +0.0.0.0 etr-interac.com +0.0.0.0 eu-cookie-law.blogspot.com +0.0.0.0 eu-cookie-law.info +0.0.0.0 eugenevaultstorage.com +0.0.0.0 eupornstar.info +0.0.0.0 euromasterclass.ru +0.0.0.0 euronis-free.com +0.0.0.0 europages.com.ru +0.0.0.0 european-torches.ru +0.0.0.0 europeanwatches.ru +0.0.0.0 eurosamodelki.ru +0.0.0.0 euroskat.ru +0.0.0.0 evaashop.ru +0.0.0.0 evehemming.blogspot.com.au +0.0.0.0 evening-dating-club.info +0.0.0.0 event-tracking.com +0.0.0.0 everflora.ru +0.0.0.0 evidencecleanergold.com +0.0.0.0 evrotekhservis.ru +0.0.0.0 excaliburfilms.com +0.0.0.0 exchangeit.gq +0.0.0.0 exchanges-bet.com +0.0.0.0 exct.net +0.0.0.0 executehosting.com +0.0.0.0 exhibitionplus.eu +0.0.0.0 exmasters.com +0.0.0.0 exoclick.com +0.0.0.0 exonline.info +0.0.0.0 expdom.com +0.0.0.0 expertblog.info +0.0.0.0 expertnaya-ocenka.ru +0.0.0.0 exportshop.us +0.0.0.0 expresstoplivo.ru +0.0.0.0 extads.net +0.0.0.0 extener.org +0.0.0.0 extrabot.com +0.0.0.0 extractorandburner.com +0.0.0.0 extremal-blog.com +0.0.0.0 extremepornos.net +0.0.0.0 extremez.net +0.0.0.0 extstat.com +0.0.0.0 eyelike.com.ua +0.0.0.0 eyemagination.com +0.0.0.0 eyes-on-you.ga +0.0.0.0 eyessurgery.ru +0.0.0.0 ez8motelseaworldsandiego.com +0.0.0.0 ezigarettekaufen1.hpage.com +0.0.0.0 ezigarettekaufen2.blox.pl +0.0.0.0 ezigarettekaufen2.mpbloggar.se +0.0.0.0 ezigarettekaufen2.yolasite.com +0.0.0.0 ezigarettekaufen.myblog.de +0.0.0.0 ezigarettenkaufen1.deviantart.com +0.0.0.0 ezigarettenkaufen1.pagina.gr +0.0.0.0 ezigarettenkaufen2.dreamwidth.org +0.0.0.0 ezigarettenshop1.yolasite.com +0.0.0.0 ezigarettenshop2.myblog.de +0.0.0.0 ezigarettenshop2.postbit.com +0.0.0.0 ezigaretteshop2.mywapblog.com +0.0.0.0 ezigaretteshop2.vefblog.net +0.0.0.0 ezigaretteshop.webs.com +0.0.0.0 ezofest.sk +0.0.0.0 f00kclan.de +0.0.0.0 f012.de +0.0.0.0 f07.de +0.0.0.0 f0815.de +0.0.0.0 f5mtrack.com +0.0.0.0 fable.in.ua +0.0.0.0 failingmarriege.blogspot.com +0.0.0.0 fakehandbags.xyz +0.0.0.0 falcoware.com +0.0.0.0 family1st.ca +0.0.0.0 familyholiday.ml +0.0.0.0 familyphysician.ru +0.0.0.0 famix.xyz +0.0.0.0 fandlr.com +0.0.0.0 fanoboi.com +0.0.0.0 fanpagerobot.com +0.0.0.0 fantasticpixcool.com +0.0.0.0 fark.com +0.0.0.0 farm26.ru +0.0.0.0 farmingworm.com +0.0.0.0 fashionindeed.ml +0.0.0.0 fashion-mk.net +0.0.0.0 fashion-stickers.ru +0.0.0.0 fastcrawl.com +0.0.0.0 fastfixing.tech +0.0.0.0 fast-wordpress-start.com +0.0.0.0 fatmaelgarny.com +0.0.0.0 favorcosmetics.com +0.0.0.0 favoritemoney.ru +0.0.0.0 favornews.com +0.0.0.0 faz99.com +0.0.0.0 fba-mexico.com +0.0.0.0 fdzone.org +0.0.0.0 fealq.com +0.0.0.0 fearcrow.com +0.0.0.0 feel-planet.com +0.0.0.0 feeriaclub.ru +0.0.0.0 fefo.gdn +0.0.0.0 femdom.twiclub.in +0.0.0.0 femmesdenudees.com +0.0.0.0 fenoyl.batcave.net +0.0.0.0 feorina.ru +0.0.0.0 ferieboligkbh.dk +0.0.0.0 fermersovet.ru +0.0.0.0 ferretsoft.com +0.0.0.0 fertilitetsradgivningen.se +0.0.0.0 fetishinside.com +0.0.0.0 fetroshok.ru +0.0.0.0 fickblock18.com +0.0.0.0 fickenprivat.info +0.0.0.0 fickkontakte.org +0.0.0.0 fickluder69.com +0.0.0.0 fidelityfunding.com +0.0.0.0 fifa-coins.online +0.0.0.0 figuringmoneyout.com +0.0.0.0 filerockstar298.weebly.com +0.0.0.0 filesmonster.porn +0.0.0.0 filesvine.com +0.0.0.0 filkhbr.com +0.0.0.0 filmbokep69.com +0.0.0.0 filmetricsasia.com +0.0.0.0 filmfanatic.com +0.0.0.0 filmgo.ru +0.0.0.0 filmidivx.com +0.0.0.0 film-one.ru +0.0.0.0 fil.ru +0.0.0.0 filunika.com.ru +0.0.0.0 financehint.eu +0.0.0.0 financeloan.us +0.0.0.0 financepoints.eu +0.0.0.0 financetip.eu +0.0.0.0 find1friend.com +0.0.0.0 findacheaplawyers.com +0.0.0.0 findanysex.com +0.0.0.0 findclan.org +0.0.0.0 findpik.com +0.0.0.0 findthe.pet +0.0.0.0 finstroy.net +0.0.0.0 finteks.ru +0.0.0.0 finuse.com +0.0.0.0 fireads.men +0.0.0.0 firma-legion.ru +0.0.0.0 fishingwholesale.us +0.0.0.0 fitfloponline.store +0.0.0.0 fitnesspiks.com +0.0.0.0 fitness-video.net +0.0.0.0 fiuxy.com +0.0.0.0 fiverr.com +0.0.0.0 fix-website-errors.com +0.0.0.0 flash4fun.com +0.0.0.0 flashbannernow.com +0.0.0.0 flavors.me +0.0.0.0 flex4launch.ru +0.0.0.0 flipper.top +0.0.0.0 flirt4free.com +0.0.0.0 f-loaded.de +0.0.0.0 floating-share-buttons.com +0.0.0.0 flooringinstallation-edmonton.com +0.0.0.0 floridahuntingfishingadventures.com +0.0.0.0 floridamhca.org +0.0.0.0 florida-tourism.net +0.0.0.0 flowecs.com +0.0.0.0 flowersbazar.com +0.0.0.0 flowwwers.com +0.0.0.0 flprog.com +0.0.0.0 flytourisme.org +0.0.0.0 flzhiguan.com +0.0.0.0 fm-upgrade.ru +0.0.0.0 focalink.com +0.0.0.0 folowsite.com +0.0.0.0 f-online.de +0.0.0.0 footbalive.org +0.0.0.0 forensicpsychiatry.ru +0.0.0.0 forex21.ru +0.0.0.0 forexgb.ru +0.0.0.0 forex-indextop20.ru +0.0.0.0 forex.osobye.ru +0.0.0.0 forex-procto.ru +0.0.0.0 forexunion.net +0.0.0.0 forminecrafters.ru +0.0.0.0 formseo.com +0.0.0.0 forms-mtm.ru +0.0.0.0 forodvd.com +0.0.0.0 forpackningsutveckling.se +0.0.0.0 forpostlock.ru +0.0.0.0 forsex.info +0.0.0.0 forum20.smailik.org +0.0.0.0 forum.doctissimo.fr +0.0.0.0 forum-engineering.ru +0.0.0.0 forum.poker4life.ru +0.0.0.0 forumprofi.de +0.0.0.0 forums.toucharcade.com +0.0.0.0 forum.tvmir.org +0.0.0.0 foto-sisek.porngalleries.top +0.0.0.0 foto-telok.net +0.0.0.0 fototravel.eu +0.0.0.0 fotoxxxru.com +0.0.0.0 fotzen-ficken.com +0.0.0.0 foxinsocks.ru +0.0.0.0 foxtechfpv.com +0.0.0.0 foxweber.com +0.0.0.0 foxydeal.com +0.0.0.0 freakycheats.com +0.0.0.0 freecamdollars.com +0.0.0.0 free-fb-traffic.com +0.0.0.0 free-floating-buttons.com +0.0.0.0 free-gluten.ru +0.0.0.0 freejabs.com +0.0.0.0 free-laptop-reward.com +0.0.0.0 freelifetimefuckbook.com +0.0.0.0 freelotto.com +0.0.0.0 freemags.cc +0.0.0.0 freenode.info +0.0.0.0 freenom.link +0.0.0.0 freeseedsonline.com +0.0.0.0 free-share-buttons.blogspot.com +0.0.0.0 free-share-buttons.com +0.0.0.0 free-share-buttons.top +0.0.0.0 freesitetest.com +0.0.0.0 free-social-buttons.com +0.0.0.0 free-stock-illustration.com +0.0.0.0 freetangodownload.com +0.0.0.0 freeuploader.com +0.0.0.0 freeuploader.ml +0.0.0.0 free-video-tool.com +0.0.0.0 freewebs.com +0.0.0.0 freewhatsappload.com +0.0.0.0 freshberry.com.ua +0.0.0.0 freshdz.com +0.0.0.0 freshmac.space +0.0.0.0 freshsuperbloop.com +0.0.0.0 freshwallpapers.info +0.0.0.0 freza-sverlo.ru +0.0.0.0 frivgame250.com +0.0.0.0 fr.netlog.com +0.0.0.0 froggytube.com +0.0.0.0 front.ru +0.0.0.0 front.to +0.0.0.0 frvo.alptandem.ru +0.0.0.0 fsakhalin.ru +0.0.0.0 fsalas.com +0.0.0.0 ftns.ru +0.0.0.0 fuckmill.com +0.0.0.0 fuel-gas.com +0.0.0.0 fugarif.ga +0.0.0.0 fullfileaccess.com +0.0.0.0 fungamelands.com +0.0.0.0 fungirlsgames.net +0.0.0.0 funnypica.com +0.0.0.0 funponsel.com +0.0.0.0 futbolkisales.ru +0.0.0.0 fx-brokers-review.com +0.0.0.0 fxgallery.com +0.0.0.0 fxtips.ru +0.0.0.0 fym.com.ru +0.0.0.0 g33.org +0.0.0.0 g7m.pl +0.0.0.0 gabeshop.ru +0.0.0.0 gael-s.ru +0.0.0.0 gagrasector.ru +0.0.0.0 galaxy-family.ru +0.0.0.0 galaxyflowers.ru +0.0.0.0 galeon.com +0.0.0.0 gallerily.com +0.0.0.0 galleryawesome.com +0.0.0.0 gallerylisting.com +0.0.0.0 gallictures.com +0.0.0.0 gamblingnerd.com +0.0.0.0 game-mmorpg.net +0.0.0.0 gameonasia.com +0.0.0.0 gameplexcity.com +0.0.0.0 gamerextra.com +0.0.0.0 gamerscorps.com +0.0.0.0 games.kolossale.ru +0.0.0.0 game-top.su +0.0.0.0 gamevalue7.weebly.com +0.0.0.0 gamewrath.com +0.0.0.0 gaming-journal.com +0.0.0.0 gardene.ru +0.0.0.0 gay.adultgalls.com +0.0.0.0 gay-file.com +0.0.0.0 gaygalls.net +0.0.0.0 gaytube.com +0.0.0.0 gazobeton-p.com.ua +0.0.0.0 gazoblok.net.ua +0.0.0.0 gazporno.com +0.0.0.0 gaz-voshod.ru +0.0.0.0 gcup.ru +0.0.0.0 gdcentre.ru +0.0.0.0 gdebestkupit.ru +0.0.0.0 ge0ip.com +0.0.0.0 ge0ip.net +0.0.0.0 ge0ip.org +0.0.0.0 geckoandfly.com +0.0.0.0 geilehausfrauen.net +0.0.0.0 geile-lelly.eu +0.0.0.0 geileweiber.tk +0.0.0.0 gelezki.com +0.0.0.0 gemara.com +0.0.0.0 gembird.com +0.0.0.0 generalporn.org +0.0.0.0 genericlowlatencyasiodriverhq.aircus.com +0.0.0.0 generic-pills-online.com +0.0.0.0 genericviagrasildenafiled.net +0.0.0.0 generousdeal-a.akamaihd.net +0.0.0.0 gentamicineyedrops.blogspot.com +0.0.0.0 geoads.com +0.0.0.0 germes-trans.com +0.0.0.0 germetiki.com.ua +0.0.0.0 get-free-traffic-now.com +0.0.0.0 getlaid-xxxhookupdirect.com +0.0.0.0 getlamborghini.ga +0.0.0.0 getmiro.com +0.0.0.0 getmyads24.com +0.0.0.0 getoutofdebtfree.org +0.0.0.0 getpopunder.com +0.0.0.0 getrichquickly.info +0.0.0.0 get-seo-domain.com +0.0.0.0 get-your-social-buttons.info +0.0.0.0 gfaq.ru +0.0.0.0 gg-arena.ru +0.0.0.0 ggiaro.com +0.0.0.0 gg.zzyjxs.com +0.0.0.0 ghazel.ru +0.0.0.0 ghernnqr.skyrock.com +0.0.0.0 gheus.altervista.org +0.0.0.0 ghostvisitor.com +0.0.0.0 gifspics.com +0.0.0.0 gigablast.com +0.0.0.0 gilsonchiro.xyz +0.0.0.0 girlgamerdaily.com +0.0.0.0 girlporn.ru +0.0.0.0 girlsatgames.ru +0.0.0.0 girlspicsa.com +0.0.0.0 given2.com +0.0.0.0 gk-atlant.info +0.0.0.0 gkvector.ru +0.0.0.0 glall.ru +0.0.0.0 glass-msk.ru +0.0.0.0 glavprofit.ru +0.0.0.0 glcomputers.ru +0.0.0.0 glicol.kz +0.0.0.0 global-ics.co.za +0.0.0.0 globalscam.ga +0.0.0.0 globalsurfari.com +0.0.0.0 globatur.ru +0.0.0.0 globetrotting-culture.ru +0.0.0.0 glopages.ru +0.0.0.0 gne8.com +0.0.0.0 go2album.com +0.0.0.0 go2mike.ru +0.0.0.0 goatse.ru +0.0.0.0 gobongo.info +0.0.0.0 goforexvps.com +0.0.0.0 gogalleryawesome.com +0.0.0.0 gogps.me +0.0.0.0 gojiberriess.apishops.ru +0.0.0.0 gok-kasten.net +0.0.0.0 goldadpremium.com +0.0.0.0 goldandcard.ru +0.0.0.0 golden-catalog.pro +0.0.0.0 goldenggames.com +0.0.0.0 golden-praga.ru +0.0.0.0 goldpanningtools.com +0.0.0.0 golmau.host.sk +0.0.0.0 gonextmedia.com +0.0.0.0 good-mummy.ru +0.0.0.0 goodnightjournal.com +0.0.0.0 goodprotein.ru +0.0.0.0 googglet.com +0.0.0.0 googlefeud.com +0.0.0.0 google-liar.ru +0.0.0.0 googlemare.com +0.0.0.0 googlepositions.com +0.0.0.0 googst2.ru +0.0.0.0 goo.ne.jp +0.0.0.0 gopixdatabase.com +0.0.0.0 gopro-online.info +0.0.0.0 gorabagrata.ru +0.0.0.0 goroda-vsego-mira.ru +0.0.0.0 gorodservis.ru +0.0.0.0 gosarhivrt.ru +0.0.0.0 gosreg.amchs.ru +0.0.0.0 gotomontenegro.net +0.0.0.0 gotorussia.com +0.0.0.0 gotwebsite1.com +0.0.0.0 gourcy.altervista.org +0.0.0.0 gowreckdiving.com +0.0.0.0 gox.com.ua +0.0.0.0 gpirate.com +0.0.0.0 gpms.org.my +0.0.0.0 gq-catalog.gq +0.0.0.0 grand-chlen.ru +0.0.0.0 graphicwe.org +0.0.0.0 graphid.com +0.0.0.0 gratis-sexkontakte.com +0.0.0.0 gratuitbaise.com +0.0.0.0 greatfind-a.akamaihd.net +0.0.0.0 greatgrace.ru +0.0.0.0 greatzip.com +0.0.0.0 greendream.com.ua +0.0.0.0 green-tea.tv +0.0.0.0 greenzaim.ru +0.0.0.0 gribkovye-zabolevaniya.com +0.0.0.0 gribokstop.com +0.0.0.0 grizzlysgrill.com +0.0.0.0 groupmoney.ru +0.0.0.0 growmyfunds.ca +0.0.0.0 growshop.es +0.0.0.0 grtyi.com +0.0.0.0 grupografico-pilar.com.ar +0.0.0.0 gsasearchengineranker.pw +0.0.0.0 gsasearchengineranker.site +0.0.0.0 gsasearchengineranker.space +0.0.0.0 gsasearchengineranker.top +0.0.0.0 gsasearchengineranker.xyz +0.0.0.0 gsbs.com.ua +0.0.0.0 gsmlab.pl +0.0.0.0 gsmtlf.ru +0.0.0.0 g.starmoe.xyz +0.0.0.0 gstatey.net +0.0.0.0 gta-club.ru +0.0.0.0 gta-top.ru +0.0.0.0 gtopstats.com +0.0.0.0 guardlink.org +0.0.0.0 guildebzh.info +0.0.0.0 guitar-master.org +0.0.0.0 gungamesz.com +0.0.0.0 guod.me +0.0.0.0 guruofcasino.com +0.0.0.0 gwebtools.com +0.0.0.0 gwebtools.com.br +0.0.0.0 gwhwpxbw.bloger.index.hr +0.0.0.0 gyffu.com +0.0.0.0 h2monline.com +0.0.0.0 habermetre.com +0.0.0.0 hacktougroup.ru +0.0.0.0 hahashka.ru +0.0.0.0 haikuware.com +0.0.0.0 hamilton.ca +0.0.0.0 handicapbathtubarea.com +0.0.0.0 handicapvansarea.com +0.0.0.0 handicapvantoday.com +0.0.0.0 handmadepics.net +0.0.0.0 handsandlegs.ru +0.0.0.0 hanink.biz.ly +0.0.0.0 hasfun.com +0.0.0.0 hatdc.org +0.0.0.0 hauleddes.com +0.0.0.0 hausfrauensex18.com +0.0.0.0 havepussy.com +0.0.0.0 hayate.biz +0.0.0.0 hazardky.net +0.0.0.0 hcate.com +0.0.0.0 hd720kino.ru +0.0.0.0 hdapp1008-a.akamaihd.net +0.0.0.0 hd-filmy.net +0.0.0.0 hdfreeporno.net +0.0.0.0 hdimagegallery.net +0.0.0.0 hdimagelib.com +0.0.0.0 hdmoviecamera.net +0.0.0.0 hdmoviecams.com +0.0.0.0 hdpixent.com +0.0.0.0 hdpixion.com +0.0.0.0 hdwalls.xyz +0.0.0.0 hdxnxxtube.mobi +0.0.0.0 headpress.ru +0.0.0.0 healbio.ru +0.0.0.0 healgastro.com +0.0.0.0 healing-dysplasia.ru +0.0.0.0 healmytrauma.info +0.0.0.0 heartofbeijing.blogspot.com +0.0.0.0 heatpower.ru +0.0.0.0 hebozqzu.net.ua +0.0.0.0 hebr.myddns-flir.com +0.0.0.0 helicalpile.us +0.0.0.0 hellokittyimg.com +0.0.0.0 helpmymacfaster.trade +0.0.0.0 helvetia.com.ua +0.0.0.0 hem.passagen.se +0.0.0.0 herehloadibs.cf +0.0.0.0 hermesbirkinhandbagoutlets.com +0.0.0.0 hermesbracelets.xyz +0.0.0.0 hermesreplica.pw +0.0.0.0 hermesreplica.win +0.0.0.0 herokuapp.com +0.0.0.0 hetmanship.xyz +0.0.0.0 hidefiles.org +0.0.0.0 hifidesign.ru +0.0.0.0 highland-homes.com +0.0.0.0 highstairs-a.akamaihd.net +0.0.0.0 hildinghr.se +0.0.0.0 histats.com +0.0.0.0 histock.info +0.0.0.0 historichometeam.com +0.0.0.0 hitsbox.info +0.0.0.0 hiwibyh.bugs3.com +0.0.0.0 hjaoopoa.top +0.0.0.0 hjb.net.ru +0.0.0.0 hkdiiohi.skyrock.com +0.0.0.0 hledejvshopech.cz +0.0.0.0 hmmm.cz +0.0.0.0 hmywwogw.bloger.index.hr +0.0.0.0 hobbyhuren24.net +0.0.0.0 hobbyhuren-datenbank.com +0.0.0.0 hobild.net +0.0.0.0 hol.es +0.0.0.0 holidaypics.org +0.0.0.0 hollywoodactress.info +0.0.0.0 homeandhealth.ru +0.0.0.0 homedecoguide.info +0.0.0.0 homedecorpicture.us +0.0.0.0 homedo.fabpage.com +0.0.0.0 homegardenlova.com +0.0.0.0 homeinns.com +0.0.0.0 homelygarden.com +0.0.0.0 homemade.gq +0.0.0.0 homemature.net +0.0.0.0 home.myplaycity.com +0.0.0.0 hoporno.com +0.0.0.0 horoshieokna.com +0.0.0.0 horseimg.com +0.0.0.0 hostcritique.com +0.0.0.0 hoste.octopis.com +0.0.0.0 hostingclub.lk +0.0.0.0 hosting-tracker.com +0.0.0.0 hostnow.men +0.0.0.0 host-protection.com +0.0.0.0 hostsshop.ru +0.0.0.0 hotblog.top +0.0.0.0 hotchatdate.com +0.0.0.0 hotdl.in +0.0.0.0 hotel-mkad.ru +0.0.0.0 hotenergy.ru +0.0.0.0 hotgirlhdwallpaper.com +0.0.0.0 hothor.se +0.0.0.0 hotkeys.com +0.0.0.0 hotloans.ru +0.0.0.0 hotshoppymac.com +0.0.0.0 hotsocialz.com +0.0.0.0 houdom.net +0.0.0.0 housediz.com +0.0.0.0 housekuba.org +0.0.0.0 housemilan.ru +0.0.0.0 houseofgaga.ru +0.0.0.0 houseofrose.com +0.0.0.0 house.sieraddns.com +0.0.0.0 houston-vikings.com +0.0.0.0 hoverboard360.at +0.0.0.0 hoverboard360.de +0.0.0.0 hoverboard360.es +0.0.0.0 hoverboard360.nl +0.0.0.0 hoverboard360.se +0.0.0.0 hoverboardforsaledirect.com +0.0.0.0 howlongdoestizanidinestayinyoursystem.blogspot.com +0.0.0.0 howmuchdoestizanidinecost.blogspot.com +0.0.0.0 howopen.ru +0.0.0.0 hplaserjetpdriver8y.pen.io +0.0.0.0 hptwaakw.blog.fc2.com +0.0.0.0 href.li +0.0.0.0 hscsscotland.com +0.0.0.0 hspline.com +0.0.0.0 htmlcorner.com +0.0.0.0 hubbble.com +0.0.0.0 huhn.altervista.org +0.0.0.0 hully.altervista.org +0.0.0.0 humanorightswatch.org +0.0.0.0 hundejo.com +0.0.0.0 hunterboots.online +0.0.0.0 husky-shop.cz +0.0.0.0 hustoon.over-blog.com +0.0.0.0 hut1.ru +0.0.0.0 hvd-store.com +0.0.0.0 hybrid.ru +0.0.0.0 hydropump.su +0.0.0.0 hyiphunter.org +0.0.0.0 hyipmanager.in +0.0.0.0 hystersister.com +0.0.0.0 i4track.net +0.0.0.0 iamsport.org +0.0.0.0 ibb.com.ua +0.0.0.0 icaseclub.ru +0.0.0.0 ico.re +0.0.0.0 ictizanidinehcl4mg.blogspot.com +0.0.0.0 idc.com.ua +0.0.0.0 idealtits.net +0.0.0.0 ideaspicz.com +0.0.0.0 idegenvezeto.eu +0.0.0.0 ideibiznesa2015.ru +0.0.0.0 ideoworld.org +0.0.0.0 ido3.com +0.0.0.0 ie.57883.net +0.0.0.0 ifirestarter.ru +0.0.0.0 iflycapetown.co.za +0.0.0.0 ifmo.ru +0.0.0.0 igadgetsworld.com +0.0.0.0 igrovyeavtomaty777.ru +0.0.0.0 igru-xbox.net +0.0.0.0 iinstalll-fii1leis.jus0wil.pp.ua +0.0.0.0 iklysha.ml +0.0.0.0 ilikevitaly.com +0.0.0.0 ilmen.net +0.0.0.0 ilovevitaly.com +0.0.0.0 ilovevitaly.ru +0.0.0.0 imabase.com +0.0.0.0 imadedinner.net +0.0.0.0 imagecoolpub.com +0.0.0.0 imagerydatabase.com +0.0.0.0 images-graphics-pics.com +0.0.0.0 images.gyffu.com +0.0.0.0 imediadesk.com +0.0.0.0 imfamous.info +0.0.0.0 imgarcade.com +0.0.0.0 imgata.com +0.0.0.0 imgresult.com +0.0.0.0 iminent.com +0.0.0.0 imitex-plus.ru +0.0.0.0 immobiliaremassaro.com +0.0.0.0 imperia31.ru +0.0.0.0 imperiafilm.ru +0.0.0.0 import-sales.com +0.0.0.0 impresagaia.it +0.0.0.0 inbabes.sexushost.com +0.0.0.0 inboundlinks.win +0.0.0.0 inboxdollars.com +0.0.0.0 incolors.club +0.0.0.0 increasewwwtraffic.info +0.0.0.0 indetiske.ya.ru +0.0.0.0 indiakino.net +0.0.0.0 indianmedicaltourismshop.com +0.0.0.0 indiasourcemart.in +0.0.0.0 indo-export.ru +0.0.0.0 inductionc2oktop.com +0.0.0.0 inet-traffic.com +0.0.0.0 infazavr.ru +0.0.0.0 infobabki.ru +0.0.0.0 infokonkurs.ru +0.0.0.0 informatiecentro.be +0.0.0.0 infostatsvc.com +0.0.0.0 infowarcraft.ru +0.0.0.0 inmate-locator.us +0.0.0.0 innodgfdriverhm.aircus.com +0.0.0.0 inome.com.ua +0.0.0.0 insomniagamingfestival.com +0.0.0.0 insta-add.pro +0.0.0.0 intelhdgraphicsgtdrive6w.metroblog.com +0.0.0.0 intellekt21.ru +0.0.0.0 interesnie-faktu.ru +0.0.0.0 interferencer.ru +0.0.0.0 interfucks.net +0.0.0.0 interior-stickers.ru +0.0.0.0 intermesh.net +0.0.0.0 internet-apteka.ru +0.0.0.0 internetartfair.com +0.0.0.0 internetproviderstucson.com +0.0.0.0 intervsem.ru +0.0.0.0 intimshop-fantasy.ru +0.0.0.0 investingclub.ru +0.0.0.0 invest-pamm.ru +0.0.0.0 investpamm.ru +0.0.0.0 investsuccess.org +0.0.0.0 investyb.com +0.0.0.0 investzalog.ru +0.0.0.0 invitefashion.com +0.0.0.0 invivo.hu +0.0.0.0 inzn.ru +0.0.0.0 io9.com +0.0.0.0 iomoio.net +0.0.0.0 iopeninghours.co.uk +0.0.0.0 iplogger.org +0.0.0.0 iplusbit.blogspot.co.za +0.0.0.0 ipostroika.ru +0.0.0.0 iptool.xyz +0.0.0.0 iqbazar.ru +0.0.0.0 iqoption-bin.com +0.0.0.0 iqoption.com +0.0.0.0 iqoption.pro +0.0.0.0 iqs.biz.ua +0.0.0.0 iradiology.ru +0.0.0.0 irunfar.com +0.0.0.0 iscblog.info +0.0.0.0 i-service.kz +0.0.0.0 isistaylorporn.info +0.0.0.0 iskalko.ru +0.0.0.0 islandminingsupply.wordpress.com +0.0.0.0 isoveti.ru +0.0.0.0 ispaniya-costa-blanca.ru +0.0.0.0 istanbulit.com +0.0.0.0 istizanidineacontrolledsubstance.blogspot.com +0.0.0.0 istizanidineanarcoticdrug.blogspot.com +0.0.0.0 istizanidineanopiate.blogspot.com +0.0.0.0 istizanidinelikexanax.blogspot.com +0.0.0.0 istmira.ru +0.0.0.0 istock-mebel.ru +0.0.0.0 istripper.com +0.0.0.0 itbc.kiev.ua +0.0.0.0 it-max.com.ua +0.0.0.0 itrevolution.cf +0.0.0.0 itronics.ca +0.0.0.0 itsdp3.com +0.0.0.0 itservicesthatworkforyou.com +0.0.0.0 iusstf.org +0.0.0.0 ivanstroi.ru +0.0.0.0 iwantmyfreecash.com +0.0.0.0 iwanttodeliver.com +0.0.0.0 ix20.ru +0.0.0.0 izhevsk.xrus.org +0.0.0.0 izhevsk.zrus.org +0.0.0.0 izismile.com +0.0.0.0 izoll.ru +0.0.0.0 j33x.com +0.0.0.0 jackwolfskinoutlet.online +0.0.0.0 jamiembrown.com +0.0.0.0 janavibekken.no +0.0.0.0 janerikholst.se +0.0.0.0 janettabridal.com +0.0.0.0 japan-bearings.ru +0.0.0.0 japfm.com +0.0.0.0 jasonpartington.com +0.0.0.0 javatex.co.id +0.0.0.0 javitas.info +0.0.0.0 javrip.net +0.0.0.0 jaxcube.info +0.0.0.0 jennyfire.ru +0.0.0.0 jerseychinabizwholesale.com +0.0.0.0 jerseychinabizwholesale.us +0.0.0.0 jerseysbizwholesalecheap.com +0.0.0.0 jerseyschinabizwholesale.us +0.0.0.0 jerseyssportsshop.com +0.0.0.0 jerseyswholesalechinalimited.com +0.0.0.0 jerseywholesalebizchina.com +0.0.0.0 jerseywholesalechinabiz.com +0.0.0.0 jerseywholesaleelitestore.com +0.0.0.0 jetsli.de +0.0.0.0 jillepille.com +0.0.0.0 jimmychoosale.online +0.0.0.0 jjbabskoe.ru +0.0.0.0 job.icivil.ir +0.0.0.0 joessmogtestonly.com +0.0.0.0 johannesburgsingles.co.za +0.0.0.0 joingames.org +0.0.0.0 jongose.ninja +0.0.0.0 journalhome.com +0.0.0.0 journeydownthescale.info +0.0.0.0 jpcycles.com +0.0.0.0 j-times.ru +0.0.0.0 juliadiets.com +0.0.0.0 juliaworld.net +0.0.0.0 jumptap.com +0.0.0.0 jus0wil.pp.ua +0.0.0.0 justbcause.com +0.0.0.0 justdating.online +0.0.0.0 kaac.ru +0.0.0.0 kabbalah-red-bracelets.com +0.0.0.0 kadashihotel.com +0.0.0.0 kalb.ru +0.0.0.0 kamagragelusa.net +0.0.0.0 kambasoft.com +0.0.0.0 kam-dom.ru +0.0.0.0 kamen-e.ru +0.0.0.0 kamorel.com +0.0.0.0 kanimage.com +0.0.0.0 karachev-city.ru +0.0.0.0 karadene.com +0.0.0.0 karpun-iris.ru +0.0.0.0 karusel-market.ru +0.0.0.0 kashubadesign.ru +0.0.0.0 katjimej.blog.fc2.com +0.0.0.0 katushka.net +0.0.0.0 kazan.xrus.org +0.0.0.0 kazan.zrus.org +0.0.0.0 kazinogames.lv +0.0.0.0 kaz.kz +0.0.0.0 kazrent.com +0.0.0.0 keenoutlet.online +0.0.0.0 kerwinandcariza.com +0.0.0.0 ketoanhanoi.info +0.0.0.0 ketrzyn.pl +0.0.0.0 keywordhut.com +0.0.0.0 keywordsking.com +0.0.0.0 keywords-monitoring-success.com +0.0.0.0 keywords-monitoring-your-success.com +0.0.0.0 keyword-suggestions.com +0.0.0.0 keywordsuggest.org +0.0.0.0 keywordsuggests.com +0.0.0.0 keywordteam.net +0.0.0.0 kfon.eu +0.0.0.0 kidd.reunionwatch.com +0.0.0.0 kiev.ua +0.0.0.0 kihi.gdn +0.0.0.0 kinobaks.com +0.0.0.0 kinocccp.net +0.0.0.0 kinofak.net +0.0.0.0 kino-filmi.com +0.0.0.0 kinoflux.net +0.0.0.0 kino-fun.ru +0.0.0.0 kinogolos.ru +0.0.0.0 kinogonew.ru +0.0.0.0 kinohall.ru +0.0.0.0 kinohit1.ru +0.0.0.0 kino-key.info +0.0.0.0 kinoplen.ru +0.0.0.0 kinopolet.net +0.0.0.0 kino-rating.ru +0.0.0.0 kinostorm.net +0.0.0.0 kinotorka.ru +0.0.0.0 kiprinform.com +0.0.0.0 kirov.zrus.org +0.0.0.0 kiwe-analytics.com +0.0.0.0 kiwi237au.tk +0.0.0.0 kladrus.ru +0.0.0.0 kleine-titten.biz +0.0.0.0 kletkimehan.ru +0.0.0.0 kliksaya.com +0.0.0.0 kmd-pto.ru +0.0.0.0 kmgamex.cf +0.0.0.0 kndxbkdx.bloger.index.hr +0.0.0.0 knigonosha.net +0.0.0.0 knogg.net +0.0.0.0 knowyournextmove.com +0.0.0.0 kochanelli.com +0.0.0.0 kol-energo.ru +0.0.0.0 koleso24.com.ua +0.0.0.0 kollesa.ru +0.0.0.0 kolotiloff.ru +0.0.0.0 komp-pomosch.ru +0.0.0.0 komputernaya-pomosh-moscow.ru +0.0.0.0 komputers-best.ru +0.0.0.0 kongoultry.net +0.0.0.0 kongruan.com +0.0.0.0 konkursov.net +0.0.0.0 konoplisemena.com +0.0.0.0 konteiner24.com +0.0.0.0 konturkrasoty.ru +0.0.0.0 koopilka.com +0.0.0.0 koptims.tiu.ru +0.0.0.0 koronirealestate.gr +0.0.0.0 kosova.de +0.0.0.0 kostenloser-sex.com +0.0.0.0 kostenlos-sexvideos.com +0.0.0.0 kosynka-games.ru +0.0.0.0 kovesszucs.atw.hu +0.0.0.0 kozhniebolezni.com +0.0.0.0 krafte.ru +0.0.0.0 kraljeva-sutjeska.com +0.0.0.0 krasivoe-hd.com +0.0.0.0 krasivoe-hd.net +0.0.0.0 krasivye-devushki.net +0.0.0.0 krasnodar-avtolombards.ru +0.0.0.0 krasnodar.ru +0.0.0.0 krasnodar.xrus.org +0.0.0.0 krasnodar.zrus.org +0.0.0.0 kredit-pod-zalog-krasnodar.ru +0.0.0.0 kriokomora.info +0.0.0.0 krynica.info +0.0.0.0 ks1234.com +0.0.0.0 ktotut.net +0.0.0.0 ku6.com +0.0.0.0 kumuk.info +0.0.0.0 kung-fu-ru.com +0.0.0.0 kupit-adenu.ru +0.0.0.0 kursy-ege.ru +0.0.0.0 kustanay.kz +0.0.0.0 kutikomi.net +0.0.0.0 kuzinsp.ru +0.0.0.0 kvartira-sutochno.com +0.0.0.0 kvartir-remont.biz +0.0.0.0 kvartiry-remont.ucoz.ru +0.0.0.0 kw21.org +0.0.0.0 kwzf.net +0.0.0.0 labelwater.se +0.0.0.0 labplus.ru +0.0.0.0 labvis.host.sk +0.0.0.0 lacloop.info +0.0.0.0 ladov.ru +0.0.0.0 la-fa.ru +0.0.0.0 lafourmiliaire.com +0.0.0.0 lakesimg.com +0.0.0.0 lampokrat.ws +0.0.0.0 lanadelreyfans.us +0.0.0.0 lanasshop.ru +0.0.0.0 lancheck.net +0.0.0.0 landreferat.ru +0.0.0.0 landscaping.center +0.0.0.0 languagecode.com +0.0.0.0 lankarns.com +0.0.0.0 laparfumotec.com +0.0.0.0 lapitec.eu +0.0.0.0 laptoper.net +0.0.0.0 larchik.net +0.0.0.0 larutti.ru +0.0.0.0 lasvegaslockandsafe.com +0.0.0.0 laudit.ru +0.0.0.0 laulini.soclog.se +0.0.0.0 law-check-eight.xyz +0.0.0.0 law-check-nine.xyz +0.0.0.0 law-check-seven.xyz +0.0.0.0 law-check-two.xyz +0.0.0.0 laxdrills.com +0.0.0.0 layola.biz.tc +0.0.0.0 lazy-z.com +0.0.0.0 ldrtrack.com +0.0.0.0 leadwayau.com +0.0.0.0 leboard.ru +0.0.0.0 ledis.top +0.0.0.0 ledpolice.ru +0.0.0.0 legalrc.biz +0.0.0.0 lego4x4.ru +0.0.0.0 legoimg.com +0.0.0.0 lenvred.org +0.0.0.0 lernur.net +0.0.0.0 lesbian.xyz +0.0.0.0 lescinq.com +0.0.0.0 letolove.ru +0.0.0.0 letslowbefast.today +0.0.0.0 letto.by +0.0.0.0 levaquin750mg.blogspot.com +0.0.0.0 lexaprogeneric.link +0.0.0.0 lezbiyanki.net +0.0.0.0 lflash.ru +0.0.0.0 lida-ru.com +0.0.0.0 lider-zhaluzi.kiev.ua +0.0.0.0 li-er.ru +0.0.0.0 lietaer.com +0.0.0.0 life.biz.ua +0.0.0.0 lifebyleese.com +0.0.0.0 life-instyle.com +0.0.0.0 light.ifmo.ru +0.0.0.0 lightinghomes.net +0.0.0.0 lignofix.ua +0.0.0.0 likesdesign.com +0.0.0.0 likesuccess.com +0.0.0.0 liky.co.ua +0.0.0.0 limads.men +0.0.0.0 limtu.ifmo.ru +0.0.0.0 lincolntheatre.com +0.0.0.0 linerdrilling.com +0.0.0.0 link.ac +0.0.0.0 linkarena.com +0.0.0.0 linkbolic.com +0.0.0.0 linkbuddies.com +0.0.0.0 linkpulse.com +0.0.0.0 linkrr.com +0.0.0.0 linkwithin.com +0.0.0.0 liquimondo.com +0.0.0.0 lirunet.ru +0.0.0.0 lisque.batcave.net +0.0.0.0 littleberry.ru +0.0.0.0 liupis.com +0.0.0.0 livefixer.com +0.0.0.0 liver-chintai.org +0.0.0.0 liverpool.gsofootball.com +0.0.0.0 live-sexcam.tk +0.0.0.0 live-sexchat.ru +0.0.0.0 liveshoppersmac.com +0.0.0.0 livetsomudvekslingstudent.bloggersdelight.dk +0.0.0.0 liveu.infoteka.hu +0.0.0.0 livingcanarias.com +0.0.0.0 livingroomdecor.info +0.0.0.0 ljusihus.se +0.0.0.0 lkbennettoutlet.online +0.0.0.0 lkbennettstore.online +0.0.0.0 llastbuy.ru +0.0.0.0 lmrauction.com +0.0.0.0 loadopia.com +0.0.0.0 lob.com.ru +0.0.0.0 localflirtbuddies.com +0.0.0.0 localmatchbook.com +0.0.0.0 lockerz.com +0.0.0.0 locksmith.jp +0.0.0.0 lodki-pvh.dp.ua +0.0.0.0 loftdigital.eu +0.0.0.0 loginduepunti.it +0.0.0.0 lol-smurfs.com +0.0.0.0 lombardfinder.ru +0.0.0.0 lomb.co +0.0.0.0 lombia.co +0.0.0.0 lombia.com +0.0.0.0 lomza.info +0.0.0.0 lonely-mature.com +0.0.0.0 long-beach-air-conditioning.com +0.0.0.0 longgreen.info +0.0.0.0 lost-alpha.ru +0.0.0.0 lostfilm-online.ru +0.0.0.0 lotto6888.com +0.0.0.0 lottospring.com +0.0.0.0 louboutinbooties.xyz +0.0.0.0 louboutinreplica.pw +0.0.0.0 louboutinreplica.xyz +0.0.0.0 louboutinshoes.xyz +0.0.0.0 louisvuittonoutletstore.net +0.0.0.0 love-baby.cz +0.0.0.0 lowephotos.info +0.0.0.0 low-format.ru +0.0.0.0 lsex.xyz +0.0.0.0 lubetube.com +0.0.0.0 luckyshop.net.ua +0.0.0.0 lumb.co +0.0.0.0 lutherstable.org +0.0.0.0 luxmagazine.cf +0.0.0.0 luxup.ru +0.0.0.0 lyngdalhudterapi.no +0.0.0.0 lyrster.com +0.0.0.0 lyzqp.net.ru +0.0.0.0 m0r0zk0-krava.ru +0.0.0.0 m1media.net +0.0.0.0 m4ever.net +0.0.0.0 m5home.ru +0.0.0.0 mabdoola.blogspot.com +0.0.0.0 macdamaged.space +0.0.0.0 macdamaged.tech +0.0.0.0 mackeeper-center.club +0.0.0.0 mackeeper-land-672695126.us-east-1.elb.amazonaws.com +0.0.0.0 macnewtech.com +0.0.0.0 macresource.co.uk +0.0.0.0 madot.onlinewebshop.net +0.0.0.0 mafcards.ru +0.0.0.0 magazin-pics.ru +0.0.0.0 magazintiande.ru +0.0.0.0 magda-gadalka.ru +0.0.0.0 magento-crew.net +0.0.0.0 magicalfind-a.akamaihd.net +0.0.0.0 magicdiet.gq +0.0.0.0 magicplayer-s.acestream.net +0.0.0.0 maglid.ru +0.0.0.0 mail.allnews24.in +0.0.0.0 mainlinehobby.net +0.0.0.0 makedo.ru +0.0.0.0 make-money-online.com +0.0.0.0 makemoneyonline.com +0.0.0.0 maladot.com +0.0.0.0 malls.com +0.0.0.0 mall.uk +0.0.0.0 malwareremovalcenter.com +0.0.0.0 manipulyator-peterburg.ru +0.0.0.0 mantramusic.ru +0.0.0.0 manualterap.roleforum.ru +0.0.0.0 manuscript.su +0.0.0.0 manve.info +0.0.0.0 mapquestz.us +0.0.0.0 mararoom.ru +0.0.0.0 marblestyle.ru +0.0.0.0 marcogrup.com +0.0.0.0 marcoislandvacations.net +0.0.0.0 maridan.com.ua +0.0.0.0 marinetraffic.com +0.0.0.0 marketingtechniques.info +0.0.0.0 marketland.ml +0.0.0.0 markjaybeefractal.com +0.0.0.0 marktforschung-stuttgart.com +0.0.0.0 marmitaco.cat +0.0.0.0 marmotstore.online +0.0.0.0 marsgatan.com +0.0.0.0 martlinker.com +0.0.0.0 marwer.info +0.0.0.0 maslenka.kz +0.0.0.0 massage-info.nl +0.0.0.0 masserect.com +0.0.0.0 master-muznachas.ru +0.0.0.0 masterseek.com +0.0.0.0 masturbate.co.uk +0.0.0.0 matb3aa.com +0.0.0.0 matchpal-a.akamaihd.net +0.0.0.0 matematikus.info +0.0.0.0 max-eclat.men +0.0.0.0 maximilitary.ru +0.0.0.0 maxthon.com +0.0.0.0 mazda-roadsters.com +0.0.0.0 mbiologi.ru +0.0.0.0 mcadamssupplyco.com +0.0.0.0 mcar.in.ua +0.0.0.0 mebel-alait.ru +0.0.0.0 mebelcomplekt.ru +0.0.0.0 mebeldekor.com.ua +0.0.0.0 meble-bogart.info +0.0.0.0 mecash.ru +0.0.0.0 medanestesia.ru +0.0.0.0 meddesk.ru +0.0.0.0 mediawhirl.net +0.0.0.0 medicinacom.ru +0.0.0.0 medicine-4u.org +0.0.0.0 medicines-choice.com +0.0.0.0 medicovi.com +0.0.0.0 medictube.ru +0.0.0.0 medi-fitt.hu +0.0.0.0 medispainstitute.com.au +0.0.0.0 medizinreisen.de +0.0.0.0 medkletki.ru +0.0.0.0 medkritika.ru +0.0.0.0 medmajor.ru +0.0.0.0 medosmotr-ufa.ru +0.0.0.0 meds-online24.com +0.0.0.0 medtherapy.ru +0.0.0.0 meduza-consult.ru +0.0.0.0 med-zdorovie.com.ua +0.0.0.0 meendo-free-traffic.ga +0.0.0.0 meetlocalchicks.com +0.0.0.0 megaapteka.ru +0.0.0.0 megaindex.ru +0.0.0.0 megakino.net +0.0.0.0 mega-polis.biz.ua +0.0.0.0 megavolt.net.ua +0.0.0.0 meget.co.za +0.0.0.0 me-ke.com +0.0.0.0 meltwater.com +0.0.0.0 members.ghanaweb.com +0.0.0.0 menetie.ru +0.0.0.0 menhealed.net +0.0.0.0 mensandals.xyz +0.0.0.0 menstennisforums.com +0.0.0.0 mere.host.sk +0.0.0.0 merryhouse.co.uk +0.0.0.0 mesbuta.info +0.0.0.0 message-warning.net +0.0.0.0 mesto-x.com +0.0.0.0 metabar.ru +0.0.0.0 metalonly.info +0.0.0.0 metarip.ru +0.0.0.0 metaxalonevstizanidine.blogspot.com +0.0.0.0 methodsmarketing.com +0.0.0.0 mex-annushka.ru +0.0.0.0 mexicosleevegastrectomy.com +0.0.0.0 mexicotravelnet.com +0.0.0.0 mhi-systems.ru +0.0.0.0 mhtr.be +0.0.0.0 micasainvest.com +0.0.0.0 michaelkorsoutlet.store +0.0.0.0 michaelkorsoutletstore.net +0.0.0.0 michaelkorssaleoutletonline.net +0.0.0.0 microsearch.ru +0.0.0.0 microsoftportal.net +0.0.0.0 microstatic.pl +0.0.0.0 migente.com +0.0.0.0 mikrobiologies.ru +0.0.0.0 milblueprint.com +0.0.0.0 millionare.com +0.0.0.0 mindbox.co.za +0.0.0.0 minecraft-neo.ru +0.0.0.0 minecraft-rus.org +0.0.0.0 minegam.com +0.0.0.0 mini.7zap.com +0.0.0.0 miniads.ca +0.0.0.0 minneapoliscopiers.com +0.0.0.0 minyetki.ru +0.0.0.0 mir-betting.ru +0.0.0.0 mir-business-24.ru +0.0.0.0 mir-limuzinov.ru +0.0.0.0 mirmedinfo.ru +0.0.0.0 mirobuvi.com.ua +0.0.0.0 mirtorrent.net +0.0.0.0 mirzonru.net +0.0.0.0 misandesign.se +0.0.0.0 missvietnam.org +0.0.0.0 misswell.net +0.0.0.0 misswootwoot.com +0.0.0.0 mister-shop.com +0.0.0.0 mistr-x.org +0.0.0.0 mitcdoforumwest.org +0.0.0.0 mitrasound.ru +0.0.0.0 mixed-wrestling.ru +0.0.0.0 mixtapetorrent.com +0.0.0.0 mjchamonix.org +0.0.0.0 mlvc4zzw.space +0.0.0.0 mmofreegames.online +0.0.0.0 mmog-play.ru +0.0.0.0 mmoguider.ru +0.0.0.0 mmstat.com +0.0.0.0 mncrftpcs.com +0.0.0.0 mnogabukaff.net +0.0.0.0 mnprs.com +0.0.0.0 mobilemedia.md +0.0.0.0 mobot.site +0.0.0.0 mobplayer.net +0.0.0.0 mobplayer.ru +0.0.0.0 mockupui.com +0.0.0.0 modabutik.ru +0.0.0.0 modenamebel.ru +0.0.0.0 moesen-ficken.com +0.0.0.0 moesonce.com +0.0.0.0 moi-glazki.ru +0.0.0.0 moivestiy.biz +0.0.0.0 mojowhois.com +0.0.0.0 mokrayakiska.com +0.0.0.0 mole.pluto.ro +0.0.0.0 monarchfind-a.akamaihd.net +0.0.0.0 monarhs.info +0.0.0.0 monclerboots.xyz +0.0.0.0 monclercheap.xyz +0.0.0.0 monclerjacketsoutlet.pw +0.0.0.0 moncleronline.xyz +0.0.0.0 moncleroutletonline.pw +0.0.0.0 moncleroutletonline.xyz +0.0.0.0 monclervests.xyz +0.0.0.0 monetizationking.net +0.0.0.0 monetizer.com-01.site +0.0.0.0 money-every-day.com +0.0.0.0 moneymaster.ru +0.0.0.0 moneytop.ru +0.0.0.0 monitorwebsitespeed.com +0.0.0.0 moomi-daeri.com +0.0.0.0 morefastermac.trade +0.0.0.0 more-letom.ru +0.0.0.0 morepoweronmac.trade +0.0.0.0 morf.snn.gr +0.0.0.0 morlat.altervista.org +0.0.0.0 moroccosurfadventures.com +0.0.0.0 moscow-clining.ru +0.0.0.0 moscow-region.ru +0.0.0.0 moscow.xrus.org +0.0.0.0 mosdverka.ru +0.0.0.0 moskva.nodup.ru +0.0.0.0 mosrif.ru +0.0.0.0 mossmesi.com +0.0.0.0 mostantikor.ru +0.0.0.0 most-kerch.org +0.0.0.0 mototsikl.org +0.0.0.0 mountainstream.ms +0.0.0.0 movaimg.com +0.0.0.0 moviemail-online.co.uk +0.0.0.0 movies-in-theaters.net +0.0.0.0 moviezbonkerssk.cf +0.0.0.0 mowser.com +0.0.0.0 moxo.com +0.0.0.0 moyakuhnia.ru +0.0.0.0 moyaterapiya.ru +0.0.0.0 mp3films.ru +0.0.0.0 mp3ringtone.info +0.0.0.0 mrbitsandbytes.com +0.0.0.0 mrcsa.com.au +0.0.0.0 mrinsidesales.com +0.0.0.0 mriyadh.com +0.0.0.0 mrlmedia.net +0.0.0.0 mrmoneymustache.com +0.0.0.0 mrsdalloways.com +0.0.0.0 mrwhite.biz +0.0.0.0 msfsaar.de +0.0.0.0 msk-diplomat.com +0.0.0.0 mttwtrack.com +0.0.0.0 mturkcontent.com +0.0.0.0 mug-na-chas-moscow.ru +0.0.0.0 muizre.ru +0.0.0.0 mulberryoutletonlineeu.com +0.0.0.0 mundoaberrante.com +0.0.0.0 muscle-factory.com.ua +0.0.0.0 musezone.ru +0.0.0.0 musezone.su +0.0.0.0 musicdaddy.net +0.0.0.0 musicspire.online +0.0.0.0 musicstock.me +0.0.0.0 music.utrolive.ru +0.0.0.0 musicvidz.ru +0.0.0.0 mustat.com +0.0.0.0 mustwineblog.com +0.0.0.0 muzaporn.com +0.0.0.0 muz-baza.net +0.0.0.0 muznachas-service.ru +0.0.0.0 muz-shoes.ru +0.0.0.0 muztops.ru +0.0.0.0 mvpicton.co.uk +0.0.0.0 mwtpludn.review +0.0.0.0 my-bc.ru +0.0.0.0 my-big-family.com +0.0.0.0 myblogregistercm.tk +0.0.0.0 mycaf.it +0.0.0.0 my-cash-bot.co +0.0.0.0 mydeathspace.com +0.0.0.0 mydirtyhobby.com +0.0.0.0 mydirtystuff.com +0.0.0.0 mydownloadengine.com +0.0.0.0 mydownlodablefiles.com +0.0.0.0 myfreecams.com +0.0.0.0 myfreemp3.eu +0.0.0.0 myfreetutorials.com +0.0.0.0 myftpupload.com +0.0.0.0 mygameplus.com +0.0.0.0 mygameplus.ru +0.0.0.0 myhealthcare.com +0.0.0.0 myhitmp3.club +0.0.0.0 myindospace.com +0.0.0.0 myiptest.com +0.0.0.0 mykings.pw +0.0.0.0 mylesosibirsk.ru +0.0.0.0 mylida.org +0.0.0.0 myliveblog.ru +0.0.0.0 my.opera.com +0.0.0.0 myperiod.club +0.0.0.0 mypets.by +0.0.0.0 myplaycity.com +0.0.0.0 myprintscreen.com +0.0.0.0 myseoconsultant.com +0.0.0.0 myshopmatemac.com +0.0.0.0 mystats.xyz +0.0.0.0 mywallpaper.top +0.0.0.0 na15.ru +0.0.0.0 nacap.ru +0.0.0.0 nac-bearings.ru +0.0.0.0 nagdak.ru +0.0.0.0 nailsimg.com +0.0.0.0 nalogovyy-kodeks.ru +0.0.0.0 namenectar.com +0.0.0.0 naperehresti.info +0.0.0.0 naphukete.ru +0.0.0.0 nardulan.com +0.0.0.0 narkologiya-belgorod.ru +0.0.0.0 narkologiya-orel.ru +0.0.0.0 narkologiya-penza.ru +0.0.0.0 narkologiya-peterburg.ru +0.0.0.0 narkologiya-voronezh.ru +0.0.0.0 narosty.com +0.0.0.0 narutonaruto.ru +0.0.0.0 nastroyke.net +0.0.0.0 nastydollars.com +0.0.0.0 nate.com +0.0.0.0 na-telefon.biz +0.0.0.0 naturalbreakthroughsresearch.com +0.0.0.0 naval.jislaaik.com +0.0.0.0 nbsproject.ru +0.0.0.0 negociosdasha.com +0.0.0.0 negral.pluto.ro +0.0.0.0 neobux-bg.info +0.0.0.0 neodownload.webcam +0.0.0.0 nerudlogistik.ru +0.0.0.0 netallergy.ru +0.0.0.0 netfacet.net +0.0.0.0 netpics.org +0.0.0.0 net-radar.com +0.0.0.0 networkad.net +0.0.0.0 nevansk.ru +0.0.0.0 new7ob.com +0.0.0.0 new-apps.ru +0.0.0.0 newhairstylesformen2014.com +0.0.0.0 new-post.tk +0.0.0.0 newsperuse.com +0.0.0.0 news-readers.ru +0.0.0.0 newstraveller.ru +0.0.0.0 newstudio.tv +0.0.0.0 newtechspb.ru +0.0.0.0 newyorkhotelsmotels.info +0.0.0.0 nextconseil.com +0.0.0.0 nfljerseyscheapbiz.us +0.0.0.0 nfljerseyscheapchinabiz.com +0.0.0.0 nfljerseysforsalewholesaler.com +0.0.0.0 nfljerseys.online +0.0.0.0 ngps1.ru +0.0.0.0 nhl09.ru +0.0.0.0 nhl17coins.exblog.jp +0.0.0.0 nhl17coinsforps3.gratisblog.biz +0.0.0.0 nibbler.silktide.com +0.0.0.0 nicefloor.co.uk +0.0.0.0 nicovideo.jp +0.0.0.0 nigcongvetua.servepics.com +0.0.0.0 nightvision746.weebly.com +0.0.0.0 niki-mlt.ru +0.0.0.0 nikitsyringedrivelg.pen.io +0.0.0.0 nikkiewart.ru +0.0.0.0 nippon-bearings.ru +0.0.0.0 niroo.info +0.0.0.0 nl.netlog.com +0.0.0.0 noclegonline.info +0.0.0.0 nodup.ru +0.0.0.0 nofreezingmac.work +0.0.0.0 nonews.co +0.0.0.0 nootrino.com +0.0.0.0 nordstar.pro +0.0.0.0 normalegal.ru +0.0.0.0 northfacestore.online +0.0.0.0 norththeface.store +0.0.0.0 notaria-desalas.com +0.0.0.0 notebook-pro.ru +0.0.0.0 notfastfood.ru +0.0.0.0 nottyu.xyz +0.0.0.0 noumeda.com +0.0.0.0 november-lax.com +0.0.0.0 novgorod.xrus.org +0.0.0.0 novosibirsk.xrus.org +0.0.0.0 novosti-hi-tech.ru +0.0.0.0 npoet.ru +0.0.0.0 nrv.co.za +0.0.0.0 nsatc.net +0.0.0.0 nucia.biz.ly +0.0.0.0 nudepatch.net +0.0.0.0 nudo.ca +0.0.0.0 nufaq.com +0.0.0.0 nuit-artisanale.com +0.0.0.0 nullrefer.com +0.0.0.0 nuup.info +0.0.0.0 nvformula.ru +0.0.0.0 nyfinance.ml +0.0.0.0 nzfilecloud.weebly.com +0.0.0.0 o00.in +0.0.0.0 oakleyglassesonline.us +0.0.0.0 oballergiya.ru +0.0.0.0 obnal.org +0.0.0.0 obuv-kupit.ru +0.0.0.0 ochistka-stokov.ru +0.0.0.0 oconto.ru +0.0.0.0 o-dachnik.ru +0.0.0.0 odesproperty.com +0.0.0.0 odywpjtw.bloger.index.hr +0.0.0.0 offer.camp +0.0.0.0 offergroup.info +0.0.0.0 offers.bycontext.com +0.0.0.0 offf.info +0.0.0.0 office-windows.ru +0.0.0.0 offtime.ru +0.0.0.0 ohmyrings.com +0.0.0.0 oil-td.ru +0.0.0.0 okel.co +0.0.0.0 oklogistic.ru +0.0.0.0 okmusic.jp +0.0.0.0 okout.ru +0.0.0.0 okroshki.ru +0.0.0.0 oktube.ru +0.0.0.0 ok-ua.info +0.0.0.0 old-rock.com +0.0.0.0 olvanto.ru +0.0.0.0 olympescort.com +0.0.0.0 omsk.xrus.org +0.0.0.0 onclkads.com +0.0.0.0 oneclickfiles.com +0.0.0.0 onefilms.net +0.0.0.0 one-gear.com +0.0.0.0 oneminutesite.it +0.0.0.0 onescreen.cc +0.0.0.0 oneshotdate.com +0.0.0.0 onetravelguides.com +0.0.0.0 onlainbesplatno.ru +0.0.0.0 onlinadverts.com +0.0.0.0 online7777.com +0.0.0.0 onlinebay.ru +0.0.0.0 onlinedomains.ru +0.0.0.0 onlinefilmz.net +0.0.0.0 online-hit.info +0.0.0.0 online.ktc45.ru +0.0.0.0 onlineku.com +0.0.0.0 onlinemeetingnow.com +0.0.0.0 onlinemegax.com +0.0.0.0 onlineserialy.ru +0.0.0.0 online-templatestore.com +0.0.0.0 onlinetvseries.me +0.0.0.0 onlinewritingjobs17.blogspot.ru +0.0.0.0 online-x.ru +0.0.0.0 onload.pw +0.0.0.0 onlyforemont.ru +0.0.0.0 onlythegames.com +0.0.0.0 onlywoman.org +0.0.0.0 ons-add.men +0.0.0.0 onstrapon.purplesphere.in +0.0.0.0 o-o-11-o-o.com +0.0.0.0 o-o-6-o-o.com +0.0.0.0 o-o-6-o-o.ru +0.0.0.0 o-o-8-o-o.com +0.0.0.0 o-o-8-o-o.ru +0.0.0.0 ooo-gotovie.ru +0.0.0.0 ooo-olni.ru +0.0.0.0 openfrost.com +0.0.0.0 openfrost.net +0.0.0.0 openmediasoft.com +0.0.0.0 openmultipleurl.com +0.0.0.0 openstat.com +0.0.0.0 opinionreelle.com +0.0.0.0 ops.picscout.com +0.0.0.0 optitrade24.com +0.0.0.0 oralsexfilme.net +0.0.0.0 oranga.host.sk +0.0.0.0 ordernorxx.com +0.0.0.0 orel-reshka.net +0.0.0.0 orenburg-gsm.ru +0.0.0.0 oren-cats.ru +0.0.0.0 orgasmus-virtual.com +0.0.0.0 orhonit.com +0.0.0.0 origin-my.ru +0.0.0.0 ororodnik.goodbb.ru +0.0.0.0 orsonet.ru +0.0.0.0 osoznanie-narkotikam.net +0.0.0.0 ossmalta.com +0.0.0.0 ostrovtaxi.ru +0.0.0.0 otbelivanie-zubov.com +0.0.0.0 ourtherapy.ru +0.0.0.0 ourville.info +0.0.0.0 outfitpicz.com +0.0.0.0 outpersonals.com +0.0.0.0 outrageousdeal-a.akamaihd.net +0.0.0.0 outshop.ru +0.0.0.0 ovirus.ru +0.0.0.0 ownshop.cf +0.0.0.0 owohho.com +0.0.0.0 oxford-book.com.ua +0.0.0.0 oynat.info +0.0.0.0 ozas.net +0.0.0.0 oz-offers.com +0.0.0.0 ozoz.it +0.0.0.0 paceform.com +0.0.0.0 pagesense.com +0.0.0.0 paleohub.info +0.0.0.0 palvira.com.ua +0.0.0.0 pammik.ru +0.0.0.0 panamaforbeginners.com +0.0.0.0 panchro.co.uk +0.0.0.0 panchro.xyz +0.0.0.0 paparazzistudios.com.au +0.0.0.0 paperics.com +0.0.0.0 paperwritingservice17.blogspot.ru +0.0.0.0 paphoselectricianandplumber.com +0.0.0.0 paradontozanet.ru +0.0.0.0 parajumpersoutlet.online +0.0.0.0 parajumpersstore.online +0.0.0.0 paramountmarble.co.uk +0.0.0.0 parlament.biz +0.0.0.0 partner-cdn.men +0.0.0.0 partner-print.men +0.0.0.0 partners-ship.pro +0.0.0.0 partybunny.ru +0.0.0.0 patagoniaoutlet.online +0.0.0.0 patagoniastore.online +0.0.0.0 pathwhelp.org +0.0.0.0 pattersonsweb.com +0.0.0.0 paydayloanslocal.com +0.0.0.0 paydayonlinecom.com +0.0.0.0 pb-dv.ru +0.0.0.0 p-business.ru +0.0.0.0 pcads.ru +0.0.0.0 pcboa.se +0.0.0.0 pcgroup.com.uy +0.0.0.0 pc-services.ru +0.0.0.0 pc-test.net +0.0.0.0 pc-virus-d0l92j2.pw +0.0.0.0 pdamods.ru +0.0.0.0 pdns.cz +0.0.0.0 pdns.download +0.0.0.0 pearlisland.ru +0.0.0.0 pechikamini.ru +0.0.0.0 peekyou.com +0.0.0.0 pekori.to +0.0.0.0 pelfind.me +0.0.0.0 pendelprognos.se +0.0.0.0 penisvergrotendepillennl.ovh +0.0.0.0 pensplan4u.com +0.0.0.0 pensplan.com +0.0.0.0 pepperstyle.ru +0.0.0.0 percin.biz.ly +0.0.0.0 perfection-pleasure.ru +0.0.0.0 perfectpracticeweb.com +0.0.0.0 perm.xrus.org +0.0.0.0 perosan.com +0.0.0.0 personalhoro.ru +0.0.0.0 perso.wanadoo.es +0.0.0.0 pestomou.info +0.0.0.0 petedrummond.com +0.0.0.0 petrovka-online.com +0.0.0.0 petsblogroll.com +0.0.0.0 pflexads.com +0.0.0.0 pharmacyincity.com +0.0.0.0 phobia.us +0.0.0.0 phormchina.com +0.0.0.0 phormdev.com +0.0.0.0 phormdiscover.com +0.0.0.0 phormkorea.com +0.0.0.0 phormlabs.com +0.0.0.0 phormprivacy.com +0.0.0.0 phormservice.com +0.0.0.0 phormsolution.com +0.0.0.0 photochki.com +0.0.0.0 photo.houseofgaga.ru +0.0.0.0 photokitchendesign.com +0.0.0.0 photorepair.ru +0.0.0.0 physfunc.ru +0.0.0.0 pic2fly.com +0.0.0.0 piccdata.com +0.0.0.0 piccshare.com +0.0.0.0 picphotos.net +0.0.0.0 picscout.com +0.0.0.0 picsearch.com +0.0.0.0 picsfair.com +0.0.0.0 pics-group.com +0.0.0.0 picture-group.com +0.0.0.0 picturesfrom.com +0.0.0.0 picturesify.com +0.0.0.0 picturesmania.com +0.0.0.0 pierrehardysale.online +0.0.0.0 pigrafix.at +0.0.0.0 pihl.se +0.0.0.0 pijoto.net +0.0.0.0 pila.pl +0.0.0.0 pinkduck.ga +0.0.0.0 pinstake.com +0.0.0.0 pintattoos.com +0.0.0.0 pinwallpaper.top +0.0.0.0 pinwallpaper.xyz +0.0.0.0 piratecams.com +0.0.0.0 pirateday.ru +0.0.0.0 piter.xrus.org +0.0.0.0 piuminiita.com +0.0.0.0 pix24x7.com +0.0.0.0 pixell.club +0.0.0.0 pixelrz.com +0.0.0.0 pixgood.com +0.0.0.0 pixhdawesom.com +0.0.0.0 pix-hd.com +0.0.0.0 pixsad.com +0.0.0.0 pizda.lol +0.0.0.0 pizdopletka.club +0.0.0.0 pizza-imperia.com +0.0.0.0 pizza-tycoon.com +0.0.0.0 pkmnpcs.com +0.0.0.0 pk-pomosch.ru +0.0.0.0 pkr1hand.com +0.0.0.0 pk-services.ru +0.0.0.0 pladform.ru +0.0.0.0 plastweb.ru +0.0.0.0 platesauto.com +0.0.0.0 platinumdeals.gr +0.0.0.0 playboyfiles.xblog.in +0.0.0.0 play-mp3.com +0.0.0.0 ploenjitmedia.azurewebsites.net +0.0.0.0 plohaya-kreditnaya-istoriya.ru +0.0.0.0 plusnetwork.com +0.0.0.0 pmk-samara.ru +0.0.0.0 pochemychka.net +0.0.0.0 poffet.net +0.0.0.0 pogodnyyeavarii.gq +0.0.0.0 pogruztehnik.ru +0.0.0.0 poisk-zakona.ru +0.0.0.0 pojdelo.weebly.com +0.0.0.0 pokemongooo.ml +0.0.0.0 pokemon-go-play.online +0.0.0.0 pokerniydom.ru +0.0.0.0 polcin.de +0.0.0.0 polybuild.ru +0.0.0.0 pomoc-drogowa.cba.pl +0.0.0.0 pontiacsolstice.info +0.0.0.0 pony-business.com +0.0.0.0 popads.net +0.0.0.0 popander.mobi +0.0.0.0 popcash.net +0.0.0.0 popmarker.com +0.0.0.0 poppen-nw.net +0.0.0.0 popserve.adscpm.net +0.0.0.0 poptool.net +0.0.0.0 popup-fdm.xyz +0.0.0.0 popup-hgd.xyz +0.0.0.0 popup-jdh.xyz +0.0.0.0 popup.matchmaker.com +0.0.0.0 poquoson.org +0.0.0.0 porn555.com +0.0.0.0 porndairy.in +0.0.0.0 porngalleries.top +0.0.0.0 pornhub-forum.ga +0.0.0.0 pornhubforum.tk +0.0.0.0 pornhub-forum.uni.me +0.0.0.0 pornhub-ru.com +0.0.0.0 pornoblood.com +0.0.0.0 pornobrazzers.biz +0.0.0.0 pornodojd.ru +0.0.0.0 porno-dojki.net +0.0.0.0 pornofiljmi.com +0.0.0.0 pornoforadult.com +0.0.0.0 pornogig.com +0.0.0.0 pornokajf.com +0.0.0.0 pornoklad.net +0.0.0.0 pornoklad.ru +0.0.0.0 pornokorol.com +0.0.0.0 pornolook.net +0.0.0.0 pornophoto.xyz +0.0.0.0 porno-play.net +0.0.0.0 porno-raskazy.ru +0.0.0.0 pornosee.info +0.0.0.0 pornoslive.net +0.0.0.0 porno-transsexuals.ru +0.0.0.0 pornotubexxx.name +0.0.0.0 porno-video-chati.ru +0.0.0.0 pornpost.in +0.0.0.0 pornstartits.xblog.in +0.0.0.0 porn-w.org +0.0.0.0 pornzone.tv +0.0.0.0 porodasobak.net +0.0.0.0 portadd.men +0.0.0.0 portal-eu.ru +0.0.0.0 portnoff.od.ua +0.0.0.0 portside.cc +0.0.0.0 portside.xyz +0.0.0.0 poshiv-chehol.ru +0.0.0.0 positive2b.ru +0.0.0.0 pospr.waw.pl +0.0.0.0 postclass.com +0.0.0.0 potoideas.us +0.0.0.0 powenlite24.ru +0.0.0.0 powitania.pl +0.0.0.0 pozdravleniya-c.ru +0.0.0.0 pozdrawleniya.com +0.0.0.0 pozdrawleniya.ru +0.0.0.0 pozvonim.com +0.0.0.0 pp-budpostach.com.ua +0.0.0.0 pr0fit-b0x.com +0.0.0.0 pravoholding.ru +0.0.0.0 prchecker.info +0.0.0.0 preparevideosafesystem4unow.site +0.0.0.0 preparevideosafesystem4unow.space +0.0.0.0 pretty-mart.com +0.0.0.0 pricheski-video.com +0.0.0.0 printdirectforless.com +0.0.0.0 printingpeach.com +0.0.0.0 priora-2.com +0.0.0.0 privacyassistant.net +0.0.0.0 privatamateure.com +0.0.0.0 privatbank46.ru +0.0.0.0 privatefx.all4invest.info +0.0.0.0 privatefx-in.ru +0.0.0.0 privat-girl.net +0.0.0.0 privatov-zapisi.ru +0.0.0.0 privhosting.com +0.0.0.0 prize44.com +0.0.0.0 prizesbook.online +0.0.0.0 prizestohandle.club +0.0.0.0 prlog.ru +0.0.0.0 prod2016.com +0.0.0.0 producm.ru +0.0.0.0 productarium.com +0.0.0.0 produkto.net +0.0.0.0 prodvigator.ua +0.0.0.0 proekt-gaz.ru +0.0.0.0 proekt-mos.ru +0.0.0.0 professionalwritingservices15.blogspot.ru +0.0.0.0 profitfx.online +0.0.0.0 profitsport.club +0.0.0.0 proftests.net +0.0.0.0 progress-upakovka.ru +0.0.0.0 prohoster.info +0.0.0.0 prointer.net.ua +0.0.0.0 projectforte.ru +0.0.0.0 projefrio.com.br +0.0.0.0 prokotov.com +0.0.0.0 prom23.ru +0.0.0.0 promalp-universal.ru +0.0.0.0 prombudpostach.com.ua +0.0.0.0 promgirldresses.xyz +0.0.0.0 promodj.com +0.0.0.0 promoforum.ru +0.0.0.0 promoheads.com +0.0.0.0 pronekut.com +0.0.0.0 pron.pro +0.0.0.0 pro-okis.ru +0.0.0.0 proposal-engine.com +0.0.0.0 propranolol40mg.blogspot.com +0.0.0.0 prosmibank.ru +0.0.0.0 prosperent.com +0.0.0.0 prostitutki-almata.org +0.0.0.0 prostitutki-astana.org +0.0.0.0 prostitutki-belgoroda.org +0.0.0.0 prostitutki-kharkova.org +0.0.0.0 prostitutki-kiev.org +0.0.0.0 prostitutki-novgoroda.org +0.0.0.0 prostitutki-odessa.org +0.0.0.0 prostitutki-rostova.org +0.0.0.0 prostitutki-tolyatti.org +0.0.0.0 prostitutki-tyumeni.org +0.0.0.0 prostitutki-yaroslavlya.org +0.0.0.0 proxyradar.com +0.0.0.0 prpops.com +0.0.0.0 pr-ten.de +0.0.0.0 psa48.ru +0.0.0.0 pskcijdc.bloger.index.hr +0.0.0.0 psoriasis-file.trade +0.0.0.0 pst2017.onlinewebshop.net +0.0.0.0 psvita.ru +0.0.0.0 pts163.ru +0.0.0.0 publiccasinoil.com +0.0.0.0 pufip.com +0.0.0.0 pukaporn.com +0.0.0.0 pulse33.ru +0.0.0.0 pulseonclick.com +0.0.0.0 purchasepillsnorx.com +0.0.0.0 purplesphere.in +0.0.0.0 push-ad.com +0.0.0.0 pushdata.sendpulse.com +0.0.0.0 pussyfleet.com +0.0.0.0 pussysaga.com +0.0.0.0 puteshestvennik.com +0.0.0.0 putevka24.ru +0.0.0.0 putitin.me +0.0.0.0 puzo2arbuza.ru +0.0.0.0 puzzleweb.ru +0.0.0.0 pwwysydh.com +0.0.0.0 pxhdwsm.com +0.0.0.0 py100.ru +0.0.0.0 pyramidlitho.webs.com +0.0.0.0 pyrodesigns.com.au +0.0.0.0 qcstrtvt.bloger.index.hr +0.0.0.0 qexyfu.bugs3.com +0.0.0.0 qitt.ru +0.0.0.0 qld10000.net +0.0.0.0 q-moto.ru +0.0.0.0 qualitymarketzone.com +0.0.0.0 quality-traffic.com +0.0.0.0 quebec-bin.com +0.0.0.0 queen.sim-com.ru +0.0.0.0 quelle.ru +0.0.0.0 quickbuck.com +0.0.0.0 quick-offer.com +0.0.0.0 quick-seeker.com +0.0.0.0 quit-smoking.ga +0.0.0.0 quizzitch.net +0.0.0.0 qwarckoine.com +0.0.0.0 qwesa.ru +0.0.0.0 rabotaetvse.ru +0.0.0.0 rabot.host.sk +0.0.0.0 rada.ru +0.0.0.0 radiogambling.com +0.0.0.0 ragecash.com +0.0.0.0 rainbowice.ru +0.0.0.0 raisedseo.com +0.0.0.0 randalljhoward.com +0.0.0.0 randki-sex.com +0.0.0.0 rank-checker.online +0.0.0.0 rankchecker.online +0.0.0.0 ranking2017.ga +0.0.0.0 rankingchart.de +0.0.0.0 rankings-analytics.com +0.0.0.0 ranksays.com +0.0.0.0 rankscanner.com +0.0.0.0 ranksignals.com +0.0.0.0 ranksonic.com +0.0.0.0 ranksonic.info +0.0.0.0 ranksonic.net +0.0.0.0 ranksonic.org +0.0.0.0 rapevideosmovies.com +0.0.0.0 rapidgator-porn.ga +0.0.0.0 rapidokbrain.com +0.0.0.0 rasteniya-vs-zombi.ru +0.0.0.0 razamicroelectronics.com +0.0.0.0 razorweb-a.akamaihd.net +0.0.0.0 razyboard.com +0.0.0.0 rcb101.ru +0.0.0.0 r-control.ru +0.0.0.0 realitykings.com +0.0.0.0 realmonte.net +0.0.0.0 realnye-otzyvy.info +0.0.0.0 real-time-analytics.com +0.0.0.0 realting-moscow.ru +0.0.0.0 realtytimes.com +0.0.0.0 rebelmouse.com +0.0.0.0 rebuildermedical.com +0.0.0.0 recinziireale.com +0.0.0.0 recipedays.com +0.0.0.0 recipedays.ru +0.0.0.0 recordpage-a.akamaihd.net +0.0.0.0 redbottomheels.xyz +0.0.0.0 rednise.com +0.0.0.0 reelheroes.net +0.0.0.0 referencemoi.com +0.0.0.0 refererx.com +0.0.0.0 regionshop.biz +0.0.0.0 registratciya-v-moskve.ru +0.0.0.0 reklama1.ru +0.0.0.0 reklama-i-rabota.ru +0.0.0.0 reklamuss.ru +0.0.0.0 relax.ru +0.0.0.0 remedyotc.com +0.0.0.0 remmling.de +0.0.0.0 remontbiz.ru +0.0.0.0 remont-comp-pomosh.ru +0.0.0.0 remont-fridge-tv.ru +0.0.0.0 remontgruzovik.ru +0.0.0.0 remont-komputerov-notebook.ru +0.0.0.0 remont-mobile-phones.ru +0.0.0.0 remont-ustanovka-tehniki.ru +0.0.0.0 remorcicomerciale.ro +0.0.0.0 remote-dba.de +0.0.0.0 renecaovilla.online +0.0.0.0 renecaovillasale.online +0.0.0.0 renewablewealth.com +0.0.0.0 rentalmaty.kz +0.0.0.0 rentehno.ru +0.0.0.0 repeatlogo.co.uk +0.0.0.0 replicaclub.ru +0.0.0.0 replicalouboutin.xyz +0.0.0.0 replica-watch.ru +0.0.0.0 resellerclub.com +0.0.0.0 responsinator.com +0.0.0.0 responsive-test.net +0.0.0.0 respublica-otel.ru +0.0.0.0 restorator-msk.ru +0.0.0.0 resultshub-a.akamaihd.net +0.0.0.0 retailwith.com +0.0.0.0 retreatia.com +0.0.0.0 reversing.cc +0.0.0.0 reward-survey.net +0.0.0.0 reyel1985.webnode.fr +0.0.0.0 rezeptiblud.ru +0.0.0.0 rfd-split.hr +0.0.0.0 rff-cfal.info +0.0.0.0 rialp.getenjoyment.net +0.0.0.0 richinvestmonitor.com +0.0.0.0 riders.ro +0.0.0.0 rightenergysolutions.com.au +0.0.0.0 ring4rhino.com +0.0.0.0 ringporno.com +0.0.0.0 rique.host.sk +0.0.0.0 risparmiocasa.bz.it +0.0.0.0 ritlweb.com +0.0.0.0 rn-to-bsn.com +0.0.0.0 robot-forex.biz +0.0.0.0 rockingclicks.com +0.0.0.0 rogervivierforsale.com +0.0.0.0 roleforum.ru +0.0.0.0 roma-kukareku.livejournal.com +0.0.0.0 roofers.org.uk +0.0.0.0 rootandroid.org +0.0.0.0 ros-ctm.ru +0.0.0.0 rospromtest.ru +0.0.0.0 rossanasaavedra.net +0.0.0.0 rossmark.ru +0.0.0.0 rostov.xrus.org +0.0.0.0 royal-betting.net +0.0.0.0 royalcar-ufa.ru +0.0.0.0 royal-investments.net +0.0.0.0 royalvegascasino.com +0.0.0.0 rozalli.com +0.0.0.0 roznica.com.ua +0.0.0.0 rp9.ru +0.0.0.0 rucrypt.com +0.0.0.0 ru-dety.ru +0.0.0.0 ruex.org.ua +0.0.0.0 rukino.org +0.0.0.0 rumamba.com +0.0.0.0 running-line.ru +0.0.0.0 runstocks.com +0.0.0.0 ruscopybook.com +0.0.0.0 rusenvironmental.net +0.0.0.0 rusexy.xyz +0.0.0.0 rusoft-zone.ru +0.0.0.0 ruspdd.com +0.0.0.0 russia-today-video.ru +0.0.0.0 russintv.fr +0.0.0.0 russkie-gorki.ru +0.0.0.0 russkoe-zdorovie.ru +0.0.0.0 rus-teh.narod.ru +0.0.0.0 rvtv.ru +0.0.0.0 rvzr-a.akamaihd.net +0.0.0.0 rybalka-opt.ru +0.0.0.0 sabaapress.com +0.0.0.0 sack.net +0.0.0.0 sad-torg.com.ua +0.0.0.0 sady-urala.ru +0.0.0.0 sahohev.000host.co.uk +0.0.0.0 saitevpatorii.com +0.0.0.0 sale-japan.com +0.0.0.0 saletool.ru +0.0.0.0 salutmontreal.com +0.0.0.0 samoiedo.it +0.0.0.0 samolet.fr +0.0.0.0 samo-soznanie.ru +0.0.0.0 sampleletters.net +0.0.0.0 sanatorrii.ru +0.0.0.0 sandhillsonline.com +0.0.0.0 sanjosestartups.com +0.0.0.0 sankt-peterburg.nodup.ru +0.0.0.0 santasgift.ml +0.0.0.0 santechnik.jimdo.com +0.0.0.0 sanyuprojects.com +0.0.0.0 sarafangel.ru +0.0.0.0 saratov.xrus.org +0.0.0.0 sarf3omlat.com +0.0.0.0 sarm.tk +0.0.0.0 sashagreyblog.ga +0.0.0.0 saugatuck.com +0.0.0.0 savefrom.com +0.0.0.0 saveindex.xyz +0.0.0.0 savememoney.co.za +0.0.0.0 savetubevideo.com +0.0.0.0 savingsslider-a.akamaihd.net +0.0.0.0 savne.org +0.0.0.0 sawin.beth.webd.pl +0.0.0.0 sax-sex.com +0.0.0.0 sayyoethe.blogspot.co.za +0.0.0.0 sbdl.no +0.0.0.0 sbetodiodnye-lampy.ru +0.0.0.0 sbornik-zakonov.ru +0.0.0.0 sbprabooks.com +0.0.0.0 sbricur.com +0.0.0.0 sbt-aqua.ru +0.0.0.0 sbtdesign.co.uk +0.0.0.0 sbwealthsolutions.ca +0.0.0.0 scalerite.co.za +0.0.0.0 scanmarine.info +0.0.0.0 scanmyphones.com +0.0.0.0 scanner-alexa.top +0.0.0.0 scanner-alex.top +0.0.0.0 scanner-andrew.top +0.0.0.0 scanner-barak.top +0.0.0.0 scanner-brian.top +0.0.0.0 scanner-donald.top +0.0.0.0 scanner-don.top +0.0.0.0 scanner-elena.top +0.0.0.0 scanner-fred.top +0.0.0.0 scanner-george.top +0.0.0.0 scanner-irvin.top +0.0.0.0 scanner-ivan.top +0.0.0.0 scanner-jack.top +0.0.0.0 scanner-jane.top +0.0.0.0 scanner-jessica.top +0.0.0.0 scanner-jess.top +0.0.0.0 scanner-john.top +0.0.0.0 scanner-josh.top +0.0.0.0 scanner-julianna.top +0.0.0.0 scanner-julia.top +0.0.0.0 scanner-margo.top +0.0.0.0 scanner-mark.top +0.0.0.0 scanner-marwin.top +0.0.0.0 scanner-mary.top +0.0.0.0 scanner-nelson.top +0.0.0.0 scanner-olga.top +0.0.0.0 scanner-viktor.top +0.0.0.0 scanner-walter.top +0.0.0.0 scanner-walt.top +0.0.0.0 scanner-willy.top +0.0.0.0 scansafe.net +0.0.0.0 scenarii-1-sentyabrya.uroki.org.ua +0.0.0.0 scenicmissouri.us +0.0.0.0 school-diplomat.ru +0.0.0.0 scoopquest.com +0.0.0.0 score-ads.men +0.0.0.0 scrapy.org +0.0.0.0 screentoolkit.com +0.0.0.0 scripted.com +0.0.0.0 sc-specialhost.com +0.0.0.0 sdelai-prosto.ru +0.0.0.0 sdelatmebel.ru +0.0.0.0 sdi-pme.com +0.0.0.0 sdrescher.net +0.0.0.0 sdsjweb.com +0.0.0.0 seadragonherbery.com +0.0.0.0 search-error.com +0.0.0.0 searchinterneat-a.akamaihd.net +0.0.0.0 searchkut.com +0.0.0.0 searchlock.com +0.0.0.0 searchmywindow-a.akamaihd.net +0.0.0.0 searchtooknow-a.akamaihd.net +0.0.0.0 searchwebknow-a.akamaihd.net +0.0.0.0 seasonvar.ru +0.0.0.0 seccioncontrabajo.com +0.0.0.0 secretscook.ru +0.0.0.0 secret.xn--oogle-wmc.com +0.0.0.0 securityallianceservices.com +0.0.0.0 seeingmeerkat.com +0.0.0.0 seeresultshub-a.akamaihd.net +0.0.0.0 segol.tv +0.0.0.0 seksotur.ru +0.0.0.0 selfipicz.com +0.0.0.0 semalt.com +0.0.0.0 semaltmedia.com +0.0.0.0 semp.net +0.0.0.0 semprofile.com +0.0.0.0 senger.atspace.co.uk +0.0.0.0 seo-2-0.com +0.0.0.0 seoanalyses.com +0.0.0.0 seocheki.net +0.0.0.0 seoexperimenty.ru +0.0.0.0 seofied.com +0.0.0.0 seofirmreviewsus.info +0.0.0.0 seogadget.ru +0.0.0.0 seoheap.com +0.0.0.0 seokicks.de +0.0.0.0 seomarketings.online +0.0.0.0 seo-platform.com +0.0.0.0 seoprofiler.com +0.0.0.0 seorank.info +0.0.0.0 seorankinglinks.com +0.0.0.0 seorankinglinks.us +0.0.0.0 seorankinglinks.xyz +0.0.0.0 seo-smm.kz +0.0.0.0 seo-tools-optimizing.com +0.0.0.0 seo-traffic-ranking.info +0.0.0.0 serdcenebolit.com +0.0.0.0 sergiorossistore.online +0.0.0.0 serialsway.ucoz.ru +0.0.0.0 serptehnika.ru +0.0.0.0 server.popads.net +0.0.0.0 service.adtech.de +0.0.0.0 service.adtech.fr +0.0.0.0 service.adtech.us +0.0.0.0 service-core.ru +0.0.0.0 servingnotice.com +0.0.0.0 servisural.ru +0.0.0.0 seryeznie-znakomstva.ru +0.0.0.0 sethrollins.net +0.0.0.0 sexad.net +0.0.0.0 sexblog.pw +0.0.0.0 sex-dating.co +0.0.0.0 sexflirtbook.com +0.0.0.0 sex.hotblog.top +0.0.0.0 sexkontakteao.info +0.0.0.0 sexkontakte-seite.com +0.0.0.0 sexkrasivo.net +0.0.0.0 sexobzor.info +0.0.0.0 sexpartygirls.net +0.0.0.0 sexphoto.site +0.0.0.0 sex-pr.net +0.0.0.0 sexreliz.com +0.0.0.0 sexsaoy.com +0.0.0.0 sexsearch.com +0.0.0.0 sex-sex-sex5.com +0.0.0.0 sextracker.be +0.0.0.0 sex-tracker.com +0.0.0.0 sextracker.com +0.0.0.0 sex-tracker.de +0.0.0.0 sextracker.de +0.0.0.0 sexvideo-sex.com +0.0.0.0 sexvporno.ru +0.0.0.0 sex-watch.com +0.0.0.0 sexyali.com +0.0.0.0 sexy-pings.com +0.0.0.0 sexy-screen-savers.com +0.0.0.0 sexystrippe.info +0.0.0.0 sexyteens.hol.es +0.0.0.0 sexytrend.ru +0.0.0.0 sfd-chess.ru +0.0.0.0 shakhtar-doneck.ru +0.0.0.0 sharebutton.net +0.0.0.0 sharebutton.org +0.0.0.0 share-buttons-for-free.com +0.0.0.0 sharebutton.to +0.0.0.0 shariki-zuma-lines.ru +0.0.0.0 sharpchallenge.com +0.0.0.0 shell-pmr.ru +0.0.0.0 shemalegalls.blogporn.in +0.0.0.0 shemale-sex.net +0.0.0.0 sherlock.se +0.0.0.0 shijian.ac.cn +0.0.0.0 shiksabd.com +0.0.0.0 shinikiev.com.ua +0.0.0.0 ship-marvel.co.ua +0.0.0.0 shisha-swag.de +0.0.0.0 shitmovs.com +0.0.0.0 shlyahten.ru +0.0.0.0 shmetall.com.ua +0.0.0.0 shodanhq.com +0.0.0.0 shoesonlinebuy.xyz +0.0.0.0 shop.acim.org +0.0.0.0 shopcheermakeup.info +0.0.0.0 shop-electron.ru +0.0.0.0 shoplvlv.us +0.0.0.0 shoppingjequiti.com.br +0.0.0.0 shoppingmiracles.co.uk +0.0.0.0 shoppytoolmac.com +0.0.0.0 shopvilleroyboch.com.ua +0.0.0.0 shopwme.ru +0.0.0.0 shop.xz618.com +0.0.0.0 shtaketniki.ru +0.0.0.0 shtora66.ru +0.0.0.0 sibdevice.ru +0.0.0.0 sibecoprom.ru +0.0.0.0 sibtest.ru +0.0.0.0 sibvitr.ru +0.0.0.0 sicfor.bcu.cc +0.0.0.0 sideeffectsoftizanidine.blogspot.com +0.0.0.0 signal03.ru +0.0.0.0 signx.info +0.0.0.0 siha.de +0.0.0.0 sildenafilcitratemed.com +0.0.0.0 sildenafilgeneric.xyz +0.0.0.0 silktide.com +0.0.0.0 silverage.ru +0.0.0.0 silvermature.net +0.0.0.0 similardeals.net +0.0.0.0 simon3.ru +0.0.0.0 simple-image.com.ua +0.0.0.0 simplepooltips.com +0.0.0.0 simple-share-buttons.com +0.0.0.0 simply.net +0.0.0.0 sim-service.net +0.0.0.0 sims-sims.ru +0.0.0.0 sindragosa.comxa.com +0.0.0.0 sinel.info +0.0.0.0 sinestesia.host.sk +0.0.0.0 sisiynas.ru +0.0.0.0 sispe.com.br +0.0.0.0 site3.free-share-buttons.com +0.0.0.0 site5.com +0.0.0.0 site-analyzer.com +0.0.0.0 site-auditor.online +0.0.0.0 sitebeam.net +0.0.0.0 siteexpress.co.il +0.0.0.0 siteonomy.com +0.0.0.0 site-speed-checker.site +0.0.0.0 site-speed-check.site +0.0.0.0 sitevaluation.com +0.0.0.0 sitevalued.com +0.0.0.0 sitopreferito.it +0.0.0.0 sivs.ru +0.0.0.0 s-iwantyou.com +0.0.0.0 sixcooler.de +0.0.0.0 sizeplus.work +0.0.0.0 skachat-besplatno-dlja-mobily.ru +0.0.0.0 skachat-besplatno-obrazcy.ru +0.0.0.0 skatestick.bid +0.0.0.0 sk.golden-praga.ru +0.0.0.0 skhoolimg.com +0.0.0.0 sklad-24.ru +0.0.0.0 skladvaz.ru +0.0.0.0 skylta.com +0.0.0.0 sky-mine.ru +0.0.0.0 skytraf.xyz +0.0.0.0 skyway24.ru +0.0.0.0 slavic-magic.ru +0.0.0.0 slavkokacunko.de +0.0.0.0 slayerlife.com +0.0.0.0 sledstvie-veli.net +0.0.0.0 slimcdn.com +0.0.0.0 slim.sellany.ru +0.0.0.0 slkrm.ru +0.0.0.0 slonechka.ru +0.0.0.0 slowmacfaster.trade +0.0.0.0 slowmach.tech +0.0.0.0 sluganarodu.ru +0.0.0.0 slujbauborki.ru +0.0.0.0 smailik.org +0.0.0.0 small-game.com +0.0.0.0 small-games.biz +0.0.0.0 smartadserver.com +0.0.0.0 smart-balancewheel.com +0.0.0.0 smartbalanceworld.com +0.0.0.0 smartpet.ru +0.0.0.0 smartphonediscount.info +0.0.0.0 smart-scripts.com +0.0.0.0 smartshoppymac.com +0.0.0.0 smokewithrabbits.com +0.0.0.0 sms2x2.ru +0.0.0.0 smstraf.ru +0.0.0.0 snip.tw +0.0.0.0 snjack.info +0.0.0.0 snjatie-geroinovoy-lomki.ru +0.0.0.0 snomer1.ru +0.0.0.0 snow.nvr163.com +0.0.0.0 snowplanes.com +0.0.0.0 snts.shell-pmr.ru +0.0.0.0 snworks.com +0.0.0.0 snyatie-lomki-v-stacionare.ru +0.0.0.0 soaksoak.ru +0.0.0.0 sobecjvuwa.com.ru +0.0.0.0 soblaznu.net +0.0.0.0 socas.pluto.ro +0.0.0.0 soc-econom-problems.ru +0.0.0.0 social-buttons.com +0.0.0.0 social-buttons.xyz +0.0.0.0 socialbuttons.xyz +0.0.0.0 social-button.xyz +0.0.0.0 social-fun.ru +0.0.0.0 socialmadesimple.com +0.0.0.0 socialseet.ru +0.0.0.0 social-s-ggg.xyz +0.0.0.0 social-s-hhh.xyz +0.0.0.0 social-s-iii.xyz +0.0.0.0 socialtrade.biz +0.0.0.0 social-vestnik.ru +0.0.0.0 soc-proof.su +0.0.0.0 soda.media +0.0.0.0 sodexo.com +0.0.0.0 sofit-dmd.ru +0.0.0.0 soft1.ru +0.0.0.0 softlinesolutions.me +0.0.0.0 softomix.com +0.0.0.0 softomix.net +0.0.0.0 softonicads.com +0.0.0.0 soft-program.com +0.0.0.0 soft-terminal.ru +0.0.0.0 softtor.com +0.0.0.0 softxaker.ru +0.0.0.0 soheavyblog.com +0.0.0.0 sohoindia.net +0.0.0.0 solitaire-game.ru +0.0.0.0 solmarket.by +0.0.0.0 solnplast.ru +0.0.0.0 sonata-arctica.wz.cz +0.0.0.0 songoo.wz.cz +0.0.0.0 songplanet.ru +0.0.0.0 sonnikforme.ru +0.0.0.0 sophang8.com +0.0.0.0 sortthemesitesby.com +0.0.0.0 sotkal.lark.ru +0.0.0.0 soundfrost.org +0.0.0.0 soup.io +0.0.0.0 souvenir.cc +0.0.0.0 souvenirua.com +0.0.0.0 sovetogorod.ru +0.0.0.0 soviet-portal.do.am +0.0.0.0 spacash.com +0.0.0.0 spacebarnot.work +0.0.0.0 spaceshipad.com +0.0.0.0 space.skachat-besplatno-dlja-mobily.ru +0.0.0.0 spammen.de +0.0.0.0 spasswelt.xyz +0.0.0.0 spbchampionat.ru +0.0.0.0 spb.ru +0.0.0.0 special-porn.com +0.0.0.0 speedup-my.site +0.0.0.0 spidtest.org +0.0.0.0 spin2016.cf +0.0.0.0 splendorsearch-a.akamaihd.net +0.0.0.0 sport7777.net +0.0.0.0 sports-supplements.us +0.0.0.0 sport-video-obzor.ru +0.0.0.0 spravka130.ru +0.0.0.0 sprttrack.com +0.0.0.0 sps-shop.com +0.0.0.0 sptslmtrafms.com +0.0.0.0 spyfu.com +0.0.0.0 spylog.com +0.0.0.0 spymac.net +0.0.0.0 spy-sts.com +0.0.0.0 squidoo.com +0.0.0.0 srdrvp.com +0.0.0.0 srecorder.com +0.0.0.0 sr-rekneskap.no +0.0.0.0 sstroy44.ru +0.0.0.0 stackthatbucks.com +0.0.0.0 stairliftsarea.com +0.0.0.0 stairliftstrue.com +0.0.0.0 stal-rulon.ru +0.0.0.0 stanthonyscatholicchurch.org +0.0.0.0 star61.de +0.0.0.0 stardevine.com +0.0.0.0 stariy-baku.com +0.0.0.0 starpages.net +0.0.0.0 start.myplaycity.com +0.0.0.0 startufa.ru +0.0.0.0 startwp.org +0.0.0.0 starwarspcs.com +0.0.0.0 statistici.ro +0.0.0.0 stats-public.grammarly.io +0.0.0.0 statustroll.com +0.0.0.0 stauga.altervista.org +0.0.0.0 staynplay.net +0.0.0.0 steame.ru +0.0.0.0 steelmaster.lv +0.0.0.0 stefanbakosab.se +0.0.0.0 stickers-market.ru +0.0.0.0 stmassage.ru +0.0.0.0 stockquotes.wooeb.com +0.0.0.0 stoki.ru +0.0.0.0 stop-gepatit.te.ua +0.0.0.0 storehouse.ua +0.0.0.0 store-rx.com +0.0.0.0 stpolice.com +0.0.0.0 strag-invest.ru +0.0.0.0 strana-krasoty.ru +0.0.0.0 strana-solnca.ru +0.0.0.0 streetfire.net +0.0.0.0 streetfooduncovered.com +0.0.0.0 streha-metalko.si +0.0.0.0 stretchingabuckblog.com +0.0.0.0 stretchmate.net +0.0.0.0 strfls.com +0.0.0.0 strigkaomsk.ru +0.0.0.0 stroicol.net +0.0.0.0 stroilka.info +0.0.0.0 stroimajor.ru +0.0.0.0 stroiminsk.org +0.0.0.0 stromerrealty.com +0.0.0.0 strongholdsb.ru +0.0.0.0 strongsignal-a.akamaihd.net +0.0.0.0 stroydetali.ru +0.0.0.0 stroyhelp-dv.ru +0.0.0.0 stroymonolit.su +0.0.0.0 strv.se +0.0.0.0 studiofaca.com +0.0.0.0 stuff-about-money.com +0.0.0.0 styro.ru +0.0.0.0 success-seo.com +0.0.0.0 suchenindeutschland.com +0.0.0.0 sugarkun.com +0.0.0.0 suggest-keywords.com +0.0.0.0 sugvant.ru +0.0.0.0 sukarame.net +0.0.0.0 sukirgenk.dvrlists.com +0.0.0.0 summerlinhomes411.info +0.0.0.0 sumo.com +0.0.0.0 superinterstitial.com +0.0.0.0 superkanpo.com +0.0.0.0 supermesta.ru +0.0.0.0 supernew.org +0.0.0.0 superpages.com +0.0.0.0 supers.com.ua +0.0.0.0 superstats.com +0.0.0.0 supervesti.ru +0.0.0.0 surcentro.com +0.0.0.0 sureone.pro +0.0.0.0 surfbuyermac.com +0.0.0.0 surflinksmedical.com +0.0.0.0 surgut.zrus.org +0.0.0.0 susanholtphotography.com +0.0.0.0 svarbit.com +0.0.0.0 svarkagid.com +0.0.0.0 svbur.ru +0.0.0.0 svetlotorg.ru +0.0.0.0 svetodiodoff.ru +0.0.0.0 svtrd.com +0.0.0.0 swagbucks.com +0.0.0.0 swinger-mobil.net +0.0.0.0 swingerseiten.com +0.0.0.0 swinginwithme.ru +0.0.0.0 swiped.su +0.0.0.0 swsociety.se +0.0.0.0 sygraem.com +0.0.0.0 syla.tk +0.0.0.0 syvertsen-da.no +0.0.0.0 t3chtonic.com +0.0.0.0 tablepicz.com +0.0.0.0 tabletkinaodchudzanie.com.pl +0.0.0.0 taboola.com +0.0.0.0 tacbelarus.ru +0.0.0.0 tagil.zrus.org +0.0.0.0 taihouse.ru +0.0.0.0 takethatad.com +0.0.0.0 tako3.com +0.0.0.0 talant-factory.ru +0.0.0.0 tampabaywatch.org +0.0.0.0 taqywu51.soup.io +0.0.0.0 tarad.com +0.0.0.0 tastyfoodideas.com +0.0.0.0 tattogirlspix.com +0.0.0.0 tattomedia.com +0.0.0.0 tattoo33.ru +0.0.0.0 tattooha.com +0.0.0.0 tattooreligion.ru +0.0.0.0 tatz.tk +0.0.0.0 taxidermy4cash.com +0.0.0.0 taximytishi.ru +0.0.0.0 taxi-v-eisk.ru +0.0.0.0 td-33.ru +0.0.0.0 teastory.co +0.0.0.0 techart24.com +0.0.0.0 technopellet.gr +0.0.0.0 tecspb.ru +0.0.0.0 tedxrj.com +0.0.0.0 tedy.su +0.0.0.0 teenbbw.yopoint.in +0.0.0.0 teesdaleflyballclub.co.uk +0.0.0.0 tehngr.ru +0.0.0.0 telefonsexi.com +0.0.0.0 telefonsexkostenlos.tk +0.0.0.0 telefonsex-ohne0900.net +0.0.0.0 telefonsexsofort.tk +0.0.0.0 telegraf.by +0.0.0.0 telegramdownload10.com +0.0.0.0 telemetryverification.net +0.0.0.0 telesvoboda.ru +0.0.0.0 telsis.com +0.0.0.0 template-kid.com +0.0.0.0 tennis-img.org +0.0.0.0 terraclicks.com +0.0.0.0 terrafootwear.us +0.0.0.0 teslathemes.com +0.0.0.0 teur.tk +0.0.0.0 texbaza.by +0.0.0.0 textads.men +0.0.0.0 thebluenoodle.com +0.0.0.0 thebluffs.com +0.0.0.0 thecoolimages.net +0.0.0.0 thecoral.com.br +0.0.0.0 thecounter.com +0.0.0.0 thedownloadfreeonlinegames.blogspot.com +0.0.0.0 thedownloadfromwarez.blogspot.com +0.0.0.0 thefarmergame.com +0.0.0.0 thefds.net +0.0.0.0 thegioixekhach.com +0.0.0.0 theguardlan.com +0.0.0.0 theheroes.ru +0.0.0.0 thejournal.ru +0.0.0.0 themestotal.com +0.0.0.0 thenetinfo.com +0.0.0.0 thepokertimer.com +0.0.0.0 thetattoohut.com +0.0.0.0 thetoiletpaper.com +0.0.0.0 the-torrent-tracker.blogspot.com +0.0.0.0 the-trader.net +0.0.0.0 the-usa-games.blogspot.com +0.0.0.0 thewomenlife.com +0.0.0.0 thfox.com +0.0.0.0 thiegs.reco.ws +0.0.0.0 thin.me.pn +0.0.0.0 thruport.com +0.0.0.0 tiandeural.ru +0.0.0.0 tiens2010.ru +0.0.0.0 timeallnews.ru +0.0.0.0 timecrimea.ru +0.0.0.0 time-japan.ru +0.0.0.0 timer4web.com +0.0.0.0 timetorelax.biz +0.0.0.0 titelhelden.eu +0.0.0.0 titslove.yopoint.in +0.0.0.0 tizanidine4mg.blogspot.com +0.0.0.0 tizanidine4mgprice.blogspot.com +0.0.0.0 tizanidine4mgstreetprice.blogspot.com +0.0.0.0 tizanidine4mgstreetvalue.blogspot.com +0.0.0.0 tizanidine4mgtablets.blogspot.com +0.0.0.0 tizanidine4mguses.blogspot.com +0.0.0.0 tizanidine6mg.blogspot.com +0.0.0.0 tizanidineandcipro.blogspot.com +0.0.0.0 tizanidineandgabapentin.blogspot.com +0.0.0.0 tizanidineandhydrocodone.blogspot.com +0.0.0.0 tizanidinecapsules.blogspot.com +0.0.0.0 tizanidinecost.blogspot.com +0.0.0.0 tizanidinedosage.blogspot.com +0.0.0.0 tizanidinedosageforsleep.blogspot.com +0.0.0.0 tizanidinedruginteractions.blogspot.com +0.0.0.0 tizanidinedrugtest.blogspot.com +0.0.0.0 tizanidineduringpregnancy.blogspot.com +0.0.0.0 tizanidinefibromyalgia.blogspot.com +0.0.0.0 tizanidineformigraines.blogspot.com +0.0.0.0 tizanidineforopiatewithdrawal.blogspot.com +0.0.0.0 tizanidinehcl2mg.blogspot.com +0.0.0.0 tizanidinehcl2mgsideeffects.blogspot.com +0.0.0.0 tizanidinehcl2mgtablet.blogspot.com +0.0.0.0 tizanidinehcl4mgisitanarcotic.blogspot.com +0.0.0.0 tizanidinehcl4mgtab.blogspot.com +0.0.0.0 tizanidinehcl4mgtabinfo.blogspot.com +0.0.0.0 tizanidinehcl4mgtablet.blogspot.com +0.0.0.0 tizanidinehclsideeffects.blogspot.com +0.0.0.0 tizanidinehydrochloride2mg.blogspot.com +0.0.0.0 tizanidinehydrochloride4mgstreetvalue.blogspot.com +0.0.0.0 tizanidineinfo.blogspot.com +0.0.0.0 tizanidineingredients.blogspot.com +0.0.0.0 tizanidineinteractions.blogspot.com +0.0.0.0 tizanidinemusclerelaxant.blogspot.com +0.0.0.0 tizanidinenarcotic.blogspot.com +0.0.0.0 tizanidineonline.blogspot.com +0.0.0.0 tizanidineoral.blogspot.com +0.0.0.0 tizanidineorflexeril.blogspot.com +0.0.0.0 tizanidinepain.blogspot.com +0.0.0.0 tizanidinepills.blogspot.com +0.0.0.0 tizanidinerecreationaluse.blogspot.com +0.0.0.0 tizanidinerestlesslegsyndrome.blogspot.com +0.0.0.0 tizanidineshowupondrugtest.blogspot.com +0.0.0.0 tizanidinesideeffects.blogspot.com +0.0.0.0 tizanidinesideeffectsweightloss.blogspot.com +0.0.0.0 tizanidinesleepaid.blogspot.com +0.0.0.0 tizanidinestreetprice.blogspot.com +0.0.0.0 tizanidinestreetvalue.blogspot.com +0.0.0.0 tizanidineusedfor.blogspot.com +0.0.0.0 tizanidinevscyclobenzaprine.blogspot.com +0.0.0.0 tizanidinevssoma.blogspot.com +0.0.0.0 tizanidinevsvalium.blogspot.com +0.0.0.0 tizanidinewithdrawal.blogspot.com +0.0.0.0 tizanidinewithdrawalsymptoms.blogspot.com +0.0.0.0 tizanidinezanaflex.blogspot.com +0.0.0.0 tjkckpytpnje.com +0.0.0.0 tkanorganizma.ru +0.0.0.0 tk-assortiment.ru +0.0.0.0 tksn.ru +0.0.0.0 tmearegion26.com +0.0.0.0 tmm-kurs.ru +0.0.0.0 tmtrck.com +0.0.0.0 tnaionline.org +0.0.0.0 todohr.com +0.0.0.0 toloka.hurtom.com +0.0.0.0 tomatis.gospartner.com +0.0.0.0 tomck.com +0.0.0.0 tongkatmadura.info +0.0.0.0 toolsky.com +0.0.0.0 tooplay.com +0.0.0.0 tootoo.to +0.0.0.0 top10-way.com +0.0.0.0 top1-seo-service.com +0.0.0.0 top250movies.ru +0.0.0.0 topads.men +0.0.0.0 topappspro.com +0.0.0.0 topbestgames.com +0.0.0.0 topclickguru.com +0.0.0.0 top-karkas.ru +0.0.0.0 topmira.com +0.0.0.0 topquality.cf +0.0.0.0 topshef.ru +0.0.0.0 topvidos.ru +0.0.0.0 torontoplumbinggroup.com +0.0.0.0 torrent-newgames.com +0.0.0.0 torrents.cd +0.0.0.0 torrents-tracker.com +0.0.0.0 torrnada.ru +0.0.0.0 torture.ml +0.0.0.0 totu.info +0.0.0.0 touchmods.fr +0.0.0.0 tourismvictoria.com +0.0.0.0 tour-line.net +0.0.0.0 toursmaps.com +0.0.0.0 tovaroboom.vast.ru +0.0.0.0 toxicwap.com +0.0.0.0 toys.erolove.in +0.0.0.0 tozup.com +0.0.0.0 tpu.ru +0.0.0.0 track-rankings.online +0.0.0.0 tracksurf.daooda.com +0.0.0.0 tracksz.co +0.0.0.0 tradedeals.biz +0.0.0.0 trafaret74.ru +0.0.0.0 traffic100.com +0.0.0.0 traffic2cash.org +0.0.0.0 trafficfactory.biz +0.0.0.0 trafficjunky.com +0.0.0.0 trafficjunky.net +0.0.0.0 trafficmania.com +0.0.0.0 trafficmonetize.org +0.0.0.0 trafficmp.com +0.0.0.0 trafficnetzwerk.de +0.0.0.0 trafficstars.com +0.0.0.0 traffique.net +0.0.0.0 traffixer.com +0.0.0.0 traffmonster.info +0.0.0.0 traffpartners.com +0.0.0.0 trahic.ru +0.0.0.0 trahvid.com +0.0.0.0 tramadolandtizanidine.blogspot.com +0.0.0.0 traxdom.ru +0.0.0.0 treasuretrack-a.akamaihd.net +0.0.0.0 trion.od.ua +0.0.0.0 tripper.de +0.0.0.0 tri-slona.org +0.0.0.0 triumf-realty.ru +0.0.0.0 trk-4.net +0.0.0.0 trkdf.com +0.0.0.0 trkur.com +0.0.0.0 trubywriting.com +0.0.0.0 trucri.me +0.0.0.0 trudogolik.net +0.0.0.0 truemfilelj.gq +0.0.0.0 trustedhealthtips.com +0.0.0.0 trustedmaccleaner.com +0.0.0.0 try-rx.com +0.0.0.0 tsan.net +0.0.0.0 tsstcorpcddvdwshbbdriverfb.aircus.com +0.0.0.0 tsyndicate.com +0.0.0.0 ttrraacckkrr.com +0.0.0.0 ttsq.fr +0.0.0.0 tube8.com +0.0.0.0 tubeline.biz +0.0.0.0 tuberkulezanet.ru +0.0.0.0 tuberkuleznik.ru +0.0.0.0 tuckermktg.com +0.0.0.0 tula.howotorg.ru +0.0.0.0 tula.mdverey.ru +0.0.0.0 tupper-posuda.ru +0.0.0.0 tupper-shop.ru +0.0.0.0 turbo-suslik.org +0.0.0.0 turist-strani.ru +0.0.0.0 turizm.bz +0.0.0.0 turkeyreport.tk +0.0.0.0 turvgori.ru +0.0.0.0 tvand.ru +0.0.0.0 tversvet.ru +0.0.0.0 tvorozhnaja-zapekanka-recept.ru +0.0.0.0 tvoystartup.ru +0.0.0.0 tv-spoty.info +0.0.0.0 tvteleport.ru +0.0.0.0 twelvevisionspartyofcolorado.com +0.0.0.0 twiclub.in +0.0.0.0 twincitiescarservice.com +0.0.0.0 twinderbella.com +0.0.0.0 twitlinks.com +0.0.0.0 twittrading.com +0.0.0.0 twittruth.com +0.0.0.0 twodollarshows.com +0.0.0.0 twojebook.pl +0.0.0.0 twu.com.ua +0.0.0.0 txxx.com +0.0.0.0 tyumen.xrus.org +0.0.0.0 u17795.netangels.ru +0.0.0.0 ua-company.ru +0.0.0.0 uamtrk.com +0.0.0.0 uasb.ru +0.0.0.0 ublaze.ru +0.0.0.0 u-cheats.ru +0.0.0.0 uchebavchehii.ru +0.0.0.0 uchil.net +0.0.0.0 ucoz.ru +0.0.0.0 ucsol.ru +0.0.0.0 udsgame.online +0.0.0.0 ufa.xrus.org +0.0.0.0 uggbootsoutletsale.us +0.0.0.0 uggsale.online +0.0.0.0 ugguk.online +0.0.0.0 ugogo.info +0.0.0.0 uhdtv.website +0.0.0.0 uhodzalijami.ru +0.0.0.0 uhod-za-sobakoj.ru +0.0.0.0 ukkelberg.no +0.0.0.0 ukrobstep.com +0.0.0.0 ukrup.com +0.0.0.0 ultimateclassicrock.com +0.0.0.0 ultimatesetnewfreeallsoftupgradesystems.pw +0.0.0.0 ultramart.biz +0.0.0.0 umg-stroy.ru +0.0.0.0 umityangin.net +0.0.0.0 um-razum.ru +0.0.0.0 underthesite.com +0.0.0.0 uni.me +0.0.0.0 unimodemhalfduplefw.pen.io +0.0.0.0 unionmarkt.de +0.0.0.0 unitexindia.com +0.0.0.0 unitygame3d.com +0.0.0.0 universals.com.ua +0.0.0.0 unmaroll.ya.ru +0.0.0.0 unpredictable.ga +0.0.0.0 uogonline.com +0.0.0.0 upstore.me +0.0.0.0 uptime-alpha.net +0.0.0.0 uptimebot.net +0.0.0.0 uptimechecker.com +0.0.0.0 uptime.com +0.0.0.0 ural-buldozer.ru +0.0.0.0 urccvfmc.bloger.index.hr +0.0.0.0 urdoot.win +0.0.0.0 url2image.com +0.0.0.0 urlcut.ru +0.0.0.0 url-img.link +0.0.0.0 urlopener.blogspot.com.au +0.0.0.0 urlopener.com +0.0.0.0 uroki.net +0.0.0.0 usacasino.com +0.0.0.0 usadacha.net +0.0.0.0 us-america.ru +0.0.0.0 usdx.us +0.0.0.0 userequip.com +0.0.0.0 ussearche.cf +0.0.0.0 usswrite.com +0.0.0.0 ustion.ru +0.0.0.0 utrolive.ru +0.0.0.0 uvozdeckych.info +0.0.0.0 uytmaster.ru +0.0.0.0 uzungil.com +0.0.0.0 v24s.net +0.0.0.0 v720hd.ru +0.0.0.0 vabasa.inwtrade.com +0.0.0.0 vacuumscleaner.com +0.0.0.0 vadimkravtcov.ru +0.0.0.0 valkiria-tk.ru +0.0.0.0 valoresito.com +0.0.0.0 valueclick.com +0.0.0.0 vandrie-ict.nl +0.0.0.0 vapmedia.org +0.0.0.0 vapsy.com +0.0.0.0 varikoz24.com +0.0.0.0 vashsvet.com +0.0.0.0 vasileostrovsky-rayon.ru +0.0.0.0 vavilone.com +0.0.0.0 vbabule.net +0.0.0.0 vduplo.ru +0.0.0.0 vedomstvo.net +0.0.0.0 veerotech.com +0.0.0.0 vegan-foods.us +0.0.0.0 vegascosmetics.ru +0.0.0.0 vektorpress.ru +0.0.0.0 vekzdorov.ru +0.0.0.0 vellings.info +0.0.0.0 velobikestock.com +0.0.0.0 venta-prom.ru +0.0.0.0 ventelnos.com +0.0.0.0 vereo.eu +0.0.0.0 vesnatehno.com +0.0.0.0 vesnatehno.ru +0.0.0.0 vezuviy.su +0.0.0.0 vgoloveboli.net +0.0.0.0 viagra.pp.ua +0.0.0.0 via-gra.webstarts.com +0.0.0.0 viagroid.ru +0.0.0.0 viandpet.com +0.0.0.0 viberdownload10.com +0.0.0.0 video-chat.cn +0.0.0.0 video-chat.in +0.0.0.0 videochat.mx +0.0.0.0 videochat.tv.br +0.0.0.0 videochat.world +0.0.0.0 videochaty.ru +0.0.0.0 video-hollywood.ru +0.0.0.0 videojam.tv +0.0.0.0 videokrik.net +0.0.0.0 videooko.weebly.com +0.0.0.0 video--production.com +0.0.0.0 videosbox.ru +0.0.0.0 videos-for-your-business.com +0.0.0.0 videotuber.ru +0.0.0.0 video-woman.com +0.0.0.0 vielporno.net +0.0.0.0 viel.su +0.0.0.0 vigrx-original.ru +0.0.0.0 viktoria-center.ru +0.0.0.0 vilingstore.net +0.0.0.0 villacoloniale.com +0.0.0.0 villakohlanta.nu +0.0.0.0 vinsit.ru +0.0.0.0 vinylvault.co.uk +0.0.0.0 vip2ch.com +0.0.0.0 vip.51.la +0.0.0.0 vip-dom.in +0.0.0.0 vip-file.com +0.0.0.0 vipms.ru +0.0.0.0 vip-parfumeria.ru +0.0.0.0 vipsiterip.org +0.0.0.0 virtuagirl.com +0.0.0.0 visa-china.ru +0.0.0.0 visa-pasport.ru +0.0.0.0 visionwell.com.cn +0.0.0.0 visitcambridge.org +0.0.0.0 vita.com.hr +0.0.0.0 vitalads.net +0.0.0.0 vitanail.ru +0.0.0.0 viven.host.sk +0.0.0.0 vizag.kharkov.ua +0.0.0.0 vkak.ru +0.0.0.0 vk-mus.ru +0.0.0.0 vkontaktemusic.ru +0.0.0.0 vkontarkte.com +0.0.0.0 vksaver-all.ru +0.0.0.0 vladhistory.com +0.0.0.0 vladimir.xrus.org +0.0.0.0 vladimir.zrus.org +0.0.0.0 vltai.com +0.0.0.0 vmnmvzsmn.over-blog.com +0.0.0.0 vodaodessa.com +0.0.0.0 vod.com.ua +0.0.0.0 voditeltrezviy.ru +0.0.0.0 vodkoved.ru +0.0.0.0 volgograd.xrus.org +0.0.0.0 voloomoney.com +0.0.0.0 volume-pills.biz +0.0.0.0 voluumtracker1.com +0.0.0.0 voluumtrk.com +0.0.0.0 vonradio.com +0.0.0.0 voprosotvet24.ru +0.0.0.0 voronezh.xrus.org +0.0.0.0 vostoktrade.info +0.0.0.0 vote-up.ru +0.0.0.0 vozbujdenie.com +0.0.0.0 vpnhowto.info +0.0.0.0 vremya.eu +0.0.0.0 vriel.batcave.net +0.0.0.0 vrnelectro.ru +0.0.0.0 vrotike.ru +0.0.0.0 vsesubwaysurfers.com +0.0.0.0 vseuznaem.com +0.0.0.0 vsexkontakte.net +0.0.0.0 vtc.pw +0.0.0.0 vucms.com +0.0.0.0 vvon.co.uk +0.0.0.0 vykup-avto-krasnodar.ru +0.0.0.0 vykupavto-krasnodar.ru +0.0.0.0 vzglyadriv.kg +0.0.0.0 vzlom-na-zakaz.com +0.0.0.0 w3data.co +0.0.0.0 w3javascript.com +0.0.0.0 w7s.ru +0.0.0.0 walkme.com +0.0.0.0 wallpapers-best.com +0.0.0.0 wapsite.me +0.0.0.0 wareseeker.com +0.0.0.0 warningwar.ru +0.0.0.0 warningzscaler.heraeus.com +0.0.0.0 watchdogs-2.ru +0.0.0.0 watch-movies.ru +0.0.0.0 watchmygf.net +0.0.0.0 waterpurifier.club +0.0.0.0 wdfdocando.com +0.0.0.0 wdrake.com +0.0.0.0 we-are-gamers.com +0.0.0.0 webads.co.nz +0.0.0.0 webalan.ru +0.0.0.0 web-betting.ru +0.0.0.0 web.cvut.cz +0.0.0.0 webinstantservice.com +0.0.0.0 webix.me +0.0.0.0 webjam.com +0.0.0.0 weblo.com +0.0.0.0 webmasterhome.cn +0.0.0.0 webmonetizer.net +0.0.0.0 webnode.me +0.0.0.0 webradiology.ru +0.0.0.0 webs.com +0.0.0.0 webscouter.net +0.0.0.0 webshoppermac.com +0.0.0.0 websiteaccountant.de +0.0.0.0 website-analytics.online +0.0.0.0 website-datenbank.de +0.0.0.0 websiteexplorer.info +0.0.0.0 websites-reviews.com +0.0.0.0 websitevaluebot.com +0.0.0.0 webtherapy.ru +0.0.0.0 weburlopener.com +0.0.0.0 wechatdownload10.com +0.0.0.0 weclipart.com +0.0.0.0 wedding0venues.tk +0.0.0.0 weddingdresses.xyz +0.0.0.0 wedding-salon.net +0.0.0.0 weekes.biz.tc +0.0.0.0 weightatraining.com +0.0.0.0 welck.octopis.com +0.0.0.0 welcomeauto.ru +0.0.0.0 wellcome2slovenia.ru +0.0.0.0 wenimage.com +0.0.0.0 weprik.ru +0.0.0.0 wesharepics.com +0.0.0.0 wesharepics.info +0.0.0.0 wesharepics.site +0.0.0.0 westermarkanjou.se +0.0.0.0 westsextube.com +0.0.0.0 westum.se +0.0.0.0 westvilletowingservices.co.za +0.0.0.0 wetgames.ru +0.0.0.0 wewehd7e6333xx.com +0.0.0.0 whatistizanidine2mg.blogspot.com +0.0.0.0 whatistizanidinehclusedfor.blogspot.com +0.0.0.0 whatsappdownload10.com +0.0.0.0 whatsupinfoley.com +0.0.0.0 whatzmyip.net +0.0.0.0 wheelchairliftsarea.com +0.0.0.0 whereiskentoday.com +0.0.0.0 where-toget.com +0.0.0.0 whipme.yopoint.in +0.0.0.0 whiteelephantwellington.com +0.0.0.0 whiteproduct.com +0.0.0.0 wholesalecheapjerseysfree.com +0.0.0.0 wholesalejerseychinaoutlet.com +0.0.0.0 wholesalejerseychinashop.com +0.0.0.0 wholesalejerseys-cheapest.com +0.0.0.0 wholesalejerseysgaa.com +0.0.0.0 wholesalenfljerseys.us.com +0.0.0.0 wholinkstome.com +0.0.0.0 whos.amung.us +0.0.0.0 whosonmyserver.com +0.0.0.0 wieseversa.no +0.0.0.0 wikes.20fr.com +0.0.0.0 wildcattube.com +0.0.0.0 wildworld.site +0.0.0.0 windowssearch-exp.com +0.0.0.0 wineitudes.wordpress.com +0.0.0.0 wineration.com +0.0.0.0 wingsoffury2.com +0.0.0.0 wingsofrefuge.net +0.0.0.0 winner7777.net +0.0.0.0 winterclassichockeyjerseys.com +0.0.0.0 winx-play.ru +0.0.0.0 witherrom55.eklablog.fr +0.0.0.0 w-journal.ru +0.0.0.0 wnoz.de +0.0.0.0 womama.ru +0.0.0.0 woman-h.ru +0.0.0.0 woman-orgasm.ru +0.0.0.0 woman-tampon.ru +0.0.0.0 womenpics.net +0.0.0.0 womens-journal.net +0.0.0.0 womensplay.net +0.0.0.0 womensterritory.ru +0.0.0.0 wonderfulflowers.biz +0.0.0.0 woodyguthrie.se +0.0.0.0 wordpresscore.com +0.0.0.0 wordpress-crew.net +0.0.0.0 word-vorlagen.net +0.0.0.0 word-vorlagen.xyz +0.0.0.0 works.if.ua +0.0.0.0 worldhistory.biz +0.0.0.0 worldinternetauthority.com +0.0.0.0 worldis.me +0.0.0.0 worldlovers.ru +0.0.0.0 world-mmo.com +0.0.0.0 worldmusicfests.com +0.0.0.0 worldoffiles.ru +0.0.0.0 wormix-cheats.ru +0.0.0.0 wowas31.ucoz.ru +0.0.0.0 woweb.com.ua +0.0.0.0 writingservices17.blogspot.ru +0.0.0.0 wrona.it +0.0.0.0 wsgames.ru +0.0.0.0 wstroika.ru +0.0.0.0 wttavern.com +0.0.0.0 wurr.voila.net +0.0.0.0 ww1943.ru +0.0.0.0 www.arenda-yeisk.ru +0.0.0.0 wzgyyq.com +0.0.0.0 xaijo.com +0.0.0.0 xbaboon.com +0.0.0.0 xblog.in +0.0.0.0 xboxster.ru +0.0.0.0 xchat26.myfreecams.com +0.0.0.0 xclicks.net +0.0.0.0 xcombear.ru +0.0.0.0 xdoza.com +0.0.0.0 xep.info +0.0.0.0 xfire.com +0.0.0.0 xgftnlrt.bloger.index.hr +0.0.0.0 xjlottery.com +0.0.0.0 xjrul.com +0.0.0.0 xkaz.org +0.0.0.0 x-lime.net +0.0.0.0 xlolitka.com +0.0.0.0 xlovecam.com +0.0.0.0 xmladserver.com +0.0.0.0 xmlinde.com +0.0.0.0 xmronta.com +0.0.0.0 xn--1-8sbcpb0bdm8k6a.xn--p1ai +0.0.0.0 xn--24-glceagatoq7c2a6ioc.xn--p1ai +0.0.0.0 xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai +0.0.0.0 xn-----6kccaibs5cb8afhjrfmix2n.xn--p1ai +0.0.0.0 xn------7cdbapdecfd4ak1bn0amjffj7afu3y.xn--p1ai +0.0.0.0 xn-----7kcabaipgeakzcss7bjdqdwpfnhv.xn--p1ai +0.0.0.0 xn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai +0.0.0.0 xn----7sbaaabaei0cc8aj5bj0bncejx.xn--p1ai +0.0.0.0 xn----7sbahjd3btneuw1joc.xn--p1ai +0.0.0.0 xn----7sbbagbq7bd5aheftfllo4m.xn--p1ai +0.0.0.0 xn----7sbbahaq9bb5afgiqfliv4m.xn--p1ai +0.0.0.0 xn----7sbho2agebbhlivy.xn--p1ai +0.0.0.0 xn----7sbifcamovvfggw9d.xn--p1ai +0.0.0.0 xn--80aaafbn2bc2ahdfrfkln6l.xn--p1ai +0.0.0.0 xn--80aaagvmjabrs1aoc9luc.xn--p1ai +0.0.0.0 xn--80aaaks3bbhabgbigamdr2h.xn--p1ai +0.0.0.0 xn--80aafb2a.xn--p1ai +0.0.0.0 xn--80aagddcgkbcqbad7amllnejg6dya.xn--p1ai +0.0.0.0 xn--80aanaardaperhcem4a6i.com +0.0.0.0 xn--80ab4aa2g.xn--p1ai +0.0.0.0 xn--80adaggc5bdhlfamsfdij4p7b.xn--p1ai +0.0.0.0 xn--80aeahghtf8ac5i.xn--p1ai +0.0.0.0 xn--80aebbcbcdemfkhba4byaehoejh8dza3v.xn--p1ai +0.0.0.0 xn--80ahvj9e.xn--p1ai +0.0.0.0 xn--80aikhbrhr.net +0.0.0.0 xn--80ajbshivpvn2i.xn--p1ai +0.0.0.0 xn--80ajjbdhgmudixfjc8c5a9df8b.xn--p1ai +0.0.0.0 xn--80ak6aa92e.com +0.0.0.0 xn--80aodinpgi.xn--p1ai +0.0.0.0 xn-----8kcatubaocd1bneepefojs1h2e.xn--p1ai +0.0.0.0 xn----8sbdbjgb1ap7a9c4czbh.xn--p1acf +0.0.0.0 xn----8sbhefaln6acifdaon5c6f4axh.xn--p1ai +0.0.0.0 xn--90acenikpebbdd4f6d.xn--p1ai +0.0.0.0 xn----9sbebi2bvzr7h.xn--p1ai +0.0.0.0 xn--b1adccaf1bzj.xn--p1ai +0.0.0.0 xn--b1ag5cfn.xn--p1ai +0.0.0.0 xn--b1agm2d.net +0.0.0.0 xn--c1acygb.xn--p1ai +0.0.0.0 xn--d1abj0abs9d.in.ua +0.0.0.0 xn--e1afanlbnfckd7c3d.xn--p1ai +0.0.0.0 xn--e1aggki3c.xn--80adxhks +0.0.0.0 xn--h1aakne2ba.xn--p1ai +0.0.0.0 xn--h1ahbi.com.ua +0.0.0.0 xn--hxazdsfy.blogspot.com +0.0.0.0 xn----itbeirbjbi7bc6bh2d.xn--p1ai +0.0.0.0 xn----itbkqkfiq.xn--p1ai +0.0.0.0 xn--l1aengat.xn--p1ai +0.0.0.0 xn--lifehacer-1rb.com +0.0.0.0 xn--oogle-wmc.com +0.0.0.0 xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai +0.0.0.0 xnxxandxvideos.com +0.0.0.0 xnxx-n.com +0.0.0.0 xolodremont.ru +0.0.0.0 x-porno.video +0.0.0.0 xportvusbdriver8i.snack.ws +0.0.0.0 xpresscare.ru +0.0.0.0 x.rafomedia.com +0.0.0.0 x-rates.ru +0.0.0.0 xrus.org +0.0.0.0 xsion.net +0.0.0.0 x-stars.ru +0.0.0.0 xtube.com +0.0.0.0 xtubeporno.net +0.0.0.0 xuki.us +0.0.0.0 xvideosbay.com +0.0.0.0 xvideosporn.biz +0.0.0.0 xwatt.ru +0.0.0.0 xxart.ru +0.0.0.0 xxlargepop.com +0.0.0.0 xxxdatinglocal.us +0.0.0.0 xxxguitars.com +0.0.0.0 xxxnatelefon.ru +0.0.0.0 xxxrus.org +0.0.0.0 xxx-treker.ru +0.0.0.0 xxxtube69.com +0.0.0.0 xz618.com +0.0.0.0 xzlive.com +0.0.0.0 yaaknaa.info +0.0.0.0 yaderenergy.ru +0.0.0.0 yadro.ru +0.0.0.0 yaminecraft.ru +0.0.0.0 yatrk.xyz +0.0.0.0 yeartwit.com +0.0.0.0 yebocasino.com +0.0.0.0 yebocasino.co.za +0.0.0.0 ynymnwbm.bloger.index.hr +0.0.0.0 yogamatsexpert.com +0.0.0.0 yopoint.in +0.0.0.0 yorkshireccc.com +0.0.0.0 yorkshire.com +0.0.0.0 yottos.com +0.0.0.0 youandcredit.ru +0.0.0.0 youbloodyripper.com +0.0.0.0 youdao.com +0.0.0.0 youdesigner.kz +0.0.0.0 yougetsignal.com +0.0.0.0 youghbould.wordpress.com +0.0.0.0 yougotanewdomain.com +0.0.0.0 youjizz.vc +0.0.0.0 youporn-forum.ga +0.0.0.0 youporn-forum.uni.me +0.0.0.0 youporn-ru.com +0.0.0.0 youradexchange.com +0.0.0.0 youradulthosting.com +0.0.0.0 your-bearings.com +0.0.0.0 yourdesires.ru +0.0.0.0 youresponsive.com +0.0.0.0 yourothersite.com +0.0.0.0 yoursearch.me +0.0.0.0 yoursite.com +0.0.0.0 youtoner.it +0.0.0.0 youtubedownload.org +0.0.0.0 yuantuo.co.jp +0.0.0.0 yuarra.pluto.ro +0.0.0.0 yubikk.info +0.0.0.0 yugk.net +0.0.0.0 yugo-star.ru +0.0.0.0 yunque.pluto.ro +0.0.0.0 yurgorod.ru +0.0.0.0 yur-p.ru +0.0.0.0 za-fun-offer.com +0.0.0.0 zahvat.ru +0.0.0.0 zaidia.xhost.ro +0.0.0.0 zaimhelp.ru +0.0.0.0 zaim-pod-zalog-krasnodar.ru +0.0.0.0 zajm-pod-zalog-nedvizhimosti.ru +0.0.0.0 zajm-zalog-krasnodar.ru +0.0.0.0 zakazfutbolki.com +0.0.0.0 zakazvzloma.com +0.0.0.0 zakon-ob-obrazovanii.ru +0.0.0.0 zakonobosago.ru +0.0.0.0 zaloadi.ru +0.0.0.0 zaloro.com +0.0.0.0 zaobao.com.sg +0.0.0.0 zarabotat-na-sajte.ru +0.0.0.0 zarenica.net +0.0.0.0 zarepta.com +0.0.0.0 zastenchivosti.net +0.0.0.0 zastroyka.org +0.0.0.0 zazagames.org +0.0.0.0 zdesformula.ru +0.0.0.0 zdesoboi.com +0.0.0.0 zebradudka.com +0.0.0.0 zebramart.ru +0.0.0.0 zeleznobeton.ru +0.0.0.0 zerocash.msk.ru +0.0.0.0 zeroredirect10.com +0.0.0.0 zeroredirect11.com +0.0.0.0 zeroredirect12.com +0.0.0.0 zeroredirect1.com +0.0.0.0 zeroredirect5.com +0.0.0.0 zeroredirect6.com +0.0.0.0 zeroredirect7.com +0.0.0.0 zeroredirect8.com +0.0.0.0 zeroredirect9.com +0.0.0.0 zeroredirect.com +0.0.0.0 zetgie.com.pl +0.0.0.0 zhongwenlink.com +0.0.0.0 zhorapankratov7.blogspot.com +0.0.0.0 zigarettenonl.canalblog.com +0.0.0.0 zigarettenonlinekaufen1.bloog.pl +0.0.0.0 zigarettenonlinekaufen1.blox.pl +0.0.0.0 zigarettenonlinekaufen2.bloog.pl +0.0.0.0 zigarettenonlinekaufen2.drupalgardens.com +0.0.0.0 zigarettenonlinekaufen.tumblr.com +0.0.0.0 zigzog.ru +0.0.0.0 zkjovpdgxivg.ga +0.0.0.0 zlatnajesen.com +0.0.0.0 zmoda.hostreo.com +0.0.0.0 znakomstva-moskva77.ru +0.0.0.0 znakomstvaonlain.ru +0.0.0.0 znakomstva-piter78.ru +0.0.0.0 znaniyapolza.ru +0.0.0.0 znaturaloriginal.com +0.0.0.0 zog.link +0.0.0.0 zojirushi-products.ru +0.0.0.0 zolotoy-lis.ru +0.0.0.0 zona-aqua.ru +0.0.0.0 zone-kev717.info +0.0.0.0 zonjwag.com +0.0.0.0 zoolubimets.ru +0.0.0.0 zoominfo.com +0.0.0.0 zophim.me +0.0.0.0 zrizvtrnpale.tk +0.0.0.0 zrus.org +0.0.0.0 zryydi.com +0.0.0.0 zs2vm.top +0.0.0.0 zscaler.net +0.0.0.0 zscalerone.net +0.0.0.0 zscalertwo.net +0.0.0.0 zverokruh-shop.cz +0.0.0.0 zvetki.ru +0.0.0.0 zx6.ru +0.0.0.0 zytpirwai.net +0.0.0.0 109-204-26-16.netconnexion.managedbroadband.co.uk +0.0.0.0 1866809.securefastserver.com +0.0.0.0 2amsports.com +0.0.0.0 4dexports.com +0.0.0.0 61kx.uk-insolvencydirect.com +0.0.0.0 999fitness.com +0.0.0.0 a.update.51edm.net +0.0.0.0 ab.usageload32.com +0.0.0.0 abcdespanol.com +0.0.0.0 above.e-rezerwacje24.pl +0.0.0.0 absurdity.flarelight.com +0.0.0.0 achren.org +0.0.0.0 acool.csheaven.com +0.0.0.0 ad-beast.com +0.0.0.0 ad.9tv.co.il +0.0.0.0 ad.getfond.info +0.0.0.0 adgallery.whitehousedrugpolicy.gov +0.0.0.0 adobeflashupdate14.com +0.0.0.0 adserving.favorit-network.com +0.0.0.0 adv.riza.it +0.0.0.0 advancetec.co.uk +0.0.0.0 agsteier.com +0.0.0.0 aippnetworks.com +0.0.0.0 aircraft.evote.cl +0.0.0.0 ajewishgift.com +0.0.0.0 alegroup.info +0.0.0.0 alexandria90.etcserver.com +0.0.0.0 alisat.biz +0.0.0.0 alissonluis-musico.sites.uol.com.br +0.0.0.0 allforlove.de +0.0.0.0 allxscan.tk +0.0.0.0 alsoknowsit.com +0.0.0.0 ama-alliance.com +0.0.0.0 amazingvacationhotels.com +0.0.0.0 amazon-sicherheit.kunden-ueberpruefung.xyz +0.0.0.0 ambulanciaslazaro.com +0.0.0.0 americancareconcept.com +0.0.0.0 aminev.com +0.0.0.0 amu.adduraddonhere.info +0.0.0.0 amu.boxinstallercompany.info +0.0.0.0 amu.brandnewinstall.info +0.0.0.0 amu.helpyourselfinstall.info +0.0.0.0 amu.twobox4addon.info +0.0.0.0 analxxxclipsyjh.dnset.com +0.0.0.0 anshrit.com +0.0.0.0 apexgames.org +0.0.0.0 art-archiv.ru +0.0.0.0 artsconsortium.org +0.0.0.0 asham.tourstogo.us +0.0.0.0 associatesexports.com +0.0.0.0 atelierprincesse.web.fc2.com +0.0.0.0 atlcourier.com +0.0.0.0 atyss.barginginfrance.net +0.0.0.0 avokka.com +0.0.0.0 avppet.com +0.0.0.0 axisbuild.com +0.0.0.0 azoos.csheaven.com +0.0.0.0 bargainracks.co.uk +0.0.0.0 batcoroadlinescorporation.com +0.0.0.0 bde.be +0.0.0.0 beautysafari.com +0.0.0.0 becomedebtfree.com.au +0.0.0.0 best100catfights.com +0.0.0.0 betterhomeandgardenideas.com +0.0.0.0 bezproudoff.cz +0.0.0.0 bilbaopisos.es +0.0.0.0 bizzibeans.net +0.0.0.0 blackfalcon5.net +0.0.0.0 blacknite.eu +0.0.0.0 blog.replacemycontacts.com +0.0.0.0 bluecutsystem.com +0.0.0.0 bnsoutlaws.co.uk +0.0.0.0 bonjo.bmbsklep.pl +0.0.0.0 boogu.barginginfrance.net +0.0.0.0 bookofkisl.com +0.0.0.0 boots.fotopyra.pl +0.0.0.0 borat.elticket.com.ar +0.0.0.0 boschetto-hotel.gr +0.0.0.0 bracewellfamily.com +0.0.0.0 broadtech.co +0.0.0.0 buildviet.info +0.0.0.0 by98.com +0.0.0.0 cacl.fr +0.0.0.0 caclclo.web.fc2.com +0.0.0.0 callingcardsinstantly.com +0.0.0.0 cannabislyric.com +0.0.0.0 cannabispicture.com +0.0.0.0 catjogger.win +0.0.0.0 chaveiro.bio.br +0.0.0.0 ciclismovalenciano.com +0.0.0.0 citymediamagazin.hu +0.0.0.0 classicspeedway.com +0.0.0.0 coaha.frenchgerlemanelectric.com +0.0.0.0 coalimpex.com +0.0.0.0 cofeb13east.com +0.0.0.0 coffeol.com +0.0.0.0 concede.fmtlib.net +0.0.0.0 cope.it +0.0.0.0 corroshield.estb.com.sg +0.0.0.0 cosmetice-farduri.ro +0.0.0.0 cosmos.felago.es +0.0.0.0 cosmos.furnipict.com +0.0.0.0 cqji.artidentalkurs.com +0.0.0.0 cracks.vg +0.0.0.0 crackspider.us +0.0.0.0 crackzone.net +0.0.0.0 creditbootcamp.com +0.0.0.0 crops.dunight.eu +0.0.0.0 customsboysint.com +0.0.0.0 cwmgaming.com +0.0.0.0 d1054130-28095.cp.blacknight.com +0.0.0.0 d1171912.cp.blacknight.com +0.0.0.0 d4.cumshots.ws +0.0.0.0 dancecourt.com +0.0.0.0 daralasnan.com +0.0.0.0 dawnframing.com +0.0.0.0 dcanscapital.co.uk +0.0.0.0 decorator.crabgrab.cl +0.0.0.0 decota.es +0.0.0.0 decrolyschool.be +0.0.0.0 deleondeos.com +0.0.0.0 deletespyware-adware.com +0.0.0.0 dent-lux.com.pl +0.0.0.0 destre45.com +0.0.0.0 dev.wrathofshadows.net +0.0.0.0 dianepiette.co.uk +0.0.0.0 diaryofagameaddict.com +0.0.0.0 dieutribenhkhop.com +0.0.0.0 dimenal.com.br +0.0.0.0 dimensionnail.ro +0.0.0.0 dimsnetwork.com +0.0.0.0 divine.lunarbreeze.com +0.0.0.0 dl.downf468.com +0.0.0.0 dl01.faddmr.com +0.0.0.0 dofeb.frenchgerlemanelectric.com +0.0.0.0 doktester.orgfree.com +0.0.0.0 down.mykings.pw +0.0.0.0 download-archiver.ru +0.0.0.0 downloads-finereader.ru +0.0.0.0 drank.fa779.com +0.0.0.0 dujur.barginginfrance.net +0.0.0.0 e-matelco.com +0.0.0.0 e1r.net +0.0.0.0 earthcontrolsys.com +0.0.0.0 echoa.randbinternationaltravel.com +0.0.0.0 edf.fr.kfskz.com +0.0.0.0 eecky.butlerelectricsupply.com +0.0.0.0 eekro.cruisingsmallship.com +0.0.0.0 eeps.me +0.0.0.0 eeroo.frost-electric-supply.com +0.0.0.0 eetho.cruisingsmallship.com +0.0.0.0 efugl.iptvdeals.com +0.0.0.0 elew72isst.rr.nu +0.0.0.0 eliehabib.com +0.0.0.0 elmissouri.fr +0.0.0.0 elocumjobs.com +0.0.0.0 emits.iptvdeals.com +0.0.0.0 eroov.iptvdeals.com +0.0.0.0 erupt.fernetmoretti.com.ar +0.0.0.0 esoad.frost-electric-supply.com +0.0.0.0 espdesign.com.au +0.0.0.0 estoa.frost-electric-supply.com +0.0.0.0 eternitymobiles.com +0.0.0.0 euro-vertrieb.com +0.0.0.0 europe-academy.net +0.0.0.0 europol.europe.eu.france.id647744160-2176514326.h5841.com +0.0.0.0 europol.europe.eu.id214218540-7444056787.h5841.com +0.0.0.0 evans.babajilab.in +0.0.0.0 ex.technor.com +0.0.0.0 exclaim.goldenteamacademy.cl +0.0.0.0 executivecoaching.co.il +0.0.0.0 exsexytop.tk +0.0.0.0 extreembilisim.com +0.0.0.0 faiyazahmed.com +0.0.0.0 falconsafe.com.sg +0.0.0.0 fallencrafts.info +0.0.0.0 faq-candrive.tk +0.0.0.0 fbku.com +0.0.0.0 femalewrestlingnow.com +0.0.0.0 fetishfitnessbabes.com +0.0.0.0 fetishlocator.com +0.0.0.0 finnhair.co.uk +0.0.0.0 firehouse651.com +0.0.0.0 fkhfgfg.tk +0.0.0.0 flashsavant.com +0.0.0.0 fo5.a1-downloader.org +0.0.0.0 fondazioneciampi.org +0.0.0.0 fourthgate.org +0.0.0.0 free-crochet-pattern.com +0.0.0.0 freefblikes.phpnet.us +0.0.0.0 freeserials.spb.ru +0.0.0.0 funchill.com +0.0.0.0 funkucck.bluerobot.cl +0.0.0.0 geil.alon3.tk +0.0.0.0 generalchemicalsupply.com +0.0.0.0 getdatanetukscan.info +0.0.0.0 giants.yourzip.co +0.0.0.0 go-quicky.com +0.0.0.0 gogetgorgeous.com +0.0.0.0 gojnox.boxtomarket.com +0.0.0.0 gosciniec-paproc.pl +0.0.0.0 gravityexp.com +0.0.0.0 greev.randbinternationaltravel.com +0.0.0.0 grosirkecantikan.com +0.0.0.0 gurde.tourstogo.us +0.0.0.0 guyscards.com +0.0.0.0 gyboo.cruisingsmallship.com +0.0.0.0 gylra.cruisingsmallship.com +0.0.0.0 h1666015.stratoserver.net +0.0.0.0 hana-naveh.com +0.0.0.0 hardcorepornparty.com +0.0.0.0 harshwhispers.com +0.0.0.0 headless.ebkfwd.com +0.0.0.0 healthybloodpressure.info +0.0.0.0 helesouurusa.cjb.com +0.0.0.0 hexadl.line55.net +0.0.0.0 higher.dwebsi.tk +0.0.0.0 highflyingfood.com +0.0.0.0 hinsib.com +0.0.0.0 hmora.fred-build.tk +0.0.0.0 hoawy.frost-electric-supply.com +0.0.0.0 hobbat.fvds.ru +0.0.0.0 hobby-hangar.net +0.0.0.0 hobbytotaalservice.nl +0.0.0.0 holishit.in +0.0.0.0 honor.agitaattori.fi +0.0.0.0 hosting-controlid1.tk +0.0.0.0 hosting-controlnext.tk +0.0.0.0 hosting-controlpin.tk +0.0.0.0 hosting-controlpr.tk +0.0.0.0 hotfacesitting.com +0.0.0.0 hotspot.cz +0.0.0.0 hrdcvn.com.vn +0.0.0.0 hst-19-33.splius.lt +0.0.0.0 hujii.qplanner.cf +0.0.0.0 hydraulicpowerpack.com +0.0.0.0 iamagameaddict.com +0.0.0.0 id405441215-8305493831.h121h9.com +0.0.0.0 igagh.tourstogo.us +0.0.0.0 igoby.frost-electric-supply.com +0.0.0.0 igroo.barginginfrance.net +0.0.0.0 image-circul.tk +0.0.0.0 images.topguncustomz.com +0.0.0.0 immediateresponseforcomputer.com +0.0.0.0 impressoras-cartoes.com.pt +0.0.0.0 inclusivediversity.co.uk +0.0.0.0 incoctel.cl +0.0.0.0 infoweb-coolinfo.tk +0.0.0.0 instruminahui.edu.ec +0.0.0.0 interactivearea.ru +0.0.0.0 internet-bb.tk +0.0.0.0 invention.festinolente.cl +0.0.0.0 ip-182-50-129-164.ip.secureserver.net +0.0.0.0 ip-182-50-129-181.ip.secureserver.net +0.0.0.0 ipl.hk +0.0.0.0 iptoo.cruisingsmallship.com +0.0.0.0 isonomia.com.ar +0.0.0.0 ithyk.frenchgerlemanelectric.com +0.0.0.0 iwgtest.co.uk +0.0.0.0 iwhab.randbinternationaltravel.com +0.0.0.0 ixoox.csheaven.com +0.0.0.0 izzy-cars.nl +0.0.0.0 jeanlesigne.com +0.0.0.0 jeansvixens.com +0.0.0.0 jessisjewels.com +0.0.0.0 jktdc.in +0.0.0.0 job-companybuild.tk +0.0.0.0 job-compuse.tk +0.0.0.0 js.tongji.linezing.com +0.0.0.0 jstaikos.com +0.0.0.0 jue0jc.lukodorsai.info +0.0.0.0 juicypussyclips.com +0.0.0.0 kadirzerey.com +0.0.0.0 kadman.net +0.0.0.0 kapcotool.com +0.0.0.0 kassabravo.com +0.0.0.0 keemy.butlerelectricsupply.com +0.0.0.0 keyways.pt +0.0.0.0 kfc.i.illuminationes.com +0.0.0.0 kids-fashion.dk +0.0.0.0 kingskillz.ru +0.0.0.0 kollagen4you.se +0.0.0.0 krsa2gno.congrats-sweepstakes-winner.com +0.0.0.0 krsa2gno.important-security-brower-alert.com +0.0.0.0 krsa2gno.internet-security-alert.com +0.0.0.0 krsa2gno.todays-sweepstakes-winner.com +0.0.0.0 krsa2gno.youre-todays-lucky-sweeps-winner.com +0.0.0.0 kulro.csheaven.com +0.0.0.0 kyrsu.frost-electric-supply.com +0.0.0.0 lab-cntest.tk +0.0.0.0 landisbaptist.com +0.0.0.0 lay.elticket.com.ar +0.0.0.0 leagleconsulting.com +0.0.0.0 legendsdtv.com +0.0.0.0 lexu.goggendorf.at +0.0.0.0 lhs-mhs.org +0.0.0.0 lifescience.sysu.edu.cn +0.0.0.0 likes.gisnetwork.net +0.0.0.0 linkforme.tk +0.0.0.0 live-dir.tk +0.0.0.0 livre.wasastation.fi +0.0.0.0 loft2126.dedicatedpanel.com +0.0.0.0 losas.cabanaslanina.com.ar +0.0.0.0 losos.caliane.com.br +0.0.0.0 luchtenbergdecor.com.br +0.0.0.0 luckyblank.info +0.0.0.0 luckyclean.info +0.0.0.0 luckyclear.info +0.0.0.0 luckyeffect.info +0.0.0.0 luckyhalo.info +0.0.0.0 luckypure.info +0.0.0.0 luckyshine.info +0.0.0.0 luckysuccess.info +0.0.0.0 luckysure.info +0.0.0.0 luckytidy.info +0.0.0.0 luggage-tv.com +0.0.0.0 luggagecast.com +0.0.0.0 luggagepreview.com +0.0.0.0 lunaticjazz.com +0.0.0.0 luwyou.com +0.0.0.0 lydwood.co.uk +0.0.0.0 m2132.ehgaugysd.net +0.0.0.0 mailboto.com +0.0.0.0 manoske.com +0.0.0.0 marchen-toy.co.jp +0.0.0.0 marialorena.com.br +0.0.0.0 maxisoft.co.uk +0.0.0.0 mbrdot.tk +0.0.0.0 mediatrade.h19.ru +0.0.0.0 mepra.blautechnology.cl +0.0.0.0 metrocuadro.com.ve +0.0.0.0 mgfd1b.petrix.net +0.0.0.0 miespaciopilates.com +0.0.0.0 milf.gabriola.cl +0.0.0.0 milleniumpapelaria.com.br +0.0.0.0 mindstormstudio.ro +0.0.0.0 ministerio-publi.info +0.0.0.0 miracema.rj.gov.br +0.0.0.0 mirandolasrl.it +0.0.0.0 mmile.com +0.0.0.0 mocka.frost-electric-supply.com +0.0.0.0 molla.gato1000.cl +0.0.0.0 montezuma.spb.ru +0.0.0.0 ms11.net +0.0.0.0 mtldesigns.ca +0.0.0.0 mylabsrl.com +0.0.0.0 mylondon.hc0.me +0.0.0.0 mysmallcock.com +0.0.0.0 myvksaver.ru +0.0.0.0 nadegda-95.ru +0.0.0.0 nailbytes1.com +0.0.0.0 namso.butlerelectricsupply.com +0.0.0.0 narrow.azenergyforum.com +0.0.0.0 natural.buckeyeenergyforum.com +0.0.0.0 nbook.far.ru +0.0.0.0 nc2199.eden5.netclusive.de +0.0.0.0 nctbonline.co.uk +0.0.0.0 nefib.tourstogo.us +0.0.0.0 nerez-schodiste-zabradli.com +0.0.0.0 nestorconsulting.net +0.0.0.0 networkmedical.com.hk +0.0.0.0 nevergreen.net +0.0.0.0 new-address.tk +0.0.0.0 new-softdriver.tk +0.0.0.0 news4cars.com +0.0.0.0 njtgsd.attackthethrone.com +0.0.0.0 nlconsulateorlandoorg.siteprotect.net +0.0.0.0 nmsbaseball.com +0.0.0.0 nobodyspeakstruth.narod.ru +0.0.0.0 nonsi.csheaven.com +0.0.0.0 noobgirls.com +0.0.0.0 nordiccountry.cz +0.0.0.0 nortonfire.co.uk +0.0.0.0 notebookservisru.161.com1.ru +0.0.0.0 noveslovo.com +0.0.0.0 nowina.info +0.0.0.0 ns1.updatesdns.org +0.0.0.0 ns2ns1.tk +0.0.0.0 nt-associates.com +0.0.0.0 nudebeachgalleries.net +0.0.0.0 nugly.barginginfrance.net +0.0.0.0 nuptialimages.com +0.0.0.0 nutnet.ir +0.0.0.0 oakso.tourstogo.us +0.0.0.0 oampa.csheaven.com +0.0.0.0 oapsa.tourstogo.us +0.0.0.0 oawoo.frenchgerlemanelectric.com +0.0.0.0 obada-konstruktiwa.org +0.0.0.0 obkom.net.ua +0.0.0.0 ocick.frost-electric-supply.com +0.0.0.0 officeon.ch.ma +0.0.0.0 oilwrestlingeurope.com +0.0.0.0 okeanbg.com +0.0.0.0 oknarai.ru +0.0.0.0 omrdatacapture.com +0.0.0.0 onrio.com.br +0.0.0.0 oofuv.cruisingsmallship.com +0.0.0.0 oojee.barginginfrance.net +0.0.0.0 ooksu.frost-electric-supply.com +0.0.0.0 oolsi.frost-electric-supply.com +0.0.0.0 oosee.barginginfrance.net +0.0.0.0 oowhe.frost-electric-supply.com +0.0.0.0 oprahsearch.com +0.0.0.0 optilogus.com +0.0.0.0 orbowlada.strefa.pl +0.0.0.0 orkut.krovatka.su +0.0.0.0 oshoa.iptvdeals.com +0.0.0.0 oshoo.iptvdeals.com +0.0.0.0 otylkaaotesanek.cz +0.0.0.0 outporn.com +0.0.0.0 ozzysixsixsix.web.fc2.com +0.0.0.0 pacan.gofreedom.info +0.0.0.0 pacman.gkgar.com +0.0.0.0 pave.elisecries.com +0.0.0.0 pb-webdesign.net +0.0.0.0 peeg.fronterarq.cl +0.0.0.0 pension-helene.cz +0.0.0.0 pepelacer.computingservices123.com +0.0.0.0 personal.editura-amsibiu.ro +0.0.0.0 pharmadeal.gr +0.0.0.0 phitenmy.com +0.0.0.0 phoaz.cruisingsmallship.com +0.0.0.0 pic.starsarabian.com +0.0.0.0 pigra.csheaven.com +0.0.0.0 pix360.co.nf +0.0.0.0 plank.duplicolor.cl +0.0.0.0 plantaardigebrandstof.nl +0.0.0.0 plengeh.wen.ru +0.0.0.0 pogruz.wanyizhao.net +0.0.0.0 pokachi.net +0.0.0.0 police11.provenprotection.net +0.0.0.0 pornstarss.tk +0.0.0.0 portablevaporizer.com +0.0.0.0 portalfiremasters.com.br +0.0.0.0 portraitphotographygroup.com +0.0.0.0 pos-kupang.com +0.0.0.0 potvaporizer.com +0.0.0.0 powershopnet.net +0.0.0.0 pradakomechanicals.com +0.0.0.0 praxisww.com +0.0.0.0 pride-u-bike.com +0.0.0.0 private.hotelcesenaticobooking.info +0.0.0.0 privatkunden.datapipe9271.com +0.0.0.0 produla.czatgg.pl +0.0.0.0 psooz.tourstogo.us +0.0.0.0 ptewh.iptvdeals.com +0.0.0.0 ptool.barginginfrance.net +0.0.0.0 ptuph.barginginfrance.net +0.0.0.0 ptush.iptvdeals.com +0.0.0.0 puenteaereo.info +0.0.0.0 pulso.butlerelectricsupply.com +0.0.0.0 pumpkin.brisik.net +0.0.0.0 purethc.com +0.0.0.0 pwvita.pl +0.0.0.0 pybul.bestfrozenporn.nl +0.0.0.0 q28840.nb.host127-0-0-1.com +0.0.0.0 quotidiennokoue.com +0.0.0.0 rallyeair.com +0.0.0.0 raneevahijab.id +0.0.0.0 rawoo.barginginfrance.net +0.0.0.0 reclamus.com +0.0.0.0 reishus.de +0.0.0.0 resolvethem.com +0.0.0.0 revistaelite.com +0.0.0.0 rl8vd.kikul.com +0.0.0.0 rocksresort.com.au +0.0.0.0 roks.ua +0.0.0.0 romsigmed.ro +0.0.0.0 romvarimarton.hu +0.0.0.0 roorbong.com +0.0.0.0 ross.starvingmillionaire.org +0.0.0.0 rsiuk.co.uk +0.0.0.0 ru.theswiftones.com +0.0.0.0 rufex.ajfingenieros.cl +0.0.0.0 ruiyangcn.com +0.0.0.0 rumog.frost-electric-supply.com +0.0.0.0 rupor.info +0.0.0.0 sadiqtv.com +0.0.0.0 saemark.is +0.0.0.0 safety.amw.com +0.0.0.0 salon77.co.uk +0.0.0.0 santacruzsuspension.com +0.0.0.0 sanya.vipc2f.com +0.0.0.0 sarahdaniella.com +0.0.0.0 sbnc.hak.su +0.0.0.0 scaner-do.tk +0.0.0.0 scaner-figy.tk +0.0.0.0 scaner-file.tk +0.0.0.0 scaner-or.tk +0.0.0.0 scaner-sbite.tk +0.0.0.0 scaner-sboom.tk +0.0.0.0 scaner-sdee.tk +0.0.0.0 scaner-tfeed.tk +0.0.0.0 scaner-tgame.tk +0.0.0.0 scanty.colormark.cl +0.0.0.0 scdsfdfgdr12.tk +0.0.0.0 scream.garudamp3.com +0.0.0.0 sdg-translations.com +0.0.0.0 securitywebservices.com +0.0.0.0 seet10.jino.ru +0.0.0.0 semengineers.com +0.0.0.0 semiyun.com +0.0.0.0 sexyoilwrestling.com +0.0.0.0 sexyster.tk +0.0.0.0 sexzoznamka.eu +0.0.0.0 sgs.us.com +0.0.0.0 shoal.grahanusareadymix.com +0.0.0.0 shovi.frost-electric-supply.com +0.0.0.0 signready.com +0.0.0.0 silurian.cn +0.0.0.0 simpi.tourstogo.us +0.0.0.0 site-checksite.tk +0.0.0.0 ska.energia.cz +0.0.0.0 skgroup.kiev.ua +0.0.0.0 skidki-yuga.ru +0.0.0.0 skiholidays4beginners.com +0.0.0.0 slightlyoffcenter.net +0.0.0.0 slimxxxtubeacn.dnset.com +0.0.0.0 slimxxxtubebej.dnset.com +0.0.0.0 slimxxxtubebmq.dnset.com +0.0.0.0 slimxxxtubectk.dnset.com +0.0.0.0 slimxxxtubedgv.dnset.com +0.0.0.0 slimxxxtubedvj.dnset.com +0.0.0.0 slimxxxtubeemz.dnset.com +0.0.0.0 slimxxxtubeftb.dnset.com +0.0.0.0 slimxxxtubehdn.dnset.com +0.0.0.0 slimxxxtubehli.dnset.com +0.0.0.0 slimxxxtubeijc.dnset.com +0.0.0.0 slimxxxtubeiqb.dnset.com +0.0.0.0 slimxxxtubejie.dnset.com +0.0.0.0 slimxxxtubeklg.dnset.com +0.0.0.0 slimxxxtubemue.dnset.com +0.0.0.0 slimxxxtubengt.dnset.com +0.0.0.0 slimxxxtubentf.dnset.com +0.0.0.0 slimxxxtubeocr.dnset.com +0.0.0.0 slimxxxtubeonf.dnset.com +0.0.0.0 slimxxxtubeppj.dnset.com +0.0.0.0 slimxxxtubeqve.dnset.com +0.0.0.0 slimxxxtubeqwr.dnset.com +0.0.0.0 slimxxxtuberep.dnset.com +0.0.0.0 slimxxxtuberfe.dnset.com +0.0.0.0 slimxxxtuberme.dnset.com +0.0.0.0 slimxxxtuberue.dnset.com +0.0.0.0 slimxxxtubesrs.dnset.com +0.0.0.0 slimxxxtubetmg.dnset.com +0.0.0.0 slimxxxtubetts.dnset.com +0.0.0.0 slimxxxtubeubp.dnset.com +0.0.0.0 slimxxxtubeull.dnset.com +0.0.0.0 slimxxxtubeuvd.dnset.com +0.0.0.0 slimxxxtubevih.dnset.com +0.0.0.0 slimxxxtubewmt.dnset.com +0.0.0.0 slimxxxtubexiv.dnset.com +0.0.0.0 slimxxxtubexwb.dnset.com +0.0.0.0 slimxxxtubexxq.dnset.com +0.0.0.0 smartify.org +0.0.0.0 smilll.depozit.hr +0.0.0.0 smrcek.com +0.0.0.0 sn-gzzx.com +0.0.0.0 somethingnice.hc0.me +0.0.0.0 somnoy.com +0.0.0.0 soros.departamentosejecutivos.cl +0.0.0.0 soxorok.ddospower.ro +0.0.0.0 spatsz.com +0.0.0.0 spekband.com +0.0.0.0 sportsulsan.co.kr +0.0.0.0 spread.diadanoivabh.com.br +0.0.0.0 spykit.110mb.com +0.0.0.0 srslogisticts.com +0.0.0.0 ssl-6582datamanager.de +0.0.0.0 stock.daydreamfuze.com +0.0.0.0 stopmeagency.free.fr +0.0.0.0 stork.escortfinder.cl +0.0.0.0 structured.blackswanstore.com +0.0.0.0 sudcom.org +0.0.0.0 sunlux.net +0.0.0.0 sunny99.cholerik.cz +0.0.0.0 svetyivanrilski.com +0.0.0.0 svision-online.de +0.0.0.0 sweettalk.co +0.0.0.0 sysconcalibration.com +0.0.0.0 systemscheckusa.com +0.0.0.0 szinhaz.hu +0.0.0.0 tahit.wastech2016.in +0.0.0.0 tamilcm.com +0.0.0.0 tanner.alicerosenmanmemorial.com +0.0.0.0 tatschke.net +0.0.0.0 tavuks.com +0.0.0.0 tcrwharen.homepage.t-online.de +0.0.0.0 teameda.comcastbiz.net +0.0.0.0 teameda.net +0.0.0.0 tecnocuer.com +0.0.0.0 tecslide.com +0.0.0.0 tendersource.com +0.0.0.0 teprom.it +0.0.0.0 terem.eltransbt.ro +0.0.0.0 textsex.tk +0.0.0.0 thcextractor.com +0.0.0.0 thcvaporizer.com +0.0.0.0 thefxarchive.com +0.0.0.0 thewinesteward.com +0.0.0.0 timothycopus.aimoo.com +0.0.0.0 titon.info +0.0.0.0 tk-gregoric.si +0.0.0.0 toddscarwash.com +0.0.0.0 tomalinoalambres.com.ar +0.0.0.0 tophostbg.net +0.0.0.0 trafficgrowth.com +0.0.0.0 treventuresonline.com +0.0.0.0 triangleservicesltd.com +0.0.0.0 trifle.ernstenco.be +0.0.0.0 troytempest.com +0.0.0.0 tscl.com.bd +0.0.0.0 ttb.tbddlw.com +0.0.0.0 tube8vidsbbr.dnset.com +0.0.0.0 tube8vidsbhy.dnset.com +0.0.0.0 tube8vidsbzx.dnset.com +0.0.0.0 tube8vidsdob.dnset.com +0.0.0.0 tube8vidshrw.dnset.com +0.0.0.0 tube8vidsjac.dnset.com +0.0.0.0 tube8vidslmf.dnset.com +0.0.0.0 tube8vidslni.dnset.com +0.0.0.0 tube8vidsnlq.dnset.com +0.0.0.0 tube8vidsnyp.dnset.com +0.0.0.0 tube8vidsotz.dnset.com +0.0.0.0 tube8vidsowd.dnset.com +0.0.0.0 tube8vidsrau.dnset.com +0.0.0.0 tube8vidsrdr.dnset.com +0.0.0.0 tube8vidsrom.dnset.com +0.0.0.0 tube8vidssan.dnset.com +0.0.0.0 tube8vidssyg.dnset.com +0.0.0.0 tube8vidstrh.dnset.com +0.0.0.0 tube8vidsuty.dnset.com +0.0.0.0 tube8vidsvaj.dnset.com +0.0.0.0 tube8vidsvtp.dnset.com +0.0.0.0 tube8vidswsy.dnset.com +0.0.0.0 tube8vidsxmx.dnset.com +0.0.0.0 tube8vidsxpp.dnset.com +0.0.0.0 tube8vidsycs.dnset.com +0.0.0.0 tube8vidsymz.dnset.com +0.0.0.0 tube8vidsyre.dnset.com +0.0.0.0 tube8vidsyyf.dnset.com +0.0.0.0 tubemoviez.com +0.0.0.0 typeofmarijuana.com +0.0.0.0 ubike.tourstogo.us +0.0.0.0 uchyz.cruisingsmallship.com +0.0.0.0 ukonline.hc0.me +0.0.0.0 ukrfarms.com.ua +0.0.0.0 ukugl.tourstogo.us +0.0.0.0 unalbilgisayar.com +0.0.0.0 undefined.it +0.0.0.0 unitex.home.pl +0.0.0.0 unlim-app.tk +0.0.0.0 unlink.altitude.lv +0.0.0.0 up.mykings.pw +0.0.0.0 updat120.clanteam.com +0.0.0.0 update.51edm.net +0.0.0.0 update.onescan.co.kr +0.0.0.0 uploads.tmweb.ru +0.0.0.0 upsoj.iptvdeals.com +0.0.0.0 upswings.net +0.0.0.0 url-cameralist.tk +0.0.0.0 users173.lolipop.jp +0.0.0.0 utopia-muenchen.de +0.0.0.0 uvidu.butlerelectricsupply.com +0.0.0.0 valouweeigenaren.nl +0.0.0.0 vdula.czystykod.pl +0.0.0.0 veevu.tourstogo.us +0.0.0.0 veksi.barginginfrance.net +0.0.0.0 vernoblisk.com +0.0.0.0 vette-porno.nl +0.0.0.0 victor.connectcloud.ch +0.0.0.0 videoflyover.com +0.0.0.0 vipdn123.blackapplehost.com +0.0.0.0 vistatech.us +0.0.0.0 vitalityxray.com +0.0.0.0 vitaly.agricolacolhue.cl +0.0.0.0 vitamasaz.pl +0.0.0.0 vitha.csheaven.com +0.0.0.0 vivaweb.org +0.0.0.0 vkont.bos.ru +0.0.0.0 vocational-training.us +0.0.0.0 vomit.facilitandosonhos.com.br +0.0.0.0 vural-electronic.com +0.0.0.0 vvps.ws +0.0.0.0 w4988.nb.host127-0-0-1.com +0.0.0.0 w612.nb.host127-0-0-1.com +0.0.0.0 wahyufian.zoomshare.com +0.0.0.0 wc0x83ghk.homepage.t-online.de +0.0.0.0 web-domain.tk +0.0.0.0 web-fill.tk +0.0.0.0 web-olymp.ru +0.0.0.0 web-sensations.com +0.0.0.0 webcashmaker.com +0.0.0.0 webcom-software.ws +0.0.0.0 webordermanager.com +0.0.0.0 weboxmedia.by +0.0.0.0 websalesusa.com +0.0.0.0 websitebuildersinfo.in +0.0.0.0 welington.info +0.0.0.0 wetjane.x10.mx +0.0.0.0 wetyt.tourstogo.us +0.0.0.0 wfoto.front.ru +0.0.0.0 whabi.csheaven.com +0.0.0.0 whave.iptvdeals.com +0.0.0.0 whitehorsetechnologies.net +0.0.0.0 windspotter.net +0.0.0.0 winrar-soft.ru +0.0.0.0 winsetupcostotome.easthamvacations.info +0.0.0.0 wixx.caliptopis.cl +0.0.0.0 womenslabour.org +0.0.0.0 womsy.bobbutcher.net +0.0.0.0 wonchangvacuum.com.my +0.0.0.0 wopper.bioblitzgaming.ca +0.0.0.0 worldgymperu.com +0.0.0.0 wp9.ru +0.0.0.0 wroclawski.com.pl +0.0.0.0 wt10.haote.com +0.0.0.0 wuvac.agwebdigital.com +0.0.0.0 wv-law.com +0.0.0.0 www.0uk.net +0.0.0.0 www.3difx.com +0.0.0.0 www.3peaks.co.jp +0.0.0.0 www.acquisizionevideo.com +0.0.0.0 www.actiagroup.com +0.0.0.0 www.advancesrl.eu +0.0.0.0 www.airbornehydrography.com +0.0.0.0 www.airsonett.se +0.0.0.0 www.alphamedical02.fr +0.0.0.0 www.areadiprova.eu +0.0.0.0 www.autoappassionati.it +0.0.0.0 www.blueimagen.com +0.0.0.0 www.casamama.nl +0.0.0.0 www.ceisystems.it +0.0.0.0 www.cerquasas.it +0.0.0.0 www.cifor.com +0.0.0.0 www.coloritpak.by +0.0.0.0 www.daspar.net +0.0.0.0 www.del-marine.com +0.0.0.0 www.dezuiderwaard.nl +0.0.0.0 www.divshare.com +0.0.0.0 www.donneuropa.it +0.0.0.0 www.downloaddirect.com +0.0.0.0 www.drteachme.com +0.0.0.0 www.email-login-support.com +0.0.0.0 www.enchantier.com +0.0.0.0 www.fabioalbini.com +0.0.0.0 www.family-partners.fr +0.0.0.0 www.fasadobygg.com +0.0.0.0 www.fiocchidiriso.com +0.0.0.0 www.fsm-europe.eu +0.0.0.0 www.gasthofpost-ebs.de +0.0.0.0 www.gennaroespositomilano.it +0.0.0.0 www.gmcjjh.org +0.0.0.0 www.gold-city.it +0.0.0.0 www.hausnet.ru +0.0.0.0 www.hitekshop.vn +0.0.0.0 www.hjaoopoa.top +0.0.0.0 www.hospedar.xpg.com.br +0.0.0.0 www.icybrand.eu +0.0.0.0 www.imagerieduroc.com +0.0.0.0 www.inevo.co.il +0.0.0.0 www.jcmarcadolib.com +0.0.0.0 www.joomlalivechat.com +0.0.0.0 www.lccl.org.uk +0.0.0.0 www.lifelabs.vn +0.0.0.0 www.litra.com.mk +0.0.0.0 www.lowes-pianos-and-organs.com +0.0.0.0 www.luce.polimi.it +0.0.0.0 www.lyzgs.com +0.0.0.0 www.makohela.tk +0.0.0.0 www.marss.eu +0.0.0.0 www.mondoperaio.net +0.0.0.0 www.motivacionyrelajacion.com +0.0.0.0 www.northpoleitalia.it +0.0.0.0 www.notaverde.com +0.0.0.0 www.nothingcompares.co.uk +0.0.0.0 www.nuvon.com +0.0.0.0 www.offerent.com +0.0.0.0 www.officialrdr.com +0.0.0.0 www.oiluk.net +0.0.0.0 www.ostsee-schnack.de +0.0.0.0 www.outlinearray.com +0.0.0.0 www.over50datingservices.com +0.0.0.0 www.panazan.ro +0.0.0.0 www.perupuntocom.com +0.0.0.0 www.petpleasers.ca +0.0.0.0 www.pgathailand.com +0.0.0.0 www.pieiron.co.uk +0.0.0.0 www.praxisww.com +0.0.0.0 www.proascolcolombia.com +0.0.0.0 www.professionalblackbook.com +0.0.0.0 www.profill-smd.com +0.0.0.0 www.propan.ru +0.0.0.0 www.purplehorses.net +0.0.0.0 www.realinnovation.com +0.0.0.0 www.rebeccacella.com +0.0.0.0 www.reifen-simon.com +0.0.0.0 www.rempko.sk +0.0.0.0 www.roltek.com.tr +0.0.0.0 www.rooversadvocatuur.nl +0.0.0.0 www.rst-velbert.de +0.0.0.0 www.saemark.is +0.0.0.0 www.salentoeasy.it +0.0.0.0 www.sankyo.gr.jp +0.0.0.0 www.sanseracingteam.com +0.0.0.0 www.sasenergia.pt +0.0.0.0 www.scanmyphones.com +0.0.0.0 www.scantanzania.com +0.0.0.0 www.schuh-zentgraf.de +0.0.0.0 www.seal-technicsag.ch +0.0.0.0 www.secondome.com +0.0.0.0 www.sieltre.it +0.0.0.0 www.sitepalace.com +0.0.0.0 www.slivki.com.ua +0.0.0.0 www.smartgvcfunding.com +0.0.0.0 www.smartscan.ro +0.0.0.0 www.sonnoli.com +0.0.0.0 www.spris.com +0.0.0.0 www.stirparts.ru +0.0.0.0 www.studiochiarelli.eu +0.0.0.0 www.studiolegaleabbruzzese.com +0.0.0.0 www.t-gas.co.uk +0.0.0.0 www.t-sb.net +0.0.0.0 www.tdms.saglik.gov.tr +0.0.0.0 www.technix.it +0.0.0.0 www.thesparkmachine.com +0.0.0.0 www.tiergestuetzt.de +0.0.0.0 www.toochattoo.com +0.0.0.0 www.tpt.edu.in +0.0.0.0 www.tvnews.or.kr +0.0.0.0 www.two-of-us.at +0.0.0.0 www.uriyuri.com +0.0.0.0 www.usaenterprise.com +0.0.0.0 www.vertourmer.com +0.0.0.0 www.volleyball-doppeldorf.de +0.0.0.0 www.vvvic.com +0.0.0.0 www.whitesports.co.kr +0.0.0.0 www.wigglewoo.com +0.0.0.0 www.wildsap.com +0.0.0.0 www.wrestlingexposed.com +0.0.0.0 www.wyroki.eu +0.0.0.0 www.xiruz.kit.net +0.0.0.0 www.ywvcomputerprocess.info +0.0.0.0 www.zatzy.com +0.0.0.0 www.zctei.com +0.0.0.0 www.zyxyfy.com +0.0.0.0 www12.0zz0.com +0.0.0.0 www8.0zz0.com +0.0.0.0 xindalawyer.com +0.0.0.0 xoomer.alice.it +0.0.0.0 xorgwebs.webs.com +0.0.0.0 xotsa.frenchgerlemanelectric.com +0.0.0.0 yigitakcali.com +0.0.0.0 ylpzt.juzojossai.net +0.0.0.0 yougube.com +0.0.0.0 youtibe.com +0.0.0.0 yumekin.com +0.0.0.0 z32538.nb.host127-0-0-1.com +0.0.0.0 z7752.com +0.0.0.0 zgsysz.com +0.0.0.0 zibup.csheaven.com +0.0.0.0 zjjlf.croukwexdbyerr.net +0.0.0.0 zkic.com +0.0.0.0 zous.szm.sk +0.0.0.0 zt.tim-taxi.com +0.0.0.0 zyrdu.cruisingsmallship.com +0.0.0.0 101com.com +0.0.0.0 101order.com +0.0.0.0 123found.com +0.0.0.0 180hits.de +0.0.0.0 180searchassistant.com +0.0.0.0 207.net +0.0.0.0 247media.com +0.0.0.0 24log.com +0.0.0.0 24log.de +0.0.0.0 24pm-affiliation.com +0.0.0.0 2mdn.net +0.0.0.0 360yield.com +0.0.0.0 4affiliate.net +0.0.0.0 4d5.net +0.0.0.0 50websads.com +0.0.0.0 518ad.com +0.0.0.0 51yes.com +0.0.0.0 600z.com +0.0.0.0 777partner.com +0.0.0.0 77tracking.com +0.0.0.0 7bpeople.com +0.0.0.0 99count.com +0.0.0.0 a-ads.com +0.0.0.0 a-counter.kiev.ua +0.0.0.0 a.0day.kiev.ua +0.0.0.0 a.aproductmsg.com +0.0.0.0 a.collective-media.net +0.0.0.0 a.consumer.net +0.0.0.0 a.mktw.net +0.0.0.0 a.sakh.com +0.0.0.0 a.ucoz.net +0.0.0.0 a.ucoz.ru +0.0.0.0 a.xanga.com +0.0.0.0 a32.g.a.yimg.com +0.0.0.0 aaddzz.com +0.0.0.0 abacho.net +0.0.0.0 abc-ads.com +0.0.0.0 absoluteclickscom.com +0.0.0.0 abz.com +0.0.0.0 ac.rnm.ca +0.0.0.0 accounts.pkr.com.invalid +0.0.0.0 acsseo.com +0.0.0.0 actionsplash.com +0.0.0.0 actualdeals.com +0.0.0.0 acuityads.com +0.0.0.0 ad-balancer.at +0.0.0.0 ad-balancer.net +0.0.0.0 ad-center.com +0.0.0.0 ad-pay.de +0.0.0.0 ad-rotator.com +0.0.0.0 ad-server.gulasidorna.se +0.0.0.0 ad-serverparc.nl +0.0.0.0 ad-space.net +0.0.0.0 ad-tech.com +0.0.0.0 ad-up.com +0.0.0.0 ad.100.tbn.ru +0.0.0.0 ad.71i.de +0.0.0.0 ad.a8.net +0.0.0.0 ad.abcnews.com +0.0.0.0 ad.abctv.com +0.0.0.0 ad.aboutwebservices.com +0.0.0.0 ad.abum.com +0.0.0.0 ad.afy11.net +0.0.0.0 ad.allstar.cz +0.0.0.0 ad.altervista.org +0.0.0.0 ad.amgdgt.com +0.0.0.0 ad.anuntis.com +0.0.0.0 ad.auditude.com +0.0.0.0 ad.bizo.com +0.0.0.0 ad.bnmla.com +0.0.0.0 ad.bondage.com +0.0.0.0 ad.caradisiac.com +0.0.0.0 ad.centrum.cz +0.0.0.0 ad.cgi.cz +0.0.0.0 ad.choiceradio.com +0.0.0.0 ad.clix.pt +0.0.0.0 ad.cooks.com +0.0.0.0 ad.crwdcntrl.net +0.0.0.0 ad.digitallook.com +0.0.0.0 ad.directrev.com +0.0.0.0 ad.doctissimo.fr +0.0.0.0 ad.domainfactory.de +0.0.0.0 ad.e-kolay.net +0.0.0.0 ad.eurosport.com +0.0.0.0 ad.f1cd.ru +0.0.0.0 ad.flurry.com +0.0.0.0 ad.foxnetworks.com +0.0.0.0 ad.freecity.de +0.0.0.0 ad.gate24.ch +0.0.0.0 ad.globe7.com +0.0.0.0 ad.grafika.cz +0.0.0.0 ad.hbv.de +0.0.0.0 ad.hodomobile.com +0.0.0.0 ad.httpool.com +0.0.0.0 ad.hyena.cz +0.0.0.0 ad.iinfo.cz +0.0.0.0 ad.ilove.ch +0.0.0.0 ad.jamba.net +0.0.0.0 ad.jamster.co.uk +0.0.0.0 ad.jetsoftware.com +0.0.0.0 ad.keenspace.com +0.0.0.0 ad.leadbolt.net +0.0.0.0 ad.liveinternet.ru +0.0.0.0 ad.lupa.cz +0.0.0.0 ad.media-servers.net +0.0.0.0 ad.mediastorm.hu +0.0.0.0 ad.mgd.de +0.0.0.0 ad.musicmatch.com +0.0.0.0 ad.nachtagenten.de +0.0.0.0 ad.nozonedata.com +0.0.0.0 ad.nttnavi.co.jp +0.0.0.0 ad.nwt.cz +0.0.0.0 ad.onad.eu +0.0.0.0 ad.pandora.tv +0.0.0.0 ad.preferances.com +0.0.0.0 ad.profiwin.de +0.0.0.0 ad.prv.pl +0.0.0.0 ad.rambler.ru +0.0.0.0 ad.reunion.com +0.0.0.0 ad.scanmedios.com +0.0.0.0 ad.sensismediasmart.com.au +0.0.0.0 ad.seznam.cz +0.0.0.0 ad.simgames.net +0.0.0.0 ad.smartclip.net +0.0.0.0 ad.tbn.ru +0.0.0.0 ad.technoratimedia.com +0.0.0.0 ad.thewheelof.com +0.0.0.0 ad.turn.com +0.0.0.0 ad.tv2.no +0.0.0.0 ad.twitchguru.com +0.0.0.0 ad.usatoday.com +0.0.0.0 ad.virtual-nights.com +0.0.0.0 ad.wavu.hu +0.0.0.0 ad.way.cz +0.0.0.0 ad.weatherbug.com +0.0.0.0 ad.wsod.com +0.0.0.0 ad.wz.cz +0.0.0.0 ad.yadro.ru +0.0.0.0 ad.yourmedia.com +0.0.0.0 ad.zanox.com +0.0.0.0 ad0.bigmir.net +0.0.0.0 ad01.mediacorpsingapore.com +0.0.0.0 ad1.emediate.dk +0.0.0.0 ad1.emule-project.org +0.0.0.0 ad1.kde.cz +0.0.0.0 ad1.pamedia.com.au +0.0.0.0 ad2.iinfo.cz +0.0.0.0 ad2.linxcz.cz +0.0.0.0 ad2.lupa.cz +0.0.0.0 ad2flash.com +0.0.0.0 ad2games.com +0.0.0.0 ad3.iinfo.cz +0.0.0.0 ad3.pamedia.com.au +0.0.0.0 ad4game.com +0.0.0.0 adaction.de +0.0.0.0 adadvisor.net +0.0.0.0 adap.tv +0.0.0.0 adapt.tv +0.0.0.0 adbanner.ro +0.0.0.0 adbard.net +0.0.0.0 adbers.com +0.0.0.0 adblade.com +0.0.0.0 adboost.de.vu +0.0.0.0 adboost.net +0.0.0.0 adbooth.net +0.0.0.0 adbot.com +0.0.0.0 adbrite.com +0.0.0.0 adbroker.de +0.0.0.0 adbunker.com +0.0.0.0 adbutler.com +0.0.0.0 adbutler.de +0.0.0.0 adbuyer.com +0.0.0.0 adbuyer3.lycos.com +0.0.0.0 adcast.deviantart.com +0.0.0.0 adcenter.mdf.se +0.0.0.0 adcenter.net +0.0.0.0 adcentriconline.com +0.0.0.0 adcept.net +0.0.0.0 adclick.com +0.0.0.0 adclient.uimserv.net +0.0.0.0 adclient1.tucows.com +0.0.0.0 adcomplete.com +0.0.0.0 adconion.com +0.0.0.0 adcontent.gamespy.com +0.0.0.0 adcycle.com +0.0.0.0 add.newmedia.cz +0.0.0.0 addealing.com +0.0.0.0 addfreestats.com +0.0.0.0 addme.com +0.0.0.0 adecn.com +0.0.0.0 ademails.com +0.0.0.0 adengage.com +0.0.0.0 adexpose.com +0.0.0.0 adext.inkclub.com +0.0.0.0 adfactor.nl +0.0.0.0 adfarm.mediaplex.com +0.0.0.0 adflight.com +0.0.0.0 adforce.com +0.0.0.0 adform.com +0.0.0.0 adgardener.com +0.0.0.0 adgoto.com +0.0.0.0 adgridwork.com +0.0.0.0 adhese.be +0.0.0.0 adhese.com +0.0.0.0 adimage.asiaone.com.sg +0.0.0.0 adimage.guardian.co.uk +0.0.0.0 adimages.been.com +0.0.0.0 adimages.carsoup.com +0.0.0.0 adimages.go.com +0.0.0.0 adimages.homestore.com +0.0.0.0 adimages.omroepzeeland.nl +0.0.0.0 adimages.sanomawsoy.fi +0.0.0.0 adimg.cnet.com +0.0.0.0 adimg.com.com +0.0.0.0 adimg.uimserv.net +0.0.0.0 adimg1.chosun.com +0.0.0.0 adimgs.sapo.pt +0.0.0.0 adimpact.com +0.0.0.0 adinjector.net +0.0.0.0 adisfy.com +0.0.0.0 adition.com +0.0.0.0 adition.de +0.0.0.0 adition.net +0.0.0.0 adizio.com +0.0.0.0 adjix.com +0.0.0.0 adjug.com +0.0.0.0 adjuggler.com +0.0.0.0 adjuggler.yourdictionary.com +0.0.0.0 adjustnetwork.com +0.0.0.0 adk2.com +0.0.0.0 adk2ads.tictacti.com +0.0.0.0 adland.ru +0.0.0.0 adlantic.nl +0.0.0.0 adledge.com +0.0.0.0 adlegend.com +0.0.0.0 adlog.com.com +0.0.0.0 adloox.com +0.0.0.0 adlooxtracking.com +0.0.0.0 adlure.net +0.0.0.0 admagnet.net +0.0.0.0 admailtiser.com +0.0.0.0 adman.in.gr +0.0.0.0 adman.otenet.gr +0.0.0.0 admanagement.ch +0.0.0.0 admanager.btopenworld.com +0.0.0.0 admanager.carsoup.com +0.0.0.0 admarketplace.net +0.0.0.0 admarvel.com +0.0.0.0 admax.nexage.com +0.0.0.0 admedia.com +0.0.0.0 admedia.ro +0.0.0.0 admeld.com +0.0.0.0 admerize.be +0.0.0.0 admeta.com +0.0.0.0 admex.com +0.0.0.0 adminder.com +0.0.0.0 admized.com +0.0.0.0 admob.com +0.0.0.0 admonitor.com +0.0.0.0 admotion.com.ar +0.0.0.0 adnet-media.net +0.0.0.0 adnet.asahi.com +0.0.0.0 adnet.biz +0.0.0.0 adnet.de +0.0.0.0 adnet.ru +0.0.0.0 adnet.worldreviewer.com +0.0.0.0 adnetinteractive.com +0.0.0.0 adnetwork.net +0.0.0.0 adnews.maddog2000.de +0.0.0.0 adnotch.com +0.0.0.0 adnxs.com +0.0.0.0 adocean.pl +0.0.0.0 adonspot.com +0.0.0.0 adoperator.com +0.0.0.0 adorigin.com +0.0.0.0 adpepper.dk +0.0.0.0 adpepper.nl +0.0.0.0 adperium.com +0.0.0.0 adpia.vn +0.0.0.0 adplus.co.id +0.0.0.0 adplxmd.com +0.0.0.0 adprofile.net +0.0.0.0 adprojekt.pl +0.0.0.0 adq.nextag.com +0.0.0.0 adrazzi.com +0.0.0.0 adreactor.com +0.0.0.0 adrecreate.com +0.0.0.0 adremedy.com +0.0.0.0 adreporting.com +0.0.0.0 adres.internet.com +0.0.0.0 adrevolver.com +0.0.0.0 adriver.ru +0.0.0.0 adrolays.de +0.0.0.0 adrotate.de +0.0.0.0 adrotator.se +0.0.0.0 adrta.com +0.0.0.0 ads-click.com +0.0.0.0 ads.4tube.com +0.0.0.0 ads.5ci.lt +0.0.0.0 ads.abovetopsecret.com +0.0.0.0 ads.aceweb.net +0.0.0.0 ads.activestate.com +0.0.0.0 ads.adfox.ru +0.0.0.0 ads.administrator.de +0.0.0.0 ads.adshareware.net +0.0.0.0 ads.adultfriendfinder.com +0.0.0.0 ads.adultswim.com +0.0.0.0 ads.advance.net +0.0.0.0 ads.adverline.com +0.0.0.0 ads.affiliates.match.com +0.0.0.0 ads.ak.facebook.com.edgesuite.net +0.0.0.0 ads.allvatar.com +0.0.0.0 ads.alt.com +0.0.0.0 ads.amdmb.com +0.0.0.0 ads.amigos.com +0.0.0.0 ads.aol.co.uk +0.0.0.0 ads.aol.com +0.0.0.0 ads.apn.co.nz +0.0.0.0 ads.appsgeyser.com +0.0.0.0 ads.as4x.tmcs.net +0.0.0.0 ads.as4x.tmcs.ticketmaster.com +0.0.0.0 ads.asia1.com.sg +0.0.0.0 ads.asiafriendfinder.com +0.0.0.0 ads.ask.com +0.0.0.0 ads.aspalliance.com +0.0.0.0 ads.avazu.net +0.0.0.0 ads.batpmturner.com +0.0.0.0 ads.beenetworks.net +0.0.0.0 ads.belointeractive.com +0.0.0.0 ads.berlinonline.de +0.0.0.0 ads.betanews.com +0.0.0.0 ads.betfair.com +0.0.0.0 ads.betfair.com.au +0.0.0.0 ads.bigchurch.com +0.0.0.0 ads.bigfoot.com +0.0.0.0 ads.bing.com +0.0.0.0 ads.bittorrent.com +0.0.0.0 ads.blog.com +0.0.0.0 ads.bloomberg.com +0.0.0.0 ads.bluelithium.com +0.0.0.0 ads.bluemountain.com +0.0.0.0 ads.bluesq.com +0.0.0.0 ads.bonniercorp.com +0.0.0.0 ads.boylesports.com +0.0.0.0 ads.brabys.com +0.0.0.0 ads.brazzers.com +0.0.0.0 ads.bumq.com +0.0.0.0 ads.businessweek.com +0.0.0.0 ads.canalblog.com +0.0.0.0 ads.canoe.ca +0.0.0.0 ads.casinocity.com +0.0.0.0 ads.cbc.ca +0.0.0.0 ads.cc +0.0.0.0 ads.cc-dt.com +0.0.0.0 ads.centraliprom.com +0.0.0.0 ads.cgnetworks.com +0.0.0.0 ads.channel4.com +0.0.0.0 ads.clearchannel.com +0.0.0.0 ads.co.com +0.0.0.0 ads.com.com +0.0.0.0 ads.contactmusic.com +0.0.0.0 ads.contentabc.com +0.0.0.0 ads.contextweb.com +0.0.0.0 ads.crakmedia.com +0.0.0.0 ads.creative-serving.com +0.0.0.0 ads.creativematch.com +0.0.0.0 ads.cricbuzz.com +0.0.0.0 ads.cybersales.cz +0.0.0.0 ads.dada.it +0.0.0.0 ads.datinggold.com +0.0.0.0 ads.datingyes.com +0.0.0.0 ads.dazoot.ro +0.0.0.0 ads.deltha.hu +0.0.0.0 ads.dennisnet.co.uk +0.0.0.0 ads.desmoinesregister.com +0.0.0.0 ads.detelefoongids.nl +0.0.0.0 ads.deviantart.com +0.0.0.0 ads.digital-digest.com +0.0.0.0 ads.digitalmedianet.com +0.0.0.0 ads.digitalpoint.com +0.0.0.0 ads.directionsmag.com +0.0.0.0 ads.domeus.com +0.0.0.0 ads.eagletribune.com +0.0.0.0 ads.easy-forex.com +0.0.0.0 ads.eatinparis.com +0.0.0.0 ads.economist.com +0.0.0.0 ads.edbindex.dk +0.0.0.0 ads.egrana.com.br +0.0.0.0 ads.einmedia.com +0.0.0.0 ads.electrocelt.com +0.0.0.0 ads.elitetrader.com +0.0.0.0 ads.emirates.net.ae +0.0.0.0 ads.epltalk.com +0.0.0.0 ads.eu.msn.com +0.0.0.0 ads.exactdrive.com +0.0.0.0 ads.expat-blog.biz +0.0.0.0 ads.expedia.com +0.0.0.0 ads.ezboard.com +0.0.0.0 ads.factorymedia.com +0.0.0.0 ads.fairfax.com.au +0.0.0.0 ads.faxo.com +0.0.0.0 ads.ferianc.com +0.0.0.0 ads.filmup.com +0.0.0.0 ads.financialcontent.com +0.0.0.0 ads.flooble.com +0.0.0.0 ads.fool.com +0.0.0.0 ads.footymad.net +0.0.0.0 ads.forbes.com +0.0.0.0 ads.forbes.net +0.0.0.0 ads.forium.de +0.0.0.0 ads.fortunecity.com +0.0.0.0 ads.fotosidan.se +0.0.0.0 ads.foxkidseurope.net +0.0.0.0 ads.foxnetworks.com +0.0.0.0 ads.foxnews.com +0.0.0.0 ads.freecity.de +0.0.0.0 ads.friendfinder.com +0.0.0.0 ads.ft.com +0.0.0.0 ads.futurenet.com +0.0.0.0 ads.gamecity.net +0.0.0.0 ads.gamershell.com +0.0.0.0 ads.gamespyid.com +0.0.0.0 ads.gamigo.de +0.0.0.0 ads.gaming-universe.de +0.0.0.0 ads.gawker.com +0.0.0.0 ads.geekswithblogs.net +0.0.0.0 ads.glispa.com +0.0.0.0 ads.gmodules.com +0.0.0.0 ads.godlikeproductions.com +0.0.0.0 ads.goyk.com +0.0.0.0 ads.gplusmedia.com +0.0.0.0 ads.gradfinder.com +0.0.0.0 ads.grindinggears.com +0.0.0.0 ads.groundspeak.com +0.0.0.0 ads.gsm-exchange.com +0.0.0.0 ads.gsmexchange.com +0.0.0.0 ads.guardian.co.uk +0.0.0.0 ads.guardianunlimited.co.uk +0.0.0.0 ads.guru3d.com +0.0.0.0 ads.hardwaresecrets.com +0.0.0.0 ads.harpers.org +0.0.0.0 ads.hbv.de +0.0.0.0 ads.hearstmags.com +0.0.0.0 ads.heartlight.org +0.0.0.0 ads.heias.com +0.0.0.0 ads.hideyourarms.com +0.0.0.0 ads.hollywood.com +0.0.0.0 ads.horsehero.com +0.0.0.0 ads.horyzon-media.com +0.0.0.0 ads.iafrica.com +0.0.0.0 ads.ibest.com.br +0.0.0.0 ads.ibryte.com +0.0.0.0 ads.icq.com +0.0.0.0 ads.ign.com +0.0.0.0 ads.img.co.za +0.0.0.0 ads.imgur.com +0.0.0.0 ads.indiatimes.com +0.0.0.0 ads.infi.net +0.0.0.0 ads.internic.co.il +0.0.0.0 ads.ipowerweb.com +0.0.0.0 ads.isoftmarketing.com +0.0.0.0 ads.itv.com +0.0.0.0 ads.iwon.com +0.0.0.0 ads.jewishfriendfinder.com +0.0.0.0 ads.jiwire.com +0.0.0.0 ads.jobsite.co.uk +0.0.0.0 ads.jpost.com +0.0.0.0 ads.jubii.dk +0.0.0.0 ads.justhungry.com +0.0.0.0 ads.kaktuz.net +0.0.0.0 ads.kelbymediagroup.com +0.0.0.0 ads.kinobox.cz +0.0.0.0 ads.kinxxx.com +0.0.0.0 ads.kompass.com +0.0.0.0 ads.krawall.de +0.0.0.0 ads.lesbianpersonals.com +0.0.0.0 ads.linuxfoundation.org +0.0.0.0 ads.linuxjournal.com +0.0.0.0 ads.linuxsecurity.com +0.0.0.0 ads.livenation.com +0.0.0.0 ads.mariuana.it +0.0.0.0 ads.massinfra.nl +0.0.0.0 ads.mcafee.com +0.0.0.0 ads.mediaodyssey.com +0.0.0.0 ads.medienhaus.de +0.0.0.0 ads.mgnetwork.com +0.0.0.0 ads.mmania.com +0.0.0.0 ads.moceanads.com +0.0.0.0 ads.motor-forum.nl +0.0.0.0 ads.motormedia.nl +0.0.0.0 ads.msn.com +0.0.0.0 ads.multimania.lycos.fr +0.0.0.0 ads.nationalgeographic.com +0.0.0.0 ads.ncm.com +0.0.0.0 ads.netclusive.de +0.0.0.0 ads.netmechanic.com +0.0.0.0 ads.networksolutions.com +0.0.0.0 ads.newdream.net +0.0.0.0 ads.newgrounds.com +0.0.0.0 ads.newmedia.cz +0.0.0.0 ads.newsint.co.uk +0.0.0.0 ads.newsquest.co.uk +0.0.0.0 ads.ninemsn.com.au +0.0.0.0 ads.nj.com +0.0.0.0 ads.nola.com +0.0.0.0 ads.nordichardware.com +0.0.0.0 ads.nordichardware.se +0.0.0.0 ads.nwsource.com +0.0.0.0 ads.nyi.net +0.0.0.0 ads.nytimes.com +0.0.0.0 ads.nyx.cz +0.0.0.0 ads.nzcity.co.nz +0.0.0.0 ads.o2.pl +0.0.0.0 ads.oddschecker.com +0.0.0.0 ads.okcimg.com +0.0.0.0 ads.ole.com +0.0.0.0 ads.olivebrandresponse.com +0.0.0.0 ads.oneplace.com +0.0.0.0 ads.optusnet.com.au +0.0.0.0 ads.outpersonals.com +0.0.0.0 ads.passion.com +0.0.0.0 ads.pennet.com +0.0.0.0 ads.penny-arcade.com +0.0.0.0 ads.pheedo.com +0.0.0.0 ads.phpclasses.org +0.0.0.0 ads.pickmeup-ltd.com +0.0.0.0 ads.planet.nl +0.0.0.0 ads.pni.com +0.0.0.0 ads.pof.com +0.0.0.0 ads.powweb.com +0.0.0.0 ads.primissima.it +0.0.0.0 ads.printscr.com +0.0.0.0 ads.prisacom.com +0.0.0.0 ads.program3.com +0.0.0.0 ads.psd2html.com +0.0.0.0 ads.pushplay.com +0.0.0.0 ads.quoka.de +0.0.0.0 ads.rcs.it +0.0.0.0 ads.recoletos.es +0.0.0.0 ads.rediff.com +0.0.0.0 ads.redlightcenter.com +0.0.0.0 ads.redtube.com +0.0.0.0 ads.resoom.de +0.0.0.0 ads.returnpath.net +0.0.0.0 ads.s3.sitepoint.com +0.0.0.0 ads.satyamonline.com +0.0.0.0 ads.savannahnow.com +0.0.0.0 ads.scifi.com +0.0.0.0 ads.seniorfriendfinder.com +0.0.0.0 ads.servebom.com +0.0.0.0 ads.sexinyourcity.com +0.0.0.0 ads.shizmoo.com +0.0.0.0 ads.shopstyle.com +0.0.0.0 ads.sift.co.uk +0.0.0.0 ads.silverdisc.co.uk +0.0.0.0 ads.slim.com +0.0.0.0 ads.smartclick.com +0.0.0.0 ads.soft32.com +0.0.0.0 ads.space.com +0.0.0.0 ads.sptimes.com +0.0.0.0 ads.stackoverflow.com +0.0.0.0 ads.sun.com +0.0.0.0 ads.supplyframe.com +0.0.0.0 ads.t-online.de +0.0.0.0 ads.tahono.com +0.0.0.0 ads.techtv.com +0.0.0.0 ads.telegraph.co.uk +0.0.0.0 ads.themovienation.com +0.0.0.0 ads.thestar.com +0.0.0.0 ads.tmcs.net +0.0.0.0 ads.totallyfreestuff.com +0.0.0.0 ads.townhall.com +0.0.0.0 ads.trinitymirror.co.uk +0.0.0.0 ads.tripod.com +0.0.0.0 ads.tripod.lycos.co.uk +0.0.0.0 ads.tripod.lycos.de +0.0.0.0 ads.tripod.lycos.es +0.0.0.0 ads.tripod.lycos.it +0.0.0.0 ads.tripod.lycos.nl +0.0.0.0 ads.tripod.spray.se +0.0.0.0 ads.tso.dennisnet.co.uk +0.0.0.0 ads.uknetguide.co.uk +0.0.0.0 ads.ultimate-guitar.com +0.0.0.0 ads.uncrate.com +0.0.0.0 ads.undertone.com +0.0.0.0 ads.usatoday.com +0.0.0.0 ads.v3.com +0.0.0.0 ads.verticalresponse.com +0.0.0.0 ads.vgchartz.com +0.0.0.0 ads.videosz.com +0.0.0.0 ads.virtual-nights.com +0.0.0.0 ads.virtualcountries.com +0.0.0.0 ads.vnumedia.com +0.0.0.0 ads.waps.cn +0.0.0.0 ads.wapx.cn +0.0.0.0 ads.weather.ca +0.0.0.0 ads.web.aol.com +0.0.0.0 ads.web.cs.com +0.0.0.0 ads.web.de +0.0.0.0 ads.webmasterpoint.org +0.0.0.0 ads.websiteservices.com +0.0.0.0 ads.whi.co.nz +0.0.0.0 ads.whoishostingthis.com +0.0.0.0 ads.wiezoekje.nl +0.0.0.0 ads.wikia.nocookie.net +0.0.0.0 ads.wineenthusiast.com +0.0.0.0 ads.wwe.biz +0.0.0.0 ads.xhamster.com +0.0.0.0 ads.xtra.co.nz +0.0.0.0 ads.y-0.net +0.0.0.0 ads.yahoo.com +0.0.0.0 ads.yimg.com +0.0.0.0 ads.yldmgrimg.net +0.0.0.0 ads.yourfreedvds.com +0.0.0.0 ads.youtube.com +0.0.0.0 ads.zdnet.com +0.0.0.0 ads03.redtube.com +0.0.0.0 ads1.canoe.ca +0.0.0.0 ads1.mediacapital.pt +0.0.0.0 ads1.msn.com +0.0.0.0 ads1.rne.com +0.0.0.0 ads1.virtual-nights.com +0.0.0.0 ads10.speedbit.com +0.0.0.0 ads180.com +0.0.0.0 ads2.brazzers.com +0.0.0.0 ads2.clearchannel.com +0.0.0.0 ads2.contentabc.com +0.0.0.0 ads2.gamecity.net +0.0.0.0 ads2.jubii.dk +0.0.0.0 ads2.net-communities.co.uk +0.0.0.0 ads2.oneplace.com +0.0.0.0 ads2.rne.com +0.0.0.0 ads2.virtual-nights.com +0.0.0.0 ads2.xnet.cz +0.0.0.0 ads2004.treiberupdate.de +0.0.0.0 ads3.contentabc.com +0.0.0.0 ads3.gamecity.net +0.0.0.0 ads3.virtual-nights.com +0.0.0.0 ads4.clearchannel.com +0.0.0.0 ads4.gamecity.net +0.0.0.0 ads4.virtual-nights.com +0.0.0.0 ads4homes.com +0.0.0.0 ads5.canoe.ca +0.0.0.0 ads5.virtual-nights.com +0.0.0.0 ads6.gamecity.net +0.0.0.0 ads7.gamecity.net +0.0.0.0 ads8.com +0.0.0.0 adsatt.abc.starwave.com +0.0.0.0 adsatt.abcnews.starwave.com +0.0.0.0 adsatt.espn.go.com +0.0.0.0 adsatt.espn.starwave.com +0.0.0.0 adsatt.go.starwave.com +0.0.0.0 adsby.bidtheatre.com +0.0.0.0 adscale.de +0.0.0.0 adscholar.com +0.0.0.0 adscience.nl +0.0.0.0 adscpm.com +0.0.0.0 adsdaq.com +0.0.0.0 adsdk.com +0.0.0.0 adsend.de +0.0.0.0 adserv.evo-x.de +0.0.0.0 adserv.gamezone.de +0.0.0.0 adserv.iafrica.com +0.0.0.0 adserv.qconline.com +0.0.0.0 adserve.ams.rhythmxchange.com +0.0.0.0 adserver-live.yoc.mobi +0.0.0.0 adserver.43plc.com +0.0.0.0 adserver.71i.de +0.0.0.0 adserver.adultfriendfinder.com +0.0.0.0 adserver.aidameter.com +0.0.0.0 adserver.aol.fr +0.0.0.0 adserver.beggarspromo.com +0.0.0.0 adserver.betandwin.de +0.0.0.0 adserver.bing.com +0.0.0.0 adserver.bizhat.com +0.0.0.0 adserver.break-even.it +0.0.0.0 adserver.cams.com +0.0.0.0 adserver.com +0.0.0.0 adserver.digitoday.com +0.0.0.0 adserver.dotcommedia.de +0.0.0.0 adserver.finditquick.com +0.0.0.0 adserver.flossiemediagroup.com +0.0.0.0 adserver.freecity.de +0.0.0.0 adserver.freenet.de +0.0.0.0 adserver.friendfinder.com +0.0.0.0 adserver.hardsextube.com +0.0.0.0 adserver.hardwareanalysis.com +0.0.0.0 adserver.html.it +0.0.0.0 adserver.irishwebmasterforum.com +0.0.0.0 adserver.janes.com +0.0.0.0 adserver.libero.it +0.0.0.0 adserver.news.com.au +0.0.0.0 adserver.ngz-network.de +0.0.0.0 adserver.nydailynews.com +0.0.0.0 adserver.o2.pl +0.0.0.0 adserver.oddschecker.com +0.0.0.0 adserver.omroepzeeland.nl +0.0.0.0 adserver.pl +0.0.0.0 adserver.portalofevil.com +0.0.0.0 adserver.portugalmail.net +0.0.0.0 adserver.portugalmail.pt +0.0.0.0 adserver.sanomawsoy.fi +0.0.0.0 adserver.sciflicks.com +0.0.0.0 adserver.sharewareonline.com +0.0.0.0 adserver.spankaway.com +0.0.0.0 adserver.theonering.net +0.0.0.0 adserver.twitpic.com +0.0.0.0 adserver.viagogo.com +0.0.0.0 adserver.virginmedia.com +0.0.0.0 adserver.yahoo.com +0.0.0.0 adserver01.de +0.0.0.0 adserver1-images.backbeatmedia.com +0.0.0.0 adserver1.backbeatmedia.com +0.0.0.0 adserver1.mindshare.de +0.0.0.0 adserver1.ogilvy-interactive.de +0.0.0.0 adserver2.mindshare.de +0.0.0.0 adserverplus.com +0.0.0.0 adserversolutions.com +0.0.0.0 adservinginternational.com +0.0.0.0 adsfac.eu +0.0.0.0 adsfac.net +0.0.0.0 adsfac.us +0.0.0.0 adshost1.com +0.0.0.0 adside.com +0.0.0.0 adsk2.co +0.0.0.0 adskape.ru +0.0.0.0 adsklick.de +0.0.0.0 adsmarket.com +0.0.0.0 adsmart.co.uk +0.0.0.0 adsmart.com +0.0.0.0 adsmart.net +0.0.0.0 adsmogo.com +0.0.0.0 adsnative.com +0.0.0.0 adsoftware.com +0.0.0.0 adsoldier.com +0.0.0.0 adsonar.com +0.0.0.0 adspace.ro +0.0.0.0 adspeed.net +0.0.0.0 adspirit.de +0.0.0.0 adsponse.de +0.0.0.0 adsremote.scrippsnetworks.com +0.0.0.0 adsrevenue.net +0.0.0.0 adsrv.deviantart.com +0.0.0.0 adsrv.eacdn.com +0.0.0.0 adsrvr.org +0.0.0.0 adsstat.com +0.0.0.0 adstat.4u.pl +0.0.0.0 adstest.weather.com +0.0.0.0 adsupply.com +0.0.0.0 adsymptotic.com +0.0.0.0 adsynergy.com +0.0.0.0 adsys.townnews.com +0.0.0.0 adsystem.simplemachines.org +0.0.0.0 adtechus.com +0.0.0.0 adtegrity.net +0.0.0.0 adthis.com +0.0.0.0 adtoll.com +0.0.0.0 adtology.com +0.0.0.0 adtoma.com +0.0.0.0 adtrace.org +0.0.0.0 adtrade.net +0.0.0.0 adtrading.de +0.0.0.0 adtrak.net +0.0.0.0 adtriplex.com +0.0.0.0 adultadvertising.com +0.0.0.0 adv-adserver.com +0.0.0.0 adv-banner.libero.it +0.0.0.0 adv.cooperhosting.net +0.0.0.0 adv.freeonline.it +0.0.0.0 adv.hwupgrade.it +0.0.0.0 adv.livedoor.com +0.0.0.0 adv.webmd.com +0.0.0.0 adv.wp.pl +0.0.0.0 adv.yo.cz +0.0.0.0 advariant.com +0.0.0.0 adventory.com +0.0.0.0 advert.bayarea.com +0.0.0.0 advert.dyna.ultraweb.hu +0.0.0.0 adverticum.com +0.0.0.0 adverticum.net +0.0.0.0 adverticus.de +0.0.0.0 advertise.com +0.0.0.0 advertiseireland.com +0.0.0.0 advertisespace.com +0.0.0.0 advertising.com +0.0.0.0 advertising.guildlaunch.net +0.0.0.0 advertisingbanners.com +0.0.0.0 advertisingbox.com +0.0.0.0 advertmarket.com +0.0.0.0 advertmedia.de +0.0.0.0 advertpro.sitepoint.com +0.0.0.0 advertpro.ya.com +0.0.0.0 adverts.carltononline.com +0.0.0.0 advertserve.com +0.0.0.0 advertstream.com +0.0.0.0 advertwizard.com +0.0.0.0 advideo.uimserv.net +0.0.0.0 adview.ppro.de +0.0.0.0 advisormedia.cz +0.0.0.0 adviva.net +0.0.0.0 advnt.com +0.0.0.0 adwareremovergold.com +0.0.0.0 adwhirl.com +0.0.0.0 adwitserver.com +0.0.0.0 adworldnetwork.com +0.0.0.0 adworx.at +0.0.0.0 adworx.be +0.0.0.0 adworx.nl +0.0.0.0 adx.allstar.cz +0.0.0.0 adx.atnext.com +0.0.0.0 adxpansion.com +0.0.0.0 adxpose.com +0.0.0.0 adxvalue.com +0.0.0.0 adyea.com +0.0.0.0 adzerk.net +0.0.0.0 adzerk.s3.amazonaws.com +0.0.0.0 adzones.com +0.0.0.0 af-ad.co.uk +0.0.0.0 affbuzzads.com +0.0.0.0 affili.net +0.0.0.0 affiliate.1800flowers.com +0.0.0.0 affiliate.doubleyourdating.com +0.0.0.0 affiliate.gamestop.com +0.0.0.0 affiliate.mercola.com +0.0.0.0 affiliate.mogs.com +0.0.0.0 affiliate.offgamers.com +0.0.0.0 affiliate.travelnow.com +0.0.0.0 affiliate.viator.com +0.0.0.0 affiliatefuel.com +0.0.0.0 affiliatefuture.com +0.0.0.0 affiliates.allposters.com +0.0.0.0 affiliates.babylon.com +0.0.0.0 affiliates.digitalriver.com +0.0.0.0 affiliates.globat.com +0.0.0.0 affiliates.internationaljock.com +0.0.0.0 affiliates.thinkhost.net +0.0.0.0 affiliates.thrixxx.com +0.0.0.0 affiliates.ultrahosting.com +0.0.0.0 affiliatetracking.com +0.0.0.0 affiliatetracking.net +0.0.0.0 affiliatewindow.com +0.0.0.0 affiliation-france.com +0.0.0.0 afftracking.justanswer.com +0.0.0.0 ah-ha.com +0.0.0.0 ahalogy.com +0.0.0.0 aidu-ads.de +0.0.0.0 aim4media.com +0.0.0.0 aistat.net +0.0.0.0 aktrack.pubmatic.com +0.0.0.0 alclick.com +0.0.0.0 alenty.com +0.0.0.0 alexa-sitestats.s3.amazonaws.com +0.0.0.0 all4spy.com +0.0.0.0 alladvantage.com +0.0.0.0 allosponsor.com +0.0.0.0 amazingcounters.com +0.0.0.0 amazon-adsystem.com +0.0.0.0 americash.com +0.0.0.0 amung.us +0.0.0.0 an.tacoda.net +0.0.0.0 anahtars.com +0.0.0.0 analytics.adpost.org +0.0.0.0 analytics.google.com +0.0.0.0 analytics.live.com +0.0.0.0 analytics.yahoo.com +0.0.0.0 anm.intelli-direct.com +0.0.0.0 annonser.dagbladet.no +0.0.0.0 apex-ad.com +0.0.0.0 api.intensifier.de +0.0.0.0 apture.com +0.0.0.0 arc1.msn.com +0.0.0.0 arcadebanners.com +0.0.0.0 ard.xxxblackbook.com +0.0.0.0 are-ter.com +0.0.0.0 as.webmd.com +0.0.0.0 as1.advfn.com +0.0.0.0 assets1.exgfnetwork.com +0.0.0.0 assoc-amazon.com +0.0.0.0 at-adserver.alltop.com +0.0.0.0 atdmt.com +0.0.0.0 athena-ads.wikia.com +0.0.0.0 atwola.com +0.0.0.0 auctionads.com +0.0.0.0 auctionads.net +0.0.0.0 audience2media.com +0.0.0.0 audit.median.hu +0.0.0.0 audit.webinform.hu +0.0.0.0 auto-bannertausch.de +0.0.0.0 autohits.dk +0.0.0.0 avenuea.com +0.0.0.0 avpa.javalobby.org +0.0.0.0 avres.net +0.0.0.0 avsads.com +0.0.0.0 awempire.com +0.0.0.0 awin1.com +0.0.0.0 azfront.com +0.0.0.0 b-1st.com +0.0.0.0 b.aol.com +0.0.0.0 b.engadget.com +0.0.0.0 ba.afl.rakuten.co.jp +0.0.0.0 babs.tv2.dk +0.0.0.0 backbeatmedia.com +0.0.0.0 banik.redigy.cz +0.0.0.0 banner-exchange-24.de +0.0.0.0 banner.ad.nu +0.0.0.0 banner.blogranking.net +0.0.0.0 banner.buempliz-online.ch +0.0.0.0 banner.casino.net +0.0.0.0 banner.cotedazurpalace.com +0.0.0.0 banner.coza.com +0.0.0.0 banner.cz +0.0.0.0 banner.easyspace.com +0.0.0.0 banner.elisa.net +0.0.0.0 banner.eurogrand.com +0.0.0.0 banner.featuredusers.com +0.0.0.0 banner.getgo.de +0.0.0.0 banner.goldenpalace.com +0.0.0.0 banner.img.co.za +0.0.0.0 banner.inyourpocket.com +0.0.0.0 banner.kiev.ua +0.0.0.0 banner.linux.se +0.0.0.0 banner.media-system.de +0.0.0.0 banner.mindshare.de +0.0.0.0 banner.nixnet.cz +0.0.0.0 banner.noblepoker.com +0.0.0.0 banner.northsky.com +0.0.0.0 banner.orb.net +0.0.0.0 banner.penguin.cz +0.0.0.0 banner.rbc.ru +0.0.0.0 banner.relcom.ru +0.0.0.0 banner.tanto.de +0.0.0.0 banner.titan-dsl.de +0.0.0.0 banner.vadian.net +0.0.0.0 banner.webmersion.com +0.0.0.0 banner.wirenode.com +0.0.0.0 bannerboxes.com +0.0.0.0 bannercommunity.de +0.0.0.0 bannerconnect.com +0.0.0.0 bannerexchange.cjb.net +0.0.0.0 bannerflow.com +0.0.0.0 bannergrabber.internet.gr +0.0.0.0 bannerhost.com +0.0.0.0 bannerimage.com +0.0.0.0 bannerlandia.com.ar +0.0.0.0 bannermall.com +0.0.0.0 bannermarkt.nl +0.0.0.0 banners.adultfriendfinder.com +0.0.0.0 banners.amigos.com +0.0.0.0 banners.asiafriendfinder.com +0.0.0.0 banners.audioholics.com +0.0.0.0 banners.babylon-x.com +0.0.0.0 banners.bol.com.br +0.0.0.0 banners.cams.com +0.0.0.0 banners.clubseventeen.com +0.0.0.0 banners.czi.cz +0.0.0.0 banners.dine.com +0.0.0.0 banners.directnic.com +0.0.0.0 banners.easydns.com +0.0.0.0 banners.freett.com +0.0.0.0 banners.friendfinder.com +0.0.0.0 banners.iq.pl +0.0.0.0 banners.isoftmarketing.com +0.0.0.0 banners.lifeserv.com +0.0.0.0 banners.linkbuddies.com +0.0.0.0 banners.passion.com +0.0.0.0 banners.resultonline.com +0.0.0.0 banners.sexsearch.com +0.0.0.0 banners.sys-con.com +0.0.0.0 banners.thomsonlocal.com +0.0.0.0 banners.wunderground.com +0.0.0.0 bannerserver.com +0.0.0.0 bannersgomlm.com +0.0.0.0 bannersng.yell.com +0.0.0.0 bannery.cz +0.0.0.0 bannieres.acces-contenu.com +0.0.0.0 bans.adserver.co.il +0.0.0.0 barnesandnoble.bfast.com +0.0.0.0 basebanner.com +0.0.0.0 baypops.com +0.0.0.0 bbelements.com +0.0.0.0 begun.ru +0.0.0.0 belstat.com +0.0.0.0 belstat.nl +0.0.0.0 berp.com +0.0.0.0 best-pr.info +0.0.0.0 best-top.ro +0.0.0.0 bestsearch.net +0.0.0.0 bhclicks.com +0.0.0.0 bidclix.com +0.0.0.0 bidclix.net +0.0.0.0 bidswitch.net +0.0.0.0 bidtrk.com +0.0.0.0 bidvertiser.com +0.0.0.0 bigbangmedia.com +0.0.0.0 bigclicks.com +0.0.0.0 billboard.cz +0.0.0.0 bitads.net +0.0.0.0 bitmedianetwork.com +0.0.0.0 bizad.nikkeibp.co.jp +0.0.0.0 bizrate.com +0.0.0.0 blast4traffic.com +0.0.0.0 blingbucks.com +0.0.0.0 blogads.com +0.0.0.0 blogcounter.de +0.0.0.0 blogherads.com +0.0.0.0 blogrush.com +0.0.0.0 blogtoplist.se +0.0.0.0 blogtopsites.com +0.0.0.0 blueadvertise.com +0.0.0.0 bluekai.com +0.0.0.0 bluelithium.com +0.0.0.0 bluewhaleweb.com +0.0.0.0 bm.annonce.cz +0.0.0.0 bn.bfast.com +0.0.0.0 boersego-ads.de +0.0.0.0 boldchat.com +0.0.0.0 boom.ro +0.0.0.0 boomads.com +0.0.0.0 boost-my-pr.de +0.0.0.0 box.anchorfree.net +0.0.0.0 bpath.com +0.0.0.0 braincash.com +0.0.0.0 brandreachsys.com +0.0.0.0 bravenet.com.invalid +0.0.0.0 bridgetrack.com +0.0.0.0 brightinfo.com +0.0.0.0 british-banners.com +0.0.0.0 bs.yandex.ru +0.0.0.0 bttrack.com +0.0.0.0 budsinc.com +0.0.0.0 bullseye.backbeatmedia.com +0.0.0.0 buyhitscheap.com +0.0.0.0 buysellads.com +0.0.0.0 bvalphaserver.com +0.0.0.0 bwp.download.com +0.0.0.0 c.bigmir.net +0.0.0.0 c1.nowlinux.com +0.0.0.0 c1exchange.com +0.0.0.0 campaign.bharatmatrimony.com +0.0.0.0 caniamedia.com +0.0.0.0 carbonads.com +0.0.0.0 carbonads.net +0.0.0.0 casalemedia.com +0.0.0.0 casalmedia.com +0.0.0.0 cash4members.com +0.0.0.0 cash4popup.de +0.0.0.0 cashcrate.com +0.0.0.0 cashengines.com +0.0.0.0 cashfiesta.com +0.0.0.0 cashlayer.com +0.0.0.0 cashpartner.com +0.0.0.0 casinogames.com +0.0.0.0 casinopays.com +0.0.0.0 casinorewards.com +0.0.0.0 casinotraffic.com +0.0.0.0 casinotreasure.com +0.0.0.0 cbmall.com +0.0.0.0 cdn.freefacti.com +0.0.0.0 cdn.freefarcy.com +0.0.0.0 centerpointmedia.com +0.0.0.0 ceskydomov.alias.ngs.modry.cz +0.0.0.0 cetrk.com +0.0.0.0 cgicounter.puretec.de +0.0.0.0 ch.questionmarket.com +0.0.0.0 chameleon.ad +0.0.0.0 channelintelligence.com +0.0.0.0 chart.dk +0.0.0.0 chartbeat.com +0.0.0.0 chartbeat.net +0.0.0.0 checkstat.nl +0.0.0.0 chestionar.ro +0.0.0.0 chitika.net +0.0.0.0 cibleclick.com +0.0.0.0 cityads.telus.net +0.0.0.0 cj.com +0.0.0.0 cjbmanagement.com +0.0.0.0 cjlog.com +0.0.0.0 claria.com +0.0.0.0 class-act-clicks.com +0.0.0.0 click.absoluteagency.com +0.0.0.0 click.fool.com +0.0.0.0 click2freemoney.com +0.0.0.0 click2paid.com +0.0.0.0 clickability.com +0.0.0.0 clickadz.com +0.0.0.0 clickagents.com +0.0.0.0 clickbank.com +0.0.0.0 clickbooth.com +0.0.0.0 clickboothlnk.com +0.0.0.0 clickbrokers.com +0.0.0.0 clickcompare.co.uk +0.0.0.0 clickdensity.com +0.0.0.0 clickedyclick.com +0.0.0.0 clickhereforcellphones.com +0.0.0.0 clickhouse.com +0.0.0.0 clicklink.jp +0.0.0.0 clickmedia.ro +0.0.0.0 clickonometrics.pl +0.0.0.0 clicks.equantum.com +0.0.0.0 clicks.mods.de +0.0.0.0 clickserve.cc-dt.com +0.0.0.0 clicktag.de +0.0.0.0 clickthrucash.com +0.0.0.0 clickthrutraffic.com +0.0.0.0 clicktrace.info +0.0.0.0 clicktrack.ziyu.net +0.0.0.0 clicktracks.com +0.0.0.0 clicktrade.com +0.0.0.0 clickxchange.com +0.0.0.0 clickz.com +0.0.0.0 clickzxc.com +0.0.0.0 clicmanager.fr +0.0.0.0 clientmetrics-pa.googleapis.com +0.0.0.0 clients.tbo.com +0.0.0.0 clixgalore.com +0.0.0.0 clk.konflab.com +0.0.0.0 clkads.com +0.0.0.0 clkrev.com +0.0.0.0 cluster.adultworld.com +0.0.0.0 clustrmaps.com +0.0.0.0 cmpstar.com +0.0.0.0 cnomy.com +0.0.0.0 cnt.spbland.ru +0.0.0.0 cnt1.pocitadlo.cz +0.0.0.0 code-server.biz +0.0.0.0 colonize.com +0.0.0.0 comclick.com +0.0.0.0 commindo-media-ressourcen.de +0.0.0.0 commissionmonster.com +0.0.0.0 compactbanner.com +0.0.0.0 comprabanner.it +0.0.0.0 confirmed-profits.com +0.0.0.0 connextra.com +0.0.0.0 contaxe.de +0.0.0.0 content.acc-hd.de +0.0.0.0 content.ad +0.0.0.0 contextweb.com +0.0.0.0 conversantmedia.com +0.0.0.0 conversionruler.com +0.0.0.0 cookies.cmpnet.com +0.0.0.0 coremetrics.com +0.0.0.0 count.rbc.ru +0.0.0.0 count.rin.ru +0.0.0.0 count.west263.com +0.0.0.0 counted.com +0.0.0.0 counter.cnw.cz +0.0.0.0 counter.cz +0.0.0.0 counter.dreamhost.com +0.0.0.0 counter.fateback.com +0.0.0.0 counter.mirohost.net +0.0.0.0 counter.mojgorod.ru +0.0.0.0 counter.nowlinux.com +0.0.0.0 counter.rambler.ru +0.0.0.0 counter.search.bg +0.0.0.0 counter.sparklit.com +0.0.0.0 counters.honesty.com +0.0.0.0 counts.tucows.com +0.0.0.0 coupling-media.de +0.0.0.0 cpalead.com +0.0.0.0 cpays.com +0.0.0.0 cpmaffiliation.com +0.0.0.0 cpmstar.com +0.0.0.0 cpxinteractive.com +0.0.0.0 cqcounter.com +0.0.0.0 crakmedia.com +0.0.0.0 craktraffic.com +0.0.0.0 crawlability.com +0.0.0.0 crazypopups.com +0.0.0.0 creafi-online-media.com +0.0.0.0 creative.whi.co.nz +0.0.0.0 creatives.as4x.tmcs.net +0.0.0.0 crispads.com +0.0.0.0 criteo.com +0.0.0.0 crowdgravity.com +0.0.0.0 crtv.mate1.com +0.0.0.0 crwdcntrl.net +0.0.0.0 ctnetwork.hu +0.0.0.0 cubics.com +0.0.0.0 customad.cnn.com +0.0.0.0 cyberbounty.com +0.0.0.0 cybermonitor.com +0.0.0.0 d.adroll.com +0.0.0.0 dakic-ia-300.com +0.0.0.0 danban.com +0.0.0.0 dapper.net +0.0.0.0 datashreddergold.com +0.0.0.0 dbbsrv.com +0.0.0.0 dc-storm.com +0.0.0.0 de17a.com +0.0.0.0 dealdotcom.com +0.0.0.0 debtbusterloans.com +0.0.0.0 decknetwork.net +0.0.0.0 deloo.de +0.0.0.0 demandbase.com +0.0.0.0 demdex.net +0.0.0.0 di1.shopping.com +0.0.0.0 dialerporn.com +0.0.0.0 didtheyreadit.com +0.0.0.0 direct-xxx-access.com +0.0.0.0 directaclick.com +0.0.0.0 directivepub.com +0.0.0.0 directleads.com +0.0.0.0 directorym.com +0.0.0.0 directtrack.com +0.0.0.0 discountclick.com +0.0.0.0 displayadsmedia.com +0.0.0.0 dist.belnk.com +0.0.0.0 dmtracker.com +0.0.0.0 dmtracking.alibaba.com +0.0.0.0 dmtracking2.alibaba.com +0.0.0.0 dnads.directnic.com +0.0.0.0 domaining.in +0.0.0.0 domainsponsor.com +0.0.0.0 domainsteam.de +0.0.0.0 domdex.com +0.0.0.0 doubleclick.com +0.0.0.0 doubleclick.de +0.0.0.0 drumcash.com +0.0.0.0 dynamic.fmpub.net +0.0.0.0 e-adimages.scrippsnetworks.com +0.0.0.0 e-bannerx.com +0.0.0.0 e-debtconsolidation.com +0.0.0.0 e-m.fr +0.0.0.0 e-n-t-e-r-n-e-x.com +0.0.0.0 e-planning.net +0.0.0.0 e.kde.cz +0.0.0.0 eadexchange.com +0.0.0.0 eas.almamedia.fi +0.0.0.0 easyhits4u.com +0.0.0.0 ebayadvertising.com +0.0.0.0 ebuzzing.com +0.0.0.0 ecircle-ag.com +0.0.0.0 eclick.vn +0.0.0.0 ecoupons.com +0.0.0.0 edgeio.com +0.0.0.0 effectivemeasure.com +0.0.0.0 effectivemeasure.net +0.0.0.0 eiv.baidu.com +0.0.0.0 elitetoplist.com +0.0.0.0 emarketer.com +0.0.0.0 emediate.dk +0.0.0.0 engine.espace.netavenir.com +0.0.0.0 enginenetwork.com +0.0.0.0 enquisite.com +0.0.0.0 entercasino.com +0.0.0.0 entrecard.s3.amazonaws.com +0.0.0.0 eqads.com +0.0.0.0 esellerate.net +0.0.0.0 estat.com +0.0.0.0 etargetnet.com +0.0.0.0 etracker.de +0.0.0.0 eu-adcenter.net +0.0.0.0 eu1.madsone.com +0.0.0.0 eur.a1.yimg.com +0.0.0.0 eurekster.com +0.0.0.0 euro-linkindex.de +0.0.0.0 euroclick.com +0.0.0.0 euros4click.de +0.0.0.0 eusta.de +0.0.0.0 evergage.com +0.0.0.0 ewebcounter.com +0.0.0.0 exchange-it.com +0.0.0.0 exchange.bg +0.0.0.0 exchangead.com +0.0.0.0 exchangeclicksonline.com +0.0.0.0 exelator.com +0.0.0.0 exit76.com +0.0.0.0 exitexchange.com +0.0.0.0 exitfuel.com +0.0.0.0 exogripper.com +0.0.0.0 experteerads.com +0.0.0.0 exponential.com +0.0.0.0 express-submit.de +0.0.0.0 extreme-dm.com +0.0.0.0 extremetracking.com +0.0.0.0 eyeblaster.com +0.0.0.0 eyereturn.com +0.0.0.0 eyeviewads.com +0.0.0.0 eyewonder.com +0.0.0.0 ezula.com +0.0.0.0 f5biz.com +0.0.0.0 fast-adv.it +0.0.0.0 fastclick.com +0.0.0.0 fastclick.com.edgesuite.net +0.0.0.0 fastclick.net +0.0.0.0 fb-promotions.com +0.0.0.0 fc.webmasterpro.de +0.0.0.0 feedbackresearch.com +0.0.0.0 feedjit.com +0.0.0.0 ffxcam.fairfax.com.au +0.0.0.0 fimc.net +0.0.0.0 fimserve.com +0.0.0.0 findcommerce.com +0.0.0.0 findyourcasino.com +0.0.0.0 fineclicks.com +0.0.0.0 first.nova.cz +0.0.0.0 firstlightera.com +0.0.0.0 flashtalking.com +0.0.0.0 fleshlightcash.com +0.0.0.0 flexbanner.com +0.0.0.0 flowgo.com +0.0.0.0 flurry.com +0.0.0.0 fonecta.leiki.com +0.0.0.0 foo.cosmocode.de +0.0.0.0 forex-affiliate.net +0.0.0.0 fpctraffic.com +0.0.0.0 fpctraffic2.com +0.0.0.0 fragmentserv.iac-online.de +0.0.0.0 free-banners.com +0.0.0.0 freebanner.com +0.0.0.0 freelogs.com +0.0.0.0 freeonlineusers.com +0.0.0.0 freepay.com +0.0.0.0 freestats.com +0.0.0.0 freestats.tv +0.0.0.0 freewebcounter.com +0.0.0.0 funklicks.com +0.0.0.0 funpageexchange.com +0.0.0.0 fusionads.net +0.0.0.0 fusionquest.com +0.0.0.0 fxstyle.net +0.0.0.0 galaxien.com +0.0.0.0 game-advertising-online.com +0.0.0.0 gamehouse.com +0.0.0.0 gamesites100.net +0.0.0.0 gamesites200.com +0.0.0.0 gamesitestop100.com +0.0.0.0 gator.com +0.0.0.0 gemius.pl +0.0.0.0 geo.digitalpoint.com +0.0.0.0 geobanner.adultfriendfinder.com +0.0.0.0 geovisite.com +0.0.0.0 getclicky.com +0.0.0.0 globalismedia.com +0.0.0.0 globaltakeoff.net +0.0.0.0 globaltrack.com.invalid +0.0.0.0 globe7.com +0.0.0.0 globus-inter.com +0.0.0.0 gmads.net +0.0.0.0 go-clicks.de +0.0.0.0 go-rank.de +0.0.0.0 goingplatinum.com +0.0.0.0 goldstats.com +0.0.0.0 googleadservices.com +0.0.0.0 gostats.com +0.0.0.0 gp.dejanews.com +0.0.0.0 gpr.hu +0.0.0.0 grafstat.ro +0.0.0.0 grapeshot.co.uk +0.0.0.0 greystripe.com +0.0.0.0 gtop.ro +0.0.0.0 gtop100.com +0.0.0.0 gunggo.com +0.0.0.0 harrenmedia.com +0.0.0.0 harrenmedianetwork.com +0.0.0.0 havamedia.net +0.0.0.0 heias.com +0.0.0.0 hentaicounter.com +0.0.0.0 herbalaffiliateprogram.com +0.0.0.0 hexusads.fluent.ltd.uk +0.0.0.0 heyos.com +0.0.0.0 hgads.com +0.0.0.0 hidden.gogoceleb.com +0.0.0.0 hightrafficads.com +0.0.0.0 hit-parade.com +0.0.0.0 hit.bg +0.0.0.0 hit.ua +0.0.0.0 hit.webcentre.lycos.co.uk +0.0.0.0 hitbox.com +0.0.0.0 hitcents.com +0.0.0.0 hitfarm.com +0.0.0.0 hitiz.com +0.0.0.0 hitlist.ru +0.0.0.0 hitlounge.com +0.0.0.0 hitometer.com +0.0.0.0 hits.europuls.eu +0.0.0.0 hits.informer.com +0.0.0.0 hits.puls.lv +0.0.0.0 hits.theguardian.com +0.0.0.0 hits4me.com +0.0.0.0 hits4pay.com +0.0.0.0 hitslink.com +0.0.0.0 hittail.com +0.0.0.0 hollandbusinessadvertising.nl +0.0.0.0 homepageking.de +0.0.0.0 hostedads.realitykings.com +0.0.0.0 hotjar.com +0.0.0.0 hotlog.ru +0.0.0.0 hotrank.com.tw +0.0.0.0 hs-analytics.net +0.0.0.0 htmlhubing.xyz +0.0.0.0 httpool.com +0.0.0.0 hurricanedigitalmedia.com +0.0.0.0 hydramedia.com +0.0.0.0 hyperbanner.net +0.0.0.0 hypertracker.com +0.0.0.0 i-clicks.net +0.0.0.0 i.xx.openx.com +0.0.0.0 i1img.com +0.0.0.0 i1media.no +0.0.0.0 ia.iinfo.cz +0.0.0.0 iad.anm.co.uk +0.0.0.0 iadnet.com +0.0.0.0 iasds01.com +0.0.0.0 iconadserver.com +0.0.0.0 icptrack.com +0.0.0.0 idcounter.com +0.0.0.0 identads.com +0.0.0.0 idot.cz +0.0.0.0 idregie.com +0.0.0.0 idtargeting.com +0.0.0.0 ientrymail.com +0.0.0.0 iesnare.com +0.0.0.0 ifa.tube8live.com +0.0.0.0 ilbanner.com +0.0.0.0 ilead.itrack.it +0.0.0.0 imageads.canoe.ca +0.0.0.0 imagecash.net +0.0.0.0 images-pw.secureserver.net +0.0.0.0 images.v3.com +0.0.0.0 imarketservices.com +0.0.0.0 img.prohardver.hu +0.0.0.0 imgpromo.easyrencontre.com +0.0.0.0 imonitor.nethost.cz +0.0.0.0 imprese.cz +0.0.0.0 impressionmedia.cz +0.0.0.0 impressionz.co.uk +0.0.0.0 imrworldwide.com +0.0.0.0 incentaclick.com +0.0.0.0 indexstats.com +0.0.0.0 indieclick.com +0.0.0.0 industrybrains.com +0.0.0.0 inetlog.ru +0.0.0.0 infinite-ads.com +0.0.0.0 infinityads.com +0.0.0.0 infolinks.com +0.0.0.0 information.com +0.0.0.0 inringtone.com +0.0.0.0 insightexpress.com +0.0.0.0 insightexpressai.com +0.0.0.0 inspectorclick.com +0.0.0.0 instantmadness.com +0.0.0.0 intelliads.com +0.0.0.0 intellitxt.com +0.0.0.0 interactive.forthnet.gr +0.0.0.0 intergi.com +0.0.0.0 internetfuel.com +0.0.0.0 interreklame.de +0.0.0.0 interstat.hu +0.0.0.0 ip.ro +0.0.0.0 ip193.cn +0.0.0.0 iperceptions.com +0.0.0.0 ipro.com +0.0.0.0 ireklama.cz +0.0.0.0 itfarm.com +0.0.0.0 itop.cz +0.0.0.0 its-that-easy.com +0.0.0.0 itsptp.com +0.0.0.0 jcount.com +0.0.0.0 jinkads.de +0.0.0.0 joetec.net +0.0.0.0 js.users.51.la +0.0.0.0 juicyads.com +0.0.0.0 justrelevant.com +0.0.0.0 justwebads.com +0.0.0.0 k.iinfo.cz +0.0.0.0 kanoodle.com +0.0.0.0 keymedia.hu +0.0.0.0 kindads.com +0.0.0.0 kissmetrics.com +0.0.0.0 kliks.nl +0.0.0.0 kniverto.com +0.0.0.0 komoona.com +0.0.0.0 kompasads.com +0.0.0.0 kontera.com +0.0.0.0 kt-g.de +0.0.0.0 ktu.sv2.biz +0.0.0.0 lakequincy.com +0.0.0.0 launchbit.com +0.0.0.0 layer-ad.de +0.0.0.0 layer-ads.de +0.0.0.0 lbn.ru +0.0.0.0 lct.salesforce.com +0.0.0.0 lead-analytics.nl +0.0.0.0 leadboltads.net +0.0.0.0 leadclick.com +0.0.0.0 levelrate.de +0.0.0.0 lfstmedia.com +0.0.0.0 liftdna.com +0.0.0.0 ligatus.com +0.0.0.0 ligatus.de +0.0.0.0 lightningcast.net +0.0.0.0 lightspeedcash.com +0.0.0.0 link-booster.de +0.0.0.0 link4ads.com +0.0.0.0 linkadd.de +0.0.0.0 linkexchange.com +0.0.0.0 linkprice.com +0.0.0.0 linkrain.com +0.0.0.0 linkreferral.com +0.0.0.0 links-ranking.de +0.0.0.0 linkshighway.com +0.0.0.0 linkstorms.com +0.0.0.0 linkswaper.com +0.0.0.0 linktarget.com +0.0.0.0 liquidad.narrowcastmedia.com +0.0.0.0 liveintent.com +0.0.0.0 liverail.com +0.0.0.0 loading321.com +0.0.0.0 log.btopenworld.com +0.0.0.0 logua.com +0.0.0.0 lop.com +0.0.0.0 lucidmedia.com +0.0.0.0 m.webtrends.com +0.0.0.0 m1.webstats4u.com +0.0.0.0 m4n.nl +0.0.0.0 mackeeperapp.mackeeper.com +0.0.0.0 madclient.uimserv.net +0.0.0.0 madisonavenue.com +0.0.0.0 mads.cnet.com +0.0.0.0 madvertise.de +0.0.0.0 marchex.com +0.0.0.0 market-buster.com +0.0.0.0 marketing.888.com +0.0.0.0 marketing.hearstmagazines.nl +0.0.0.0 marketing.nyi.net +0.0.0.0 marketing.osijek031.com +0.0.0.0 marketingsolutions.yahoo.com +0.0.0.0 maroonspider.com +0.0.0.0 mas.sector.sk +0.0.0.0 mastermind.com +0.0.0.0 matchcraft.com +0.0.0.0 mathtag.com +0.0.0.0 max.i12.de +0.0.0.0 maximumcash.com +0.0.0.0 mbn.com.ua +0.0.0.0 mbs.megaroticlive.com +0.0.0.0 mbuyu.nl +0.0.0.0 mdotm.com +0.0.0.0 measuremap.com +0.0.0.0 media-adrunner.mycomputer.com +0.0.0.0 media-servers.net +0.0.0.0 media.ftv-publicite.fr +0.0.0.0 media.funpic.de +0.0.0.0 media6degrees.com +0.0.0.0 mediaarea.eu +0.0.0.0 mediacharger.com +0.0.0.0 mediadvertising.ro +0.0.0.0 mediageneral.com +0.0.0.0 mediamath.com +0.0.0.0 mediamgr.ugo.com +0.0.0.0 mediaplazza.com +0.0.0.0 mediaplex.com +0.0.0.0 mediascale.de +0.0.0.0 mediatext.com +0.0.0.0 mediax.angloinfo.com +0.0.0.0 mediaz.angloinfo.com +0.0.0.0 medleyads.com +0.0.0.0 medyanetads.com +0.0.0.0 megacash.de +0.0.0.0 megago.com +0.0.0.0 megastats.com +0.0.0.0 megawerbung.de +0.0.0.0 metaffiliation.com +0.0.0.0 metanetwork.com +0.0.0.0 methodcash.com +0.0.0.0 metrics.windowsitpro.com +0.0.0.0 mgid.com +0.0.0.0 miarroba.com +0.0.0.0 microticker.com +0.0.0.0 midnightclicking.com +0.0.0.0 misstrends.com +0.0.0.0 mixpanel.com +0.0.0.0 mixtraffic.com +0.0.0.0 mjxads.internet.com +0.0.0.0 mlm.de +0.0.0.0 mmismm.com +0.0.0.0 mmtro.com +0.0.0.0 moatads.com +0.0.0.0 mobclix.com +0.0.0.0 mocean.mobi +0.0.0.0 moneyexpert.com +0.0.0.0 monsterpops.com +0.0.0.0 mopub.com +0.0.0.0 mouseflow.com +0.0.0.0 mpstat.us +0.0.0.0 mr-rank.de +0.0.0.0 mrskincash.com +0.0.0.0 mtree.com +0.0.0.0 musiccounter.ru +0.0.0.0 muwmedia.com +0.0.0.0 myaffiliateprogram.com +0.0.0.0 mybloglog.com +0.0.0.0 mycounter.ua +0.0.0.0 mymoneymakingapp.com +0.0.0.0 mypagerank.net +0.0.0.0 mypagerank.ru +0.0.0.0 mypowermall.com +0.0.0.0 mystat-in.net +0.0.0.0 mystat.pl +0.0.0.0 mytop-in.net +0.0.0.0 n69.com +0.0.0.0 naiadsystems.com.invalid +0.0.0.0 naj.sk +0.0.0.0 namimedia.com +0.0.0.0 navigator.io +0.0.0.0 navrcholu.cz +0.0.0.0 nbjmp.com +0.0.0.0 ndparking.com +0.0.0.0 nedstat.com +0.0.0.0 nedstat.nl +0.0.0.0 nedstatbasic.net +0.0.0.0 nedstatpro.net +0.0.0.0 nend.net +0.0.0.0 neocounter.neoworx-blog-tools.net +0.0.0.0 neoffic.com +0.0.0.0 net-filter.com +0.0.0.0 netaffiliation.com +0.0.0.0 netagent.cz +0.0.0.0 netclickstats.com +0.0.0.0 netcommunities.com +0.0.0.0 netdirect.nl +0.0.0.0 netincap.com +0.0.0.0 netpool.netbookia.net +0.0.0.0 netshelter.net +0.0.0.0 neudesicmediagroup.com +0.0.0.0 newbie.com +0.0.0.0 newnet.qsrch.com +0.0.0.0 newnudecash.com +0.0.0.0 newopenx.detik.com +0.0.0.0 newt1.adultadworld.com +0.0.0.0 newt1.adultworld.com +0.0.0.0 newtopsites.com +0.0.0.0 ng3.ads.warnerbros.com +0.0.0.0 ngs.impress.co.jp +0.0.0.0 nitroclicks.com +0.0.0.0 novem.pl +0.0.0.0 nuggad.net +0.0.0.0 numax.nu-1.com +0.0.0.0 nuseek.com +0.0.0.0 oas.benchmark.fr +0.0.0.0 oas.foxnews.com +0.0.0.0 oas.repubblica.it +0.0.0.0 oas.roanoke.com +0.0.0.0 oas.salon.com +0.0.0.0 oas.toronto.com +0.0.0.0 oas.uniontrib.com +0.0.0.0 oas.villagevoice.com +0.0.0.0 oascentral.businessweek.com +0.0.0.0 oascentral.chicagobusiness.com +0.0.0.0 oascentral.fortunecity.com +0.0.0.0 oascentral.register.com +0.0.0.0 oewa.at +0.0.0.0 oewabox.at +0.0.0.0 offerforge.com +0.0.0.0 offermatica.com +0.0.0.0 olivebrandresponse.com +0.0.0.0 omniture.com +0.0.0.0 onclasrv.com +0.0.0.0 onclickads.net +0.0.0.0 oneandonlynetwork.com +0.0.0.0 onenetworkdirect.com +0.0.0.0 onestat.com +0.0.0.0 onestatfree.com +0.0.0.0 online-metrix.net +0.0.0.0 onlinecash.com +0.0.0.0 onlinecashmethod.com +0.0.0.0 onlinerewardcenter.com +0.0.0.0 openad.tf1.fr +0.0.0.0 openad.travelnow.com +0.0.0.0 openads.friendfinder.com +0.0.0.0 openads.org +0.0.0.0 openx.angelsgroup.org.uk +0.0.0.0 openx.blindferret.com +0.0.0.0 opienetwork.com +0.0.0.0 optimost.com +0.0.0.0 optmd.com +0.0.0.0 ordingly.com +0.0.0.0 ota.cartrawler.com +0.0.0.0 otto-images.developershed.com +0.0.0.0 outbrain.com +0.0.0.0 overture.com +0.0.0.0 owebmoney.ru +0.0.0.0 oxado.com +0.0.0.0 oxcash.com +0.0.0.0 oxen.hillcountrytexas.com +0.0.0.0 p.adpdx.com +0.0.0.0 pagead.l.google.com +0.0.0.0 pagefair.com +0.0.0.0 pagerank-ranking.de +0.0.0.0 pagerank-submitter.de +0.0.0.0 pagerank-united.de +0.0.0.0 pagerank4you.com +0.0.0.0 pageranktop.com +0.0.0.0 parse.ly.invalid +0.0.0.0 parsely.com +0.0.0.0 partage-facile.com +0.0.0.0 partner-ads.com +0.0.0.0 partner.pelikan.cz +0.0.0.0 partner.topcities.com +0.0.0.0 partnerad.l.google.com +0.0.0.0 partnercash.de +0.0.0.0 partners.priceline.com +0.0.0.0 passion-4.net +0.0.0.0 pay-ads.com +0.0.0.0 paycounter.com +0.0.0.0 paypopup.com +0.0.0.0 payserve.com +0.0.0.0 pbnet.ru +0.0.0.0 peep-auktion.de +0.0.0.0 peer39.com +0.0.0.0 pennyweb.com +0.0.0.0 pepperjamnetwork.com +0.0.0.0 percentmobile.com +0.0.0.0 perfectaudience.com +0.0.0.0 perfiliate.com +0.0.0.0 performancerevenue.com +0.0.0.0 performancerevenues.com +0.0.0.0 performancing.com +0.0.0.0 pgmediaserve.com +0.0.0.0 pgpartner.com +0.0.0.0 pheedo.com +0.0.0.0 phoenix-adrunner.mycomputer.com +0.0.0.0 phpadsnew.new.natuurpark.nl +0.0.0.0 phpmyvisites.net +0.0.0.0 picadmedia.com +0.0.0.0 pillscash.com +0.0.0.0 pimproll.com +0.0.0.0 pixel.adsafeprotected.com +0.0.0.0 pixel.jumptap.com +0.0.0.0 pixel.redditmedia.com +0.0.0.0 play4traffic.com +0.0.0.0 playhaven.com +0.0.0.0 plista.com +0.0.0.0 plugrush.com +0.0.0.0 pointroll.com +0.0.0.0 pop-under.ru +0.0.0.0 popub.com +0.0.0.0 popup.msn.com +0.0.0.0 popupmoney.com +0.0.0.0 popupnation.com +0.0.0.0 popups.infostart.com +0.0.0.0 popuptraffic.com +0.0.0.0 porngraph.com +0.0.0.0 porntrack.com +0.0.0.0 postrelease.com +0.0.0.0 potenza.cz +0.0.0.0 pr-star.de +0.0.0.0 praddpro.de +0.0.0.0 precisioncounter.com +0.0.0.0 predictad.com +0.0.0.0 premium-offers.com +0.0.0.0 primaryads.com +0.0.0.0 primetime.net +0.0.0.0 privatecash.com +0.0.0.0 pro-advertising.com +0.0.0.0 pro.i-doctor.co.kr +0.0.0.0 proext.com +0.0.0.0 profero.com +0.0.0.0 projectwonderful.com +0.0.0.0 promo.badoink.com +0.0.0.0 promo1.webcams.nl +0.0.0.0 promobenef.com +0.0.0.0 promos.fling.com +0.0.0.0 promote.pair.com +0.0.0.0 promotion-campaigns.com +0.0.0.0 pronetadvertising.com +0.0.0.0 propellerads.com +0.0.0.0 proranktracker.com +0.0.0.0 proton-tm.com +0.0.0.0 protraffic.com +0.0.0.0 provexia.com +0.0.0.0 prsitecheck.com +0.0.0.0 psstt.com +0.0.0.0 pub.chez.com +0.0.0.0 pub.club-internet.fr +0.0.0.0 pub.hardware.fr +0.0.0.0 pub.realmedia.fr +0.0.0.0 pubdirecte.com +0.0.0.0 publicidad.elmundo.es +0.0.0.0 pubmatic.com +0.0.0.0 pubs.lemonde.fr +0.0.0.0 pulse360.com +0.0.0.0 q.azcentral.com +0.0.0.0 qctop.com +0.0.0.0 qnsr.com +0.0.0.0 quantcast.com +0.0.0.0 quantserve.com +0.0.0.0 quarterserver.de +0.0.0.0 questaffiliates.net +0.0.0.0 quigo.com +0.0.0.0 quinst.com +0.0.0.0 quisma.com +0.0.0.0 rad.msn.com +0.0.0.0 radar.cedexis.com +0.0.0.0 radarurl.com +0.0.0.0 radiate.com +0.0.0.0 rampidads.com +0.0.0.0 rank-master.com +0.0.0.0 rank-master.de +0.0.0.0 rankchamp.de +0.0.0.0 ranking-charts.de +0.0.0.0 ranking-hits.de +0.0.0.0 ranking-id.de +0.0.0.0 ranking-links.de +0.0.0.0 ranking-liste.de +0.0.0.0 ranking-street.de +0.0.0.0 rankingscout.com +0.0.0.0 rankyou.com +0.0.0.0 rapidcounter.com +0.0.0.0 rate.ru +0.0.0.0 ratings.lycos.com +0.0.0.0 rb1.design.ru +0.0.0.0 re-directme.com +0.0.0.0 reachjunction.com +0.0.0.0 reactx.com +0.0.0.0 readserver.net +0.0.0.0 realcastmedia.com +0.0.0.0 realclix.com +0.0.0.0 realmedia-a800.d4p.net +0.0.0.0 realtechnetwork.com +0.0.0.0 realtracker.com +0.0.0.0 reduxmedia.com +0.0.0.0 reduxmediagroup.com +0.0.0.0 reedbusiness.com.invalid +0.0.0.0 referralware.com +0.0.0.0 regnow.com +0.0.0.0 reinvigorate.net +0.0.0.0 reklam.rfsl.se +0.0.0.0 reklama.mironet.cz +0.0.0.0 reklama.reflektor.cz +0.0.0.0 reklamcsere.hu +0.0.0.0 reklame.unwired-i.net +0.0.0.0 reklamer.com.ua +0.0.0.0 relevanz10.de +0.0.0.0 relmaxtop.com +0.0.0.0 remotead.cnet.com +0.0.0.0 republika.onet.pl +0.0.0.0 retargeter.com +0.0.0.0 revenue.net +0.0.0.0 revenuedirect.com +0.0.0.0 revsci.net +0.0.0.0 revstats.com +0.0.0.0 richmails.com +0.0.0.0 richmedia.yimg.com +0.0.0.0 richwebmaster.com +0.0.0.0 rightstats.com +0.0.0.0 rlcdn.com +0.0.0.0 rle.ru +0.0.0.0 rmads.msn.com +0.0.0.0 rmedia.boston.com +0.0.0.0 roar.com +0.0.0.0 robotreplay.com +0.0.0.0 roia.biz +0.0.0.0 rok.com.com +0.0.0.0 rose.ixbt.com +0.0.0.0 rotabanner.com +0.0.0.0 roxr.net +0.0.0.0 rtbpop.com +0.0.0.0 rtbpopd.com +0.0.0.0 ru-traffic.com +0.0.0.0 ru4.com +0.0.0.0 rubiconproject.com +0.0.0.0 s.adroll.com +0.0.0.0 s2d6.com +0.0.0.0 sageanalyst.net +0.0.0.0 sail-horizon.com +0.0.0.0 samsungacr.com +0.0.0.0 samsungads.com +0.0.0.0 sbx.pagesjaunes.fr +0.0.0.0 scambiobanner.aruba.it +0.0.0.0 scanscout.com +0.0.0.0 scopelight.com +0.0.0.0 scorecardresearch.com +0.0.0.0 scratch2cash.com +0.0.0.0 scripte-monster.de +0.0.0.0 searchfeast.com +0.0.0.0 searchmarketing.com +0.0.0.0 searchramp.com +0.0.0.0 secure.webconnect.net +0.0.0.0 sedoparking.com +0.0.0.0 sedotracker.com +0.0.0.0 seeq.com.invalid +0.0.0.0 sensismediasmart.com.au +0.0.0.0 seo4india.com +0.0.0.0 serv0.com +0.0.0.0 servedby-buysellads.com +0.0.0.0 servedbyadbutler.com +0.0.0.0 servedbyopenx.com +0.0.0.0 services.hearstmags.com +0.0.0.0 serving-sys.com +0.0.0.0 sexaddpro.de +0.0.0.0 sexadvertentiesite.nl +0.0.0.0 sexcounter.com +0.0.0.0 sexinyourcity.com +0.0.0.0 sexlist.com +0.0.0.0 sexystat.com +0.0.0.0 shareadspace.com +0.0.0.0 shareasale.com +0.0.0.0 sharepointads.com +0.0.0.0 sher.index.hu +0.0.0.0 shinystat.com +0.0.0.0 shinystat.it +0.0.0.0 shoppingads.com +0.0.0.0 siccash.com +0.0.0.0 sidebar.angelfire.com +0.0.0.0 sinoa.com +0.0.0.0 sitemeter.com +0.0.0.0 sitestat.com +0.0.0.0 sixsigmatraffic.com +0.0.0.0 skimresources.com +0.0.0.0 skylink.vn +0.0.0.0 slickaffiliate.com +0.0.0.0 slopeaota.com +0.0.0.0 smart4ads.com +0.0.0.0 smowtion.com +0.0.0.0 snapads.com +0.0.0.0 snoobi.com +0.0.0.0 socialspark.com +0.0.0.0 softclick.com.br +0.0.0.0 sparkstudios.com +0.0.0.0 specificmedia.co.uk +0.0.0.0 specificpop.com +0.0.0.0 spezialreporte.de +0.0.0.0 spinbox.techtracker.com +0.0.0.0 spinbox.versiontracker.com +0.0.0.0 sponsorads.de +0.0.0.0 sponsorpro.de +0.0.0.0 sponsors.thoughtsmedia.com +0.0.0.0 spot.fitness.com +0.0.0.0 spotxchange.com +0.0.0.0 spywarelabs.com +0.0.0.0 spywords.com +0.0.0.0 srwww1.com +0.0.0.0 starffa.com +0.0.0.0 start.freeze.com +0.0.0.0 stat.cliche.se +0.0.0.0 stat.dealtime.com +0.0.0.0 stat.dyna.ultraweb.hu +0.0.0.0 stat.pl +0.0.0.0 stat.webmedia.pl +0.0.0.0 stat.zenon.net +0.0.0.0 stat24.com +0.0.0.0 stat24.meta.ua +0.0.0.0 statcounter.com +0.0.0.0 static.fmpub.net +0.0.0.0 static.itrack.it +0.0.0.0 staticads.btopenworld.com +0.0.0.0 statistik-gallup.net +0.0.0.0 statm.the-adult-company.com +0.0.0.0 stats.blogger.com +0.0.0.0 stats.cts-bv.nl +0.0.0.0 stats.directnic.com +0.0.0.0 stats.hyperinzerce.cz +0.0.0.0 stats.mirrorfootball.co.uk +0.0.0.0 stats.multiup.org +0.0.0.0 stats.olark.com +0.0.0.0 stats.suite101.com +0.0.0.0 stats.surfaid.ihost.com +0.0.0.0 stats.townnews.com +0.0.0.0 stats.unwired-i.net +0.0.0.0 stats.wordpress.com +0.0.0.0 stats.x14.eu +0.0.0.0 stats4all.com +0.0.0.0 statsie.com +0.0.0.0 statxpress.com +0.0.0.0 steelhouse.com +0.0.0.0 steelhousemedia.com +0.0.0.0 stickyadstv.com +0.0.0.0 suavalds.com +0.0.0.0 subscribe.hearstmags.com +0.0.0.0 sugoicounter.com +0.0.0.0 sumome.com +0.0.0.0 superclix.de +0.0.0.0 supertop.ru +0.0.0.0 supertop100.com +0.0.0.0 suptullog.com +0.0.0.0 surfmusik-adserver.de +0.0.0.0 swan-swan-goose.com +0.0.0.0 swissadsolutions.com +0.0.0.0 swordfishdc.com +0.0.0.0 sx.trhnt.com +0.0.0.0 t.insigit.com +0.0.0.0 t.pusk.ru +0.0.0.0 tacoda.net +0.0.0.0 tagular.com +0.0.0.0 tailsweep.co.uk +0.0.0.0 tailsweep.com +0.0.0.0 tailsweep.se +0.0.0.0 takru.com +0.0.0.0 tangerinenet.biz +0.0.0.0 tapad.com +0.0.0.0 targad.de +0.0.0.0 targetingnow.com +0.0.0.0 targetnet.com +0.0.0.0 targetpoint.com +0.0.0.0 tatsumi-sys.jp +0.0.0.0 tcads.net +0.0.0.0 teads.tv +0.0.0.0 techclicks.net +0.0.0.0 teenrevenue.com +0.0.0.0 teliad.de +0.0.0.0 text-link-ads.com +0.0.0.0 textad.sexsearch.com +0.0.0.0 textads.biz +0.0.0.0 textads.opera.com +0.0.0.0 textlinks.com +0.0.0.0 tfag.de +0.0.0.0 theadhost.com +0.0.0.0 therapistla.com +0.0.0.0 therichkids.com +0.0.0.0 thrnt.com +0.0.0.0 tinybar.com +0.0.0.0 tizers.net +0.0.0.0 tlvmedia.com +0.0.0.0 tntclix.co.uk +0.0.0.0 top-casting-termine.de +0.0.0.0 top-site-list.com +0.0.0.0 top.list.ru +0.0.0.0 top.mail.ru +0.0.0.0 top.proext.com +0.0.0.0 top100-images.rambler.ru +0.0.0.0 top100.mafia.ru +0.0.0.0 top123.ro +0.0.0.0 top20.com.invalid +0.0.0.0 top20free.com +0.0.0.0 top90.ro +0.0.0.0 topbarh.box.sk +0.0.0.0 topbucks.com +0.0.0.0 topforall.com +0.0.0.0 topgamesites.net +0.0.0.0 toplist.cz +0.0.0.0 toplist.pornhost.com +0.0.0.0 toplista.mw.hu +0.0.0.0 toplistcity.com +0.0.0.0 topmmorpgsites.com.invalid +0.0.0.0 topping.com.ua +0.0.0.0 toprebates.com +0.0.0.0 topsafelist.net +0.0.0.0 topsearcher.com +0.0.0.0 topsir.com +0.0.0.0 topsite.lv +0.0.0.0 topsites.com.br +0.0.0.0 topstats.com +0.0.0.0 touchclarity.com +0.0.0.0 touchclarity.natwest.com +0.0.0.0 tour.brazzers.com +0.0.0.0 tpnads.com +0.0.0.0 track.adform.net +0.0.0.0 track.anchorfree.com +0.0.0.0 track.gawker.com +0.0.0.0 trackalyzer.com +0.0.0.0 tracker.icerocket.com +0.0.0.0 tracker.marinsm.com +0.0.0.0 tracking.crunchiemedia.com +0.0.0.0 tracking.gajmp.com +0.0.0.0 tracking.internetstores.de +0.0.0.0 tracking.yourfilehost.com +0.0.0.0 tracking101.com +0.0.0.0 trackingsoft.com +0.0.0.0 trackmysales.com +0.0.0.0 tradeadexchange.com +0.0.0.0 tradedoubler.com +0.0.0.0 traffic-exchange.com +0.0.0.0 traffic.liveuniversenetwork.com +0.0.0.0 trafficadept.com +0.0.0.0 trafficcdn.liveuniversenetwork.com +0.0.0.0 trafficholder.com +0.0.0.0 traffichunt.com +0.0.0.0 trafficleader.com +0.0.0.0 trafficsecrets.com +0.0.0.0 trafficspaces.net +0.0.0.0 trafficstrategies.com +0.0.0.0 trafficswarm.com +0.0.0.0 traffictrader.net +0.0.0.0 trafficz.com +0.0.0.0 trafficz.net +0.0.0.0 traffiq.com +0.0.0.0 trafic.ro +0.0.0.0 travis.bosscasinos.com +0.0.0.0 trekblue.com +0.0.0.0 trekdata.com +0.0.0.0 trendcounter.com +0.0.0.0 trendmd.com +0.0.0.0 trhunt.com +0.0.0.0 tribalfusion.com +0.0.0.0 trix.net +0.0.0.0 truehits.net +0.0.0.0 truehits1.gits.net.th +0.0.0.0 truehits2.gits.net.th +0.0.0.0 tsms-ad.tsms.com +0.0.0.0 tubemogul.com +0.0.0.0 turn.com +0.0.0.0 tvmtracker.com +0.0.0.0 twittad.com +0.0.0.0 tyroo.com +0.0.0.0 uarating.com +0.0.0.0 ukbanners.com +0.0.0.0 ultramercial.com +0.0.0.0 unanimis.co.uk +0.0.0.0 untd.com +0.0.0.0 updated.com +0.0.0.0 urlcash.net +0.0.0.0 us.a1.yimg.com +0.0.0.0 usapromotravel.com +0.0.0.0 usmsad.tom.com +0.0.0.0 utarget.co.uk +0.0.0.0 utils.mediageneral.net +0.0.0.0 v1.cnzz.com +0.0.0.0 validclick.com +0.0.0.0 valuead.com +0.0.0.0 valueclickmedia.com +0.0.0.0 valuecommerce.com +0.0.0.0 valuesponsor.com +0.0.0.0 veille-referencement.com +0.0.0.0 ventivmedia.com +0.0.0.0 vericlick.com +0.0.0.0 vertadnet.com +0.0.0.0 veruta.com +0.0.0.0 vervewireless.com +0.0.0.0 vibrantmedia.com +0.0.0.0 video-stats.video.google.com +0.0.0.0 videoegg.com +0.0.0.0 view4cash.de +0.0.0.0 viewpoint.com +0.0.0.0 visistat.com +0.0.0.0 visit.webhosting.yahoo.com +0.0.0.0 visitbox.de +0.0.0.0 visual-pagerank.fr +0.0.0.0 visualrevenue.com +0.0.0.0 voicefive.com +0.0.0.0 vpon.com +0.0.0.0 vrs.cz +0.0.0.0 vs.tucows.com +0.0.0.0 vungle.com +0.0.0.0 warlog.ru +0.0.0.0 wdads.sx.atl.publicus.com +0.0.0.0 web-stat.com +0.0.0.0 web.informer.com +0.0.0.0 web2.deja.com +0.0.0.0 webads.nl +0.0.0.0 webangel.ru +0.0.0.0 webcash.nl +0.0.0.0 webcounter.cz +0.0.0.0 webcounter.goweb.de +0.0.0.0 webgains.com +0.0.0.0 webmaster-partnerprogramme24.de +0.0.0.0 webmasterplan.com +0.0.0.0 webmasterplan.de +0.0.0.0 weborama.fr +0.0.0.0 webpower.com +0.0.0.0 webreseau.com +0.0.0.0 webseoanalytics.com +0.0.0.0 websponsors.com +0.0.0.0 webstat.channel4.com +0.0.0.0 webstat.com +0.0.0.0 webstat.net +0.0.0.0 webstats4u.com +0.0.0.0 webtrackerplus.com +0.0.0.0 webtraffic.se +0.0.0.0 webtraxx.de +0.0.0.0 webtrendslive.com +0.0.0.0 werbung.meteoxpress.com +0.0.0.0 wetrack.it +0.0.0.0 whaleads.com +0.0.0.0 whenu.com +0.0.0.0 whispa.com +0.0.0.0 whoisonline.net +0.0.0.0 widespace.com +0.0.0.0 widgetbucks.com +0.0.0.0 wikia-ads.wikia.com +0.0.0.0 window.nixnet.cz +0.0.0.0 wintricksbanner.googlepages.com +0.0.0.0 witch-counter.de +0.0.0.0 wlmarketing.com +0.0.0.0 wmirk.ru +0.0.0.0 wonderlandads.com +0.0.0.0 wondoads.de +0.0.0.0 woopra.com +0.0.0.0 worldwide-cash.net +0.0.0.0 wtlive.com +0.0.0.0 www-banner.chat.ru +0.0.0.0 www-google-analytics.l.google.com +0.0.0.0 www.banner-link.com.br +0.0.0.0 www.dnps.com +0.0.0.0 www.kaplanindex.com +0.0.0.0 www.money4exit.de +0.0.0.0 www.photo-ads.co.uk +0.0.0.0 www1.gto-media.com +0.0.0.0 www8.glam.com +0.0.0.0 wwwpromoter.com +0.0.0.0 x-traceur.com +0.0.0.0 x6.yakiuchi.com +0.0.0.0 xchange.ro +0.0.0.0 xertive.com +0.0.0.0 xg4ken.com +0.0.0.0 xiti.com +0.0.0.0 xplusone.com +0.0.0.0 xponsor.com +0.0.0.0 xq1.net +0.0.0.0 xrea.com +0.0.0.0 xtendmedia.com +0.0.0.0 xtremetop100.com +0.0.0.0 xxxcounter.com +0.0.0.0 xxxmyself.com +0.0.0.0 y.ibsys.com +0.0.0.0 yab-adimages.s3.amazonaws.com +0.0.0.0 yabuka.com +0.0.0.0 yesads.com +0.0.0.0 yesadvertising.com +0.0.0.0 yieldads.com +0.0.0.0 yieldlab.net +0.0.0.0 yieldmanager.com +0.0.0.0 yieldmanager.net +0.0.0.0 yieldmo.com +0.0.0.0 yieldtraffic.com +0.0.0.0 yoc.mobi +0.0.0.0 yoggrt.com +0.0.0.0 z5x.net +0.0.0.0 zangocash.com +0.0.0.0 zanox-affiliate.de +0.0.0.0 zanox.com +0.0.0.0 zantracker.com +0.0.0.0 zedo.com +0.0.0.0 zencudo.co.uk +0.0.0.0 zenkreka.com +0.0.0.0 zenzuu.com +0.0.0.0 zeus.developershed.com +0.0.0.0 zeusclicks.com +0.0.0.0 zintext.com +0.0.0.0 zmedia.com +0.0.0.0 zv1.november-lax.com +0.0.0.0 goatse.cx +0.0.0.0 www.goatse.cx +0.0.0.0 oralse.cx +0.0.0.0 www.oralse.cx +0.0.0.0 goatse.ca +0.0.0.0 www.goatse.ca +0.0.0.0 oralse.ca +0.0.0.0 www.oralse.ca +0.0.0.0 goat.cx +0.0.0.0 www.goat.cx +0.0.0.0 1girl1pitcher.com +0.0.0.0 1girl1pitcher.org +0.0.0.0 1guy1cock.com +0.0.0.0 1man1jar.org +0.0.0.0 1man2needles.com +0.0.0.0 1priest1nun.com +0.0.0.0 1priest1nun.net +0.0.0.0 2girls1cup.cc +0.0.0.0 2girls1cup.com +0.0.0.0 2girls1cup.nl +0.0.0.0 2girls1cup.ws +0.0.0.0 2girls1finger.com +0.0.0.0 2girls1finger.org +0.0.0.0 2guys1stump.org +0.0.0.0 3guys1hammer.ws +0.0.0.0 4girlsfingerpaint.com +0.0.0.0 4girlsfingerpaint.org +0.0.0.0 bagslap.com +0.0.0.0 ballsack.org +0.0.0.0 bestshockers.com +0.0.0.0 bluewaffle.biz +0.0.0.0 bottleguy.com +0.0.0.0 bowlgirl.com +0.0.0.0 cadaver.org +0.0.0.0 clownsong.com +0.0.0.0 copyright-reform.info +0.0.0.0 cshacks.partycat.us +0.0.0.0 cyberscat.com +0.0.0.0 dadparty.com +0.0.0.0 detroithardcore.com +0.0.0.0 donotwatch.org +0.0.0.0 dontwatch.us +0.0.0.0 eelsoup.net +0.0.0.0 fruitlauncher.com +0.0.0.0 fuck.org +0.0.0.0 funnelchair.com +0.0.0.0 goatse.bz +0.0.0.0 goatsegirl.org +0.0.0.0 hai2u.com +0.0.0.0 homewares.org +0.0.0.0 howtotroll.org +0.0.0.0 japscat.org +0.0.0.0 jarsquatter.com +0.0.0.0 jiztini.com +0.0.0.0 junecleeland.com +0.0.0.0 kids-in-sandbox.com +0.0.0.0 kidsinsandbox.info +0.0.0.0 lemonparty.biz +0.0.0.0 lemonparty.org +0.0.0.0 lolhello.com +0.0.0.0 lolshock.com +0.0.0.0 loltrain.com +0.0.0.0 meatspin.biz +0.0.0.0 meatspin.com +0.0.0.0 merryholidays.org +0.0.0.0 milkfountain.com +0.0.0.0 mudfall.com +0.0.0.0 mudmonster.org +0.0.0.0 nimp.org +0.0.0.0 nobrain.dk +0.0.0.0 nutabuse.com +0.0.0.0 octopusgirl.com +0.0.0.0 on.nimp.org +0.0.0.0 painolympics.info +0.0.0.0 painolympics.org +0.0.0.0 phonejapan.com +0.0.0.0 pressurespot.com +0.0.0.0 prolapseman.com +0.0.0.0 scrollbelow.com +0.0.0.0 selfpwn.org +0.0.0.0 sexitnow.com +0.0.0.0 sourmath.com +0.0.0.0 strawpoii.me +0.0.0.0 suckdude.com +0.0.0.0 thatsjustgay.com +0.0.0.0 thatsphucked.com +0.0.0.0 thehomo.org +0.0.0.0 themacuser.org +0.0.0.0 thepounder.com +0.0.0.0 tubgirl.me +0.0.0.0 tubgirl.org +0.0.0.0 turdgasm.com +0.0.0.0 vomitgirl.org +0.0.0.0 walkthedinosaur.com +0.0.0.0 whipcrack.org +0.0.0.0 wormgush.com +0.0.0.0 www.1girl1pitcher.org +0.0.0.0 www.1guy1cock.com +0.0.0.0 www.1man1jar.org +0.0.0.0 www.1man2needles.com +0.0.0.0 www.1priest1nun.com +0.0.0.0 www.1priest1nun.net +0.0.0.0 www.2girls1cup-free.com +0.0.0.0 www.2girls1cup.cc +0.0.0.0 www.2girls1cup.nl +0.0.0.0 www.2girls1cup.ws +0.0.0.0 www.2girls1finger.org +0.0.0.0 www.2guys1stump.org +0.0.0.0 www.3guys1hammer.ws +0.0.0.0 www.4girlsfingerpaint.org +0.0.0.0 www.bagslap.com +0.0.0.0 www.ballsack.org +0.0.0.0 www.bestshockers.com +0.0.0.0 www.bluewaffle.biz +0.0.0.0 www.bottleguy.com +0.0.0.0 www.bowlgirl.com +0.0.0.0 www.cadaver.org +0.0.0.0 www.clownsong.com +0.0.0.0 www.copyright-reform.info +0.0.0.0 www.cshacks.partycat.us +0.0.0.0 www.cyberscat.com +0.0.0.0 www.dadparty.com +0.0.0.0 www.detroithardcore.com +0.0.0.0 www.donotwatch.org +0.0.0.0 www.dontwatch.us +0.0.0.0 www.eelsoup.net +0.0.0.0 www.fruitlauncher.com +0.0.0.0 www.fuck.org +0.0.0.0 www.funnelchair.com +0.0.0.0 www.goatse.bz +0.0.0.0 www.goatse.ru +0.0.0.0 www.goatsegirl.org +0.0.0.0 www.hai2u.com +0.0.0.0 www.homewares.org +0.0.0.0 www.howtotroll.org +0.0.0.0 www.japscat.org +0.0.0.0 www.jiztini.com +0.0.0.0 www.junecleeland.com +0.0.0.0 www.kids-in-sandbox.com +0.0.0.0 www.kidsinsandbox.info +0.0.0.0 www.lemonparty.biz +0.0.0.0 www.lemonparty.org +0.0.0.0 www.lolhello.com +0.0.0.0 www.lolshock.com +0.0.0.0 www.loltrain.com +0.0.0.0 www.meatspin.biz +0.0.0.0 www.meatspin.com +0.0.0.0 www.merryholidays.org +0.0.0.0 www.milkfountain.com +0.0.0.0 www.mudfall.com +0.0.0.0 www.mudmonster.org +0.0.0.0 www.nimp.org +0.0.0.0 www.nobrain.dk +0.0.0.0 www.nutabuse.com +0.0.0.0 www.octopusgirl.com +0.0.0.0 www.on.nimp.org +0.0.0.0 www.painolympics.info +0.0.0.0 www.painolympics.org +0.0.0.0 www.phonejapan.com +0.0.0.0 www.pressurespot.com +0.0.0.0 www.prolapseman.com +0.0.0.0 www.punishtube.com +0.0.0.0 www.scrollbelow.com +0.0.0.0 www.selfpwn.org +0.0.0.0 www.sourmath.com +0.0.0.0 www.strawpoii.me +0.0.0.0 www.suckdude.com +0.0.0.0 www.thatsjustgay.com +0.0.0.0 www.thatsphucked.com +0.0.0.0 www.theexgirlfriends.com +0.0.0.0 www.thehomo.org +0.0.0.0 www.themacuser.org +0.0.0.0 www.thepounder.com +0.0.0.0 www.tubgirl.me +0.0.0.0 www.tubgirl.org +0.0.0.0 www.turdgasm.com +0.0.0.0 www.vomitgirl.org +0.0.0.0 www.walkthedinosaur.com +0.0.0.0 www.whipcrack.org +0.0.0.0 www.wormgush.com +0.0.0.0 www.xvideoslive.com +0.0.0.0 www.y8.com +0.0.0.0 www.youaresogay.com +0.0.0.0 www.ypmate.com +0.0.0.0 www.zentastic.com +0.0.0.0 youaresogay.com +0.0.0.0 zentastic.com +0.0.0.0 ads234.com +0.0.0.0 ads345.com +0.0.0.0 www.ads234.com +0.0.0.0 www.ads345.com +0.0.0.0 media.fastclick.net +0.0.0.0 cdn.fastclick.net +0.0.0.0 ll.a.hulu.com +0.0.0.0 nl.sitestat.com +0.0.0.0 pro.hit.gemius.pl +0.0.0.0 services.krxd.net +0.0.0.0 stats.channel4.com +0.0.0.0 t2.hulu.com +0.0.0.0 track.hulu.com +0.0.0.0 webstat.channel4.com +0.0.0.0 www.googletagservices.com +0.0.0.0 006.free-counter.co.uk +0.0.0.0 006.freecounters.co.uk +0.0.0.0 06272002-dbase.hitcountz.net +0.0.0.0 0stats.com +0.0.0.0 123counter.mycomputer.com +0.0.0.0 123counter.superstats.com +0.0.0.0 1ca.cqcounter.com +0.0.0.0 1uk.cqcounter.com +0.0.0.0 1us.cqcounter.com +0.0.0.0 2001-007.com +0.0.0.0 20585485p.rfihub.com +0.0.0.0 3bc3fd26-91cf-46b2-8ec6-b1559ada0079.statcamp.net +0.0.0.0 3ps.go.com +0.0.0.0 4-counter.com +0.0.0.0 a-ssl.ligatus.com +0.0.0.0 a.visualrevenue.com +0.0.0.0 a796faee-7163-4757-a34f-e5b48cada4cb.statcamp.net +0.0.0.0 abscbn.spinbox.net +0.0.0.0 accountlock-demo.iovation.com +0.0.0.0 activity.serving-sys.com +0.0.0.0 ad-logics.com +0.0.0.0 adapi.ragapa.com +0.0.0.0 adclient.rottentomatoes.com +0.0.0.0 adcodes.aim4media.com +0.0.0.0 adcounter.globeandmail.com +0.0.0.0 adcounter.theglobeandmail.com +0.0.0.0 adelogs.adobe.com +0.0.0.0 admanmail.com +0.0.0.0 admin.iesnare.co.uk +0.0.0.0 admin.iesnare.com +0.0.0.0 admin.iovation.com +0.0.0.0 adopt.specificclick.net +0.0.0.0 ads.tiscali.com +0.0.0.0 ads.tiscali.it +0.0.0.0 adult.foxcounter.com +0.0.0.0 affiliate.ab1trk.com +0.0.0.0 affiliate.irotracker.com +0.0.0.0 ai062.insightexpress.com +0.0.0.0 ai078.insightexpressai.com +0.0.0.0 ai087.insightexpress.com +0.0.0.0 ai113.insightexpressai.com +0.0.0.0 ai125.insightexpressai.com +0.0.0.0 alert.mac-notification.com +0.0.0.0 alpha.easy-hit-counters.com +0.0.0.0 amateur.xxxcounter.com +0.0.0.0 amer.hops.glbdns.microsoft.com +0.0.0.0 amer.rel.msn.com +0.0.0.0 analytics.msnbc.msn.com +0.0.0.0 analytics.prx.org +0.0.0.0 ant.conversive.nl +0.0.0.0 antivirus-message.com +0.0.0.0 apac.rel.msn.com +0.0.0.0 api.adsymptotic.com +0.0.0.0 api.bizographics.com +0.0.0.0 api.gameanalytics.com +0.0.0.0 api.infinario.com +0.0.0.0 api.tumra.com +0.0.0.0 app.yesware.com +0.0.0.0 apple.com-onlinesupport.host +0.0.0.0 apprep.smartscreen.microsoft.com +0.0.0.0 arbo.hit.gemius.pl +0.0.0.0 au.track.decideinteractive.com +0.0.0.0 au052.insightexpress.com +0.0.0.0 aus-mec-tracking.adalyser.com +0.0.0.0 aus-smv-tracking.adalyser.com +0.0.0.0 auspice.augur.io +0.0.0.0 b.stats.paypal.com +0.0.0.0 bam-pilot.iovation.com +0.0.0.0 banner.0catch.com +0.0.0.0 banners.webcounter.com +0.0.0.0 batch.iovation.com +0.0.0.0 be.sitestat.com +0.0.0.0 beacon-1.newrelic.com +0.0.0.0 beacon.scorecardresearch.com +0.0.0.0 beacons.hottraffic.nl +0.0.0.0 benchemail.bmetrack.com +0.0.0.0 best-search.cc +0.0.0.0 beta.easy-hit-counter.com +0.0.0.0 beta.easy-hit-counters.com +0.0.0.0 beta.easyhitcounters.com +0.0.0.0 bigdata.adfuture.cn +0.0.0.0 bigdata.adsunflower.com +0.0.0.0 bigdata.adups.com +0.0.0.0 bigdata.advmob.cn +0.0.0.0 bilbo.counted.com +0.0.0.0 bin.clearspring.com +0.0.0.0 birta.stats.is +0.0.0.0 bkrtx.com +0.0.0.0 bluestreak.com +0.0.0.0 bookproplus.com +0.0.0.0 brightroll.com +0.0.0.0 broadcastpc.tv +0.0.0.0 report.broadcastpc.tv +0.0.0.0 www.broadcastpc.tv +0.0.0.0 browser-message.com +0.0.0.0 bserver.blick.com +0.0.0.0 bstats.adbrite.com +0.0.0.0 by.optimost.com +0.0.0.0 c.statcounter.com +0.0.0.0 c.thecounter.de +0.0.0.0 c0.adalyser.com +0.0.0.0 c1.statcounter.com +0.0.0.0 c1.thecounter.com +0.0.0.0 c1.thecounter.de +0.0.0.0 c1.xxxcounter.com +0.0.0.0 c10.statcounter.com +0.0.0.0 c11.statcounter.com +0.0.0.0 c12.statcounter.com +0.0.0.0 c13.statcounter.com +0.0.0.0 c14.statcounter.com +0.0.0.0 c15.statcounter.com +0.0.0.0 c16.statcounter.com +0.0.0.0 c17.statcounter.com +0.0.0.0 c2.gostats.com +0.0.0.0 c2.thecounter.com +0.0.0.0 c2.thecounter.de +0.0.0.0 c2.xxxcounter.com +0.0.0.0 c3.adalyser.com +0.0.0.0 c3.gostats.com +0.0.0.0 c3.statcounter.com +0.0.0.0 c3.thecounter.com +0.0.0.0 c3.xxxcounter.com +0.0.0.0 c4.myway.com +0.0.0.0 c4.statcounter.com +0.0.0.0 c5.statcounter.com +0.0.0.0 c6.statcounter.com +0.0.0.0 c7.statcounter.com +0.0.0.0 c8.statcounter.com +0.0.0.0 c9.statcounter.com +0.0.0.0 ca.cqcounter.com +0.0.0.0 cashcounter.com +0.0.0.0 cb1.counterbot.com +0.0.0.0 cdn-social.janrain.com +0.0.0.0 cdn.oggifinogi.com +0.0.0.0 cdn.taboolasyndication.com +0.0.0.0 cdxbin.vulnerap.com +0.0.0.0 cf.addthis.com +0.0.0.0 cgi.hotstat.nl +0.0.0.0 cgi.sexlist.com +0.0.0.0 cgicounter.onlinehome.de +0.0.0.0 ci-accountlock.iovation.com +0.0.0.0 ci-admin.iovation.com +0.0.0.0 ci-mpsnare.iesnare.co.uk +0.0.0.0 ci-mpsnare.iesnare.com +0.0.0.0 ci-mpsnare.iovation.com +0.0.0.0 ci-snare.iovation.com +0.0.0.0 citrix.tradedoubler.com +0.0.0.0 cjt1.net +0.0.0.0 click.atdmt.com +0.0.0.0 click.fivemtn.com +0.0.0.0 click.icptrack.com +0.0.0.0 click.investopedia.com +0.0.0.0 click.jve.net +0.0.0.0 click.payserve.com +0.0.0.0 clickauditor.net +0.0.0.0 clickmeter.com +0.0.0.0 clicks.emarketmakers.com +0.0.0.0 clicks.m4n.nl +0.0.0.0 clicks.natwest.com +0.0.0.0 clicks.rbs.co.uk +0.0.0.0 clickspring.net +0.0.0.0 clickstatsview.chooseonlinecasino.com +0.0.0.0 clickstatsview.earnmoneycasinos.com +0.0.0.0 clickstatsview.hourfreeplaycasinos.com +0.0.0.0 clickstatsview.howdepositcasino.com +0.0.0.0 clickstatsview.howpickcasino.com +0.0.0.0 clickstatsview.instantcasinoswithdrawal.com +0.0.0.0 clickstatsview.internetcasinosforum.com +0.0.0.0 clickstatsview.microgamingcasinosites.com +0.0.0.0 clickstatsview.new2007casinobonus.com +0.0.0.0 clicktrack.onlineemailmarketing.com +0.0.0.0 clicktrack.premium-shops.net +0.0.0.0 clicktrack.savings-foryou.net +0.0.0.0 clicktrack.shopping-networks.net +0.0.0.0 clicktracker.alloymarketing.com +0.0.0.0 clicktracker.postmasterglobal.com +0.0.0.0 clicktracks.webmetro.com +0.0.0.0 clit10.sextracker.com +0.0.0.0 clit13.sextracker.com +0.0.0.0 clit15.sextracker.com +0.0.0.0 clit2.sextracker.com +0.0.0.0 clit4.sextracker.com +0.0.0.0 clit6.sextracker.com +0.0.0.0 clit7.sextracker.com +0.0.0.0 clit8.sextracker.com +0.0.0.0 clit9.sextracker.com +0.0.0.0 clk.aboxdeal.com +0.0.0.0 clk.relestar.com +0.0.0.0 cnn.entertainment.printthis.clickability.com +0.0.0.0 cnt.xcounter.com +0.0.0.0 collector.deepmetrix.com +0.0.0.0 collector.newsx.cc +0.0.0.0 connectionlead.com +0.0.0.0 connexity.net +0.0.0.0 convertro.com +0.0.0.0 count.channeladvisor.com +0.0.0.0 count.paycounter.com +0.0.0.0 count.xhit.com +0.0.0.0 counter.123counts.com +0.0.0.0 counter.1stblaze.com +0.0.0.0 counter.aaddzz.com +0.0.0.0 counter.adultcheck.com +0.0.0.0 counter.adultrevenueservice.com +0.0.0.0 counter.advancewebhosting.com +0.0.0.0 counter.aport.ru +0.0.0.0 counter.asexhound.com +0.0.0.0 counter.avp2000.com +0.0.0.0 counter.bizland.com +0.0.0.0 counter.clubnet.ro +0.0.0.0 counter.credo.ru +0.0.0.0 counter.digits.com +0.0.0.0 counter.e-audit.it +0.0.0.0 counter.execpc.com +0.0.0.0 counter.gamespy.com +0.0.0.0 counter.hitslink.com +0.0.0.0 counter.hitslinks.com +0.0.0.0 counter.htmlvalidator.com +0.0.0.0 counter.impressur.com +0.0.0.0 counter.inetusa.com +0.0.0.0 counter.inti.fr +0.0.0.0 counter.kaspersky.com +0.0.0.0 counter.letssingit.com +0.0.0.0 counter.mtree.com +0.0.0.0 counter.mycomputer.com +0.0.0.0 counter.netmore.net +0.0.0.0 counter.nope.dk +0.0.0.0 counter.pcgames.de +0.0.0.0 counter.sexhound.nl +0.0.0.0 counter.superstats.com +0.0.0.0 counter.surfcounters.com +0.0.0.0 counter.times.lv +0.0.0.0 counter.topping.com.ua +0.0.0.0 counter.tripod.com +0.0.0.0 counter.uq.edu.au +0.0.0.0 counter.w3open.com +0.0.0.0 counter.webcom.com +0.0.0.0 counter.webmedia.pl +0.0.0.0 counter.webtrends.com +0.0.0.0 counter.webtrends.net +0.0.0.0 counter.xxxcool.com +0.0.0.0 counter1.bravenet.com +0.0.0.0 counter1.sextracker.be +0.0.0.0 counter1.sextracker.com +0.0.0.0 counter10.bravenet.com +0.0.0.0 counter10.sextracker.be +0.0.0.0 counter10.sextracker.com +0.0.0.0 counter11.bravenet.com +0.0.0.0 counter11.sextracker.be +0.0.0.0 counter11.sextracker.com +0.0.0.0 counter12.bravenet.com +0.0.0.0 counter12.sextracker.be +0.0.0.0 counter12.sextracker.com +0.0.0.0 counter13.bravenet.com +0.0.0.0 counter13.sextracker.be +0.0.0.0 counter13.sextracker.com +0.0.0.0 counter14.bravenet.com +0.0.0.0 counter14.sextracker.be +0.0.0.0 counter14.sextracker.com +0.0.0.0 counter15.bravenet.com +0.0.0.0 counter15.sextracker.be +0.0.0.0 counter15.sextracker.com +0.0.0.0 counter16.bravenet.com +0.0.0.0 counter16.sextracker.be +0.0.0.0 counter16.sextracker.com +0.0.0.0 counter17.bravenet.com +0.0.0.0 counter18.bravenet.com +0.0.0.0 counter19.bravenet.com +0.0.0.0 counter2.bravenet.com +0.0.0.0 counter2.freeware.de +0.0.0.0 counter2.hitslink.com +0.0.0.0 counter2.sextracker.be +0.0.0.0 counter2.sextracker.com +0.0.0.0 counter20.bravenet.com +0.0.0.0 counter21.bravenet.com +0.0.0.0 counter22.bravenet.com +0.0.0.0 counter23.bravenet.com +0.0.0.0 counter24.bravenet.com +0.0.0.0 counter25.bravenet.com +0.0.0.0 counter26.bravenet.com +0.0.0.0 counter27.bravenet.com +0.0.0.0 counter28.bravenet.com +0.0.0.0 counter29.bravenet.com +0.0.0.0 counter3.bravenet.com +0.0.0.0 counter3.sextracker.be +0.0.0.0 counter3.sextracker.com +0.0.0.0 counter30.bravenet.com +0.0.0.0 counter31.bravenet.com +0.0.0.0 counter32.bravenet.com +0.0.0.0 counter33.bravenet.com +0.0.0.0 counter34.bravenet.com +0.0.0.0 counter35.bravenet.com +0.0.0.0 counter36.bravenet.com +0.0.0.0 counter37.bravenet.com +0.0.0.0 counter38.bravenet.com +0.0.0.0 counter39.bravenet.com +0.0.0.0 counter4.bravenet.com +0.0.0.0 counter4.sextracker.be +0.0.0.0 counter4.sextracker.com +0.0.0.0 counter40.bravenet.com +0.0.0.0 counter41.bravenet.com +0.0.0.0 counter42.bravenet.com +0.0.0.0 counter43.bravenet.com +0.0.0.0 counter44.bravenet.com +0.0.0.0 counter45.bravenet.com +0.0.0.0 counter46.bravenet.com +0.0.0.0 counter47.bravenet.com +0.0.0.0 counter48.bravenet.com +0.0.0.0 counter49.bravenet.com +0.0.0.0 counter4all.dk +0.0.0.0 counter4u.de +0.0.0.0 counter5.bravenet.com +0.0.0.0 counter5.sextracker.be +0.0.0.0 counter5.sextracker.com +0.0.0.0 counter50.bravenet.com +0.0.0.0 counter6.bravenet.com +0.0.0.0 counter6.sextracker.be +0.0.0.0 counter6.sextracker.com +0.0.0.0 counter7.bravenet.com +0.0.0.0 counter7.sextracker.be +0.0.0.0 counter7.sextracker.com +0.0.0.0 counter8.bravenet.com +0.0.0.0 counter8.sextracker.be +0.0.0.0 counter8.sextracker.com +0.0.0.0 counter9.bravenet.com +0.0.0.0 counter9.sextracker.be +0.0.0.0 counter9.sextracker.com +0.0.0.0 counterad.de +0.0.0.0 counteraport.spylog.com +0.0.0.0 counters.auctionhelper.com +0.0.0.0 counters.auctionwatch.com +0.0.0.0 counters.auctiva.com +0.0.0.0 counters.gigya.com +0.0.0.0 counters.xaraonline.com +0.0.0.0 cs.sexcounter.com +0.0.0.0 ctrack.optin-global.net +0.0.0.0 ctrack07.optin-global.net +0.0.0.0 cw.nu +0.0.0.0 cyseal.cyveillance.com +0.0.0.0 cz3.clickzs.com +0.0.0.0 cz6.clickzs.com +0.0.0.0 da.ce.bd.a9.top.list.ru +0.0.0.0 da.newstogram.com +0.0.0.0 dap.digitalgov.gov +0.0.0.0 data.coremetrics.com +0.0.0.0 data.webads.co.nz +0.0.0.0 data2.perf.overture.com +0.0.0.0 dc43.s290.meetrics.net +0.0.0.0 dclk.haaretz.co.il +0.0.0.0 dclk.themarker.com +0.0.0.0 dclk.themarketer.com +0.0.0.0 de.sitestat.com +0.0.0.0 delivery.loopingclick.com +0.0.0.0 detectorcarecenter.in +0.0.0.0 dgit.com +0.0.0.0 digistats.westjet.com +0.0.0.0 dimeprice.com +0.0.0.0 directads.mcafee.com +0.0.0.0 dkb01.webtrekk.net +0.0.0.0 dotcomsecrets.com +0.0.0.0 dpbolvw.net +0.0.0.0 dpm.demdex.net +0.0.0.0 dra.iesnare.com +0.0.0.0 ds.247realmedia.com +0.0.0.0 ds.amateurmatch.com +0.0.0.0 dv-fw-a-nat.iovation.com +0.0.0.0 dwclick.com +0.0.0.0 dyn.emetriq.de +0.0.0.0 e-2dj6wfk4ehd5afq.stats.esomniture.com +0.0.0.0 e-2dj6wfk4ggdzkbo.stats.esomniture.com +0.0.0.0 e-2dj6wfk4gkcpiep.stats.esomniture.com +0.0.0.0 e-2dj6wfk4skdpogo.stats.esomniture.com +0.0.0.0 e-2dj6wfkiakdjgcp.stats.esomniture.com +0.0.0.0 e-2dj6wfkiepczoeo.stats.esomniture.com +0.0.0.0 e-2dj6wfkikjd5glq.stats.esomniture.com +0.0.0.0 e-2dj6wfkiokc5odp.stats.esomniture.com +0.0.0.0 e-2dj6wfkiqjcpifp.stats.esomniture.com +0.0.0.0 e-2dj6wfkocjczedo.stats.esomniture.com +0.0.0.0 e-2dj6wfkokjajseq.stats.esomniture.com +0.0.0.0 e-2dj6wfkowkdjokp.stats.esomniture.com +0.0.0.0 e-2dj6wfkykpazskq.stats.esomniture.com +0.0.0.0 e-2dj6wflicocjklo.stats.esomniture.com +0.0.0.0 e-2dj6wfligpd5iap.stats.esomniture.com +0.0.0.0 e-2dj6wflikgdpodo.stats.esomniture.com +0.0.0.0 e-2dj6wflikiajslo.stats.esomniture.com +0.0.0.0 e-2dj6wflioldzoco.stats.esomniture.com +0.0.0.0 e-2dj6wfliwpczolp.stats.esomniture.com +0.0.0.0 e-2dj6wfloenczmkq.stats.esomniture.com +0.0.0.0 e-2dj6wflokmajedo.stats.esomniture.com +0.0.0.0 e-2dj6wfloqgc5mho.stats.esomniture.com +0.0.0.0 e-2dj6wfmysgdzobo.stats.esomniture.com +0.0.0.0 e-2dj6wgkigpcjedo.stats.esomniture.com +0.0.0.0 e-2dj6wgkisnd5abo.stats.esomniture.com +0.0.0.0 e-2dj6wgkoandzieq.stats.esomniture.com +0.0.0.0 e-2dj6wgkycpcpsgq.stats.esomniture.com +0.0.0.0 e-2dj6wgkyepajmeo.stats.esomniture.com +0.0.0.0 e-2dj6wgkyknd5sko.stats.esomniture.com +0.0.0.0 e-2dj6wgkyomdpalp.stats.esomniture.com +0.0.0.0 e-2dj6whkiandzkko.stats.esomniture.com +0.0.0.0 e-2dj6whkiepd5iho.stats.esomniture.com +0.0.0.0 e-2dj6whkiwjdjwhq.stats.esomniture.com +0.0.0.0 e-2dj6wjk4amd5mfp.stats.esomniture.com +0.0.0.0 e-2dj6wjk4kkcjalp.stats.esomniture.com +0.0.0.0 e-2dj6wjk4ukazebo.stats.esomniture.com +0.0.0.0 e-2dj6wjkosodpmaq.stats.esomniture.com +0.0.0.0 e-2dj6wjkouhd5eao.stats.esomniture.com +0.0.0.0 e-2dj6wjkowhd5ggo.stats.esomniture.com +0.0.0.0 e-2dj6wjkowjajcbo.stats.esomniture.com +0.0.0.0 e-2dj6wjkyandpogq.stats.esomniture.com +0.0.0.0 e-2dj6wjkycpdzckp.stats.esomniture.com +0.0.0.0 e-2dj6wjkyqmdzcgo.stats.esomniture.com +0.0.0.0 e-2dj6wjkysndzigp.stats.esomniture.com +0.0.0.0 e-2dj6wjl4qhd5kdo.stats.esomniture.com +0.0.0.0 e-2dj6wjlichdjoep.stats.esomniture.com +0.0.0.0 e-2dj6wjliehcjglp.stats.esomniture.com +0.0.0.0 e-2dj6wjlignajgaq.stats.esomniture.com +0.0.0.0 e-2dj6wjloagc5oco.stats.esomniture.com +0.0.0.0 e-2dj6wjlougazmao.stats.esomniture.com +0.0.0.0 e-2dj6wjlyamdpogo.stats.esomniture.com +0.0.0.0 e-2dj6wjlyckcpelq.stats.esomniture.com +0.0.0.0 e-2dj6wjlyeodjkcq.stats.esomniture.com +0.0.0.0 e-2dj6wjlygkd5ecq.stats.esomniture.com +0.0.0.0 e-2dj6wjmiekc5olo.stats.esomniture.com +0.0.0.0 e-2dj6wjmyehd5mfo.stats.esomniture.com +0.0.0.0 e-2dj6wjmyooczoeo.stats.esomniture.com +0.0.0.0 e-2dj6wjny-1idzkh.stats.esomniture.com +0.0.0.0 e-2dj6wjnyagcpkko.stats.esomniture.com +0.0.0.0 e-2dj6wjnyeocpcdo.stats.esomniture.com +0.0.0.0 e-2dj6wjnygidjskq.stats.esomniture.com +0.0.0.0 e-2dj6wjnyqkajabp.stats.esomniture.com +0.0.0.0 e-n.y-1shz2prbmdj6wvny-1sez2pra2dj6wjmyepdzadpwudj6x9ny-1seq-2-2.stats.esomniture.com +0.0.0.0 e-ny.a-1shz2prbmdj6wvny-1sez2pra2dj6wjny-1jcpgbowsdj6x9ny-1seq-2-2.stats.esomniture.com +0.0.0.0 easy-web-stats.com +0.0.0.0 ecestats.theglobeandmail.com +0.0.0.0 economisttestcollect.insightfirst.com +0.0.0.0 educing.info +0.0.0.0 ehg.fedex.com +0.0.0.0 eitbglobal.ojdinteractiva.com +0.0.0.0 email.positionly.com +0.0.0.0 emea.rel.msn.com +0.0.0.0 engine.cmmeglobal.com +0.0.0.0 entry-stats.huffingtonpost.com +0.0.0.0 environmentalgraffiti.uk.intellitxt.com +0.0.0.0 es.optimost.com +0.0.0.0 extremereach.com +0.0.0.0 fastcounter.bcentral.com +0.0.0.0 fastcounter.com +0.0.0.0 fastcounter.linkexchange.com +0.0.0.0 fastcounter.linkexchange.net +0.0.0.0 fastcounter.linkexchange.nl +0.0.0.0 fastcounter.onlinehoster.net +0.0.0.0 fastwebcounter.com +0.0.0.0 fcstats.bcentral.com +0.0.0.0 fdbdo.com +0.0.0.0 fi.sitestat.com +0.0.0.0 fl01.ct2.comclick.com +0.0.0.0 flycast.com +0.0.0.0 forbescollect.247realmedia.com +0.0.0.0 formalyzer.com +0.0.0.0 foxcounter.com +0.0.0.0 fra-photobox-tracking.adalyser.com +0.0.0.0 free-counter.5u.com +0.0.0.0 free.xxxcounter.com +0.0.0.0 freeinvisiblecounters.com +0.0.0.0 fs10.fusestats.com +0.0.0.0 ft2.autonomycloud.com +0.0.0.0 g-wizzads.net +0.0.0.0 gapl.hit.gemius.pl +0.0.0.0 gbr-7stars-tracking.adalyser.com +0.0.0.0 gbr-carat-tracking.adalyser.com +0.0.0.0 gbr-mbww-tracking.adalyser.com +0.0.0.0 gbr-smv-tracking.adalyser.com +0.0.0.0 gbr-tbh-tracking.adalyser.com +0.0.0.0 gcounter.hosting4u.net +0.0.0.0 gd.mlb.com +0.0.0.0 geocounter.net +0.0.0.0 gj.mmstat.com +0.0.0.0 gkkzngresullts.com +0.0.0.0 go-in-search.net +0.0.0.0 googfle.com +0.0.0.0 googletagservices.com +0.0.0.0 grafix.xxxcounter.com +0.0.0.0 gtcc1.acecounter.com +0.0.0.0 hc2.humanclick.com +0.0.0.0 highscanprotect.com +0.0.0.0 hit-counter.5u.com +0.0.0.0 hit-counter.udub.com +0.0.0.0 hit.clickaider.com +0.0.0.0 hit10.hotlog.ru +0.0.0.0 hit2.hotlog.ru +0.0.0.0 hit37.chark.dk +0.0.0.0 hit37.chart.dk +0.0.0.0 hit39.chart.dk +0.0.0.0 hit5.hotlog.ru +0.0.0.0 hit8.hotlog.ru +0.0.0.0 hits.guardian.co.uk +0.0.0.0 hits.gureport.co.uk +0.0.0.0 hits.nextstat.com +0.0.0.0 hits.webstat.com +0.0.0.0 hitx.statistics.ro +0.0.0.0 hst.tradedoubler.com +0.0.0.0 htm.freelogs.com +0.0.0.0 http300.edge.ru4.com +0.0.0.0 i.kissmetrics.com +0.0.0.0 i.track112.site +0.0.0.0 iccee.com +0.0.0.0 idm.hit.gemius.pl +0.0.0.0 ieplugin.com +0.0.0.0 iesnare.co.uk +0.0.0.0 ig.insightgrit.com +0.0.0.0 ih.constantcontacts.com +0.0.0.0 image.masterstats.com +0.0.0.0 images-aud.freshmeat.net +0.0.0.0 images-aud.slashdot.org +0.0.0.0 images-aud.sourceforge.net +0.0.0.0 images.dailydiscounts.com +0.0.0.0 images.itchydawg.com +0.0.0.0 images1.paycounter.com +0.0.0.0 imp.clickability.com +0.0.0.0 impacts.alliancehub.com +0.0.0.0 impch.tradedoubler.com +0.0.0.0 impde.tradedoubler.com +0.0.0.0 impdk.tradedoubler.com +0.0.0.0 impes.tradedoubler.com +0.0.0.0 impfr.tradedoubler.com +0.0.0.0 impgb.tradedoubler.com +0.0.0.0 impie.tradedoubler.com +0.0.0.0 impit.tradedouble.com +0.0.0.0 impit.tradedoubler.com +0.0.0.0 impnl.tradedoubler.com +0.0.0.0 impno.tradedoubler.com +0.0.0.0 impse.tradedoubler.com +0.0.0.0 impsnare.iesnare.com +0.0.0.0 in.paycounter.com +0.0.0.0 in.webcounter.cc +0.0.0.0 insightfirst.com +0.0.0.0 insightxe.looksmart.com +0.0.0.0 int.sitestat.com +0.0.0.0 ioit.iovation.com +0.0.0.0 iovation.co.uk +0.0.0.0 iovation.com +0.0.0.0 iprocollect.realmedia.com +0.0.0.0 izitracking.izimailing.com +0.0.0.0 jgoyk.cjt1.net +0.0.0.0 jkearns.freestats.com +0.0.0.0 journalism.uk.smarttargetting.com +0.0.0.0 js.cybermonitor.com +0.0.0.0 js.hs-analytics.net +0.0.0.0 js.revsci.net +0.0.0.0 jsonlinecollect.247realmedia.com +0.0.0.0 kqzyfj.com +0.0.0.0 kt4.kliptracker.com +0.0.0.0 leadpub.com +0.0.0.0 liapentruromania.ro +0.0.0.0 lin31.metriweb.be +0.0.0.0 link.masterstats.com +0.0.0.0 linkcounter.com +0.0.0.0 linkcounter.pornosite.com +0.0.0.0 linktrack.bravenet.com +0.0.0.0 livestats.atlanta-airport.com +0.0.0.0 loc1.hitsprocessor.com +0.0.0.0 log.clickstream.co.za +0.0.0.0 log.hankooki.com +0.0.0.0 log.statistici.ro +0.0.0.0 log1.countomat.com +0.0.0.0 log4.quintelligence.com +0.0.0.0 log999.goo.ne.jp +0.0.0.0 loga.xiti.com +0.0.0.0 logc1.xiti.com +0.0.0.0 logc146.xiti.com +0.0.0.0 logc22.xiti.com +0.0.0.0 logc25.xiti.com +0.0.0.0 logc31.xiti.com +0.0.0.0 logi6.xiti.com +0.0.0.0 logi7.xiti.com +0.0.0.0 logi8.xiti.com +0.0.0.0 logp3.xiti.com +0.0.0.0 logs.comics.com +0.0.0.0 logs.eresmas.com +0.0.0.0 logs.eresmas.net +0.0.0.0 logv.xiti.com +0.0.0.0 logv14.xiti.com +0.0.0.0 logv17.xiti.com +0.0.0.0 logv18.xiti.com +0.0.0.0 logv21.xiti.com +0.0.0.0 logv25.xiti.com +0.0.0.0 logv27.xiti.com +0.0.0.0 logv29.xiti.com +0.0.0.0 logv32.xiti.com +0.0.0.0 logv4.xiti.com +0.0.0.0 lpcloudsvr302.com +0.0.0.0 luycos.com +0.0.0.0 lycoscollect.247realmedia.com +0.0.0.0 lycoscollect.realmedia.com +0.0.0.0 m1.nedstatbasic.net +0.0.0.0 mailcheckisp.biz +0.0.0.0 mailfoogae.appspot.com +0.0.0.0 mailtrack.me +0.0.0.0 mailtrack1313.com +0.0.0.0 mama128.valuehost.ru +0.0.0.0 marketscore.com +0.0.0.0 mature.xxxcounter.com +0.0.0.0 mbox5.offermatica.com +0.0.0.0 media.superstats.com +0.0.0.0 media101.sitebrand.com +0.0.0.0 mediatrack.revenue.net +0.0.0.0 members2.hookup.com +0.0.0.0 metric.10best.com +0.0.0.0 metric.infoworld.com +0.0.0.0 metric.nationalgeographic.com +0.0.0.0 metric.nwsource.com +0.0.0.0 metric.olivegarden.com +0.0.0.0 metric.starz.com +0.0.0.0 metric.thenation.com +0.0.0.0 metrics.accuweather.com +0.0.0.0 metrics.al.com +0.0.0.0 metrics.att.com +0.0.0.0 metrics.boston.com +0.0.0.0 metrics.cbc.ca +0.0.0.0 metrics.cleveland.com +0.0.0.0 metrics.cnn.com +0.0.0.0 metrics.csmonitor.com +0.0.0.0 metrics.ctv.ca +0.0.0.0 metrics.dallasnews.com +0.0.0.0 metrics.elle.com +0.0.0.0 metrics.experts-exchange.com +0.0.0.0 metrics.fandome.com +0.0.0.0 metrics.foxnews.com +0.0.0.0 metrics.gap.com +0.0.0.0 metrics.health.com +0.0.0.0 metrics.hrblock.com +0.0.0.0 metrics.ioffer.com +0.0.0.0 metrics.ireport.com +0.0.0.0 metrics.kgw.com +0.0.0.0 metrics.ksl.com +0.0.0.0 metrics.ktvb.com +0.0.0.0 metrics.landolakes.com +0.0.0.0 metrics.lhj.com +0.0.0.0 metrics.maxim.com +0.0.0.0 metrics.mlive.com +0.0.0.0 metrics.mms.mavenapps.net +0.0.0.0 metrics.mpora.com +0.0.0.0 metrics.mysanantonio.com +0.0.0.0 metrics.nba.com +0.0.0.0 metrics.nextgov.com +0.0.0.0 metrics.nfl.com +0.0.0.0 metrics.npr.org +0.0.0.0 metrics.oclc.org +0.0.0.0 metrics.olivegarden.com +0.0.0.0 metrics.oregonlive.com +0.0.0.0 metrics.parallels.com +0.0.0.0 metrics.performancing.com +0.0.0.0 metrics.philly.com +0.0.0.0 metrics.post-gazette.com +0.0.0.0 metrics.premiere.com +0.0.0.0 metrics.rottentomatoes.com +0.0.0.0 metrics.sephora.com +0.0.0.0 metrics.soundandvision.com +0.0.0.0 metrics.soundandvisionmag.com +0.0.0.0 metrics.sun.com +0.0.0.0 metrics.technologyreview.com +0.0.0.0 metrics.theatlantic.com +0.0.0.0 metrics.thedailybeast.com +0.0.0.0 metrics.thefa.com +0.0.0.0 metrics.thefrisky.com +0.0.0.0 metrics.thenation.com +0.0.0.0 metrics.theweathernetwork.com +0.0.0.0 metrics.tmz.com +0.0.0.0 metrics.toyota.com +0.0.0.0 metrics.tulsaworld.com +0.0.0.0 metrics.washingtonpost.com +0.0.0.0 metrics.whitepages.com +0.0.0.0 metrics.womansday.com +0.0.0.0 metrics.yellowpages.com +0.0.0.0 metrics.yousendit.com +0.0.0.0 metrics2.pricegrabber.com +0.0.0.0 mktg.actonsoftware.com +0.0.0.0 mng1.clickalyzer.com +0.0.0.0 monster.gostats.com +0.0.0.0 mpsnare.iesnare.co.uk +0.0.0.0 mpsnare.iesnare.com +0.0.0.0 msn1.com +0.0.0.0 msnm.com +0.0.0.0 mt122.mtree.com +0.0.0.0 mtcount.channeladvisor.com +0.0.0.0 mtrcs.popcap.com +0.0.0.0 mtv.247realmedia.com +0.0.0.0 multi1.rmuk.co.uk +0.0.0.0 mvs.mediavantage.de +0.0.0.0 mvtracker.com +0.0.0.0 mx.iesnare.com +0.0.0.0 mx.iovation.com +0.0.0.0 mystats.com +0.0.0.0 nedstat.s0.nl +0.0.0.0 nethit-free.nl +0.0.0.0 network.leadpub.com +0.0.0.0 nextgenstats.com +0.0.0.0 nl.nedstatbasic.net +0.0.0.0 o.addthis.com +0.0.0.0 objects.tremormedia.com +0.0.0.0 okcounter.com +0.0.0.0 omniture.theglobeandmail.com +0.0.0.0 omtrdc.net +0.0.0.0 one.123counters.com +0.0.0.0 oss-crules.marketscore.com +0.0.0.0 oss-survey.marketscore.com +0.0.0.0 ostats.mozilla.com +0.0.0.0 ourtoolbar.com +0.0.0.0 out.true-counter.com +0.0.0.0 p.addthis.com +0.0.0.0 p.iovation.com +0.0.0.0 p.reuters.com +0.0.0.0 p.twitter.com +0.0.0.0 partner.alerts.aol.com +0.0.0.0 partners.pantheranetwork.com +0.0.0.0 passpport.com +0.0.0.0 paxito.sitetracker.com +0.0.0.0 pei-ads.thesmokingjacket.com +0.0.0.0 perso.estat.com +0.0.0.0 pf.tradedoubler.com +0.0.0.0 photobox-tracking.adalyser.com +0.0.0.0 pings.blip.tv +0.0.0.0 pix02.revsci.net +0.0.0.0 pix03.revsci.net +0.0.0.0 pix04.revsci.net +0.0.0.0 pixel-geo.prfct.co +0.0.0.0 pixel.invitemedia.com +0.0.0.0 pixel.tapad.com +0.0.0.0 pmg.ad-logics.com +0.0.0.0 pn2.adserver.yahoo.com +0.0.0.0 pointclicktrack.com +0.0.0.0 pong.qubitproducts.com +0.0.0.0 postclick.adcentriconline.com +0.0.0.0 postgazettecollect.247realmedia.com +0.0.0.0 printmail.biz +0.0.0.0 prof.estat.com +0.0.0.0 proxy.ia2.marketscore.com +0.0.0.0 proxy.ia3.marketscore.com +0.0.0.0 proxy.ia4.marketscore.com +0.0.0.0 proxy.or3.marketscore.com +0.0.0.0 proxy.or4.marketscore.com +0.0.0.0 proxy.sj3.marketscore.com +0.0.0.0 proxy.sj4.marketscore.com +0.0.0.0 proxycfg.marketscore.com +0.0.0.0 quareclk.com +0.0.0.0 r.clickdensity.com +0.0.0.0 raw.oggifinogi.com +0.0.0.0 remotrk.com +0.0.0.0 rightmedia.net +0.0.0.0 rm-admin-demo.iovation.com +0.0.0.0 roskatrack.roskadirect.com +0.0.0.0 rotator.trafficstars.com +0.0.0.0 rr1.xxxcounter.com +0.0.0.0 rr2.xxxcounter.com +0.0.0.0 rr3.xxxcounter.com +0.0.0.0 rr4.xxxcounter.com +0.0.0.0 rr5.xxxcounter.com +0.0.0.0 rr7.xxxcounter.com +0.0.0.0 rts.pgmediaserve.com +0.0.0.0 rts.phn.doublepimp.com +0.0.0.0 s.clickability.com +0.0.0.0 s.statistici.ro +0.0.0.0 s.stats.wordpress.com +0.0.0.0 s.youtube.com +0.0.0.0 s1-tracking.adalyser.com +0.0.0.0 s1.shinystat.it +0.0.0.0 s1.thecounter.com +0.0.0.0 s10.histats.com +0.0.0.0 s10.sitemeter.com +0.0.0.0 s11.sitemeter.com +0.0.0.0 s12.sitemeter.com +0.0.0.0 s13.sitemeter.com +0.0.0.0 s14.sitemeter.com +0.0.0.0 s15.sitemeter.com +0.0.0.0 s16.sitemeter.com +0.0.0.0 s17.sitemeter.com +0.0.0.0 s18.sitemeter.com +0.0.0.0 s19.sitemeter.com +0.0.0.0 s2.statcounter.com +0.0.0.0 s2.youtube.com +0.0.0.0 s20.sitemeter.com +0.0.0.0 s21.sitemeter.com +0.0.0.0 s22.sitemeter.com +0.0.0.0 s23.sitemeter.com +0.0.0.0 s24.sitemeter.com +0.0.0.0 s25.sitemeter.com +0.0.0.0 s26.sitemeter.com +0.0.0.0 s27.sitemeter.com +0.0.0.0 s28.sitemeter.com +0.0.0.0 s29.sitemeter.com +0.0.0.0 s290.mxcdn.net +0.0.0.0 s3.hit.stat.pl +0.0.0.0 s30.sitemeter.com +0.0.0.0 s31.sitemeter.com +0.0.0.0 s32.sitemeter.com +0.0.0.0 s33.sitemeter.com +0.0.0.0 s34.sitemeter.com +0.0.0.0 s35.sitemeter.com +0.0.0.0 s36.sitemeter.com +0.0.0.0 s37.sitemeter.com +0.0.0.0 s38.sitemeter.com +0.0.0.0 s39.sitemeter.com +0.0.0.0 s4.histats.com +0.0.0.0 s4.shinystat.com +0.0.0.0 s41.sitemeter.com +0.0.0.0 s42.sitemeter.com +0.0.0.0 s43.sitemeter.com +0.0.0.0 s44.sitemeter.com +0.0.0.0 s45.sitemeter.com +0.0.0.0 s46.sitemeter.com +0.0.0.0 s47.sitemeter.com +0.0.0.0 s48.sitemeter.com +0.0.0.0 sa.jumptap.com +0.0.0.0 sact.atdmt.com +0.0.0.0 scribe.twitter.com +0.0.0.0 scrooge.channelcincinnati.com +0.0.0.0 scrooge.channeloklahoma.com +0.0.0.0 scrooge.click10.com +0.0.0.0 scrooge.clickondetroit.com +0.0.0.0 scrooge.nbc11.com +0.0.0.0 scrooge.nbc4.com +0.0.0.0 scrooge.nbc4columbus.com +0.0.0.0 scrooge.nbcsandiego.com +0.0.0.0 scrooge.newsnet5.com +0.0.0.0 scrooge.thebostonchannel.com +0.0.0.0 scrooge.thedenverchannel.com +0.0.0.0 scrooge.theindychannel.com +0.0.0.0 scrooge.thekansascitychannel.com +0.0.0.0 scrooge.themilwaukeechannel.com +0.0.0.0 scrooge.theomahachannel.com +0.0.0.0 scrooge.wesh.com +0.0.0.0 scrooge.wftv.com +0.0.0.0 scrooge.wnbc.com +0.0.0.0 scrooge.wsoctv.com +0.0.0.0 scrooge.wtov9.com +0.0.0.0 sdc.rbistats.com +0.0.0.0 sdogiu.bestamazontips.com +0.0.0.0 se.sitestat.com +0.0.0.0 searchadv.com +0.0.0.0 sekel.ch +0.0.0.0 servedby.valuead.com +0.0.0.0 server1.opentracker.net +0.0.0.0 server10.opentracker.net +0.0.0.0 server11.opentracker.net +0.0.0.0 server12.opentracker.net +0.0.0.0 server13.opentracker.net +0.0.0.0 server14.opentracker.net +0.0.0.0 server15.opentracker.net +0.0.0.0 server16.opentracker.net +0.0.0.0 server17.opentracker.net +0.0.0.0 server18.opentracker.net +0.0.0.0 server2.opentracker.net +0.0.0.0 server3.opentracker.net +0.0.0.0 server3.web-stat.com +0.0.0.0 server4.opentracker.net +0.0.0.0 server5.opentracker.net +0.0.0.0 server6.opentracker.net +0.0.0.0 server7.opentracker.net +0.0.0.0 server8.opentracker.net +0.0.0.0 server9.opentracker.net +0.0.0.0 service.bfast.com +0.0.0.0 service.maxymiser.net +0.0.0.0 seznam.hit.gemius.pl +0.0.0.0 showads.pubmatic.com +0.0.0.0 showcount.honest.com +0.0.0.0 sideshow.directtrack.com +0.0.0.0 sitestats.tiscali.co.uk +0.0.0.0 sm1.sitemeter.com +0.0.0.0 sm2.sitemeter.com +0.0.0.0 sm3.sitemeter.com +0.0.0.0 sm4.sitemeter.com +0.0.0.0 sm45mailtrack.com +0.0.0.0 sm5.sitemeter.com +0.0.0.0 sm6.sitemeter.com +0.0.0.0 sm7.sitemeter.com +0.0.0.0 sm8.sitemeter.com +0.0.0.0 sm9.sitemeter.com +0.0.0.0 smartstats.com +0.0.0.0 smetrics.att.com +0.0.0.0 snare.iesnare.com +0.0.0.0 soap.iovation.com +0.0.0.0 socialize.eu1.gigya.com +0.0.0.0 softcore.xxxcounter.com +0.0.0.0 softonic.com +0.0.0.0 softonic.it +0.0.0.0 sostats.mozilla.com +0.0.0.0 sovereign.sitetracker.com +0.0.0.0 spinbox.maccentral.com +0.0.0.0 spklds.com +0.0.0.0 ss.tiscali.com +0.0.0.0 ss.tiscali.it +0.0.0.0 st.sageanalyst.net +0.0.0.0 st1.hit.gemius.pl +0.0.0.0 stags.peer39.net +0.0.0.0 stast2.gq.com +0.0.0.0 stat-counter.tass-online.ru +0.0.0.0 stat.4u.pl +0.0.0.0 stat.alibaba.com +0.0.0.0 stat.discogs.com +0.0.0.0 stat.netmonitor.fi +0.0.0.0 stat.onestat.com +0.0.0.0 stat.www.fi +0.0.0.0 stat.yellowtracker.com +0.0.0.0 stat.youku.com +0.0.0.0 stat1.z-stat.com +0.0.0.0 stat3.cybermonitor.com +0.0.0.0 static.kibboko.com +0.0.0.0 static.smni.com +0.0.0.0 statik.topica.com +0.0.0.0 statique.secureguards.eu +0.0.0.0 statistics.dynamicsitestats.com +0.0.0.0 statistics.elsevier.nl +0.0.0.0 statistics.reedbusiness.nl +0.0.0.0 statistics.theonion.com +0.0.0.0 stats.24ways.org +0.0.0.0 stats.absol.co.za +0.0.0.0 stats.adbrite.com +0.0.0.0 stats.adotube.com +0.0.0.0 stats.adultswim.com +0.0.0.0 stats.airfarewatchdog.com +0.0.0.0 stats.allliquid.com +0.0.0.0 stats.askmen.com +0.0.0.0 stats.bbc.co.uk +0.0.0.0 stats.becu.org +0.0.0.0 stats.big-boards.com +0.0.0.0 stats.blogoscoop.net +0.0.0.0 stats.bonzaii.no +0.0.0.0 stats.break.com +0.0.0.0 stats.brides.com +0.0.0.0 stats.buysellads.com +0.0.0.0 stats.cafepress.com +0.0.0.0 stats.canalblog.com +0.0.0.0 stats.cartoonnetwork.com +0.0.0.0 stats.clickability.com +0.0.0.0 stats.concierge.com +0.0.0.0 stats.darkbluesea.com +0.0.0.0 stats.datahjaelp.net +0.0.0.0 stats.dziennik.pl +0.0.0.0 stats.economist.com +0.0.0.0 stats.epicurious.com +0.0.0.0 stats.examiner.com +0.0.0.0 stats.f-secure.com +0.0.0.0 stats.fairmont.com +0.0.0.0 stats.fastcompany.com +0.0.0.0 stats.foxcounter.com +0.0.0.0 stats.free-rein.net +0.0.0.0 stats.ft.com +0.0.0.0 stats.gamestop.com +0.0.0.0 stats.globesports.com +0.0.0.0 stats.groupninetyfour.com +0.0.0.0 stats.idsoft.com +0.0.0.0 stats.ign.com +0.0.0.0 stats.ilsemedia.nl +0.0.0.0 stats.independent.co.uk +0.0.0.0 stats.indexstats.com +0.0.0.0 stats.indextools.com +0.0.0.0 stats.investors.com +0.0.0.0 stats.iwebtrack.com +0.0.0.0 stats.jippii.com +0.0.0.0 stats.klsoft.com +0.0.0.0 stats.ladotstats.nl +0.0.0.0 stats.macworld.com +0.0.0.0 stats.magnify.net +0.0.0.0 stats.manticoretechnology.com +0.0.0.0 stats.millanusa.com +0.0.0.0 stats.nowpublic.com +0.0.0.0 stats.paycounter.com +0.0.0.0 stats.platinumbucks.com +0.0.0.0 stats.popscreen.com +0.0.0.0 stats.reinvigorate.net +0.0.0.0 stats.resellerratings.com +0.0.0.0 stats.revenue.net +0.0.0.0 stats.searchles.com +0.0.0.0 stats.space-es.com +0.0.0.0 stats.sponsorafuture.org.uk +0.0.0.0 stats.srvasnet.info +0.0.0.0 stats.ssa.gov +0.0.0.0 stats.street-jeni.us +0.0.0.0 stats.styletechnology.me +0.0.0.0 stats.superstats.com +0.0.0.0 stats.telegraph.co.uk +0.0.0.0 stats.thoughtcatalog.com +0.0.0.0 stats.ultimate-webservices.com +0.0.0.0 stats.unionleader.com +0.0.0.0 stats.video.search.yahoo.com +0.0.0.0 stats.vodpod.com +0.0.0.0 stats.www.ibm.com +0.0.0.0 stats.yourminis.com +0.0.0.0 stats1.clicktracks.com +0.0.0.0 stats1.corusradio.com +0.0.0.0 stats1.in +0.0.0.0 stats2.clicktracks.com +0.0.0.0 stats2.gourmet.com +0.0.0.0 stats2.newyorker.com +0.0.0.0 stats2.rte.ie +0.0.0.0 stats2.unrulymedia.com +0.0.0.0 stats2.vanityfair.com +0.0.0.0 stats5.lightningcast.com +0.0.0.0 stats6.lightningcast.net +0.0.0.0 statse.webtrendslive.com +0.0.0.0 stl.p.a1.traceworks.com +0.0.0.0 straighttangerine.cz.cc +0.0.0.0 systweak.com +0.0.0.0 t.senaldos.com +0.0.0.0 t.senaluno.com +0.0.0.0 t.signaletre.com +0.0.0.0 t.signauxdeux.com +0.0.0.0 t.yesware.com +0.0.0.0 tagging.outrider.com +0.0.0.0 tags.bkrtx.com +0.0.0.0 talkcity.realtracker.com +0.0.0.0 tates.freestats.com +0.0.0.0 tcookie.usatoday.com +0.0.0.0 tcr.tynt.com +0.0.0.0 test.iovation.com +0.0.0.0 testgw.iovation.com +0.0.0.0 tgpcounter.freethumbnailgalleries.com +0.0.0.0 the-counter.net +0.0.0.0 the.sextracker.com +0.0.0.0 themecounter.com +0.0.0.0 tipsurf.com +0.0.0.0 toolbarpartner.com +0.0.0.0 tools.spylog.ru +0.0.0.0 topstats.net +0.0.0.0 torstarcollect.247realmedia.com +0.0.0.0 tour.sweetdiscreet.com +0.0.0.0 tour.xxxblackbook.com +0.0.0.0 tr.adinterax.com +0.0.0.0 track.941tracking.com +0.0.0.0 track.adform.com +0.0.0.0 track.adrevolver.com +0.0.0.0 track.anideaevolves.com +0.0.0.0 track.bannerbridge.net +0.0.0.0 track.businesstrenders.com +0.0.0.0 track.businessunionorg.com +0.0.0.0 track.clearsender.com +0.0.0.0 track.clickcabintracker.com +0.0.0.0 track.clicksure.com +0.0.0.0 track.construclique.com +0.0.0.0 track.did-it.com +0.0.0.0 track.digitcked.com +0.0.0.0 track.digluen.com +0.0.0.0 track.digning.com +0.0.0.0 track.diguati.com +0.0.0.0 track.directleads.com +0.0.0.0 track.domainsponsor.com +0.0.0.0 track.dotsly.com +0.0.0.0 track.effiliation.com +0.0.0.0 track.eg-innovations.net +0.0.0.0 track.emailsvc.net +0.0.0.0 track.enviodemails.com +0.0.0.0 track.exclusivecpa.com +0.0.0.0 track.ft.com +0.0.0.0 track.greatofferstoyou.net +0.0.0.0 track.grmtracking.com +0.0.0.0 track.homestead.com +0.0.0.0 track.hotdrugsstore.in +0.0.0.0 track.india-marketing.in +0.0.0.0 track.iwfueh.us +0.0.0.0 track.justdoing.biz +0.0.0.0 track.kscentraltrack.us +0.0.0.0 track.lawoftrade.com +0.0.0.0 track.learntotradesrv.com +0.0.0.0 track.lfstmedia.com +0.0.0.0 track.linkmails.net +0.0.0.0 track.lmsadvlc.ru +0.0.0.0 track.mailvalue.net +0.0.0.0 track.marketingontarget.net +0.0.0.0 track.marketsvc.net +0.0.0.0 track.mdirector.com +0.0.0.0 track.mdrctr.com +0.0.0.0 track.mia-base.com +0.0.0.0 track.mindfieldresources.com +0.0.0.0 track.msadcenter.afgz.com +0.0.0.0 track.msadcenter.ajfy.com +0.0.0.0 track.msadcenter.ama.com +0.0.0.0 track.msadcenter.bfy.com +0.0.0.0 track.msadcenter.bvp.com +0.0.0.0 track.msadcenter.cdn.com +0.0.0.0 track.msadcenter.ceio.com +0.0.0.0 track.msadcenter.chpn.com +0.0.0.0 track.msadcenter.cxtv.com +0.0.0.0 track.msadcenter.dgt.com +0.0.0.0 track.msadcenter.dtx.com +0.0.0.0 track.msadcenter.dxr.com +0.0.0.0 track.msadcenter.ebg.com +0.0.0.0 track.msadcenter.emee.com +0.0.0.0 track.msadcenter.eqq.com +0.0.0.0 track.msadcenter.etvz.com +0.0.0.0 track.msadcenter.fal.com +0.0.0.0 track.msadcenter.fcuk.com +0.0.0.0 track.msadcenter.fmi.com +0.0.0.0 track.msadcenter.fvpl.com +0.0.0.0 track.msadcenter.gdb.com +0.0.0.0 track.msadcenter.gmiy.com +0.0.0.0 track.msadcenter.hex.com +0.0.0.0 track.msadcenter.hih.com +0.0.0.0 track.msadcenter.hlh.com +0.0.0.0 track.msadcenter.hnsl.com +0.0.0.0 track.msadcenter.igzr.com +0.0.0.0 track.msadcenter.imc.com +0.0.0.0 track.msadcenter.iuf.com +0.0.0.0 track.msadcenter.iuh.com +0.0.0.0 track.msadcenter.izy.com +0.0.0.0 track.msadcenter.jzz.com +0.0.0.0 track.msadcenter.kfgy.com +0.0.0.0 track.msadcenter.kfz.com +0.0.0.0 track.msadcenter.khrg.com +0.0.0.0 track.msadcenter.kkal.com +0.0.0.0 track.msadcenter.kpuo.com +0.0.0.0 track.msadcenter.krt.com +0.0.0.0 track.msadcenter.llu.com +0.0.0.0 track.msadcenter.lngl.com +0.0.0.0 track.msadcenter.lrgo.com +0.0.0.0 track.msadcenter.ltp.com +0.0.0.0 track.msadcenter.lyv.com +0.0.0.0 track.msadcenter.lzwp.com +0.0.0.0 track.msadcenter.mazp.com +0.0.0.0 track.msadcenter.mjze.com +0.0.0.0 track.msadcenter.mkqa.com +0.0.0.0 track.msadcenter.moas.com +0.0.0.0 track.msadcenter.msw.com +0.0.0.0 track.msadcenter.mur.com +0.0.0.0 track.msadcenter.nge.com +0.0.0.0 track.msadcenter.nho.com +0.0.0.0 track.msadcenter.nlke.com +0.0.0.0 track.msadcenter.nyfg.com +0.0.0.0 track.msadcenter.oah.com +0.0.0.0 track.msadcenter.pcp.com +0.0.0.0 track.msadcenter.pka.com +0.0.0.0 track.msadcenter.psof.com +0.0.0.0 track.msadcenter.pszn.com +0.0.0.0 track.msadcenter.pwpn.com +0.0.0.0 track.msadcenter.qpz.com +0.0.0.0 track.msadcenter.qru.com +0.0.0.0 track.msadcenter.qsvv.com +0.0.0.0 track.msadcenter.qymv.com +0.0.0.0 track.msadcenter.rfjq.com +0.0.0.0 track.msadcenter.ruum.com +0.0.0.0 track.msadcenter.sax.com +0.0.0.0 track.msadcenter.scz.com +0.0.0.0 track.msadcenter.sfq.com +0.0.0.0 track.msadcenter.sgq.com +0.0.0.0 track.msadcenter.shy.com +0.0.0.0 track.msadcenter.szc.com +0.0.0.0 track.msadcenter.tirj.com +0.0.0.0 track.msadcenter.tnuw.com +0.0.0.0 track.msadcenter.toj.com +0.0.0.0 track.msadcenter.trg.com +0.0.0.0 track.msadcenter.tux.com +0.0.0.0 track.msadcenter.usm.com +0.0.0.0 track.msadcenter.usx.com +0.0.0.0 track.msadcenter.vava.com +0.0.0.0 track.msadcenter.vbd.com +0.0.0.0 track.msadcenter.vbug.com +0.0.0.0 track.msadcenter.vcf.com +0.0.0.0 track.msadcenter.vrhe.com +0.0.0.0 track.msadcenter.vyp.com +0.0.0.0 track.msadcenter.wdm.com +0.0.0.0 track.msadcenter.wfm.com +0.0.0.0 track.msadcenter.wmd.com +0.0.0.0 track.msadcenter.won.com +0.0.0.0 track.msadcenter.wup.com +0.0.0.0 track.msadcenter.xda.com +0.0.0.0 track.msadcenter.xpp.com +0.0.0.0 track.msadcenter.xxx.com +0.0.0.0 track.msadcenter.xzh.com +0.0.0.0 track.msadcenter.xzwy.com +0.0.0.0 track.msadcenter.yaz.com +0.0.0.0 track.msadcenter.ybi.com +0.0.0.0 track.msadcenter.ytbp.com +0.0.0.0 track.msadcenter.zepw.com +0.0.0.0 track.msadcenter.zhv.com +0.0.0.0 track.msadcenter.zlx.com +0.0.0.0 track.msadcenter.zmmr.com +0.0.0.0 track.msadcenter.zul.com +0.0.0.0 track.msadcenter.zun.com +0.0.0.0 track.msadcenter.zvjw.com +0.0.0.0 track.msadcenter.zzv.com +0.0.0.0 track.mybloglog.com +0.0.0.0 track.nifty.com +0.0.0.0 track.offermarket.net +0.0.0.0 track.omg2.com +0.0.0.0 track.optinstar.com +0.0.0.0 track.pplnk.com +0.0.0.0 track.ppmdating.com +0.0.0.0 track.promosvc.com +0.0.0.0 track.promovalue.us +0.0.0.0 track.publeadmedia.com +0.0.0.0 track.real2come.com +0.0.0.0 track.rediff.com +0.0.0.0 track.resala1.com +0.0.0.0 track.roiservice.com +0.0.0.0 track.searchignite.com +0.0.0.0 track.specialdailydeals4u.com +0.0.0.0 track.statesend.co.in +0.0.0.0 track.stromfeldshippingcenters.com +0.0.0.0 track.svcoffer.com +0.0.0.0 track.theprovision.net +0.0.0.0 track.theviralconcept.com +0.0.0.0 track.topromotion.net +0.0.0.0 track.upaknee.com +0.0.0.0 track.vivid.com +0.0.0.0 track.webgains.com +0.0.0.0 track.webprodeals.cf +0.0.0.0 track.xapads.com +0.0.0.0 track.yourmedicalpurchase.ru +0.0.0.0 track.zapromotions.com +0.0.0.0 track.zipalerts.com +0.0.0.0 track.ziprecruiter.com +0.0.0.0 track.zulumarketing.com +0.0.0.0 track1.offers2004.com +0.0.0.0 track12.offersbymail.com +0.0.0.0 track2.mybloglog.com +0.0.0.0 track2.ultimateinternetoffers.com +0.0.0.0 track3.your-picks.com +0.0.0.0 tracka.businessleadbuilder.com +0.0.0.0 tracker.blueprintinteractivetest.com +0.0.0.0 tracker.bonnint.net +0.0.0.0 tracker.cl1.fidelizador.com +0.0.0.0 tracker.clicktrade.com +0.0.0.0 tracker.consumerpackage.net +0.0.0.0 tracker.coopt.com +0.0.0.0 tracker.eton-events.com +0.0.0.0 tracker.hitmatic.com +0.0.0.0 tracker.idg.co.uk +0.0.0.0 tracker.mailvalue.net +0.0.0.0 tracker.marketsvc.net +0.0.0.0 tracker.mattel.com +0.0.0.0 tracker.netklix.com +0.0.0.0 tracker.offermarket.net +0.0.0.0 tracker.onapps.org +0.0.0.0 tracker.promosvc.com +0.0.0.0 tracker.promovalue.us +0.0.0.0 tracker.svcoffer.com +0.0.0.0 tracker.tradedoubler.com +0.0.0.0 tracker1.leadiya.com +0.0.0.0 tracking.10e20.com +0.0.0.0 tracking.3com.com +0.0.0.0 tracking.45-fe6b6-aah.co.uk +0.0.0.0 tracking.adalyser.com +0.0.0.0 tracking.adctrack.com +0.0.0.0 tracking.adgoon.it +0.0.0.0 tracking.adjug.com +0.0.0.0 tracking.allposters.com +0.0.0.0 tracking.ariong.us +0.0.0.0 tracking.arxibs01.com +0.0.0.0 tracking.baddoggiemediagroup.com +0.0.0.0 tracking.carprices.com +0.0.0.0 tracking.crossovertech.asia +0.0.0.0 tracking.drsfostersmith.com +0.0.0.0 tracking.eforceworld.com +0.0.0.0 tracking.engagedigitalmedia.com +0.0.0.0 tracking.experience.com +0.0.0.0 tracking.fanbridge.com +0.0.0.0 tracking.fitprosperity.net +0.0.0.0 tracking.foxnews.com +0.0.0.0 tracking.ibexnetwork.com +0.0.0.0 tracking.ilinkmd.com +0.0.0.0 tracking.imagewebdesign.fr +0.0.0.0 tracking.iol.co.za +0.0.0.0 tracking.ipermission.net +0.0.0.0 tracking.ipermit.net +0.0.0.0 tracking.jef74.com +0.0.0.0 tracking.lay-ota.fr +0.0.0.0 tracking.layo-ta.fr +0.0.0.0 tracking.lifescript.com +0.0.0.0 tracking.mailtracker.in +0.0.0.0 tracking.marketviaemail.net +0.0.0.0 tracking.motleyfool.com +0.0.0.0 tracking.msadcenter.msn.com +0.0.0.0 tracking.myunidays.com +0.0.0.0 tracking.nesox.com +0.0.0.0 tracking.oceantidemedia.com +0.0.0.0 tracking.oerug.com +0.0.0.0 tracking.oggifinogi.com +0.0.0.0 tracking.paymentfindermail.net +0.0.0.0 tracking.pennystockpicks.net +0.0.0.0 tracking.percentmobile.com +0.0.0.0 tracking.perfectwaterpurifier.net +0.0.0.0 tracking.prm20cloud.com +0.0.0.0 tracking.publicidees.com +0.0.0.0 tracking.quisma.com +0.0.0.0 tracking.rangeonlinemedia.com +0.0.0.0 tracking.salkmarketing.com +0.0.0.0 tracking.searchmarketing.com +0.0.0.0 tracking.stampready.net +0.0.0.0 tracking.summitmedia.co.uk +0.0.0.0 tracking.trafficjunky.net +0.0.0.0 tracking.trutv.com +0.0.0.0 tracking.vindicosuite.com +0.0.0.0 trackit.vicotech.com +0.0.0.0 trackmail3345.com +0.0.0.0 tradedoubler.sonvideopro.com +0.0.0.0 traffic-stats.streamsolutions.co.uk +0.0.0.0 trafficopen.com +0.0.0.0 trax.gamespot.com +0.0.0.0 trc.taboolasyndication.com +0.0.0.0 trk.kissmetrics.com +0.0.0.0 trk.tidaltv.com +0.0.0.0 true-counter.com +0.0.0.0 tu.connect.wunderloop.net +0.0.0.0 tynt.com +0.0.0.0 u1817.16.spylog.com +0.0.0.0 u3102.47.spylog.com +0.0.0.0 u3305.71.spylog.com +0.0.0.0 u3608.20.spylog.com +0.0.0.0 u4056.56.spylog.com +0.0.0.0 u432.77.spylog.com +0.0.0.0 u4396.79.spylog.com +0.0.0.0 u4443.84.spylog.com +0.0.0.0 u4556.11.spylog.com +0.0.0.0 u5234.87.spylog.com +0.0.0.0 u5234.98.spylog.com +0.0.0.0 u5687.48.spylog.com +0.0.0.0 u574.07.spylog.com +0.0.0.0 u604.41.spylog.com +0.0.0.0 u6762.46.spylog.com +0.0.0.0 u6905.71.spylog.com +0.0.0.0 u7748.16.spylog.com +0.0.0.0 u810.15.spylog.com +0.0.0.0 u920.31.spylog.com +0.0.0.0 u977.40.spylog.com +0.0.0.0 udc.msn.com +0.0.0.0 uip.semasio.net +0.0.0.0 uk.cqcounter.com +0.0.0.0 uk.sitestat.com +0.0.0.0 ultimatecounter.com +0.0.0.0 us.2.cqcounter.com +0.0.0.0 us.cqcounter.com +0.0.0.0 usa.nedstat.net +0.0.0.0 v1.nedstatbasic.net +0.0.0.0 v7.stats.load.com +0.0.0.0 valueclick.net +0.0.0.0 vertical-stats.huffpost.com +0.0.0.0 vip.clickzs.com +0.0.0.0 virtualbartendertrack.beer.com +0.0.0.0 vis.sexlist.com +0.0.0.0 visit.theglobeandmail.com +0.0.0.0 voken.eyereturn.com +0.0.0.0 vs.dmtracker.com +0.0.0.0 vsii.spinbox.net +0.0.0.0 vsii.spindox.net +0.0.0.0 w1.tcr112.tynt.com +0.0.0.0 warlog.info +0.0.0.0 warning-message.com +0.0.0.0 wau.tynt.com +0.0.0.0 web-counter.5u.com +0.0.0.0 web1.realtracker.com +0.0.0.0 web2.realtracker.com +0.0.0.0 web3.realtracker.com +0.0.0.0 web4.realtracker.com +0.0.0.0 webanalytics.globalthoughtz.com +0.0.0.0 webbug.seatreport.com +0.0.0.0 webcounter.com +0.0.0.0 webcounter.together.net +0.0.0.0 webhit.aftenposten.no +0.0.0.0 webhit.afterposten.no +0.0.0.0 webmasterkai.sitetracker.com +0.0.0.0 webpdp.gator.com +0.0.0.0 webtrends.telenet.be +0.0.0.0 webtrends.thisis.co.uk +0.0.0.0 webtrends.townhall.com +0.0.0.0 whentheyopened.com +0.0.0.0 windows-tech-help.com +0.0.0.0 wtnj.worldnow.com +0.0.0.0 www.0stats.com +0.0.0.0 www.123count.com +0.0.0.0 www.123counter.superstats.com +0.0.0.0 www.123stat.com +0.0.0.0 www.1quickclickrx.com +0.0.0.0 www.2001-007.com +0.0.0.0 www.3dstats.com +0.0.0.0 www.adalyser.com +0.0.0.0 www.addfreecounter.com +0.0.0.0 www.addfreestats.com +0.0.0.0 www.addtoany.com +0.0.0.0 www.ademails.com +0.0.0.0 www.admin.iesnare.co.uk +0.0.0.0 www.admin.iesnare.com +0.0.0.0 www.affiliatesuccess.net +0.0.0.0 www.bar.ry2002.02-ry014.snpr.hotmx.hair.zaam.net +0.0.0.0 www.belstat.nl +0.0.0.0 www.betcounter.com +0.0.0.0 www.bigbadted.com +0.0.0.0 www.bluestreak.com +0.0.0.0 www.c.thecounter.de +0.0.0.0 www.c1.thecounter.de +0.0.0.0 www.c2.thecounter.de +0.0.0.0 www.ci-mpsnare.iesnare.co.uk +0.0.0.0 www.ci-mpsnare.iesnare.com +0.0.0.0 www.clickclick.com +0.0.0.0 www.clickspring.net +0.0.0.0 www.clixgalore.com +0.0.0.0 www.connectionlead.com +0.0.0.0 www.counter.bloke.com +0.0.0.0 www.counter.sexhound.nl +0.0.0.0 www.counter.superstats.com +0.0.0.0 www.counter1.sextracker.be +0.0.0.0 www.counter10.sextracker.be +0.0.0.0 www.counter11.sextracker.be +0.0.0.0 www.counter12.sextracker.be +0.0.0.0 www.counter13.sextracker.be +0.0.0.0 www.counter14.sextracker.be +0.0.0.0 www.counter15.sextracker.be +0.0.0.0 www.counter16.sextracker.be +0.0.0.0 www.counter2.sextracker.be +0.0.0.0 www.counter3.sextracker.be +0.0.0.0 www.counter4.sextracker.be +0.0.0.0 www.counter4all.com +0.0.0.0 www.counter4all.de +0.0.0.0 www.counter5.sextracker.be +0.0.0.0 www.counter6.sextracker.be +0.0.0.0 www.counter7.sextracker.be +0.0.0.0 www.counter8.sextracker.be +0.0.0.0 www.counter9.sextracker.be +0.0.0.0 www.counterguide.com +0.0.0.0 www.cw.nu +0.0.0.0 www.directgrowthhormone.com +0.0.0.0 www.dpbolvw.net +0.0.0.0 www.dwclick.com +0.0.0.0 www.easycounter.com +0.0.0.0 www.emaildeals.biz +0.0.0.0 www.estats4all.com +0.0.0.0 www.fastcounter.linkexchange.nl +0.0.0.0 www.formalyzer.com +0.0.0.0 www.foxcounter.com +0.0.0.0 www.freestats.com +0.0.0.0 www.fxcounters.com +0.0.0.0 www.gator.com +0.0.0.0 www.googkle.com +0.0.0.0 www.hitstats.co.uk +0.0.0.0 www.iccee.com +0.0.0.0 www.iesnare.co.uk +0.0.0.0 www.iesnare.com +0.0.0.0 www.iovation.co.uk +0.0.0.0 www.iovation.com +0.0.0.0 www.jellycounter.com +0.0.0.0 www.kqzyfj.com +0.0.0.0 www.lansrv050.com +0.0.0.0 www.leadpub.com +0.0.0.0 www.linkcounter.com +0.0.0.0 www.marketscore.com +0.0.0.0 www.megacounter.de +0.0.0.0 www.metareward.com +0.0.0.0 www.mmstat.com +0.0.0.0 www.mpsnare.iesnare.co.uk +0.0.0.0 www.mpsnare.iesnare.com +0.0.0.0 www.naturalgrowthstore.biz +0.0.0.0 www.nedstat.com +0.0.0.0 www.nextgenstats.com +0.0.0.0 www.ntsearch.com +0.0.0.0 www.onestat.com +0.0.0.0 www.originalicons.com +0.0.0.0 www.paycounter.com +0.0.0.0 www.pointclicktrack.com +0.0.0.0 www.popuptrafic.com +0.0.0.0 www.precisioncounter.com +0.0.0.0 www.premiumsmail.net +0.0.0.0 www.printmail.biz +0.0.0.0 www.quantserve.com +0.0.0.0 www.quareclk.com +0.0.0.0 www.remotrk.com +0.0.0.0 www.rightmedia.net +0.0.0.0 www.rightstats.com +0.0.0.0 www.searchadv.com +0.0.0.0 www.sekel.ch +0.0.0.0 www.shockcounter.com +0.0.0.0 www.simplecounter.net +0.0.0.0 www.specificclick.com +0.0.0.0 www.specificpop.com +0.0.0.0 www.spklds.com +0.0.0.0 www.statcount.com +0.0.0.0 www.statcounter.com +0.0.0.0 www.statsession.com +0.0.0.0 www.stattrax.com +0.0.0.0 www.stiffnetwork.com +0.0.0.0 www.testracking.com +0.0.0.0 www.the-counter.net +0.0.0.0 www.thecounter.com +0.0.0.0 www.toolbarcounter.com +0.0.0.0 www.tradedoubler.com +0.0.0.0 www.tradedoubler.com.ar +0.0.0.0 www.trafficmagnet.net +0.0.0.0 www.trafic.ro +0.0.0.0 www.trendcounter.com +0.0.0.0 www.true-counter.com +0.0.0.0 www.tynt.com +0.0.0.0 www.ultimatecounter.com +0.0.0.0 www.v61.com +0.0.0.0 www.web-stat.com +0.0.0.0 www.webcounter.com +0.0.0.0 www.webstat.com +0.0.0.0 www.whereugetxxx.com +0.0.0.0 www.xxxcounter.com +0.0.0.0 www1.addfreestats.com +0.0.0.0 www1.counter.bloke.com +0.0.0.0 www1.tynt.com +0.0.0.0 www101.coolsavings.com +0.0.0.0 www2.addfreestats.com +0.0.0.0 www2.counter.bloke.com +0.0.0.0 www2.pagecount.com +0.0.0.0 www3.addfreestats.com +0.0.0.0 www3.click-fr.com +0.0.0.0 www3.counter.bloke.com +0.0.0.0 www4.addfreestats.com +0.0.0.0 www4.counter.bloke.com +0.0.0.0 www5.addfreestats.com +0.0.0.0 www5.counter.bloke.com +0.0.0.0 www6.addfreestats.com +0.0.0.0 www6.click-fr.com +0.0.0.0 www6.counter.bloke.com +0.0.0.0 www60.valueclick.com +0.0.0.0 www7.addfreestats.com +0.0.0.0 www7.counter.bloke.com +0.0.0.0 www8.addfreestats.com +0.0.0.0 www8.counter.bloke.com +0.0.0.0 www9.counter.bloke.com +0.0.0.0 x.cb.kount.com +0.0.0.0 xcnn.com +0.0.0.0 xyz.freelogs.com +0.0.0.0 zz.cqcounter.com +0.0.0.0 05tz2e9.com +0.0.0.0 09killspyware.com +0.0.0.0 11398.onceedge.ru +0.0.0.0 20-yrs-1.info +0.0.0.0 2006mindfreaklike.blogspot.com +0.0.0.0 59-106-20-39.r-bl100.sakura.ne.jp +0.0.0.0 662bd114b7c9.onceedge.ru +0.0.0.0 askbot.com +0.0.0.0 arrayshift.com +0.0.0.0 bonuscashh.com +0.0.0.0 iframecash.biz +0.0.0.0 osqa.com +0.0.0.0 question2answer.com +0.0.0.0 thebizmeet.com +0.0.0.0 a-scrip.org +0.0.0.0 a.kaytri.com +0.0.0.0 a.oix.com +0.0.0.0 a.oix.net +0.0.0.0 a.openinternetexchange.com +0.0.0.0 a.phormlabs.com +0.0.0.0 a.webwise.com +0.0.0.0 a.webwise.net +0.0.0.0 a.webwise.org +0.0.0.0 a15172379.alturo-server.de +0.0.0.0 aaukqiooaseseuke.org +0.0.0.0 abetterinternet.com +0.0.0.0 abruzzoinitaly.co.uk +0.0.0.0 acglgoa.com +0.0.0.0 acim.moqhixoz.cn +0.0.0.0 acnenomor.com +0.0.0.0 adshufffle.com +0.0.0.0 adwitty.com +0.0.0.0 adwords.google.lloymlincs.com +0.0.0.0 afantispy.com +0.0.0.0 afdbande.cn +0.0.0.0 ale-gratka.pl +0.0.0.0 alegratka.eu +0.0.0.0 allaskme.com +0.0.0.0 allhqpics.com +0.0.0.0 alltereg0.ru +0.0.0.0 alphabirdnetwork.com +0.0.0.0 ams1.ib.adnxs.com +0.0.0.0 android.bigresource.com +0.0.0.0 androiddev.orkitra.com +0.0.0.0 anouslab.cmail20.com +0.0.0.0 answerhub.com +0.0.0.0 antispywareexpert.com +0.0.0.0 antivirus-online-scan5.com +0.0.0.0 antivirus-scanner.com +0.0.0.0 antivirus-scanner8.com +0.0.0.0 apple-protection.info +0.0.0.0 apple.com------support.host +0.0.0.0 apple.com-onlinesupport.site +0.0.0.0 apple.com-safetyalert.com +0.0.0.0 apple.com-scan-virus-detected.com +0.0.0.0 apple.com-store.me +0.0.0.0 apple.com-supportcenter.website +0.0.0.0 apple.com.virus-mac.com +0.0.0.0 applestore.com-mobile.gift +0.0.0.0 armsart.com +0.0.0.0 articlefuns.cn +0.0.0.0 articleidea.cn +0.0.0.0 asianread.com +0.0.0.0 ask-coder.com +0.0.0.0 ask.webatall.com +0.0.0.0 askto.net +0.0.0.0 autohipnose.com +0.0.0.0 autoupdate.update4ever.xyz +0.0.0.0 b.oix.com +0.0.0.0 b.oix.net +0.0.0.0 b.webwise.com +0.0.0.0 b.webwise.net +0.0.0.0 b.webwise.org +0.0.0.0 beloysoff.ru +0.0.0.0 bgl1dr1-a-fixed.sancharnet.in +0.0.0.0 bgl1pp1-a-fixed.sancharnet.in +0.0.0.0 bhyuu.com +0.0.0.0 bighow.net +0.0.0.0 binsservicesonline.info +0.0.0.0 bir.snjack.info +0.0.0.0 bj02.cww.com +0.0.0.0 blackhat.be +0.0.0.0 blenz-me.net +0.0.0.0 bluescreenalert.com +0.0.0.0 bluescreenerrors.net +0.0.0.0 bnvxcfhdgf.blogspot.com.es +0.0.0.0 br.phorm.com +0.0.0.0 brunga.at +0.0.0.0 bt.phorm.com +0.0.0.0 bt.webwise.com +0.0.0.0 bt.webwise.net +0.0.0.0 bt.webwise.org +0.0.0.0 butt-head.mos.ru +0.0.0.0 c.oix.com +0.0.0.0 c.oix.net +0.0.0.0 c.webwise.com +0.0.0.0 c.webwise.net +0.0.0.0 c.webwise.org +0.0.0.0 cafecoc.com +0.0.0.0 cahoots.com +0.0.0.0 callawaypos.com +0.0.0.0 callbling.com +0.0.0.0 cambonanza.com +0.0.0.0 ccudl.com +0.0.0.0 cdn.radiatewheel.info +0.0.0.0 changduk26.com +0.0.0.0 chelick.net +0.0.0.0 ciiycode.com +0.0.0.0 cioco-froll.com +0.0.0.0 cira.login.cqr.ssl.igotmyloverback.com +0.0.0.0 cleanchain.net +0.0.0.0 click.get-answers-fast.com +0.0.0.0 clicktripz.com +0.0.0.0 clien.net +0.0.0.0 cnbc.com-article906773.us +0.0.0.0 co8vd.cn +0.0.0.0 codeexplain.com +0.0.0.0 codegur.com +0.0.0.0 codeotel.com +0.0.0.0 coderexception.com +0.0.0.0 com2err.xyz +0.0.0.0 connect.secure.ggj4m.wellsfarg0-onllne.net +0.0.0.0 coordino.com +0.0.0.0 cra-arc-gc-ca.noads.biz +0.0.0.0 cra-arc.gc.ca.bioder.com.tr +0.0.0.0 custom3hurricanedigitalmedia.com +0.0.0.0 d.oix.com +0.0.0.0 d.phormlabs.com +0.0.0.0 dbios.org +0.0.0.0 dcproxy1.thrunet.com +0.0.0.0 dhauzja511.co.cc +0.0.0.0 dietpharmacyrx.net +0.0.0.0 dmn2.bjpeu.edu.cn +0.0.0.0 dns2.net1.it +0.0.0.0 documents-signature.com +0.0.0.0 doors.co.kr +0.0.0.0 download.abetterinternet.com +0.0.0.0 drc-group.net +0.0.0.0 dubstep.onedumb.com +0.0.0.0 e-kasa.w8w.pl +0.0.0.0 east.05tz2e9.com +0.0.0.0 efreedom.net +0.0.0.0 en.likefever.org +0.0.0.0 enterprise.telesat.com.co +0.0.0.0 enteryouremail.net +0.0.0.0 eol1.egyptonline.com +0.0.0.0 err1.9939118.info +0.0.0.0 err2.9939118.info +0.0.0.0 err3.9939118.info +0.0.0.0 error-warning-alert-critical-5x.com +0.0.0.0 eviboli576.o-f.com +0.0.0.0 exasked.com +0.0.0.0 expertland.net +0.0.0.0 f150123.privacy4browsing.com +0.0.0.0 faceboook-replyei0ki.montadalitihad.com +0.0.0.0 facemail.com +0.0.0.0 faeecb0ock.info +0.0.0.0 faggotry.com +0.0.0.0 familyupport1.com +0.0.0.0 feaecebook.com +0.0.0.0 feedbackexplorer.com +0.0.0.0 fengyixin.com +0.0.0.0 filosvybfimpsv.ru.gg +0.0.0.0 fr.apple.com-services-assistance-recuperations-des-comptes.com +0.0.0.0 freedailydownload.com +0.0.0.0 froling.bee.pl +0.0.0.0 fromru.su +0.0.0.0 ftdownload.com +0.0.0.0 fu.golikeus.net +0.0.0.0 fw433.npic.ac.cn +0.0.0.0 gadgetsytecnologia.com +0.0.0.0 gambero3.cs.tin.it +0.0.0.0 gamelights.ru +0.0.0.0 gasasthe.freehostia.com +0.0.0.0 gate.technopolis.kirov.ru +0.0.0.0 get-answers-fast.com +0.0.0.0 gglcash4u.info +0.0.0.0 girlownedbypolicelike.blogspot.com +0.0.0.0 goggle.com +0.0.0.0 goobbe.com +0.0.0.0 greatarcadehits.com +0.0.0.0 gyros.es +0.0.0.0 h1317070.stratoserver.net +0.0.0.0 hackerz.ir +0.0.0.0 hakerzy.net +0.0.0.0 hakuba.janis.or.jp +0.0.0.0 hatrecord.ru +0.0.0.0 hellwert.biz +0.0.0.0 helpmedb.com +0.0.0.0 hieruu.apicultoresweb.com +0.0.0.0 hotchix.servepics.com +0.0.0.0 how-tosolve.com +0.0.0.0 howtobuildsoftware.com +0.0.0.0 hsb-canada.com +0.0.0.0 hsbconline.ca +0.0.0.0 icecars.com +0.0.0.0 idea21.org +0.0.0.0 ig.fp.oix.net +0.0.0.0 imms1.macau.ctm.net +0.0.0.0 indy.fjmu.edu.cn +0.0.0.0 infopaypal.com +0.0.0.0 installmac.com +0.0.0.0 invite.gezinti.com +0.0.0.0 ipadzu.net +0.0.0.0 ircleaner.com +0.0.0.0 istartsurf.com +0.0.0.0 iswwwup.com +0.0.0.0 itwititer.com +0.0.0.0 ity.elusmedic.ru +0.0.0.0 jajajaj-thats-you-really.com +0.0.0.0 janezk.50webs.co +0.0.0.0 jqueryscript.net +0.0.0.0 jujitsu-ostrava.info +0.0.0.0 jump.ewoss.net +0.0.0.0 jur.unn.ac.ru +0.0.0.0 juste.ru +0.0.0.0 kacstserv.kacst.edu.sa +0.0.0.0 kaytri.com +0.0.0.0 kczambians.com +0.0.0.0 kentsucks.youcanoptout.com +0.0.0.0 keybinary.com +0.0.0.0 kirgo.at +0.0.0.0 kitsjim.com +0.0.0.0 klowns4phun.com +0.0.0.0 known.counsellor.gov.cn +0.0.0.0 konflow.com +0.0.0.0 kplusd.far.ru +0.0.0.0 kpremium.com +0.0.0.0 kr.phorm.com +0.0.0.0 kserv.krldysh.ru +0.0.0.0 laleh.itrc.ac.ir +0.0.0.0 lank.ru +0.0.0.0 levenshteinanswer.com +0.0.0.0 lighthouse2k.com +0.0.0.0 like.likewut.net +0.0.0.0 likeportal.com +0.0.0.0 likespike.com +0.0.0.0 likethis.mbosoft.com +0.0.0.0 likethislist.biz +0.0.0.0 loseweight.asdjiiw.com +0.0.0.0 lucibad.home.ro +0.0.0.0 luxcart.ro +0.0.0.0 m0-s.san.ru +0.0.0.0 m01.oix.com +0.0.0.0 m01.oix.net +0.0.0.0 m01.webwise.com +0.0.0.0 m01.webwise.net +0.0.0.0 m01.webwise.org +0.0.0.0 m02.oix.com +0.0.0.0 m02.oix.net +0.0.0.0 m02.webwise.com +0.0.0.0 m02.webwise.net +0.0.0.0 m02.webwise.org +0.0.0.0 mac-os.apple.com-secured.online +0.0.0.0 mac-osx.message-warning.net +0.0.0.0 mac-protection.info +0.0.0.0 macmeasurmenthub.club +0.0.0.0 macmeasurmentpro.club +0.0.0.0 mail-gw.jbic.go.jp +0.0.0.0 mail.bangla.net +0.0.0.0 mail.cyberh.fr +0.0.0.0 mail.edi.edu.cn +0.0.0.0 mail.hallym.ac.kr +0.0.0.0 mail.hangzhouit.gov.cn +0.0.0.0 mail.hz.zh.cn +0.0.0.0 mail.imamu.edu.sa +0.0.0.0 mail.interq.or.jp +0.0.0.0 mail.ioc.ac.ru +0.0.0.0 mail.issas.ac.cn +0.0.0.0 mail.pmo.ac.cn +0.0.0.0 mail.siom.ac.cn +0.0.0.0 mail.tropmet.res.in +0.0.0.0 mail.tsinghua.edu.cn +0.0.0.0 mail.youcanoptout.com +0.0.0.0 mail.youcanoptout.net +0.0.0.0 mail.youcanoptout.org +0.0.0.0 mail.zzu.edu.cn +0.0.0.0 mail1.371.net +0.0.0.0 mailgate.sbell.com.cn +0.0.0.0 mailgw.thtf.com.cn +0.0.0.0 mailhub.minaffet.gov.rw +0.0.0.0 mails.cneic.com.cn +0.0.0.0 mailscan3.cau.ctm.net +0.0.0.0 mailsrv02.macau.ctm.net +0.0.0.0 mailsvra.macau.ctm.net +0.0.0.0 malware-live-pro-scanv1.com +0.0.0.0 massage-v-almaty.kz +0.0.0.0 maxi4.firstvds.ru +0.0.0.0 mbi3.kuicr.kyoto-u.ac.jp +0.0.0.0 mcd-su-2.mos.ru +0.0.0.0 megasurfin.com +0.0.0.0 meta.osqa.net +0.0.0.0 metcoc5cm.clarent.com +0.0.0.0 microsoft.com-msoft52.info +0.0.0.0 microsoftsupport.com-support0206.info +0.0.0.0 miercuri.gq +0.0.0.0 mipsa.ciae.ac.cn +0.0.0.0 mn.mn.co.cu +0.0.0.0 monitor.phorm.com +0.0.0.0 monkeyball.osa.pl +0.0.0.0 most.cob.net.ba +0.0.0.0 movies.701pages.com +0.0.0.0 mpkhi-bk.multi.net.pk +0.0.0.0 mplayerdownloader.com +0.0.0.0 ms0x0000001341.club +0.0.0.0 msgstore2.pldtprv.net +0.0.0.0 mshelp247.weebly.com +0.0.0.0 mtccsun.imtech.ernet.in +0.0.0.0 murcia-ban.es +0.0.0.0 mx01.openinternetexchange.com +0.0.0.0 mx01.openinternetexchange.net +0.0.0.0 mx01.webwise.com +0.0.0.0 mx03.phorm.com +0.0.0.0 mx1.freemail.ne.jp +0.0.0.0 my-uq.com +0.0.0.0 mylike.co.uk +0.0.0.0 myprivateemails.com +0.0.0.0 n02.unternehmen.com +0.0.0.0 nactx.com +0.0.0.0 natashyabaydesign.com +0.0.0.0 navegador.oi.com.br +0.0.0.0 navegador.telefonica.com.br +0.0.0.0 nd11mx1-a-fixed.sancharnet.in +0.0.0.0 ndl1mc1-a-fixed.sancharnet.in +0.0.0.0 ndl1mx1-a-fixed.sancharnet.in +0.0.0.0 ndl1pp1-a-fixed.sancharnet.in +0.0.0.0 new-dating-2012.info +0.0.0.0 new-vid-zone-1.blogspot.com.au +0.0.0.0 newtips.co +0.0.0.0 newwayscanner.info +0.0.0.0 nextbestgame.org +0.0.0.0 no1.unternehemen.com +0.0.0.0 no3.unternehmen.org +0.0.0.0 novemberrainx.com +0.0.0.0 ns.cac.com.cn +0.0.0.0 ns.huawei.com.cn +0.0.0.0 ns.nint.ac.cn +0.0.0.0 ns1.2911.net +0.0.0.0 ns1.multi.net.pk +0.0.0.0 ns1.oix.com +0.0.0.0 ns1.oix.net +0.0.0.0 ns1.openinternetexchange.com +0.0.0.0 ns1.phorm.com +0.0.0.0 ns1.webwise.com +0.0.0.0 ns1.webwise.net +0.0.0.0 ns1.webwise.org +0.0.0.0 ns2.oix.com +0.0.0.0 ns2.oix.net +0.0.0.0 ns2.openinternetexchange.com +0.0.0.0 ns2.phorm.com +0.0.0.0 ns2.rosprint.ru +0.0.0.0 ns2.webwise.com +0.0.0.0 ns2.webwise.net +0.0.0.0 ns2.webwise.org +0.0.0.0 ns2.xidian.edu.cn +0.0.0.0 ns2.youcanoptout.com +0.0.0.0 ns3.openinternetexchange.com +0.0.0.0 nufindings.info +0.0.0.0 oferty-online.com +0.0.0.0 office.officenet.co.kr +0.0.0.0 oi.webnavegador.com.br +0.0.0.0 oix-stage.net +0.0.0.0 oix.com +0.0.0.0 oix.net +0.0.0.0 oix.phorm.com +0.0.0.0 oixcrv-lab.net +0.0.0.0 oixcrv-stage.net +0.0.0.0 oixcrv.net +0.0.0.0 oixpre-stage.net +0.0.0.0 oixpre.net +0.0.0.0 oixssp-lab.net +0.0.0.0 oixssp.net +0.0.0.0 oj.likewut.net +0.0.0.0 online-antispym4.com +0.0.0.0 onlinewebfind.com +0.0.0.0 oo-na-na-pics.com +0.0.0.0 opcwdns.opcw.nl +0.0.0.0 openinternetexchange.com +0.0.0.0 openinternetexchange.net +0.0.0.0 openoverflow.com +0.0.0.0 opserver01.iti.net.pk +0.0.0.0 orange.npix.net +0.0.0.0 ordersildenafil.com +0.0.0.0 orion.platino.gov.ve +0.0.0.0 osqa.net +0.0.0.0 otsserver.com +0.0.0.0 outerinfo.com +0.0.0.0 outlets-online.pl +0.0.0.0 outweb.nudt.edu.cn +0.0.0.0 paincake.yoll.net +0.0.0.0 pc-scanner16.com +0.0.0.0 pc-virus-k7d4v9.online +0.0.0.0 pchealthcheckup.net +0.0.0.0 pcnetworkreliablecloudservices.online +0.0.0.0 pdns.nudt.edu.cn +0.0.0.0 personalantispy.com +0.0.0.0 petra.nic.gov.jo +0.0.0.0 phatthalung.go.th +0.0.0.0 phorm.biz.tr +0.0.0.0 phorm.ch +0.0.0.0 phorm.cl +0.0.0.0 phorm.co.in +0.0.0.0 phorm.co.uk +0.0.0.0 phorm.com +0.0.0.0 phorm.com.br +0.0.0.0 phorm.com.es +0.0.0.0 phorm.com.mx +0.0.0.0 phorm.com.tr +0.0.0.0 phorm.dk +0.0.0.0 phorm.es +0.0.0.0 phorm.hk +0.0.0.0 phorm.in +0.0.0.0 phorm.info.tr +0.0.0.0 phorm.jp +0.0.0.0 phorm.kr +0.0.0.0 phorm.nom.es +0.0.0.0 phorm.org.es +0.0.0.0 phorm.ro +0.0.0.0 phorm.tv.tr +0.0.0.0 phorm.web.tr +0.0.0.0 phpancake.com +0.0.0.0 picture-uploads.com +0.0.0.0 pigredoben12.sytes.net +0.0.0.0 pilltabletsrxbargain.net +0.0.0.0 pop.net21pk.com +0.0.0.0 post.netchina.com.cn +0.0.0.0 postbox.mos.ru +0.0.0.0 powabcyfqe.com +0.0.0.0 pple.com.virus-mac.com +0.0.0.0 premium-live-scan.com +0.0.0.0 premiumvideoupdates.com +0.0.0.0 prm-ext.phorm.com +0.0.0.0 products-gold.net +0.0.0.0 proflashdata.com +0.0.0.0 protectionupdatecenter.com +0.0.0.0 public2.zz.ha.cn +0.0.0.0 puush.in +0.0.0.0 pv.wantsfly.com +0.0.0.0 qenabled.com +0.0.0.0 qip.ru +0.0.0.0 qy.corrmedic.ru +0.0.0.0 rayo.pereira.multi.net.co +0.0.0.0 rd.alphabirdnetwork.com +0.0.0.0 readheadstick.biz +0.0.0.0 rickrolling.com +0.0.0.0 roifmd.info +0.0.0.0 romdiscover.com +0.0.0.0 rootbuzz.com +0.0.0.0 rpmdo.com +0.0.0.0 rtc.romdiscover.com +0.0.0.0 russian-sex.com +0.0.0.0 ry.znvzzptgblovers.download +0.0.0.0 ryanrhodes.net +0.0.0.0 s4d.in +0.0.0.0 safedownloadcenter.com +0.0.0.0 safedownloadsrus166.com +0.0.0.0 sc-spyware.com +0.0.0.0 scan.antispyware-free-scanner.com +0.0.0.0 scanner.best-click-av1.info +0.0.0.0 scanner.best-protect.info +0.0.0.0 scottishstuff-online.com +0.0.0.0 sea.net.edu.cn +0.0.0.0 search.buzzdock.com +0.0.0.0 search.conduit.com +0.0.0.0 search.privitize.com +0.0.0.0 securedliveuploads.com +0.0.0.0 securitas232maximus.xyz +0.0.0.0 securitas25maximus.xyz +0.0.0.0 securitas493maximus.xyz +0.0.0.0 securitas611maximus.xyz +0.0.0.0 security-alert.zs2vm.top +0.0.0.0 securityandroidupdate.dinamikaprinting.com +0.0.0.0 securityscan.us +0.0.0.0 sedesol.sedesol.gob.mx +0.0.0.0 seeques.com +0.0.0.0 segob.gob.mx +0.0.0.0 sexymarissa.net +0.0.0.0 shapado.com +0.0.0.0 shell.xhhow4.com +0.0.0.0 shop.skin-safety.com +0.0.0.0 shoppstop.comood.opsource.net +0.0.0.0 signin-ebay-com-ws-ebayisapi-dll-signin-webscr.ocom.pl +0.0.0.0 simplyfwd.com +0.0.0.0 sinera.org +0.0.0.0 sjguild.com +0.0.0.0 sky.kies.co.kr +0.0.0.0 smile-angel.com +0.0.0.0 smmu-ipv6.smmu.edu.cn +0.0.0.0 smtp.2911.net +0.0.0.0 smtp.macau.ctm.net +0.0.0.0 sn-gate.com +0.0.0.0 soclone.com +0.0.0.0 software-updates.co +0.0.0.0 software-wenc.co.cc +0.0.0.0 solutionscore.com +0.0.0.0 solveseek.com +0.0.0.0 someonewhocares.com +0.0.0.0 sonatns.sonatrach.dz +0.0.0.0 sousay.info +0.0.0.0 sparc.nour.net.sa +0.0.0.0 speedtestbeta.com +0.0.0.0 sps01.office.ctm.net +0.0.0.0 stackoverflow.dluat.com +0.0.0.0 stackoverflow.hex1.ru +0.0.0.0 stackoverflow.xyz +0.0.0.0 stacksee.lastestapk.com +0.0.0.0 standardsandpraiserepurpose.com +0.0.0.0 start.qip.ru +0.0.0.0 stats.oix.com +0.0.0.0 stopphoulplay.com +0.0.0.0 stopphoulplay.net +0.0.0.0 suddenplot.com +0.0.0.0 sunhe.jinr.ru +0.0.0.0 superegler.net +0.0.0.0 supernaturalart.com +0.0.0.0 superprotection10.com +0.0.0.0 support.com-support-help.online +0.0.0.0 sussi.cressoft.com.pk +0.0.0.0 sverd.net +0.0.0.0 sweet55ium55.com +0.0.0.0 system-kernel-disk-errorx001dsxx-microsoft-windows.55errors5353.net +0.0.0.0 tahoesup.com +0.0.0.0 tanieaukcje.com +0.0.0.0 taniezakupy.pl +0.0.0.0 tattooshaha.info +0.0.0.0 taxi-petr.by +0.0.0.0 tech9638514.ru +0.0.0.0 technicalconsumerreports.com +0.0.0.0 technology-revealed.com +0.0.0.0 techques.com +0.0.0.0 telefonica.webnavegador.com.br +0.0.0.0 terra.fp.oix.net +0.0.0.0 test.ishvara-yoga.com +0.0.0.0 thedatesafe.com +0.0.0.0 themoneyclippodcast.com +0.0.0.0 themusicnetwork.co.uk +0.0.0.0 thinstall.abetterinternet.com +0.0.0.0 tiku.io +0.0.0.0 tipsforall.xyz +0.0.0.0 tivvitter.com +0.0.0.0 tomorrownewstoday.com +0.0.0.0 toolbarbest.biz +0.0.0.0 toolbarbucks.biz +0.0.0.0 toolbarcool.biz +0.0.0.0 toolbardollars.biz +0.0.0.0 toolbarmoney.biz +0.0.0.0 toolbarnew.biz +0.0.0.0 toolbarsale.biz +0.0.0.0 toolbarweb.biz +0.0.0.0 torjackan.info +0.0.0.0 traffic.adwitty.com +0.0.0.0 trialreg.com +0.0.0.0 trovi.com +0.0.0.0 tvshowslist.com +0.0.0.0 twitter.login.kevanshome.org +0.0.0.0 twitter.secure.bzpharma.net +0.0.0.0 tx.micro.net.pk +0.0.0.0 uawj.moqhixoz.cn +0.0.0.0 ughmvqf.spitt.ru +0.0.0.0 ui.oix.net +0.0.0.0 ultra2.tsinghua.edu.cn +0.0.0.0 unk.vver.kiae.rr +0.0.0.0 unknown.counsellor.gov.cn +0.0.0.0 update.theplacetoupdating.pw +0.0.0.0 updateauto.preparevideosafesystem4unow.site +0.0.0.0 updateauto.preparevideosafesystem4unow.space +0.0.0.0 uqz.com +0.0.0.0 users16.jabry.com +0.0.0.0 utenti.lycos.it +0.0.0.0 vcipo.info +0.0.0.0 videos.dskjkiuw.com +0.0.0.0 videos.twitter.secure-logins01.com +0.0.0.0 virus-notice.com +0.0.0.0 voyager1.telesat.com.co +0.0.0.0 vxiframe.biz +0.0.0.0 w.oix.net +0.0.0.0 w3facility.org +0.0.0.0 waldenfarms.com +0.0.0.0 web-ccfr.tsinghua.edu.cn +0.0.0.0 weblover.info +0.0.0.0 webnavegador.com.br +0.0.0.0 webnetra.entelnet.bo +0.0.0.0 webpaypal.com +0.0.0.0 webserv.mos.ru +0.0.0.0 webwise.com +0.0.0.0 webwise.net +0.0.0.0 webwise.org +0.0.0.0 wellsfarg0-onllne.net +0.0.0.0 wenda.io +0.0.0.0 west.05tz2e9.com +0.0.0.0 wewillrocknow.com +0.0.0.0 wikidevs.com +0.0.0.0 willysy.com +0.0.0.0 wm.maxysearch.info +0.0.0.0 womo.corrmedic.ru +0.0.0.0 ws.xjb.ac.cn +0.0.0.0 www.1tracksource.online +0.0.0.0 www.abetterinternet.com +0.0.0.0 www.adshufffle.com +0.0.0.0 www.adwords.google.lloymlincs.com +0.0.0.0 www.afantispy.com +0.0.0.0 www.akoneplatit.sk +0.0.0.0 www.allhqpics.com +0.0.0.0 www.alrpost69.com +0.0.0.0 www.anatol.com +0.0.0.0 www.articlefuns.cn +0.0.0.0 www.articleidea.cn +0.0.0.0 www.asianread.com +0.0.0.0 www.backsim.ru +0.0.0.0 www.bankingservices.xyz +0.0.0.0 www.bankofamerica.com.ok.am +0.0.0.0 www.be4life.ru +0.0.0.0 www.blenz-me.net +0.0.0.0 www.bumerang.cc +0.0.0.0 www.cambonanza.com +0.0.0.0 www.caramail.com +0.0.0.0 www.chelick.net +0.0.0.0 www.commercialclientsgroup.ru +0.0.0.0 www.didata.bw +0.0.0.0 www.dietsecret.ru +0.0.0.0 www.eroyear.ru +0.0.0.0 www.exbays.com +0.0.0.0 www.faggotry.com +0.0.0.0 www.feaecebook.com +0.0.0.0 www.fictioncinema.com +0.0.0.0 www.fischereszter.hu +0.0.0.0 www.freedailydownload.com +0.0.0.0 www.froling.bee.pl +0.0.0.0 www.gezinti.com +0.0.0.0 www.gns-consola.com +0.0.0.0 www.goggle.com +0.0.0.0 www.gozatar.com +0.0.0.0 www.grouphappy.com +0.0.0.0 www.hakerzy.net +0.0.0.0 www.haoyunlaid.com +0.0.0.0 www.icecars.com +0.0.0.0 www.indesignstudioinfo.com +0.0.0.0 www.infopaypal.com +0.0.0.0 www.keybinary.com +0.0.0.0 www.kinomarathon.ru +0.0.0.0 www.kpremium.com +0.0.0.0 www.likeportal.com +0.0.0.0 www.likespike.com +0.0.0.0 www.likethis.mbosoft.com +0.0.0.0 www.likethislist.biz +0.0.0.0 www.lomalindasda.org +0.0.0.0 www.lovecouple.ru +0.0.0.0 www.lovetrust.ru +0.0.0.0 www.mikras.nl +0.0.0.0 www.monkeyball.osa.pl +0.0.0.0 www.monsonis.net +0.0.0.0 www.movie-port.ru +0.0.0.0 www.mplayerdownloader.com +0.0.0.0 www.mshelp247.weebly.com +0.0.0.0 www.mylike.co.uk +0.0.0.0 www.mylovecards.com +0.0.0.0 www.nine2rack.in +0.0.0.0 www.novemberrainx.com +0.0.0.0 www.nu26.com +0.0.0.0 www.objectopoly.info +0.0.0.0 www.oix.com +0.0.0.0 www.oix.net +0.0.0.0 www.onlyfreeoffersonline.com +0.0.0.0 www.openinternetexchange.com +0.0.0.0 www.oreidofitilho.com.br +0.0.0.0 www.otsserver.com +0.0.0.0 www.pay-pal.com-cgibin-canada.4mcmeta4v.cn +0.0.0.0 www.phormlabs.com +0.0.0.0 www.picture-uploads.com +0.0.0.0 www.portaldimensional.com +0.0.0.0 www.poxudeli.ru +0.0.0.0 www.proflashdata.com +0.0.0.0 www.puush.in +0.0.0.0 www.rickrolling.com +0.0.0.0 www.russian-sex.com +0.0.0.0 www.scotiaonline.scotiabank.salferreras.com +0.0.0.0 www.sdlpgift.com +0.0.0.0 www.securityscan.us +0.0.0.0 www.servertasarimbu.com +0.0.0.0 www.sexytiger.ru +0.0.0.0 www.shinilchurch.net +0.0.0.0 www.sinera.org +0.0.0.0 www.siom.ac.cn +0.0.0.0 www.someonewhocares.com +0.0.0.0 www.speedtestbeta.com +0.0.0.0 www.stopphoulplay.com +0.0.0.0 www.taba.site +0.0.0.0 www.tanger.com.br +0.0.0.0 www.tattooshaha.info +0.0.0.0 www.te81.net +0.0.0.0 www.thedatesafe.com +0.0.0.0 www.trucktirehotline.com +0.0.0.0 www.tvshowslist.com +0.0.0.0 www.upi6.pillsstore-c.com +0.0.0.0 www.uqz.com +0.0.0.0 www.venturead.com +0.0.0.0 www.via99.org +0.0.0.0 www.videolove.clanteam.com +0.0.0.0 www.videostan.ru +0.0.0.0 www.vippotexa.ru +0.0.0.0 www.wantsfly.com +0.0.0.0 www.webpaypal.com +0.0.0.0 www.webwise.com +0.0.0.0 www.webwise.net +0.0.0.0 www.webwise.org +0.0.0.0 www.wellsfarg0-onllne.net +0.0.0.0 www.wewillrocknow.com +0.0.0.0 www.willysy.com +0.0.0.0 www.youcanoptout.com +0.0.0.0 www.youcanoptout.net +0.0.0.0 www.youcanoptout.org +0.0.0.0 www.youfiletor.com +0.0.0.0 www1.bmo.com.hotfrio.com.br +0.0.0.0 www1.firesavez5.com +0.0.0.0 www1.firesavez6.com +0.0.0.0 www1.realsoft34.com +0.0.0.0 www21.counsellor.gov.cn +0.0.0.0 www4.gy7k.net +0.0.0.0 xfotosx01.fromru.su +0.0.0.0 xponlinescanner.com +0.0.0.0 xvrxyzba253.hotmail.ru +0.0.0.0 xxyyzz.youcanoptout.com +0.0.0.0 ymail-activate1.bugs3.com +0.0.0.0 youcanoptout.com +0.0.0.0 youcanoptout.net +0.0.0.0 youcanoptout.org +0.0.0.0 yrwap.cn +0.0.0.0 zarozinski.info +0.0.0.0 zb1.zeroredirect1.com +0.0.0.0 zenigameblinger.org +0.0.0.0 zettapetta.com +0.0.0.0 zfotos.fromru.su +0.0.0.0 zip.er.cz +0.0.0.0 ztrf.net +0.0.0.0 zviframe.biz +0.0.0.0 pubads.g.doubleclick.net +0.0.0.0 3ad.doubleclick.net +0.0.0.0 ad-emea.doubleclick.net +0.0.0.0 ad-yt-bfp.doubleclick.net +0.0.0.0 ad.3au.doubleclick.net +0.0.0.0 ad.ae.doubleclick.net +0.0.0.0 ad.be.doubleclick.net +0.0.0.0 ad.br.doubleclick.net +0.0.0.0 ad.de.doubleclick.net +0.0.0.0 ad.dk.doubleclick.net +0.0.0.0 ad.es.doubleclick.net +0.0.0.0 ad.fi.doubleclick.net +0.0.0.0 ad.fr.doubleclick.net +0.0.0.0 ad.it.doubleclick.net +0.0.0.0 ad.jp.doubleclick.net +0.0.0.0 ad.n2434.doubleclick.net +0.0.0.0 ad.nl.doubleclick.net +0.0.0.0 ad.no.doubleclick.net +0.0.0.0 ad.nz.doubleclick.net +0.0.0.0 ad.pl.doubleclick.net +0.0.0.0 ad.se.doubleclick.net +0.0.0.0 ad.sg.doubleclick.net +0.0.0.0 ad.uk.doubleclick.net +0.0.0.0 ad.ve.doubleclick.net +0.0.0.0 ad.za.doubleclick.net +0.0.0.0 ad2.doubleclick.net +0.0.0.0 adclick.g.doubleclick.net +0.0.0.0 amn.doubleclick.net +0.0.0.0 creative.cc-dt.com +0.0.0.0 ebaycn.doubleclick.net +0.0.0.0 ebaytw.doubleclick.net +0.0.0.0 exnjadgda1.doubleclick.net +0.0.0.0 exnjadgda2.doubleclick.net +0.0.0.0 exnjadgds1.doubleclick.net +0.0.0.0 exnjmdgda1.doubleclick.net +0.0.0.0 exnjmdgds1.doubleclick.net +0.0.0.0 feedads.g.doubleclick.net +0.0.0.0 fls.doubleclick.net +0.0.0.0 gd1.doubleclick.net +0.0.0.0 gd10.doubleclick.net +0.0.0.0 gd11.doubleclick.net +0.0.0.0 gd12.doubleclick.net +0.0.0.0 gd13.doubleclick.net +0.0.0.0 gd14.doubleclick.net +0.0.0.0 gd15.doubleclick.net +0.0.0.0 gd16.doubleclick.net +0.0.0.0 gd17.doubleclick.net +0.0.0.0 gd18.doubleclick.net +0.0.0.0 gd19.doubleclick.net +0.0.0.0 gd2.doubleclick.net +0.0.0.0 gd20.doubleclick.net +0.0.0.0 gd21.doubleclick.net +0.0.0.0 gd22.doubleclick.net +0.0.0.0 gd23.doubleclick.net +0.0.0.0 gd24.doubleclick.net +0.0.0.0 gd25.doubleclick.net +0.0.0.0 gd26.doubleclick.net +0.0.0.0 gd27.doubleclick.net +0.0.0.0 gd28.doubleclick.net +0.0.0.0 gd29.doubleclick.net +0.0.0.0 gd3.doubleclick.net +0.0.0.0 gd30.doubleclick.net +0.0.0.0 gd31.doubleclick.net +0.0.0.0 gd4.doubleclick.net +0.0.0.0 gd5.doubleclick.net +0.0.0.0 gd7.doubleclick.net +0.0.0.0 gd8.doubleclick.net +0.0.0.0 gd9.doubleclick.net +0.0.0.0 iv.doubleclick.net +0.0.0.0 ln.doubleclick.net +0.0.0.0 m.2mdn.net +0.0.0.0 m.de.2mdn.net +0.0.0.0 m.doubleclick.net +0.0.0.0 m1.2mdn.net +0.0.0.0 m1.ae.2mdn.net +0.0.0.0 m1.au.2mdn.net +0.0.0.0 m1.be.2mdn.net +0.0.0.0 m1.br.2mdn.net +0.0.0.0 m1.ca.2mdn.net +0.0.0.0 m1.cn.2mdn.net +0.0.0.0 m1.de.2mdn.net +0.0.0.0 m1.dk.2mdn.net +0.0.0.0 m1.doubleclick.net +0.0.0.0 m1.es.2mdn.net +0.0.0.0 m1.fi.2mdn.net +0.0.0.0 m1.fr.2mdn.net +0.0.0.0 m1.it.2mdn.net +0.0.0.0 m1.jp.2mdn.net +0.0.0.0 m1.nl.2mdn.net +0.0.0.0 m1.no.2mdn.net +0.0.0.0 m1.nz.2mdn.net +0.0.0.0 m1.pl.2mdn.net +0.0.0.0 m1.se.2mdn.net +0.0.0.0 m1.sg.2mdn.net +0.0.0.0 m1.uk.2mdn.net +0.0.0.0 m1.ve.2mdn.net +0.0.0.0 m1.za.2mdn.net +0.0.0.0 m2.ae.2mdn.net +0.0.0.0 m2.au.2mdn.net +0.0.0.0 m2.be.2mdn.net +0.0.0.0 m2.br.2mdn.net +0.0.0.0 m2.ca.2mdn.net +0.0.0.0 m2.cn.2mdn.net +0.0.0.0 m2.cn.doubleclick.net +0.0.0.0 m2.de.2mdn.net +0.0.0.0 m2.dk.2mdn.net +0.0.0.0 m2.doubleclick.net +0.0.0.0 m2.es.2mdn.net +0.0.0.0 m2.fi.2mdn.net +0.0.0.0 m2.fr.2mdn.net +0.0.0.0 m2.it.2mdn.net +0.0.0.0 m2.jp.2mdn.net +0.0.0.0 m2.nl.2mdn.net +0.0.0.0 m2.no.2mdn.net +0.0.0.0 m2.nz.2mdn.net +0.0.0.0 m2.pl.2mdn.net +0.0.0.0 m2.se.2mdn.net +0.0.0.0 m2.sg.2mdn.net +0.0.0.0 m2.uk.2mdn.net +0.0.0.0 m2.ve.2mdn.net +0.0.0.0 m2.za.2mdn.net +0.0.0.0 m3.ae.2mdn.net +0.0.0.0 m3.au.2mdn.net +0.0.0.0 m3.be.2mdn.net +0.0.0.0 m3.br.2mdn.net +0.0.0.0 m3.ca.2mdn.net +0.0.0.0 m3.cn.2mdn.net +0.0.0.0 m3.de.2mdn.net +0.0.0.0 m3.dk.2mdn.net +0.0.0.0 m3.doubleclick.net +0.0.0.0 m3.es.2mdn.net +0.0.0.0 m3.fi.2mdn.net +0.0.0.0 m3.fr.2mdn.net +0.0.0.0 m3.it.2mdn.net +0.0.0.0 m3.jp.2mdn.net +0.0.0.0 m3.nl.2mdn.net +0.0.0.0 m3.no.2mdn.net +0.0.0.0 m3.nz.2mdn.net +0.0.0.0 m3.pl.2mdn.net +0.0.0.0 m3.se.2mdn.net +0.0.0.0 m3.sg.2mdn.net +0.0.0.0 m3.uk.2mdn.net +0.0.0.0 m3.ve.2mdn.net +0.0.0.0 m3.za.2mdn.net +0.0.0.0 m4.ae.2mdn.net +0.0.0.0 m4.au.2mdn.net +0.0.0.0 m4.be.2mdn.net +0.0.0.0 m4.br.2mdn.net +0.0.0.0 m4.ca.2mdn.net +0.0.0.0 m4.cn.2mdn.net +0.0.0.0 m4.de.2mdn.net +0.0.0.0 m4.dk.2mdn.net +0.0.0.0 m4.doubleclick.net +0.0.0.0 m4.es.2mdn.net +0.0.0.0 m4.fi.2mdn.net +0.0.0.0 m4.fr.2mdn.net +0.0.0.0 m4.it.2mdn.net +0.0.0.0 m4.jp.2mdn.net +0.0.0.0 m4.nl.2mdn.net +0.0.0.0 m4.no.2mdn.net +0.0.0.0 m4.nz.2mdn.net +0.0.0.0 m4.pl.2mdn.net +0.0.0.0 m4.se.2mdn.net +0.0.0.0 m4.sg.2mdn.net +0.0.0.0 m4.uk.2mdn.net +0.0.0.0 m4.ve.2mdn.net +0.0.0.0 m4.za.2mdn.net +0.0.0.0 m5.ae.2mdn.net +0.0.0.0 m5.au.2mdn.net +0.0.0.0 m5.be.2mdn.net +0.0.0.0 m5.br.2mdn.net +0.0.0.0 m5.ca.2mdn.net +0.0.0.0 m5.cn.2mdn.net +0.0.0.0 m5.de.2mdn.net +0.0.0.0 m5.dk.2mdn.net +0.0.0.0 m5.doubleclick.net +0.0.0.0 m5.es.2mdn.net +0.0.0.0 m5.fi.2mdn.net +0.0.0.0 m5.fr.2mdn.net +0.0.0.0 m5.it.2mdn.net +0.0.0.0 m5.jp.2mdn.net +0.0.0.0 m5.nl.2mdn.net +0.0.0.0 m5.no.2mdn.net +0.0.0.0 m5.nz.2mdn.net +0.0.0.0 m5.pl.2mdn.net +0.0.0.0 m5.se.2mdn.net +0.0.0.0 m5.sg.2mdn.net +0.0.0.0 m5.uk.2mdn.net +0.0.0.0 m5.ve.2mdn.net +0.0.0.0 m5.za.2mdn.net +0.0.0.0 m6.ae.2mdn.net +0.0.0.0 m6.au.2mdn.net +0.0.0.0 m6.be.2mdn.net +0.0.0.0 m6.br.2mdn.net +0.0.0.0 m6.ca.2mdn.net +0.0.0.0 m6.cn.2mdn.net +0.0.0.0 m6.de.2mdn.net +0.0.0.0 m6.dk.2mdn.net +0.0.0.0 m6.doubleclick.net +0.0.0.0 m6.es.2mdn.net +0.0.0.0 m6.fi.2mdn.net +0.0.0.0 m6.fr.2mdn.net +0.0.0.0 m6.it.2mdn.net +0.0.0.0 m6.jp.2mdn.net +0.0.0.0 m6.nl.2mdn.net +0.0.0.0 m6.no.2mdn.net +0.0.0.0 m6.nz.2mdn.net +0.0.0.0 m6.pl.2mdn.net +0.0.0.0 m6.se.2mdn.net +0.0.0.0 m6.sg.2mdn.net +0.0.0.0 m6.uk.2mdn.net +0.0.0.0 m6.ve.2mdn.net +0.0.0.0 m6.za.2mdn.net +0.0.0.0 m7.ae.2mdn.net +0.0.0.0 m7.au.2mdn.net +0.0.0.0 m7.be.2mdn.net +0.0.0.0 m7.br.2mdn.net +0.0.0.0 m7.ca.2mdn.net +0.0.0.0 m7.cn.2mdn.net +0.0.0.0 m7.de.2mdn.net +0.0.0.0 m7.dk.2mdn.net +0.0.0.0 m7.doubleclick.net +0.0.0.0 m7.es.2mdn.net +0.0.0.0 m7.fi.2mdn.net +0.0.0.0 m7.fr.2mdn.net +0.0.0.0 m7.it.2mdn.net +0.0.0.0 m7.jp.2mdn.net +0.0.0.0 m7.nl.2mdn.net +0.0.0.0 m7.no.2mdn.net +0.0.0.0 m7.nz.2mdn.net +0.0.0.0 m7.pl.2mdn.net +0.0.0.0 m7.se.2mdn.net +0.0.0.0 m7.sg.2mdn.net +0.0.0.0 m7.uk.2mdn.net +0.0.0.0 m7.ve.2mdn.net +0.0.0.0 m7.za.2mdn.net +0.0.0.0 m8.ae.2mdn.net +0.0.0.0 m8.au.2mdn.net +0.0.0.0 m8.be.2mdn.net +0.0.0.0 m8.br.2mdn.net +0.0.0.0 m8.ca.2mdn.net +0.0.0.0 m8.cn.2mdn.net +0.0.0.0 m8.de.2mdn.net +0.0.0.0 m8.dk.2mdn.net +0.0.0.0 m8.doubleclick.net +0.0.0.0 m8.es.2mdn.net +0.0.0.0 m8.fi.2mdn.net +0.0.0.0 m8.fr.2mdn.net +0.0.0.0 m8.it.2mdn.net +0.0.0.0 m8.jp.2mdn.net +0.0.0.0 m8.nl.2mdn.net +0.0.0.0 m8.no.2mdn.net +0.0.0.0 m8.nz.2mdn.net +0.0.0.0 m8.pl.2mdn.net +0.0.0.0 m8.se.2mdn.net +0.0.0.0 m8.sg.2mdn.net +0.0.0.0 m8.uk.2mdn.net +0.0.0.0 m8.ve.2mdn.net +0.0.0.0 m8.za.2mdn.net +0.0.0.0 m9.ae.2mdn.net +0.0.0.0 m9.au.2mdn.net +0.0.0.0 m9.be.2mdn.net +0.0.0.0 m9.br.2mdn.net +0.0.0.0 m9.ca.2mdn.net +0.0.0.0 m9.cn.2mdn.net +0.0.0.0 m9.de.2mdn.net +0.0.0.0 m9.dk.2mdn.net +0.0.0.0 m9.doubleclick.net +0.0.0.0 m9.es.2mdn.net +0.0.0.0 m9.fi.2mdn.net +0.0.0.0 m9.fr.2mdn.net +0.0.0.0 m9.it.2mdn.net +0.0.0.0 m9.jp.2mdn.net +0.0.0.0 m9.nl.2mdn.net +0.0.0.0 m9.no.2mdn.net +0.0.0.0 m9.nz.2mdn.net +0.0.0.0 m9.pl.2mdn.net +0.0.0.0 m9.se.2mdn.net +0.0.0.0 m9.sg.2mdn.net +0.0.0.0 m9.uk.2mdn.net +0.0.0.0 m9.ve.2mdn.net +0.0.0.0 m9.za.2mdn.net +0.0.0.0 n3302ad.doubleclick.net +0.0.0.0 n3349ad.doubleclick.net +0.0.0.0 n4061ad.doubleclick.net +0.0.0.0 n4403ad.doubleclick.net +0.0.0.0 n479ad.doubleclick.net +0.0.0.0 optimize.doubleclick.net +0.0.0.0 pagead.l.doubleclick.net +0.0.0.0 rd.intl.doubleclick.net +0.0.0.0 stats.g.doubleclick.net +0.0.0.0 twx.2mdn.net +0.0.0.0 twx.doubleclick.net +0.0.0.0 ukrpts.net +0.0.0.0 uunyadgda1.doubleclick.net +0.0.0.0 uunyadgds1.doubleclick.net +0.0.0.0 www.ukrpts.net +0.0.0.0 5starhiphop.us.intellitxt.com +0.0.0.0 askmen2.us.intellitxt.com +0.0.0.0 bargainpda.us.intellitxt.com +0.0.0.0 businesspundit.us.intellitxt.com +0.0.0.0 canadafreepress.us.intellitxt.com +0.0.0.0 contactmusic.uk.intellitxt.com +0.0.0.0 ctv.us.intellitxt.com +0.0.0.0 designtechnica.us.intellitxt.com +0.0.0.0 devshed.us.intellitxt.com +0.0.0.0 digitaltrends.us.intellitxt.com +0.0.0.0 dnps.us.intellitxt.com +0.0.0.0 doubleviking.us.intellitxt.com +0.0.0.0 drizzydrake.us.intellitxt.com +0.0.0.0 ehow.us.intellitxt.com +0.0.0.0 entertainment.msnbc.us.intellitxt.com +0.0.0.0 examnotes.us.intellitxt.com +0.0.0.0 excite.us.intellitxt.com +0.0.0.0 experts.us.intellitxt.com +0.0.0.0 extremetech.us.intellitxt.com +0.0.0.0 ferrago.uk.intellitxt.com +0.0.0.0 filmschoolrejects.us.intellitxt.com +0.0.0.0 filmwad.us.intellitxt.com +0.0.0.0 firstshowing.us.intellitxt.com +0.0.0.0 flashmagazine.us.intellitxt.com +0.0.0.0 foxnews.us.intellitxt.com +0.0.0.0 foxtv.us.intellitxt.com +0.0.0.0 freedownloadcenter.uk.intellitxt.com +0.0.0.0 gadgets.fosfor.se.intellitxt.com +0.0.0.0 gamesradar.us.intellitxt.com +0.0.0.0 gannettbroadcast.us.intellitxt.com +0.0.0.0 gonintendo.us.intellitxt.com +0.0.0.0 gorillanation.us.intellitxt.com +0.0.0.0 hackedgadgets.us.intellitxt.com +0.0.0.0 hardcoreware.us.intellitxt.com +0.0.0.0 hardocp.us.intellitxt.com +0.0.0.0 hothardware.us.intellitxt.com +0.0.0.0 hotonlinenews.us.intellitxt.com +0.0.0.0 ign.us.intellitxt.com +0.0.0.0 images.intellitxt.com +0.0.0.0 itxt2.us.intellitxt.com +0.0.0.0 joblo.us.intellitxt.com +0.0.0.0 johnchow.us.intellitxt.com +0.0.0.0 laptopmag.us.intellitxt.com +0.0.0.0 linuxforums.us.intellitxt.com +0.0.0.0 maccity.it.intellitxt.com +0.0.0.0 macnn.us.intellitxt.com +0.0.0.0 macuser.uk.intellitxt.com +0.0.0.0 macworld.uk.intellitxt.com +0.0.0.0 metro.uk.intellitxt.com +0.0.0.0 mobile9.us.intellitxt.com +0.0.0.0 monstersandcritics.uk.intellitxt.com +0.0.0.0 moviesonline.ca.intellitxt.com +0.0.0.0 mustangevolution.us.intellitxt.com +0.0.0.0 neowin.us.intellitxt.com +0.0.0.0 newcarnet.uk.intellitxt.com +0.0.0.0 newlaunches.uk.intellitxt.com +0.0.0.0 nexys404.us.intellitxt.com +0.0.0.0 ohgizmo.us.intellitxt.com +0.0.0.0 pcadvisor.uk.intellitxt.com +0.0.0.0 pcgameshardware.de.intellitxt.com +0.0.0.0 pcmag.us.intellitxt.com +0.0.0.0 pcper.us.intellitxt.com +0.0.0.0 penton.us.intellitxt.com +0.0.0.0 physorg.uk.intellitxt.com +0.0.0.0 physorg.us.intellitxt.com +0.0.0.0 playfuls.uk.intellitxt.com +0.0.0.0 pocketlint.uk.intellitxt.com +0.0.0.0 popularmechanics.us.intellitxt.com +0.0.0.0 postchronicle.us.intellitxt.com +0.0.0.0 projectorreviews.us.intellitxt.com +0.0.0.0 psp3d.us.intellitxt.com +0.0.0.0 pspcave.uk.intellitxt.com +0.0.0.0 qj.us.intellitxt.com +0.0.0.0 rasmussenreports.us.intellitxt.com +0.0.0.0 rawstory.us.intellitxt.com +0.0.0.0 savemanny.us.intellitxt.com +0.0.0.0 sc.intellitxt.com +0.0.0.0 siliconera.us.intellitxt.com +0.0.0.0 slashphone.us.intellitxt.com +0.0.0.0 soft32.us.intellitxt.com +0.0.0.0 softpedia.uk.intellitxt.com +0.0.0.0 somethingawful.us.intellitxt.com +0.0.0.0 splashnews.uk.intellitxt.com +0.0.0.0 spymac.us.intellitxt.com +0.0.0.0 techeblog.us.intellitxt.com +0.0.0.0 technewsworld.us.intellitxt.com +0.0.0.0 technologyreview.us.intellitxt.com +0.0.0.0 techspot.us.intellitxt.com +0.0.0.0 tgdaily.us.intellitxt.com +0.0.0.0 the-gadgeteer.us.intellitxt.com +0.0.0.0 thelastboss.us.intellitxt.com +0.0.0.0 thetechzone.us.intellitxt.com +0.0.0.0 thoughtsmedia.us.intellitxt.com +0.0.0.0 tmcnet.us.intellitxt.com +0.0.0.0 toms.us.intellitxt.com +0.0.0.0 tomsnetworking.us.intellitxt.com +0.0.0.0 tribal.us.intellitxt.com +0.0.0.0 universetoday.us.intellitxt.com +0.0.0.0 us.intellitxt.com +0.0.0.0 warp2search.us.intellitxt.com +0.0.0.0 wi-fitechnology.uk.intellitxt.com +0.0.0.0 worldnetdaily.us.intellitxt.com +0.0.0.0 devfw.imrworldwide.com +0.0.0.0 fe-au.imrworldwide.com +0.0.0.0 fe1-au.imrworldwide.com +0.0.0.0 fe1-fi.imrworldwide.com +0.0.0.0 fe1-it.imrworldwide.com +0.0.0.0 fe2-au.imrworldwide.com +0.0.0.0 fe3-au.imrworldwide.com +0.0.0.0 fe3-gc.imrworldwide.com +0.0.0.0 fe3-uk.imrworldwide.com +0.0.0.0 fe4-uk.imrworldwide.com +0.0.0.0 lycos-eu.imrworldwide.com +0.0.0.0 ninemsn.imrworldwide.com +0.0.0.0 rc-au.imrworldwide.com +0.0.0.0 redsheriff.com +0.0.0.0 secure-jp.imrworldwide.com +0.0.0.0 secure-nz.imrworldwide.com +0.0.0.0 secure-uk.imrworldwide.com +0.0.0.0 secure-us.imrworldwide.com +0.0.0.0 secure-za.imrworldwide.com +0.0.0.0 server-au.imrworldwide.com +0.0.0.0 server-br.imrworldwide.com +0.0.0.0 server-by.imrworldwide.com +0.0.0.0 server-ca.imrworldwide.com +0.0.0.0 server-de.imrworldwide.com +0.0.0.0 server-dk.imrworldwide.com +0.0.0.0 server-ee.imrworldwide.com +0.0.0.0 server-fi.imrworldwide.com +0.0.0.0 server-fr.imrworldwide.com +0.0.0.0 server-hk.imrworldwide.com +0.0.0.0 server-it.imrworldwide.com +0.0.0.0 server-jp.imrworldwide.com +0.0.0.0 server-lt.imrworldwide.com +0.0.0.0 server-lv.imrworldwide.com +0.0.0.0 server-no.imrworldwide.com +0.0.0.0 server-nz.imrworldwide.com +0.0.0.0 server-oslo.imrworldwide.com +0.0.0.0 server-pl.imrworldwide.com +0.0.0.0 server-ru.imrworldwide.com +0.0.0.0 server-se.imrworldwide.com +0.0.0.0 server-sg.imrworldwide.com +0.0.0.0 server-stockh.imrworldwide.com +0.0.0.0 server-ua.imrworldwide.com +0.0.0.0 server-uk.imrworldwide.com +0.0.0.0 server-us.imrworldwide.com +0.0.0.0 server-za.imrworldwide.com +0.0.0.0 survey1-au.imrworldwide.com +0.0.0.0 telstra.imrworldwide.com +0.0.0.0 www.imrworldwide.com +0.0.0.0 www.imrworldwide.com.au +0.0.0.0 www.redsheriff.com +0.0.0.0 cydoor.com +0.0.0.0 j.2004cms.com +0.0.0.0 jbaventures.cjt1.net +0.0.0.0 jbeet.cjt1.net +0.0.0.0 jbit.cjt1.net +0.0.0.0 jcollegehumor.cjt1.net +0.0.0.0 jcontent.bns1.net +0.0.0.0 jdownloadacc.cjt1.net +0.0.0.0 jgen1.cjt1.net +0.0.0.0 jgen10.cjt1.net +0.0.0.0 jgen11.cjt1.net +0.0.0.0 jgen12.cjt1.net +0.0.0.0 jgen13.cjt1.net +0.0.0.0 jgen14.cjt1.net +0.0.0.0 jgen15.cjt1.net +0.0.0.0 jgen16.cjt1.net +0.0.0.0 jgen17.cjt1.net +0.0.0.0 jgen18.cjt1.net +0.0.0.0 jgen19.cjt1.net +0.0.0.0 jgen2.cjt1.net +0.0.0.0 jgen20.cjt1.net +0.0.0.0 jgen21.cjt1.net +0.0.0.0 jgen22.cjt1.net +0.0.0.0 jgen23.cjt1.net +0.0.0.0 jgen24.cjt1.net +0.0.0.0 jgen25.cjt1.net +0.0.0.0 jgen26.cjt1.net +0.0.0.0 jgen27.cjt1.net +0.0.0.0 jgen28.cjt1.net +0.0.0.0 jgen29.cjt1.net +0.0.0.0 jgen3.cjt1.net +0.0.0.0 jgen30.cjt1.net +0.0.0.0 jgen31.cjt1.net +0.0.0.0 jgen32.cjt1.net +0.0.0.0 jgen33.cjt1.net +0.0.0.0 jgen34.cjt1.net +0.0.0.0 jgen35.cjt1.net +0.0.0.0 jgen36.cjt1.net +0.0.0.0 jgen37.cjt1.net +0.0.0.0 jgen38.cjt1.net +0.0.0.0 jgen39.cjt1.net +0.0.0.0 jgen4.cjt1.net +0.0.0.0 jgen40.cjt1.net +0.0.0.0 jgen41.cjt1.net +0.0.0.0 jgen42.cjt1.net +0.0.0.0 jgen43.cjt1.net +0.0.0.0 jgen44.cjt1.net +0.0.0.0 jgen45.cjt1.net +0.0.0.0 jgen46.cjt1.net +0.0.0.0 jgen47.cjt1.net +0.0.0.0 jgen48.cjt1.net +0.0.0.0 jgen49.cjt1.net +0.0.0.0 jgen5.cjt1.net +0.0.0.0 jgen6.cjt1.net +0.0.0.0 jgen7.cjt1.net +0.0.0.0 jgen8.cjt1.net +0.0.0.0 jgen9.cjt1.net +0.0.0.0 jhumour.cjt1.net +0.0.0.0 jmbi58.cjt1.net +0.0.0.0 jnova.cjt1.net +0.0.0.0 jpirate.cjt1.net +0.0.0.0 jsandboxer.cjt1.net +0.0.0.0 jumcna.cjt1.net +0.0.0.0 jwebbsense.cjt1.net +0.0.0.0 www.cydoor.com +0.0.0.0 appleglobal.112.2o7.net +0.0.0.0 applestoreus.112.2o7.net +0.0.0.0 112.2o7.net +0.0.0.0 122.2o7.net +0.0.0.0 actforvictory.112.2o7.net +0.0.0.0 adbrite.112.2o7.net +0.0.0.0 americanbaby.112.2o7.net +0.0.0.0 ancestrymsn.112.2o7.net +0.0.0.0 ancestryuki.112.2o7.net +0.0.0.0 angtr.112.2o7.net +0.0.0.0 angts.112.2o7.net +0.0.0.0 angvac.112.2o7.net +0.0.0.0 anm.112.2o7.net +0.0.0.0 aolcareers.122.2o7.net +0.0.0.0 aolnsnews.122.2o7.net +0.0.0.0 aolpolls.112.2o7.net +0.0.0.0 aolturnercnnmoney.112.2o7.net +0.0.0.0 aolukglobal.122.2o7.net +0.0.0.0 aolwpaim.112.2o7.net +0.0.0.0 aolwpicq.122.2o7.net +0.0.0.0 aolwpmq.112.2o7.net +0.0.0.0 aolwpmqnoban.112.2o7.net +0.0.0.0 bbcnewscouk.112.2o7.net +0.0.0.0 bellca.112.2o7.net +0.0.0.0 bellglovemediapublishing.122.2o7.net +0.0.0.0 bellserviceeng.112.2o7.net +0.0.0.0 bhgmarketing.112.2o7.net +0.0.0.0 bidentonrccom.122.2o7.net +0.0.0.0 biwwltvcom.112.2o7.net +0.0.0.0 biwwltvcom.122.2o7.net +0.0.0.0 blackpress.122.2o7.net +0.0.0.0 bntbcstglobal.112.2o7.net +0.0.0.0 bosecom.112.2o7.net +0.0.0.0 bulldog.122.2o7.net +0.0.0.0 bzresults.122.2o7.net +0.0.0.0 cablevision.112.2o7.net +0.0.0.0 canwestcom.112.2o7.net +0.0.0.0 capcityadvcom.122.2o7.net +0.0.0.0 careers.112.2o7.net +0.0.0.0 cbaol.112.2o7.net +0.0.0.0 cbcca.112.2o7.net +0.0.0.0 cbcca.122.2o7.net +0.0.0.0 cbcincinnatienquirer.112.2o7.net +0.0.0.0 cbsncaasports.112.2o7.net +0.0.0.0 ccrbudgetca.112.2o7.net +0.0.0.0 cfrfa.112.2o7.net +0.0.0.0 classifiedscanada.112.2o7.net +0.0.0.0 cnhimcalesternews.122.2o7.net +0.0.0.0 cnhipicayuneitemv.112.2o7.net +0.0.0.0 cnhitribunestar.122.2o7.net +0.0.0.0 cnhitribunestara.122.2o7.net +0.0.0.0 cnhregisterherald.122.2o7.net +0.0.0.0 coxpalmbeachpost.112.2o7.net +0.0.0.0 diginet.112.2o7.net +0.0.0.0 digitalhomediscountptyltd.122.2o7.net +0.0.0.0 disccglobal.112.2o7.net +0.0.0.0 disccstats.112.2o7.net +0.0.0.0 dischannel.112.2o7.net +0.0.0.0 dixonslnkcouk.112.2o7.net +0.0.0.0 dogpile.112.2o7.net +0.0.0.0 donval.112.2o7.net +0.0.0.0 dowjones.122.2o7.net +0.0.0.0 dreammates.112.2o7.net +0.0.0.0 ebay1.112.2o7.net +0.0.0.0 ebaynonreg.112.2o7.net +0.0.0.0 ebayreg.112.2o7.net +0.0.0.0 ebayus.112.2o7.net +0.0.0.0 ebcom.112.2o7.net +0.0.0.0 ectestlampsplus1.112.2o7.net +0.0.0.0 edmundsinsideline.112.2o7.net +0.0.0.0 edsa.112.2o7.net +0.0.0.0 ehg-moma.hitbox.com.112.2o7.net +0.0.0.0 employ22.112.2o7.net +0.0.0.0 employ26.112.2o7.net +0.0.0.0 employment.112.2o7.net +0.0.0.0 enterprisenewsmedia.122.2o7.net +0.0.0.0 epost.122.2o7.net +0.0.0.0 ewstcpalm.112.2o7.net +0.0.0.0 execulink.112.2o7.net +0.0.0.0 expedia.ca.112.2o7.net +0.0.0.0 expedia4.112.2o7.net +0.0.0.0 f2ncracker.112.2o7.net +0.0.0.0 faceoff.112.2o7.net +0.0.0.0 fbkmnr.112.2o7.net +0.0.0.0 forbesattache.112.2o7.net +0.0.0.0 forbesauto.112.2o7.net +0.0.0.0 forbesautos.112.2o7.net +0.0.0.0 forbescom.112.2o7.net +0.0.0.0 foxsimpsons.112.2o7.net +0.0.0.0 georgewbush.112.2o7.net +0.0.0.0 georgewbushcom.112.2o7.net +0.0.0.0 gettyimages.122.2o7.net +0.0.0.0 gmchevyapprentice.112.2o7.net +0.0.0.0 gmhummer.112.2o7.net +0.0.0.0 gpaper104.112.2o7.net +0.0.0.0 gpaper105.112.2o7.net +0.0.0.0 gpaper107.112.2o7.net +0.0.0.0 gpaper108.112.2o7.net +0.0.0.0 gpaper109.112.2o7.net +0.0.0.0 gpaper110.112.2o7.net +0.0.0.0 gpaper111.112.2o7.net +0.0.0.0 gpaper112.112.2o7.net +0.0.0.0 gpaper113.112.2o7.net +0.0.0.0 gpaper114.112.2o7.net +0.0.0.0 gpaper115.112.2o7.net +0.0.0.0 gpaper116.112.2o7.net +0.0.0.0 gpaper117.112.2o7.net +0.0.0.0 gpaper118.112.2o7.net +0.0.0.0 gpaper119.112.2o7.net +0.0.0.0 gpaper120.112.2o7.net +0.0.0.0 gpaper121.112.2o7.net +0.0.0.0 gpaper122.112.2o7.net +0.0.0.0 gpaper123.112.2o7.net +0.0.0.0 gpaper124.112.2o7.net +0.0.0.0 gpaper125.112.2o7.net +0.0.0.0 gpaper126.112.2o7.net +0.0.0.0 gpaper127.112.2o7.net +0.0.0.0 gpaper128.112.2o7.net +0.0.0.0 gpaper129.112.2o7.net +0.0.0.0 gpaper131.112.2o7.net +0.0.0.0 gpaper132.112.2o7.net +0.0.0.0 gpaper133.112.2o7.net +0.0.0.0 gpaper138.112.2o7.net +0.0.0.0 gpaper139.112.2o7.net +0.0.0.0 gpaper140.112.2o7.net +0.0.0.0 gpaper141.112.2o7.net +0.0.0.0 gpaper142.112.2o7.net +0.0.0.0 gpaper144.112.2o7.net +0.0.0.0 gpaper145.112.2o7.net +0.0.0.0 gpaper147.112.2o7.net +0.0.0.0 gpaper149.112.2o7.net +0.0.0.0 gpaper151.112.2o7.net +0.0.0.0 gpaper154.112.2o7.net +0.0.0.0 gpaper156.112.2o7.net +0.0.0.0 gpaper157.112.2o7.net +0.0.0.0 gpaper158.112.2o7.net +0.0.0.0 gpaper162.112.2o7.net +0.0.0.0 gpaper164.112.2o7.net +0.0.0.0 gpaper166.112.2o7.net +0.0.0.0 gpaper167.112.2o7.net +0.0.0.0 gpaper169.112.2o7.net +0.0.0.0 gpaper170.112.2o7.net +0.0.0.0 gpaper171.112.2o7.net +0.0.0.0 gpaper172.112.2o7.net +0.0.0.0 gpaper173.112.2o7.net +0.0.0.0 gpaper174.112.2o7.net +0.0.0.0 gpaper176.112.2o7.net +0.0.0.0 gpaper177.112.2o7.net +0.0.0.0 gpaper180.112.2o7.net +0.0.0.0 gpaper183.112.2o7.net +0.0.0.0 gpaper184.112.2o7.net +0.0.0.0 gpaper191.112.2o7.net +0.0.0.0 gpaper192.112.2o7.net +0.0.0.0 gpaper193.112.2o7.net +0.0.0.0 gpaper194.112.2o7.net +0.0.0.0 gpaper195.112.2o7.net +0.0.0.0 gpaper196.112.2o7.net +0.0.0.0 gpaper197.112.2o7.net +0.0.0.0 gpaper198.112.2o7.net +0.0.0.0 gpaper202.112.2o7.net +0.0.0.0 gpaper204.112.2o7.net +0.0.0.0 gpaper205.112.2o7.net +0.0.0.0 gpaper212.112.2o7.net +0.0.0.0 gpaper214.112.2o7.net +0.0.0.0 gpaper219.112.2o7.net +0.0.0.0 gpaper223.112.2o7.net +0.0.0.0 heavycom.112.2o7.net +0.0.0.0 homesclick.112.2o7.net +0.0.0.0 hostdomainpeople.112.2o7.net +0.0.0.0 hostdomainpeopleca.112.2o7.net +0.0.0.0 hostpowermedium.112.2o7.net +0.0.0.0 hpglobal.112.2o7.net +0.0.0.0 hphqsearch.112.2o7.net +0.0.0.0 infomart.ca.112.2o7.net +0.0.0.0 infospace.com.112.2o7.net +0.0.0.0 intelcorpcim.112.2o7.net +0.0.0.0 intelglobal.112.2o7.net +0.0.0.0 jitmj4.122.2o7.net +0.0.0.0 kddi.122.2o7.net +0.0.0.0 krafteurope.112.2o7.net +0.0.0.0 ktva.112.2o7.net +0.0.0.0 ladieshj.112.2o7.net +0.0.0.0 ldsfch.112.2o7.net +0.0.0.0 lenovo.112.2o7.net +0.0.0.0 logoworksdev.112.2o7.net +0.0.0.0 losu.112.2o7.net +0.0.0.0 mailtribune.112.2o7.net +0.0.0.0 maxvr.112.2o7.net +0.0.0.0 mdamarillo.112.2o7.net +0.0.0.0 mdtopeka.112.2o7.net +0.0.0.0 mdwardmore.112.2o7.net +0.0.0.0 medbroadcast.112.2o7.net +0.0.0.0 meetupcom.112.2o7.net +0.0.0.0 mgwspa.112.2o7.net +0.0.0.0 microsoftconsumermarketing.112.2o7.net +0.0.0.0 mlbastros.112.2o7.net +0.0.0.0 mlbcolorado.112.2o7.net +0.0.0.0 mlbhouston.112.2o7.net +0.0.0.0 mlbstlouis.112.2o7.net +0.0.0.0 mlbtoronto.112.2o7.net +0.0.0.0 mmsshopcom.112.2o7.net +0.0.0.0 mnfidnahub.112.2o7.net +0.0.0.0 mngiyrkdr.112.2o7.net +0.0.0.0 mseuppremain.112.2o7.net +0.0.0.0 mtvu.112.2o7.net +0.0.0.0 natgeoeditco.112.2o7.net +0.0.0.0 nationalpost.112.2o7.net +0.0.0.0 nba.112.2o7.net +0.0.0.0 netrp.112.2o7.net +0.0.0.0 netsdartboards.122.2o7.net +0.0.0.0 nike.112.2o7.net +0.0.0.0 nikeplus.112.2o7.net +0.0.0.0 nmbrampton.112.2o7.net +0.0.0.0 nmcommancomedia.112.2o7.net +0.0.0.0 nmkawartha.112.2o7.net +0.0.0.0 nmmississauga.112.2o7.net +0.0.0.0 nmnandomedia.112.2o7.net +0.0.0.0 nmtoronto.112.2o7.net +0.0.0.0 nmtricity.112.2o7.net +0.0.0.0 nmyork.112.2o7.net +0.0.0.0 nytglobe.112.2o7.net +0.0.0.0 nythglobe.112.2o7.net +0.0.0.0 nytimesglobal.112.2o7.net +0.0.0.0 nytimesnonsampled.112.2o7.net +0.0.0.0 nytimesnoonsampled.112.2o7.net +0.0.0.0 nytmembercenter.112.2o7.net +0.0.0.0 nytrgadsden.112.2o7.net +0.0.0.0 nytrgainseville.112.2o7.net +0.0.0.0 nytrhouma.112.2o7.net +0.0.0.0 omnitureglobal.112.2o7.net +0.0.0.0 onlineindigoca.112.2o7.net +0.0.0.0 oracle.112.2o7.net +0.0.0.0 overstock.com.112.2o7.net +0.0.0.0 projectorpeople.112.2o7.net +0.0.0.0 publicationsunbound.112.2o7.net +0.0.0.0 pulharktheherald.112.2o7.net +0.0.0.0 pulpantagraph.112.2o7.net +0.0.0.0 rckymtnnws.112.2o7.net +0.0.0.0 rey3935.112.2o7.net +0.0.0.0 rezrezwhistler.112.2o7.net +0.0.0.0 rncgopcom.122.2o7.net +0.0.0.0 roxio.112.2o7.net +0.0.0.0 salesforce.122.2o7.net +0.0.0.0 santacruzsentinel.112.2o7.net +0.0.0.0 sciamglobal.112.2o7.net +0.0.0.0 scrippsbathvert.112.2o7.net +0.0.0.0 scrippswfts.112.2o7.net +0.0.0.0 scrippswxyz.112.2o7.net +0.0.0.0 sonycorporate.122.2o7.net +0.0.0.0 sonyglobal.112.2o7.net +0.0.0.0 southcoasttoday.112.2o7.net +0.0.0.0 spiketv.112.2o7.net +0.0.0.0 suncom.112.2o7.net +0.0.0.0 sunonesearch.112.2o7.net +0.0.0.0 survey.112.2o7.net +0.0.0.0 sympmsnsports.112.2o7.net +0.0.0.0 timebus2.112.2o7.net +0.0.0.0 timehealth.112.2o7.net +0.0.0.0 timeofficepirates.122.2o7.net +0.0.0.0 timepopsci.122.2o7.net +0.0.0.0 timerealsimple.112.2o7.net +0.0.0.0 timewarner.122.2o7.net +0.0.0.0 tmsscion.112.2o7.net +0.0.0.0 travidiathebrick.112.2o7.net +0.0.0.0 usun.112.2o7.net +0.0.0.0 vanns.112.2o7.net +0.0.0.0 verisonwildcard.112.2o7.net +0.0.0.0 vh1com.112.2o7.net +0.0.0.0 viaatomvideo.112.2o7.net +0.0.0.0 viasyndimedia.112.2o7.net +0.0.0.0 viralvideo.112.2o7.net +0.0.0.0 walmartcom.112.2o7.net +0.0.0.0 westjet.112.2o7.net +0.0.0.0 wileydumcom.112.2o7.net +0.0.0.0 wmg.112.2o7.net +0.0.0.0 wmgmulti.112.2o7.net +0.0.0.0 workopolis.122.2o7.net +0.0.0.0 xhealthmobiletools.112.2o7.net +0.0.0.0 youtube.112.2o7.net +0.0.0.0 yrkeve.112.2o7.net +0.0.0.0 1000ps.oewabox.at +0.0.0.0 afinder.oewabox.at +0.0.0.0 alphalux.oewabox.at +0.0.0.0 apodir.oewabox.at +0.0.0.0 arboe.oewabox.at +0.0.0.0 aschreib.oewabox.at +0.0.0.0 ascout24.oewabox.at +0.0.0.0 atvplus.oewabox.at +0.0.0.0 audi4e.oewabox.at +0.0.0.0 austria.oewabox.at +0.0.0.0 automobi.oewabox.at +0.0.0.0 automoto.oewabox.at +0.0.0.0 babyf.oewabox.at +0.0.0.0 bazar.oewabox.at +0.0.0.0 bdb.oewabox.at +0.0.0.0 bliga.oewabox.at +0.0.0.0 buschen.oewabox.at +0.0.0.0 car4you.oewabox.at +0.0.0.0 cinplex.oewabox.at +0.0.0.0 derstand.oewabox.at +0.0.0.0 dispatcher.oewabox.at +0.0.0.0 docfind.oewabox.at +0.0.0.0 doodle.oewabox.at +0.0.0.0 drei.oewabox.at +0.0.0.0 dropkick.oewabox.at +0.0.0.0 enerweb.oewabox.at +0.0.0.0 falstaff.oewabox.at +0.0.0.0 fanrep.oewabox.at +0.0.0.0 fflotte.oewabox.at +0.0.0.0 fitges.oewabox.at +0.0.0.0 fondprof.oewabox.at +0.0.0.0 fratz.oewabox.at +0.0.0.0 fscout24.oewabox.at +0.0.0.0 gamesw.oewabox.at +0.0.0.0 geizhals.oewabox.at +0.0.0.0 gillout.oewabox.at +0.0.0.0 gkueche.oewabox.at +0.0.0.0 gmx.oewabox.at +0.0.0.0 gofem.oewabox.at +0.0.0.0 heute.oewabox.at +0.0.0.0 immobili.oewabox.at +0.0.0.0 immosuch.oewabox.at +0.0.0.0 indumag.oewabox.at +0.0.0.0 induweb.oewabox.at +0.0.0.0 issges.oewabox.at +0.0.0.0 jobwohn.oewabox.at +0.0.0.0 karriere.oewabox.at +0.0.0.0 kinder.oewabox.at +0.0.0.0 kinowelt.oewabox.at +0.0.0.0 krone.oewabox.at +0.0.0.0 kronehit.oewabox.at +0.0.0.0 landwirt.oewabox.at +0.0.0.0 liportal.oewabox.at +0.0.0.0 mamilade.oewabox.at +0.0.0.0 manntv.oewabox.at +0.0.0.0 medpop.oewabox.at +0.0.0.0 megaplex.oewabox.at +0.0.0.0 metropol.oewabox.at +0.0.0.0 mmarkt.oewabox.at +0.0.0.0 monitor.oewabox.at +0.0.0.0 motorl.oewabox.at +0.0.0.0 msn.oewabox.at +0.0.0.0 newsnetw.oewabox.at +0.0.0.0 nickde.oewabox.at +0.0.0.0 noen.oewabox.at +0.0.0.0 notori.oewabox.at +0.0.0.0 oe24.oewabox.at +0.0.0.0 oeamtc.oewabox.at +0.0.0.0 oewa.oewabox.at +0.0.0.0 ooen.oewabox.at +0.0.0.0 orf.oewabox.at +0.0.0.0 parent.oewabox.at +0.0.0.0 radioat.oewabox.at +0.0.0.0 rtl.oewabox.at +0.0.0.0 salzburg.oewabox.at +0.0.0.0 schlager.oewabox.at +0.0.0.0 sdo.oewabox.at +0.0.0.0 seibli.oewabox.at +0.0.0.0 servustv.oewabox.at +0.0.0.0 skip.oewabox.at +0.0.0.0 skysport.oewabox.at +0.0.0.0 smedizin.oewabox.at +0.0.0.0 sms.oewabox.at +0.0.0.0 solidbau.oewabox.at +0.0.0.0 speising.oewabox.at +0.0.0.0 sportat.oewabox.at +0.0.0.0 ssl-compass.oewabox.at +0.0.0.0 ssl-geizhals.oewabox.at +0.0.0.0 ssl-helpgvat.oewabox.at +0.0.0.0 ssl-karriere.oewabox.at +0.0.0.0 ssl-msn.oewabox.at +0.0.0.0 ssl-top.oewabox.at +0.0.0.0 ssl-uspgvat.oewabox.at +0.0.0.0 ssl-willhab.oewabox.at +0.0.0.0 ssl-wko.oewabox.at +0.0.0.0 starchat.oewabox.at +0.0.0.0 sunny.oewabox.at +0.0.0.0 super.oewabox.at +0.0.0.0 supermed.oewabox.at +0.0.0.0 svpro7.oewabox.at +0.0.0.0 szene1.oewabox.at +0.0.0.0 tagpress.oewabox.at +0.0.0.0 tele.oewabox.at +0.0.0.0 tennis.oewabox.at +0.0.0.0 tips.oewabox.at +0.0.0.0 tirolcom.oewabox.at +0.0.0.0 top.oewabox.at +0.0.0.0 tramarkt.oewabox.at +0.0.0.0 tripwolf.oewabox.at +0.0.0.0 uncut.oewabox.at +0.0.0.0 unimed.oewabox.at +0.0.0.0 uwz.oewabox.at +0.0.0.0 vcm.oewabox.at +0.0.0.0 via.oewabox.at +0.0.0.0 viacom.oewabox.at +0.0.0.0 warda.oewabox.at +0.0.0.0 webprog.oewabox.at +0.0.0.0 wfussb.oewabox.at +0.0.0.0 wienerz.oewabox.at +0.0.0.0 wiengvat.oewabox.at +0.0.0.0 willhab.oewabox.at +0.0.0.0 wirtvlg.oewabox.at +0.0.0.0 woche.oewabox.at +0.0.0.0 wohnnet.oewabox.at +0.0.0.0 zfm.oewabox.at +0.0.0.0 ak.imgfarm.com +0.0.0.0 global.msads.net +0.0.0.0 lads.myspace.com +0.0.0.0 refer.ccbill.com +0.0.0.0 rmads.msn.com +0.0.0.0 www.apmebf.com +0.0.0.0 www.tkqlhce.com +0.0.0.0 ad.ca.doubleclick.net +0.0.0.0 transfer.go.com +0.0.0.0 140cc.v.fwmrm.net +0.0.0.0 ad.hulu.com +0.0.0.0 adf.ly +0.0.0.0 ads.channel4.com +0.0.0.0 b.scorecardresearch.com +0.0.0.0 cdn.vidible.tv +0.0.0.0 da.feedsportal.com +0.0.0.0 fbcdn-creative-a.akamaihd.net +0.0.0.0 iadsdk.apple.com +0.0.0.0 optimized-by.rubiconproject.com +0.0.0.0 pixel.quantserve.com +0.0.0.0 tap2-cdn.rubiconproject.com +0.0.0.0 www.awin1.com +0.0.0.0 0101011.com +0.0.0.0 0427d7.se +0.0.0.0 0d79ed.r.axf8.net +0.0.0.0 0pn.ru +0.0.0.0 0qizz.super-promo.hoxo.info +0.0.0.0 1.adbrite.com +0.0.0.0 1.allyes.com.cn +0.0.0.0 1.forgetstore.com +0.0.0.0 1.httpads.com +0.0.0.0 1.primaryads.com +0.0.0.0 10.im.cz +0.0.0.0 104231.dtiblog.com +0.0.0.0 1097834592.rsc.cdn77.org +0.0.0.0 10fbb07a4b0.se +0.0.0.0 121media.com +0.0.0.0 123.fluxads.com +0.0.0.0 123plays.com +0.0.0.0 123specialgifts.com +0.0.0.0 130.211.230.53 +0.0.0.0 1kdailyprofit.biz +0.0.0.0 1q0bjj4d39.top +0.0.0.0 2-art-coliseum.com +0.0.0.0 2.adbrite.com +0.0.0.0 2.marketbanker.com +0.0.0.0 2.speedknow.co +0.0.0.0 207-87-18-203.wsmg.digex.net +0.0.0.0 247adbiz.net +0.0.0.0 247playz.com +0.0.0.0 247support.adtech.fr +0.0.0.0 247support.adtech.us +0.0.0.0 24ratownik.hit.gemius.pl +0.0.0.0 24trk.com +0.0.0.0 25184.hittail.com +0.0.0.0 2754.btrll.com +0.0.0.0 2leep.com +0.0.0.0 3.adbrite.com +0.0.0.0 3.cennter.com +0.0.0.0 312.1d27c9b8fb.com +0.0.0.0 321cba.com +0.0.0.0 32red.it +0.0.0.0 360ads.com +0.0.0.0 3fns.com +0.0.0.0 4.adbrite.com +0.0.0.0 411playz.com +0.0.0.0 4c28d6.r.axf8.net +0.0.0.0 4qinvite.4q.iperceptions.com +0.0.0.0 59nmk4u.tech +0.0.0.0 6159.genieessp.com +0.0.0.0 7500.com +0.0.0.0 76.a.boom.ro +0.0.0.0 7adpower.com +0.0.0.0 7bpeople.data.7bpeople.com +0.0.0.0 7cnbcnews.com +0.0.0.0 7n0zz.300prize.7113879.com +0.0.0.0 829331534d183e7d1f6a-8d91cc88b27b979d0ea53a10ce8855ec.r96.cf5.rackcdn.com +0.0.0.0 85103.hittail.com +0.0.0.0 8574dnj3yzjace8c8io6zr9u3n.hop.clickbank.net +0.0.0.0 86file.megajoy.com +0.0.0.0 86get.joy.cn +0.0.0.0 86log.joy.cn +0.0.0.0 888casino.com +0.0.0.0 8cr.purredheanb.online +0.0.0.0 8ruzz.allcpa.006238.xyz +0.0.0.0 961.com +0.0.0.0 brapolice.com +0.0.0.0 cmrpolice.com +0.0.0.0 compolice.com +0.0.0.0 compolice.net +0.0.0.0 cyppolice.com +0.0.0.0 egypolice.com +0.0.0.0 egypolice.net +0.0.0.0 ethpolice.com +0.0.0.0 fvid.atm.youku.com +0.0.0.0 geopolice.com +0.0.0.0 gumpolice.com +0.0.0.0 indpolice.com +0.0.0.0 luxpolice.com +0.0.0.0 luxpolice.net +0.0.0.0 mcopolice.com +0.0.0.0 pakpolice.com +0.0.0.0 phlpolice.com +0.0.0.0 ruspolice.com +0.0.0.0 ruspolice.net +0.0.0.0 usapolice.com +0.0.0.0 a.1nimo.com +0.0.0.0 a.ad.playstation.net +0.0.0.0 a.admaxserver.com +0.0.0.0 a.adorika.net +0.0.0.0 a.adready.com +0.0.0.0 a.adroll.com +0.0.0.0 a.ads1.msn.com +0.0.0.0 a.ads2.msn.com +0.0.0.0 a.adstome.com +0.0.0.0 a.as-eu.falkag.net +0.0.0.0 a.as-us.falkag.net +0.0.0.0 a.backclick.net +0.0.0.0 a.baidu.com +0.0.0.0 a.boom.ro +0.0.0.0 a.cctv.com +0.0.0.0 a.cntv.cn +0.0.0.0 a.karmatrail.club +0.0.0.0 a.kerg.net +0.0.0.0 a.ligatus.com +0.0.0.0 a.ligatus.de +0.0.0.0 a.prisacom.com +0.0.0.0 a.rad.live.com +0.0.0.0 a.rad.msn.com +0.0.0.0 a.ss34.on9mail.com +0.0.0.0 a.tadd.react2media.com +0.0.0.0 a.total-media.net +0.0.0.0 a.tribalfusion.com +0.0.0.0 a.triggit.com +0.0.0.0 a.twiago.com +0.0.0.0 a.websponsors.com +0.0.0.0 a01.gestionpub.com +0.0.0.0 a1.greenadworks.net +0.0.0.0 a1.interclick.com +0.0.0.0 a2.mediagra.com +0.0.0.0 a2.websponsors.com +0.0.0.0 a200.yieldoptimizer.com +0.0.0.0 a3.suntimes.com +0.0.0.0 a3.websponsors.com +0.0.0.0 a4.websponsors.com +0.0.0.0 a5.websponsors.com +0.0.0.0 a98spolicies.com +0.0.0.0 aa-nb.marketgid.com +0.0.0.0 aa.newsblock.marketgid.com +0.0.0.0 aads.treehugger.com +0.0.0.0 aams1.aim4media.com +0.0.0.0 aan.amazon.com +0.0.0.0 aax-cpm.amazon-adsystem.com +0.0.0.0 aax-eu.amazon-adsystem.com +0.0.0.0 aax-us-pdx.amazon-adsystem.com +0.0.0.0 ab-gb.mgid.com +0.0.0.0 abcnews.footprint.net +0.0.0.0 abrogatesdv.info +0.0.0.0 abseckw.adtlgc.com +0.0.0.0 ac.atpanel.com +0.0.0.0 ac.tynt.com +0.0.0.0 acces.streaming-direct.co +0.0.0.0 achetezfacile.com +0.0.0.0 acs.56.com +0.0.0.0 acs.agent.56.com +0.0.0.0 acs.agent.v-56.com +0.0.0.0 action.ientry.net +0.0.0.0 action.mathtag.com +0.0.0.0 action.media6degrees.com +0.0.0.0 actiondesk.com +0.0.0.0 actionflash.com +0.0.0.0 acvs.mediaonenetwork.net +0.0.0.0 acvsrv.mediaonenetwork.net +0.0.0.0 ad-411.com +0.0.0.0 ad-audit.tubemogul.com +0.0.0.0 ad-clicks.com +0.0.0.0 ad-delivery.net +0.0.0.0 ad-feeds.com +0.0.0.0 ad-flow.com +0.0.0.0 ad-gb.mgid.com +0.0.0.0 ad-gbn.com +0.0.0.0 ad-indicator.com +0.0.0.0 ad-noise.net +0.0.0.0 ad-plus.cn +0.0.0.0 ad-server.co.za +0.0.0.0 ad-servicestats.net +0.0.0.0 ad-sponsor.com +0.0.0.0 ad-srv.net +0.0.0.0 ad-u.com +0.0.0.0 ad-uk.tiscali.com +0.0.0.0 ad-vice.biz +0.0.0.0 ad-void.com +0.0.0.0 ad.103092804.com +0.0.0.0 ad.23blogs.com +0.0.0.0 ad.360yield.com +0.0.0.0 ad.3dnews.ru +0.0.0.0 ad.accessmediaproductions.com +0.0.0.0 ad.adfunky.com +0.0.0.0 ad.adition.de +0.0.0.0 ad.adition.net +0.0.0.0 ad.adlantis.jp +0.0.0.0 ad.adlegend.com +0.0.0.0 ad.admarketplace.net +0.0.0.0 ad.adnet.biz +0.0.0.0 ad.adnet.de +0.0.0.0 ad.adnetwork.com.br +0.0.0.0 ad.adnetwork.net +0.0.0.0 ad.adorika.com +0.0.0.0 ad.adperium.com +0.0.0.0 ad.adriver.ru +0.0.0.0 ad.adserve.com +0.0.0.0 ad.adserverplus.com +0.0.0.0 ad.adsmart.net +0.0.0.0 ad.adtegrity.net +0.0.0.0 ad.adtoma.com +0.0.0.0 ad.advertstream.com +0.0.0.0 ad.adview.pl +0.0.0.0 ad.afilo.pl +0.0.0.0 ad.aftenposten.no +0.0.0.0 ad.aftonbladet.se +0.0.0.0 ad.agava.tbn.ru +0.0.0.0 ad.agilemedia.jp +0.0.0.0 ad.agkn.com +0.0.0.0 ad.airad.com +0.0.0.0 ad.ajanshaber.com +0.0.0.0 ad.allyes.cn +0.0.0.0 ad.aquamediadirect.com +0.0.0.0 ad.asv.de +0.0.0.0 ad.axyzconductor.jp +0.0.0.0 ad.bannerbank.ru +0.0.0.0 ad.bannerconnect.net +0.0.0.0 ad.brainer.jp +0.0.0.0 ad.cctv.com +0.0.0.0 ad.cibleclick.com +0.0.0.0 ad.clickdistrict.com +0.0.0.0 ad.clickotmedia.com +0.0.0.0 ad.dc2.adtech.de +0.0.0.0 ad.designtaxi.com +0.0.0.0 ad.deviantart.com +0.0.0.0 ad.dic.nicovideo.jp +0.0.0.0 ad.directmirror.com +0.0.0.0 ad.doganburda.com +0.0.0.0 ad.download.net +0.0.0.0 ad.duga.jp +0.0.0.0 ad.e-sport.com +0.0.0.0 ad.egloos.com +0.0.0.0 ad.ekonomikticaret.com +0.0.0.0 ad.eporner.com +0.0.0.0 ad.espn.starwave.com +0.0.0.0 ad.favod.net +0.0.0.0 ad.filmweb.pl +0.0.0.0 ad.firstadsolution.com +0.0.0.0 ad.floq.jp +0.0.0.0 ad.flux.com +0.0.0.0 ad.fnnews.com +0.0.0.0 ad.fo.net +0.0.0.0 ad.fout.jp +0.0.0.0 ad.funpic.de +0.0.0.0 ad.garantiarkadas.com +0.0.0.0 ad.gazeta.pl +0.0.0.0 ad.ghfusion.com +0.0.0.0 ad.goo.ne.jp +0.0.0.0 ad.gr.doubleclick.net +0.0.0.0 ad.gra.pl +0.0.0.0 ad.greenmarquee.com +0.0.0.0 ad.groupon.be +0.0.0.0 ad.groupon.co.uk +0.0.0.0 ad.groupon.com +0.0.0.0 ad.groupon.de +0.0.0.0 ad.groupon.fr +0.0.0.0 ad.groupon.net +0.0.0.0 ad.groupon.nl +0.0.0.0 ad.groupon.pl +0.0.0.0 ad.hankooki.com +0.0.0.0 ad.harrenmedianetwork.com +0.0.0.0 ad.horvitznewspapers.net +0.0.0.0 ad.host.bannerflow.com +0.0.0.0 ad.howstuffworks.com +0.0.0.0 ad.icasthq.com +0.0.0.0 ad.iconadserver.com +0.0.0.0 ad.iloveinterracial.com +0.0.0.0 ad.imad.co.kr +0.0.0.0 ad.impressbm.co.jp +0.0.0.0 ad.indomp3z.us +0.0.0.0 ad.insightexpressai.com +0.0.0.0 ad.investopedia.com +0.0.0.0 ad.ir.ru +0.0.0.0 ad.isohunt.com +0.0.0.0 ad.iwin.com +0.0.0.0 ad.jamster.ca +0.0.0.0 ad.jamster.com +0.0.0.0 ad.jokeroo.com +0.0.0.0 ad.jp.ap.valu.com +0.0.0.0 ad.kat.ph +0.0.0.0 ad.kataweb.it +0.0.0.0 ad.kau.li +0.0.0.0 ad.krutilka.ru +0.0.0.0 ad.land.to +0.0.0.0 ad.leadcrunch.com +0.0.0.0 ad.lgappstv.com +0.0.0.0 ad.lijit.com +0.0.0.0 ad.linkexchange.com +0.0.0.0 ad.linkstorms.com +0.0.0.0 ad.linksynergy.com +0.0.0.0 ad.livere.co.kr +0.0.0.0 ad.lyricswire.com +0.0.0.0 ad.mainichi.jp +0.0.0.0 ad.maist.jp +0.0.0.0 ad.mangareader.net +0.0.0.0 ad.mastermedia.ru +0.0.0.0 ad.moscowtimes.ru +0.0.0.0 ad.my.doubleclick.net +0.0.0.0 ad.mygamesol.com +0.0.0.0 ad.nate.com +0.0.0.0 ad.ne.com +0.0.0.0 ad.net +0.0.0.0 ad.network60.com +0.0.0.0 ad.nicovideo.jp +0.0.0.0 ad.ntvmsnbc.com +0.0.0.0 ad.ohmynews.com +0.0.0.0 ad.oret.jp +0.0.0.0 ad.ourgame.com +0.0.0.0 ad.parom.hu +0.0.0.0 ad.partis.si +0.0.0.0 ad.pgwticketshop.nl +0.0.0.0 ad.ph-prt.tbn.ru +0.0.0.0 ad.pickple.net +0.0.0.0 ad.pravda.ru +0.0.0.0 ad.preferences.com +0.0.0.0 ad.premiumonlinemedia.com +0.0.0.0 ad.pro-advertising.com +0.0.0.0 ad.propellerads.com +0.0.0.0 ad.proxy.sh +0.0.0.0 ad.qq.com +0.0.0.0 ad.qwapi.com +0.0.0.0 ad.qyer.com +0.0.0.0 ad.realist.gen.tr +0.0.0.0 ad.realmcdn.net +0.0.0.0 ad.reduxmediia.com +0.0.0.0 ad.reklamport.com +0.0.0.0 ad.repubblica.it +0.0.0.0 ad.response.jp +0.0.0.0 ad.ru.doubleclick.net +0.0.0.0 ad.search.ch +0.0.0.0 ad.searchina.ne.jp +0.0.0.0 ad.sensismediasmart.com +0.0.0.0 ad.sharethis.com +0.0.0.0 ad.showbizz.net +0.0.0.0 ad.slashgear.com +0.0.0.0 ad.sma.punto.net +0.0.0.0 ad.smni.com +0.0.0.0 ad.spielothek.so +0.0.0.0 ad.sponsoreo.com +0.0.0.0 ad.suprnova.org +0.0.0.0 ad.technoramedia.com +0.0.0.0 ad.text.tbn.ru +0.0.0.0 ad.tgdaily.com +0.0.0.0 ad.thehill.com +0.0.0.0 ad.thetyee.ca +0.0.0.0 ad.thisav.com +0.0.0.0 ad.thoughtsondance.info +0.0.0.0 ad.tiscali.com +0.0.0.0 ad.tomshardware.com +0.0.0.0 ad.trafficmp.com +0.0.0.0 ad.traffmonster.info +0.0.0.0 ad.ubnm.co.kr +0.0.0.0 ad.uk.tangozebra.com +0.0.0.0 ad.userporn.com +0.0.0.0 ad.valuecalling.com +0.0.0.0 ad.vidaroo.com +0.0.0.0 ad.vippers.jp +0.0.0.0 ad.vurts.com +0.0.0.0 ad.watch.impress.co.jp +0.0.0.0 ad.webisleri.com +0.0.0.0 ad.webprovider.com +0.0.0.0 ad.wiredvision.jp +0.0.0.0 ad.xtendmedia.com +0.0.0.0 ad.yemeksepeti.com +0.0.0.0 ad.yieldmanager.com +0.0.0.0 ad.zaman.com +0.0.0.0 ad.zaman.com.tr +0.0.0.0 ad.zodera.hu +0.0.0.0 ad0.haynet.com +0.0.0.0 ad001.ru +0.0.0.0 ad01.adonspot.com +0.0.0.0 ad01.focalink.com +0.0.0.0 ad02.focalink.com +0.0.0.0 ad03.focalink.com +0.0.0.0 ad04.focalink.com +0.0.0.0 ad05.focalink.com +0.0.0.0 ad06.focalink.com +0.0.0.0 ad07.focalink.com +0.0.0.0 ad08.focalink.com +0.0.0.0 ad09.focalink.com +0.0.0.0 ad1.adtitan.net +0.0.0.0 ad1.bannerbank.ru +0.0.0.0 ad1.checkm8.com +0.0.0.0 ad1.clickhype.com +0.0.0.0 ad1.emediate.se +0.0.0.0 ad1.gamezone.com +0.0.0.0 ad1.hotel.com +0.0.0.0 ad1.lbn.ru +0.0.0.0 ad1.nownews.com +0.0.0.0 ad1.peel.com +0.0.0.0 ad1.popcap.com +0.0.0.0 ad1.yomiuri.co.jp +0.0.0.0 ad1.yourmedia.com +0.0.0.0 ad10.bannerbank.ru +0.0.0.0 ad10.checkm8.com +0.0.0.0 ad10.focalink.com +0.0.0.0 ad101com.adbureau.net +0.0.0.0 ad10digital.checkm8.com +0.0.0.0 ad11.bannerbank.ru +0.0.0.0 ad11.checkm8.com +0.0.0.0 ad11.focalink.com +0.0.0.0 ad11digital.checkm8.com +0.0.0.0 ad12.bannerbank.ru +0.0.0.0 ad12.checkm8.com +0.0.0.0 ad12.focalink.com +0.0.0.0 ad12digital.checkm8.com +0.0.0.0 ad13.checkm8.com +0.0.0.0 ad13.focalink.com +0.0.0.0 ad130m.adpdx.com +0.0.0.0 ad131m.adk2.co +0.0.0.0 ad132m.adpdx.com +0.0.0.0 ad13digital.checkm8.com +0.0.0.0 ad14.checkm8.com +0.0.0.0 ad14.focalink.com +0.0.0.0 ad14digital.checkm8.com +0.0.0.0 ad15.checkm8.com +0.0.0.0 ad15.focalink.com +0.0.0.0 ad15digital.checkm8.com +0.0.0.0 ad16.checkm8.com +0.0.0.0 ad16.focalink.com +0.0.0.0 ad16digital.checkm8.com +0.0.0.0 ad17.checkm8.com +0.0.0.0 ad17.focalink.com +0.0.0.0 ad17digital.checkm8.com +0.0.0.0 ad18.checkm8.com +0.0.0.0 ad18.focalink.com +0.0.0.0 ad18digital.checkm8.com +0.0.0.0 ad19.checkm8.com +0.0.0.0 ad19.focalink.com +0.0.0.0 ad19digital.checkm8.com +0.0.0.0 ad1digital.checkm8.com +0.0.0.0 ad2.adecn.com +0.0.0.0 ad2.bal.dotandad.com +0.0.0.0 ad2.bannerbank.ru +0.0.0.0 ad2.bannerhost.ru +0.0.0.0 ad2.bbmedia.cz +0.0.0.0 ad2.checkm8.com +0.0.0.0 ad2.cooks.com +0.0.0.0 ad2.firehousezone.com +0.0.0.0 ad2.gammae.com +0.0.0.0 ad2.hotel.com +0.0.0.0 ad2.ip.ro +0.0.0.0 ad2.lbn.ru +0.0.0.0 ad2.nationalreview.com +0.0.0.0 ad2.neodatagroup.com +0.0.0.0 ad2.pamedia.com +0.0.0.0 ad2.parom.hu +0.0.0.0 ad2.peel.com +0.0.0.0 ad2.pl +0.0.0.0 ad2.pl.mediainter.net +0.0.0.0 ad2.sbisec.co.jp +0.0.0.0 ad2.smni.com +0.0.0.0 ad2.tr.mediainter.net +0.0.0.0 ad2.zapmedya.com +0.0.0.0 ad2.zophar.net +0.0.0.0 ad20.checkm8.com +0.0.0.0 ad20.net +0.0.0.0 ad20digital.checkm8.com +0.0.0.0 ad21.checkm8.com +0.0.0.0 ad21digital.checkm8.com +0.0.0.0 ad22.checkm8.com +0.0.0.0 ad22digital.checkm8.com +0.0.0.0 ad23.checkm8.com +0.0.0.0 ad234.prbn.ru +0.0.0.0 ad23digital.checkm8.com +0.0.0.0 ad24.checkm8.com +0.0.0.0 ad24digital.checkm8.com +0.0.0.0 ad25.checkm8.com +0.0.0.0 ad25digital.checkm8.com +0.0.0.0 ad26.checkm8.com +0.0.0.0 ad26digital.checkm8.com +0.0.0.0 ad27.checkm8.com +0.0.0.0 ad27digital.checkm8.com +0.0.0.0 ad28.checkm8.com +0.0.0.0 ad28digital.checkm8.com +0.0.0.0 ad29.checkm8.com +0.0.0.0 ad29digital.checkm8.com +0.0.0.0 ad2digital.checkm8.com +0.0.0.0 ad3.adfarm1.adition.com +0.0.0.0 ad3.bannerbank.ru +0.0.0.0 ad3.bb.ru +0.0.0.0 ad3.checkm8.com +0.0.0.0 ad3.eu +0.0.0.0 ad3.l3go.com +0.0.0.0 ad3.lbn.ru +0.0.0.0 ad3.nationalreview.com +0.0.0.0 ad3.rambler.ru +0.0.0.0 ad30.checkm8.com +0.0.0.0 ad30digital.checkm8.com +0.0.0.0 ad31.checkm8.com +0.0.0.0 ad31digital.checkm8.com +0.0.0.0 ad32.checkm8.com +0.0.0.0 ad32digital.checkm8.com +0.0.0.0 ad33.checkm8.com +0.0.0.0 ad33digital.checkm8.com +0.0.0.0 ad34.checkm8.com +0.0.0.0 ad34digital.checkm8.com +0.0.0.0 ad35.checkm8.com +0.0.0.0 ad35digital.checkm8.com +0.0.0.0 ad36.checkm8.com +0.0.0.0 ad36digital.checkm8.com +0.0.0.0 ad37.checkm8.com +0.0.0.0 ad37digital.checkm8.com +0.0.0.0 ad38.checkm8.com +0.0.0.0 ad38digital.checkm8.com +0.0.0.0 ad39.checkm8.com +0.0.0.0 ad39digital.checkm8.com +0.0.0.0 ad3digital.checkm8.com +0.0.0.0 ad4.adfarm1.adition.com +0.0.0.0 ad4.bannerbank.ru +0.0.0.0 ad4.checkm8.com +0.0.0.0 ad4.lbn.ru +0.0.0.0 ad4.liverail.com +0.0.0.0 ad4.speedbit.com +0.0.0.0 ad40.checkm8.com +0.0.0.0 ad40digital.checkm8.com +0.0.0.0 ad41.atlas.cz +0.0.0.0 ad41.checkm8.com +0.0.0.0 ad41digital.checkm8.com +0.0.0.0 ad42.checkm8.com +0.0.0.0 ad42digital.checkm8.com +0.0.0.0 ad43.checkm8.com +0.0.0.0 ad43digital.checkm8.com +0.0.0.0 ad44.checkm8.com +0.0.0.0 ad44digital.checkm8.com +0.0.0.0 ad45.checkm8.com +0.0.0.0 ad45digital.checkm8.com +0.0.0.0 ad46.checkm8.com +0.0.0.0 ad46digital.checkm8.com +0.0.0.0 ad47.checkm8.com +0.0.0.0 ad47digital.checkm8.com +0.0.0.0 ad48.checkm8.com +0.0.0.0 ad48digital.checkm8.com +0.0.0.0 ad49.checkm8.com +0.0.0.0 ad49digital.checkm8.com +0.0.0.0 ad4digital.checkm8.com +0.0.0.0 ad4partners.com +0.0.0.0 ad5.bannerbank.ru +0.0.0.0 ad5.checkm8.com +0.0.0.0 ad5.lbn.ru +0.0.0.0 ad50.checkm8.com +0.0.0.0 ad50digital.checkm8.com +0.0.0.0 ad5digital.checkm8.com +0.0.0.0 ad6.bannerbank.ru +0.0.0.0 ad6.checkm8.com +0.0.0.0 ad6.horvitznewspapers.net +0.0.0.0 ad6.liverail.com +0.0.0.0 ad6digital.checkm8.com +0.0.0.0 ad6media.fr +0.0.0.0 ad7.bannerbank.ru +0.0.0.0 ad7.checkm8.com +0.0.0.0 ad7digital.checkm8.com +0.0.0.0 ad8.adfarm1.adition.com +0.0.0.0 ad8.bannerbank.ru +0.0.0.0 ad8.checkm8.com +0.0.0.0 ad8digital.checkm8.com +0.0.0.0 ad9.bannerbank.ru +0.0.0.0 ad9.checkm8.com +0.0.0.0 ad9digital.checkm8.com +0.0.0.0 adagiobanner.s3.amazonaws.com +0.0.0.0 adaos-ads.net +0.0.0.0 adapd.com +0.0.0.0 adb.fling.com +0.0.0.0 adbg.hit.gemius.pl +0.0.0.0 adbit.co +0.0.0.0 adblockdetect.xyz +0.0.0.0 adblockerkillswebsites.pw +0.0.0.0 adbnr.ru +0.0.0.0 adbot.theonion.com +0.0.0.0 adbucks.brandreachsys.com +0.0.0.0 adc2.adcentriconline.com +0.0.0.0 adcache.aftenposten.no +0.0.0.0 adcanadian.com +0.0.0.0 adcarem.co +0.0.0.0 adcentric.randomseed.com +0.0.0.0 adclick.hit.gemius.pl +0.0.0.0 adclient-af.lp.uol.com.br +0.0.0.0 adcode.adengage.com +0.0.0.0 adcontent.reedbusiness.com +0.0.0.0 adcontent.videoegg.com +0.0.0.0 adcontrol.tudou.com +0.0.0.0 adcontroller.unicast.com +0.0.0.0 adcount.ohmynews.com +0.0.0.0 adcreative.tribuneinteractive.com +0.0.0.0 adcycle.footymad.net +0.0.0.0 adcycle.icpeurope.net +0.0.0.0 add.f5haber.com +0.0.0.0 addelivery.thestreet.com +0.0.0.0 addserver.mtv.com.tr +0.0.0.0 addthis.com +0.0.0.0 addthiscdn.com +0.0.0.0 ade.wooboo.com.cn +0.0.0.0 adengine.rt.ru +0.0.0.0 adexc.net +0.0.0.0 adexchangeprediction.com +0.0.0.0 adexpansion.com +0.0.0.0 adexprt.com +0.0.0.0 adexprt.me +0.0.0.0 adextensioncontrol.tudou.com +0.0.0.0 adfarm.mserve.ca +0.0.0.0 adfarm1.adition.com +0.0.0.0 adfiles.pitchforkmedia.com +0.0.0.0 adforce.ads.imgis.com +0.0.0.0 adforce.adtech.de +0.0.0.0 adforce.adtech.fr +0.0.0.0 adforce.adtech.us +0.0.0.0 adforce.imgis.com +0.0.0.0 adfu.blockstackers.com +0.0.0.0 adfusion.com +0.0.0.0 adgraphics.theonion.com +0.0.0.0 adgroup.naver.com +0.0.0.0 adguanggao.eee114.com +0.0.0.0 adhearus.com +0.0.0.0 adhese.nieuwsblad.be +0.0.0.0 adhitzads.com +0.0.0.0 adhref.pl +0.0.0.0 adi.mainichi.co.jp +0.0.0.0 adidm.idmnet.pl +0.0.0.0 adidm.supermedia.pl +0.0.0.0 adimage.asia1.com.sg +0.0.0.0 adimage.asiaone.com +0.0.0.0 adimage.blm.net +0.0.0.0 adimages.earthweb.com +0.0.0.0 adimages.mp3.com +0.0.0.0 adimages.watchmygf.net +0.0.0.0 adimg.activeadv.net +0.0.0.0 adin.bigpoint.com +0.0.0.0 adincl.gopher.com +0.0.0.0 adipics.com +0.0.0.0 adireland.com +0.0.0.0 adj1.thruport.com +0.0.0.0 adj10.thruport.com +0.0.0.0 adj11.thruport.com +0.0.0.0 adj12.thruport.com +0.0.0.0 adj13.thruport.com +0.0.0.0 adj14.thruport.com +0.0.0.0 adj15.thruport.com +0.0.0.0 adj16.thruport.com +0.0.0.0 adj16r1.thruport.com +0.0.0.0 adj17.thruport.com +0.0.0.0 adj18.thruport.com +0.0.0.0 adj19.thruport.com +0.0.0.0 adj2.thruport.com +0.0.0.0 adj22.thruport.com +0.0.0.0 adj23.thruport.com +0.0.0.0 adj24.thruport.com +0.0.0.0 adj25.thruport.com +0.0.0.0 adj26.thruport.com +0.0.0.0 adj27.thruport.com +0.0.0.0 adj28.thruport.com +0.0.0.0 adj29.thruport.com +0.0.0.0 adj3.thruport.com +0.0.0.0 adj30.thruport.com +0.0.0.0 adj31.thruport.com +0.0.0.0 adj32.thruport.com +0.0.0.0 adj33.thruport.com +0.0.0.0 adj34.thruport.com +0.0.0.0 adj35.thruport.com +0.0.0.0 adj36.thruport.com +0.0.0.0 adj37.thruport.com +0.0.0.0 adj38.thruport.com +0.0.0.0 adj39.thruport.com +0.0.0.0 adj4.thruport.com +0.0.0.0 adj40.thruport.com +0.0.0.0 adj41.thruport.com +0.0.0.0 adj43.thruport.com +0.0.0.0 adj44.thruport.com +0.0.0.0 adj45.thruport.com +0.0.0.0 adj46.thruport.com +0.0.0.0 adj47.thruport.com +0.0.0.0 adj48.thruport.com +0.0.0.0 adj49.thruport.com +0.0.0.0 adj5.thruport.com +0.0.0.0 adj50.thruport.com +0.0.0.0 adj51.thruport.com +0.0.0.0 adj52.thruport.com +0.0.0.0 adj53.thruport.com +0.0.0.0 adj54.thruport.com +0.0.0.0 adj55.thruport.com +0.0.0.0 adj56.thruport.com +0.0.0.0 adj6.thruport.com +0.0.0.0 adj7.thruport.com +0.0.0.0 adj8.thruport.com +0.0.0.0 adj9.thruport.com +0.0.0.0 adjmps.com +0.0.0.0 adjuggler.net +0.0.0.0 adkontekst.pl +0.0.0.0 adm.265g.com +0.0.0.0 adm.baidu.com +0.0.0.0 adm.funshion.com +0.0.0.0 adm.fwmrm.net +0.0.0.0 adm.shacknews.com +0.0.0.0 adm.shinobi.jp +0.0.0.0 adm.xmfish.com +0.0.0.0 adman.freeze.com +0.0.0.0 admanage.com +0.0.0.0 admanager.adam4adam.com +0.0.0.0 admanager.beweb.com +0.0.0.0 admanager.collegepublisher.com +0.0.0.0 admanager1.collegepublisher.com +0.0.0.0 admanager2.broadbandpublisher.com +0.0.0.0 admanager3.collegepublisher.com +0.0.0.0 admarkt.marktplaats.nl +0.0.0.0 admatch-syndication.mochila.com +0.0.0.0 admatcher.videostrip.com +0.0.0.0 admax.quisma.com +0.0.0.0 admd.yam.com +0.0.0.0 admedia.wsod.com +0.0.0.0 admedia.xoom.com +0.0.0.0 admedias.net +0.0.0.0 admeta.vo.llnwd.net +0.0.0.0 admez.com +0.0.0.0 admin.digitalacre.com +0.0.0.0 admin.hotkeys.com +0.0.0.0 admin.inq.com +0.0.0.0 admonkey.dapper.net +0.0.0.0 adms.physorg.com +0.0.0.0 adn.ebay.com +0.0.0.0 adn.kinkydollars.com +0.0.0.0 adn.zone-telechargement.com +0.0.0.0 adnet.chicago.tribune.com +0.0.0.0 adnet.com +0.0.0.0 adnetwork.nextgen.net +0.0.0.0 adnetwork.rovicorp.com +0.0.0.0 adnetxchange.com +0.0.0.0 adng.ascii24.com +0.0.0.0 adnxs.revsci.net +0.0.0.0 adobe.tt.omtrdc.net +0.0.0.0 adobee.com +0.0.0.0 adobur.com +0.0.0.0 adobur.net +0.0.0.0 adoburcrv.com +0.0.0.0 adonline.e-kolay.net +0.0.0.0 adopt.euroclick.com +0.0.0.0 adopt.precisead.com +0.0.0.0 adotube.com +0.0.0.0 adp.gazeta.pl +0.0.0.0 adpick.switchboard.com +0.0.0.0 adping.qq.com +0.0.0.0 adplay.tudou.com +0.0.0.0 adprovider.adlure.net +0.0.0.0 adpulse.ads.targetnet.com +0.0.0.0 adpush.dreamscape.com +0.0.0.0 adremote.pathfinder.com +0.0.0.0 adremote.timeinc.aol.com +0.0.0.0 adremote.timeinc.net +0.0.0.0 adroll.com +0.0.0.0 adrotate.se +0.0.0.0 adrunnr.com +0.0.0.0 ads-de.spray.net +0.0.0.0 ads-dev.youporn.com +0.0.0.0 ads-direct.prodigy.net +0.0.0.0 ads-hl.noktamedya.com.tr +0.0.0.0 ads-local.sixapart.com +0.0.0.0 ads-rm.looksmart.com +0.0.0.0 ads-rolandgarros.com +0.0.0.0 ads-rouge.haber7.com +0.0.0.0 ads-roularta.adhese.com +0.0.0.0 ads-stats.com +0.0.0.0 ads-t.ru +0.0.0.0 ads-web.mail.com +0.0.0.0 ads.7days.ae +0.0.0.0 ads.8833.com +0.0.0.0 ads.abs-cbn.com +0.0.0.0 ads.accelerator-media.com +0.0.0.0 ads.active.com +0.0.0.0 ads.activeagent.at +0.0.0.0 ads.ad-center.com +0.0.0.0 ads.ad-flow.com +0.0.0.0 ads.ad4game.com +0.0.0.0 ads.adamoads.com +0.0.0.0 ads.adap.tv +0.0.0.0 ads.adbrite.com +0.0.0.0 ads.adbroker.de +0.0.0.0 ads.adcorps.com +0.0.0.0 ads.addesktop.com +0.0.0.0 ads.addynamix.com +0.0.0.0 ads.adengage.com +0.0.0.0 ads.adgoto.com +0.0.0.0 ads.adhall.com +0.0.0.0 ads.adhearus.com +0.0.0.0 ads.adhostingsolutions.com +0.0.0.0 ads.adk2.com +0.0.0.0 ads.admaximize.com +0.0.0.0 ads.admonitor.net +0.0.0.0 ads.adn.com +0.0.0.0 ads.adroar.com +0.0.0.0 ads.adsag.com +0.0.0.0 ads.adsbookie.com +0.0.0.0 ads.adsinimages.com +0.0.0.0 ads.adsonar.com +0.0.0.0 ads.adsrvmedia.com +0.0.0.0 ads.adsrvmedia.net +0.0.0.0 ads.adsrvr.org +0.0.0.0 ads.adtegrity.net +0.0.0.0 ads.adtiger.de +0.0.0.0 ads.adviva.net +0.0.0.0 ads.advolume.com +0.0.0.0 ads.adworldnetwork.com +0.0.0.0 ads.adx.nu +0.0.0.0 ads.adxpansion.com +0.0.0.0 ads.adxpose.com +0.0.0.0 ads.adxpose.mpire.akadns.net +0.0.0.0 ads.aftonbladet.se +0.0.0.0 ads.ah-ha.com +0.0.0.0 ads.ahds.ac.uk +0.0.0.0 ads.aintitcool.com +0.0.0.0 ads.airamericaradio.com +0.0.0.0 ads.ak.facebook.com +0.0.0.0 ads.al.com +0.0.0.0 ads.albawaba.com +0.0.0.0 ads.allsites.com +0.0.0.0 ads.allvertical.com +0.0.0.0 ads.amarillo.com +0.0.0.0 ads.amateurmatch.com +0.0.0.0 ads.amazingmedia.com +0.0.0.0 ads.amgdgt.com +0.0.0.0 ads.ami-admin.com +0.0.0.0 ads.anm.co.uk +0.0.0.0 ads.anvato.com +0.0.0.0 ads.apartmenttherapy.com +0.0.0.0 ads.apn.co.za +0.0.0.0 ads.appleinsider.com +0.0.0.0 ads.araba.com +0.0.0.0 ads.arcadechain.com +0.0.0.0 ads.arkitera.net +0.0.0.0 ads.aroundtherings.com +0.0.0.0 ads.as4x.tmcs.ticketmaster.ca +0.0.0.0 ads.asia1.com +0.0.0.0 ads.asp.net +0.0.0.0 ads.aspentimes.com +0.0.0.0 ads.associatedcontent.com +0.0.0.0 ads.astalavista.us +0.0.0.0 ads.atlantamotorspeedway.com +0.0.0.0 ads.auctionads.com +0.0.0.0 ads.auctioncity.co.nz +0.0.0.0 ads.auctions.yahoo.com +0.0.0.0 ads.augusta.com +0.0.0.0 ads.aversion2.com +0.0.0.0 ads.aws.sitepoint.com +0.0.0.0 ads.azjmp.com +0.0.0.0 ads.b10f.jp +0.0.0.0 ads.baazee.com +0.0.0.0 ads.bangkokpost.co.th +0.0.0.0 ads.banner.t-online.de +0.0.0.0 ads.barnonedrinks.com +0.0.0.0 ads.battle.net +0.0.0.0 ads.bauerpublishing.com +0.0.0.0 ads.baventures.com +0.0.0.0 ads.bbcworld.com +0.0.0.0 ads.bcnewsgroup.com +0.0.0.0 ads.beeb.com +0.0.0.0 ads.beliefnet.com +0.0.0.0 ads.beta.itravel2000.com +0.0.0.0 ads.bfast.com +0.0.0.0 ads.bfm.valueclick.net +0.0.0.0 ads.bianca.com +0.0.0.0 ads.bidclix.com +0.0.0.0 ads.bidvertiser.com +0.0.0.0 ads.bigcitytools.com +0.0.0.0 ads.biggerboat.com +0.0.0.0 ads.bitsonthewire.com +0.0.0.0 ads.bizhut.com +0.0.0.0 ads.bizx.info +0.0.0.0 ads.blixem.nl +0.0.0.0 ads.blogherads.com +0.0.0.0 ads.blp.calueclick.net +0.0.0.0 ads.blp.valueclick.net +0.0.0.0 ads.bonnint.net +0.0.0.0 ads.box.sk +0.0.0.0 ads.brand.net +0.0.0.0 ads.bridgetrack.com +0.0.0.0 ads.britishexpats.com +0.0.0.0 ads.buscape.com.br +0.0.0.0 ads.businessclick.com +0.0.0.0 ads.calgarysun.com +0.0.0.0 ads.callofdutyblackopsforum.net +0.0.0.0 ads.camrecord.com +0.0.0.0 ads.cardea.se +0.0.0.0 ads.cardplayer.com +0.0.0.0 ads.carltononline.com +0.0.0.0 ads.carocean.co.uk +0.0.0.0 ads.catholic.org +0.0.0.0 ads.cavello.com +0.0.0.0 ads.cdfreaks.com +0.0.0.0 ads.cdnow.com +0.0.0.0 ads.cgchannel.com +0.0.0.0 ads.chalomumbai.com +0.0.0.0 ads.champs-elysees.com +0.0.0.0 ads.checkm8.co.za +0.0.0.0 ads.chipcenter.com +0.0.0.0 ads.chumcity.com +0.0.0.0 ads.cineville.nl +0.0.0.0 ads.cjonline.com +0.0.0.0 ads.clamav.net +0.0.0.0 ads.clara.net +0.0.0.0 ads.cleveland.com +0.0.0.0 ads.clickability.com +0.0.0.0 ads.clickad.com.pl +0.0.0.0 ads.clickagents.com +0.0.0.0 ads.clickhouse.com +0.0.0.0 ads.clicksor.com +0.0.0.0 ads.clickthru.net +0.0.0.0 ads.clicmanager.fr +0.0.0.0 ads.clubzone.com +0.0.0.0 ads.cluster01.oasis.zmh.zope.net +0.0.0.0 ads.cmediaworld.com +0.0.0.0 ads.cmg.valueclick.net +0.0.0.0 ads.cnn.com +0.0.0.0 ads.cnngo.com +0.0.0.0 ads.cobrad.com +0.0.0.0 ads.collegclub.com +0.0.0.0 ads.collegehumor.com +0.0.0.0 ads.collegemix.com +0.0.0.0 ads.comediagroup.hu +0.0.0.0 ads.comicbookresources.com +0.0.0.0 ads.coopson.com +0.0.0.0 ads.corusradionetwork.com +0.0.0.0 ads.courierpostonline.com +0.0.0.0 ads.cpsgsoftware.com +0.0.0.0 ads.crapville.com +0.0.0.0 ads.crosscut.com +0.0.0.0 ads.ctvdigital.net +0.0.0.0 ads.currantbun.com +0.0.0.0 ads.cvut.cz +0.0.0.0 ads.cyberfight.ru +0.0.0.0 ads.cybertrader.com +0.0.0.0 ads.danworld.net +0.0.0.0 ads.darkhardware.com +0.0.0.0 ads.dbforums.com +0.0.0.0 ads.ddj.com +0.0.0.0 ads.dealnews.com +0.0.0.0 ads.democratandchronicle.com +0.0.0.0 ads.designboom.com +0.0.0.0 ads.designtaxi.com +0.0.0.0 ads.developershed.com +0.0.0.0 ads.digitalacre.com +0.0.0.0 ads.digitalhealthcare.com +0.0.0.0 ads.dimcab.com +0.0.0.0 ads.discovery.com +0.0.0.0 ads.dk +0.0.0.0 ads.doclix.com +0.0.0.0 ads.dontpanicmedia.com +0.0.0.0 ads.dothads.com +0.0.0.0 ads.doubleviking.com +0.0.0.0 ads.drf.com +0.0.0.0 ads.drivelinemedia.com +0.0.0.0 ads.drugs.com +0.0.0.0 ads.dumpalink.com +0.0.0.0 ads.e-planning.net +0.0.0.0 ads.ecircles.com +0.0.0.0 ads.ecosalon.com +0.0.0.0 ads.edirectme.com +0.0.0.0 ads.eircom.net +0.0.0.0 ads.emeraldcoast.com +0.0.0.0 ads.enliven.com +0.0.0.0 ads.enrd.co +0.0.0.0 ads.erotism.com +0.0.0.0 ads.espn.adsonar.com +0.0.0.0 ads.eudora.com +0.0.0.0 ads.euniverseads.com +0.0.0.0 ads.examiner.net +0.0.0.0 ads.exhedra.com +0.0.0.0 ads.expekt.com +0.0.0.0 ads.fark.com +0.0.0.0 ads.fayettevillenc.com +0.0.0.0 ads.filecloud.com +0.0.0.0 ads.fileindexer.com +0.0.0.0 ads.first-response.be +0.0.0.0 ads.flabber.nl +0.0.0.0 ads.flashgames247.com +0.0.0.0 ads.fling.com +0.0.0.0 ads.floridatoday.com +0.0.0.0 ads.fox.com +0.0.0.0 ads.fredericksburg.com +0.0.0.0 ads.freebannertrade.com +0.0.0.0 ads.freeskreen.com +0.0.0.0 ads.freshmeat.net +0.0.0.0 ads.fresnobee.com +0.0.0.0 ads.fuckingmachines.com +0.0.0.0 ads.gamblinghit.com +0.0.0.0 ads.game.net +0.0.0.0 ads.gamecopyworld.no +0.0.0.0 ads.gameinformer.com +0.0.0.0 ads.gamelink.com +0.0.0.0 ads.gamespy.com +0.0.0.0 ads.garga.biz +0.0.0.0 ads.gateway.com +0.0.0.0 ads.gettools.com +0.0.0.0 ads.gigaom.com.php5-12.websitetestlink.com +0.0.0.0 ads.globeandmail.com +0.0.0.0 ads.globo.com +0.0.0.0 ads.gmg.valueclick.net +0.0.0.0 ads.god.co.uk +0.0.0.0 ads.golfweek.com +0.0.0.0 ads.gorillanation.com +0.0.0.0 ads.granadamedia.com +0.0.0.0 ads.greenbaypressgazette.com +0.0.0.0 ads.greenvilleonline.com +0.0.0.0 ads.gunaxin.com +0.0.0.0 ads.haber3.com +0.0.0.0 ads.haber7.net +0.0.0.0 ads.haberler.com +0.0.0.0 ads.halogennetwork.com +0.0.0.0 ads.hamptonroads.com +0.0.0.0 ads.hamtonroads.com +0.0.0.0 ads.hardwarezone.com +0.0.0.0 ads.he.valueclick.net +0.0.0.0 ads.herald-mail.com +0.0.0.0 ads.heraldnet.com +0.0.0.0 ads.heraldonline.com +0.0.0.0 ads.heraldsun.com +0.0.0.0 ads.heroldonline.com +0.0.0.0 ads.hitcents.com +0.0.0.0 ads.hlwd.valueclick.net +0.0.0.0 ads.hollandsentinel.com +0.0.0.0 ads.hooqy.com +0.0.0.0 ads.hosting.vcmedia.vn +0.0.0.0 ads.hothardware.com +0.0.0.0 ads.hulu.com.edgesuite.net +0.0.0.0 ads.humorbua.no +0.0.0.0 ads.i-am-bored.com +0.0.0.0 ads.i12.de +0.0.0.0 ads.i33.com +0.0.0.0 ads.iboost.com +0.0.0.0 ads.id-t.com +0.0.0.0 ads.iforex.com +0.0.0.0 ads.ihaberadserver.com +0.0.0.0 ads.illuminatednation.com +0.0.0.0 ads.imdb.com +0.0.0.0 ads.imposibil.ro +0.0.0.0 ads.indeed.com +0.0.0.0 ads.indya.com +0.0.0.0 ads.indystar.com +0.0.0.0 ads.inedomedia.com +0.0.0.0 ads.inetdirectories.com +0.0.0.0 ads.inetinteractive.com +0.0.0.0 ads.infospace.com +0.0.0.0 ads.injersey.com +0.0.0.0 ads.insidehighered.com +0.0.0.0 ads.intellicast.com +0.0.0.0 ads.intergi.com +0.0.0.0 ads.inthesidebar.com +0.0.0.0 ads.iol.co.il +0.0.0.0 ads.ireport.com +0.0.0.0 ads.isat-tech.com +0.0.0.0 ads.isum.de +0.0.0.0 ads.jacksonville.com +0.0.0.0 ads.jeneauempire.com +0.0.0.0 ads.jetpackdigital.com +0.0.0.0 ads.jetphotos.net +0.0.0.0 ads.jewcy.com +0.0.0.0 ads.jimworld.com +0.0.0.0 ads.jlisting.jp +0.0.0.0 ads.joetec.net +0.0.0.0 ads.jokaroo.com +0.0.0.0 ads.jornadavirtual.com.mx +0.0.0.0 ads.jossip.com +0.0.0.0 ads.juicyads.com +0.0.0.0 ads.juneauempire.com +0.0.0.0 ads.jwtt3.com +0.0.0.0 ads.kazaa.com +0.0.0.0 ads.keywordblocks.com +0.0.0.0 ads.kixer.com +0.0.0.0 ads.kleinman.com +0.0.0.0 ads.kmpads.com +0.0.0.0 ads.kokteyl.com +0.0.0.0 ads.koreanfriendfinder.com +0.0.0.0 ads.ksl.com +0.0.0.0 ads.kure.tv +0.0.0.0 ads.leo.org +0.0.0.0 ads.lfstmedia.com +0.0.0.0 ads.lilengine.com +0.0.0.0 ads.link4ads.com +0.0.0.0 ads.linksponsor.com +0.0.0.0 ads.linktracking.net +0.0.0.0 ads.list-universe.com +0.0.0.0 ads.live365.com +0.0.0.0 ads.ljworld.com +0.0.0.0 ads.lmmob.com +0.0.0.0 ads.lnkworld.com +0.0.0.0 ads.localnow.com +0.0.0.0 ads.lubbockonline.com +0.0.0.0 ads.lucidmedia.com +0.0.0.0 ads.lucidmedia.com.gslb.com +0.0.0.0 ads.lycos-europe.com +0.0.0.0 ads.lycos.com +0.0.0.0 ads.macnews.de +0.0.0.0 ads.macupdate.com +0.0.0.0 ads.madison.com +0.0.0.0 ads.madisonavenue.com +0.0.0.0 ads.magnetic.is +0.0.0.0 ads.mail.com +0.0.0.0 ads.mail3x.com +0.0.0.0 ads.maksimum.net +0.0.0.0 ads.mambocommunities.com +0.0.0.0 ads.mdchoice.com +0.0.0.0 ads.mediaforge.com +0.0.0.0 ads.mediamayhemcorp.com +0.0.0.0 ads.mediaturf.net +0.0.0.0 ads.mefeedia.com +0.0.0.0 ads.megaproxy.com +0.0.0.0 ads.meropar.jp +0.0.0.0 ads.metblogs.com +0.0.0.0 ads.metropolis.co.jp +0.0.0.0 ads.mindsetnetwork.com +0.0.0.0 ads.miniclip.com +0.0.0.0 ads.mininova.org +0.0.0.0 ads.mircx.com +0.0.0.0 ads.mixi.jp +0.0.0.0 ads.mixtraffic.com +0.0.0.0 ads.mlive.com +0.0.0.0 ads.mm.ap.org +0.0.0.0 ads.mndaily.com +0.0.0.0 ads.mobiledia.com +0.0.0.0 ads.mobygames.com +0.0.0.0 ads.modbee.com +0.0.0.0 ads.mofos.com +0.0.0.0 ads.monster.com +0.0.0.0 ads.morningstar.com +0.0.0.0 ads.mouseplanet.com +0.0.0.0 ads.movieweb.com +0.0.0.0 ads.mp3searchy.com +0.0.0.0 ads.mt.valueclick.net +0.0.0.0 ads.mtv.uol.com.br +0.0.0.0 ads.musiccity.com +0.0.0.0 ads.mustangworks.com +0.0.0.0 ads.mycricket.com +0.0.0.0 ads.mysimon.com +0.0.0.0 ads.mytelus.com +0.0.0.0 ads.nandomedia.com +0.0.0.0 ads.nationalreview.com +0.0.0.0 ads.nativeinstruments.de +0.0.0.0 ads.neoseeker.com +0.0.0.0 ads.neowin.net +0.0.0.0 ads.nerve.com +0.0.0.0 ads.netbul.com +0.0.0.0 ads.nethaber.com +0.0.0.0 ads.networkwcs.net +0.0.0.0 ads.networldmedia.net +0.0.0.0 ads.neudesicmediagroup.com +0.0.0.0 ads.newcity.com +0.0.0.0 ads.newcitynet.com +0.0.0.0 ads.newsbtc.com +0.0.0.0 ads.newsminerextra.com +0.0.0.0 ads.newsobserver.com +0.0.0.0 ads.newtention.net +0.0.0.0 ads.newtimes.com +0.0.0.0 ads.ngenuity.com +0.0.0.0 ads.nicovideo.jp +0.0.0.0 ads.northjersey.com +0.0.0.0 ads.novem.pl +0.0.0.0 ads.nowrunning.com +0.0.0.0 ads.npr.valueclick.net +0.0.0.0 ads.ntadvice.com +0.0.0.0 ads.nudecards.com +0.0.0.0 ads.nwsource.com.edgesuite.net +0.0.0.0 ads.nyjournalnews.com +0.0.0.0 ads.nyootv.com +0.0.0.0 ads.nypost.com +0.0.0.0 ads.omaha.com +0.0.0.0 ads.online.ie +0.0.0.0 ads.onlineathens.com +0.0.0.0 ads.onlinevenditatio.space +0.0.0.0 ads.onvertise.com +0.0.0.0 ads.open.pl +0.0.0.0 ads.opensubtitles.org +0.0.0.0 ads.oregonlive.com +0.0.0.0 ads.orsm.net +0.0.0.0 ads.osdn.com +0.0.0.0 ads.pandora.tv.net +0.0.0.0 ads.panoramtech.net +0.0.0.0 ads.paper.li +0.0.0.0 ads.papeteka.com +0.0.0.0 ads.parrysound.com +0.0.0.0 ads.partner2profit.com +0.0.0.0 ads.pastemagazine.com +0.0.0.0 ads.paxnet.co.kr +0.0.0.0 ads.pcper.com +0.0.0.0 ads.pdxguide.com +0.0.0.0 ads.peel.com +0.0.0.0 ads.peninsulaclarion.com +0.0.0.0 ads.pennyweb.com +0.0.0.0 ads.people.com.cn +0.0.0.0 ads.persgroep.net +0.0.0.0 ads.peteava.ro +0.0.0.0 ads.pg.valueclick.net +0.0.0.0 ads.phillyburbs.com +0.0.0.0 ads.pilotonline.com +0.0.0.0 ads.pitchforkmedia.com +0.0.0.0 ads.pittsburghlive.com +0.0.0.0 ads.pixiq.com +0.0.0.0 ads.place1.com +0.0.0.0 ads.planet-f1.com +0.0.0.0 ads.plantyours.com +0.0.0.0 ads.pno.net +0.0.0.0 ads.poconorecord.com +0.0.0.0 ads.pointroll.com +0.0.0.0 ads.portlandmercury.com +0.0.0.0 ads.postimees.ee +0.0.0.0 ads.premiumnetwork.com +0.0.0.0 ads.premiumnetwork.net +0.0.0.0 ads.pressdemo.com +0.0.0.0 ads.pricescan.com +0.0.0.0 ads.primaryclick.com +0.0.0.0 ads.primeinteractive.net +0.0.0.0 ads.pro-market.net +0.0.0.0 ads.pro-market.net.edgesuite.net +0.0.0.0 ads.profitsdeluxe.com +0.0.0.0 ads.profootballtalk.com +0.0.0.0 ads.prospect.org +0.0.0.0 ads.pruc.org +0.0.0.0 ads.queendom.com +0.0.0.0 ads.quicken.com +0.0.0.0 ads.rackshack.net +0.0.0.0 ads.rasmussenreports.com +0.0.0.0 ads.ratemyprofessors.com +0.0.0.0 ads.rcgroups.com +0.0.0.0 ads.rdstore.com +0.0.0.0 ads.realcastmedia.com +0.0.0.0 ads.realcities.com +0.0.0.0 ads.realmedia.de +0.0.0.0 ads.realtechnetwork.net +0.0.0.0 ads.reason.com +0.0.0.0 ads.redorbit.com +0.0.0.0 ads.register.com +0.0.0.0 ads.reklamatik.com +0.0.0.0 ads.reklamlar.net +0.0.0.0 ads.revenews.com +0.0.0.0 ads.revenue.net +0.0.0.0 ads.revsci.net +0.0.0.0 ads.rim.co.uk +0.0.0.0 ads.roanoke.com +0.0.0.0 ads.rockstargames.com +0.0.0.0 ads.rodale.com +0.0.0.0 ads.roiserver.com +0.0.0.0 ads.rondomondo.com +0.0.0.0 ads.rootzoo.com +0.0.0.0 ads.rottentomatoes.com +0.0.0.0 ads.rp-online.de +0.0.0.0 ads.ruralpress.com +0.0.0.0 ads.sabah.com.tr +0.0.0.0 ads.sacbee.com +0.0.0.0 ads.scabee.com +0.0.0.0 ads.schwabtrader.com +0.0.0.0 ads.scott-sports.com +0.0.0.0 ads.scottusa.com +0.0.0.0 ads.seattletimes.com +0.0.0.0 ads.seriouswheels.com +0.0.0.0 ads.sexier.com +0.0.0.0 ads.sfusion.com +0.0.0.0 ads.shiftdelete.net +0.0.0.0 ads.shoppingads.com +0.0.0.0 ads.shoutfile.com +0.0.0.0 ads.shovtvnet.com +0.0.0.0 ads.showtvnet.com +0.0.0.0 ads.sify.com +0.0.0.0 ads.simpli.fi +0.0.0.0 ads.simtel.com +0.0.0.0 ads.simtel.net +0.0.0.0 ads.sitemeter.com +0.0.0.0 ads.sixapart.com +0.0.0.0 ads.sl.interpals.net +0.0.0.0 ads.smartclicks.com +0.0.0.0 ads.smartclicks.net +0.0.0.0 ads.smowtion.com +0.0.0.0 ads.snowball.com +0.0.0.0 ads.socialtheater.com +0.0.0.0 ads.sohh.com +0.0.0.0 ads.somethingawful.com +0.0.0.0 ads.songs.pk +0.0.0.0 ads.specificclick.com +0.0.0.0 ads.specificmedia.com +0.0.0.0 ads.specificpop.com +0.0.0.0 ads.spilgames.com +0.0.0.0 ads.spintrade.com +0.0.0.0 ads.spymac.net +0.0.0.0 ads.starbanner.com +0.0.0.0 ads.stephensmedia.com +0.0.0.0 ads.stileproject.com +0.0.0.0 ads.stoiximan.gr +0.0.0.0 ads.stupid.com +0.0.0.0 ads.sumotorrent.com +0.0.0.0 ads.sunjournal.com +0.0.0.0 ads.sup.com +0.0.0.0 ads.superonline.com +0.0.0.0 ads.swiftnews.com +0.0.0.0 ads.switchboard.com +0.0.0.0 ads.tbs.com +0.0.0.0 ads.teamyehey.com +0.0.0.0 ads.technoratimedia.com +0.0.0.0 ads.techvibes.com +0.0.0.0 ads.techweb.com +0.0.0.0 ads.telecinco.es +0.0.0.0 ads.telegraaf.nl +0.0.0.0 ads.the15thinternet.com +0.0.0.0 ads.theawl.com +0.0.0.0 ads.thebugs.ws +0.0.0.0 ads.thecoolhunter.net +0.0.0.0 ads.thecrimson.com +0.0.0.0 ads.thefrisky.com +0.0.0.0 ads.thegauntlet.com +0.0.0.0 ads.theglobeandmail.com +0.0.0.0 ads.theindependent.com +0.0.0.0 ads.theolympian.com +0.0.0.0 ads.thesmokinggun.com +0.0.0.0 ads.thestranger.com +0.0.0.0 ads.thewebfreaks.com +0.0.0.0 ads.timesunion.com +0.0.0.0 ads.tiscali.fr +0.0.0.0 ads.tnt.tv +0.0.0.0 ads.top-banners.com +0.0.0.0 ads.top500.org +0.0.0.0 ads.toronto.com +0.0.0.0 ads.torrpedo.net +0.0.0.0 ads.tracfonewireless.com +0.0.0.0 ads.track.net +0.0.0.0 ads.trackitdown.net +0.0.0.0 ads.traderonline.com +0.0.0.0 ads.traffichaus.com +0.0.0.0 ads.trafficjunky.net +0.0.0.0 ads.traffikings.com +0.0.0.0 ads.treehugger.com +0.0.0.0 ads.tricityherald.com +0.0.0.0 ads.tromaville.com +0.0.0.0 ads.trutv.com +0.0.0.0 ads.tucows.com +0.0.0.0 ads.turkticaret.net +0.0.0.0 ads.tw.adsonar.com +0.0.0.0 ads.ucomics.com +0.0.0.0 ads.uigc.net +0.0.0.0 ads.ukclimbing.com +0.0.0.0 ads.ultimatesurrender.com +0.0.0.0 ads.unixathome.org +0.0.0.0 ads.update.com +0.0.0.0 ads.uproar.com +0.0.0.0 ads.urbandictionary.com +0.0.0.0 ads.us.e-planning.ne +0.0.0.0 ads.us.e-planning.net +0.0.0.0 ads.userfriendly.org +0.0.0.0 ads.v3exchange.com +0.0.0.0 ads.vaildaily.com +0.0.0.0 ads.valuead.com +0.0.0.0 ads.vegas.com +0.0.0.0 ads.veloxia.com +0.0.0.0 ads.ventivmedia.com +0.0.0.0 ads.veoh.com +0.0.0.0 ads.verkata.com +0.0.0.0 ads.vesperexchange.com +0.0.0.0 ads.vg.basefarm.net +0.0.0.0 ads.viddler.com +0.0.0.0 ads.videoadvertising.com +0.0.0.0 ads.viewlondon.co.uk +0.0.0.0 ads.virginislandsdailynews.com +0.0.0.0 ads.vnuemedia.com +0.0.0.0 ads.vs.co +0.0.0.0 ads.vs.com +0.0.0.0 ads.waframedia1.com +0.0.0.0 ads.wanadooregie.com +0.0.0.0 ads.warcry.com +0.0.0.0 ads.watershed-publishing.com +0.0.0.0 ads.wave.si +0.0.0.0 ads.weather.com +0.0.0.0 ads.web.alwayson-network.com +0.0.0.0 ads.web.compuserve.com +0.0.0.0 ads.web21.com +0.0.0.0 ads.webattack.com +0.0.0.0 ads.webcoretech.com +0.0.0.0 ads.webfeat.com +0.0.0.0 ads.webheat.com +0.0.0.0 ads.webhosting.info +0.0.0.0 ads.webindia123.com +0.0.0.0 ads.webisleri.com +0.0.0.0 ads.webmd.com +0.0.0.0 ads.webnet.advance.net +0.0.0.0 ads.websponsors.com +0.0.0.0 ads.weissinc.com +0.0.0.0 ads.whaleads.com +0.0.0.0 ads.winsite.com +0.0.0.0 ads.wnd.com +0.0.0.0 ads.worldstarhiphop.com +0.0.0.0 ads.wunderground.com +0.0.0.0 ads.x10.com +0.0.0.0 ads.x10.net +0.0.0.0 ads.x17online.com +0.0.0.0 ads.xbox-scene.com +0.0.0.0 ads.xboxic.com +0.0.0.0 ads.xposed.com +0.0.0.0 ads.xtra.ca +0.0.0.0 ads.xtramsn.co.nz +0.0.0.0 ads.xxxbunker.com +0.0.0.0 ads.yieldmedia.net +0.0.0.0 ads.yimg.com.edgesuite.net +0.0.0.0 ads.youporn.com +0.0.0.0 ads.zamunda.se +0.0.0.0 ads.zap2it.com +0.0.0.0 ads.zynga.com +0.0.0.0 ads0.okcupid.com +0.0.0.0 ads01.com +0.0.0.0 ads01.focalink.com +0.0.0.0 ads01.hyperbanner.net +0.0.0.0 ads02.focalink.com +0.0.0.0 ads02.hyperbanner.net +0.0.0.0 ads03.focalink.com +0.0.0.0 ads03.hyperbanner.net +0.0.0.0 ads04.focalink.com +0.0.0.0 ads04.hyperbanner.net +0.0.0.0 ads05.focalink.com +0.0.0.0 ads05.hyperbanner.net +0.0.0.0 ads06.focalink.com +0.0.0.0 ads06.hyperbanner.net +0.0.0.0 ads07.focalink.com +0.0.0.0 ads07.hyperbanner.net +0.0.0.0 ads08.focalink.com +0.0.0.0 ads08.hyperbanner.net +0.0.0.0 ads09.focalink.com +0.0.0.0 ads09.hyperbanner.net +0.0.0.0 ads1.activeagent.at +0.0.0.0 ads1.ad-flow.com +0.0.0.0 ads1.admedia.ro +0.0.0.0 ads1.advance.net +0.0.0.0 ads1.advertwizard.com +0.0.0.0 ads1.ami-admin.com +0.0.0.0 ads1.destructoid.com +0.0.0.0 ads1.empiretheatres.com +0.0.0.0 ads1.erotism.com +0.0.0.0 ads1.eudora.com +0.0.0.0 ads1.globeandmail.com +0.0.0.0 ads1.itadnetwork.co.uk +0.0.0.0 ads1.jev.co.za +0.0.0.0 ads1.msads.net +0.0.0.0 ads1.perfadbrite.com.akadns.net +0.0.0.0 ads1.performancingads.com +0.0.0.0 ads1.realcities.com +0.0.0.0 ads1.revenue.net +0.0.0.0 ads1.sptimes.com +0.0.0.0 ads1.theglobeandmail.com +0.0.0.0 ads1.ucomics.com +0.0.0.0 ads1.udc.advance.net +0.0.0.0 ads1.updated.com +0.0.0.0 ads1.virtumundo.com +0.0.0.0 ads1.zdnet.com +0.0.0.0 ads10.focalink.com +0.0.0.0 ads10.hyperbanner.net +0.0.0.0 ads10.udc.advance.net +0.0.0.0 ads11.focalink.com +0.0.0.0 ads11.hyperbanner.net +0.0.0.0 ads11.udc.advance.net +0.0.0.0 ads12.focalink.com +0.0.0.0 ads12.hyperbanner.net +0.0.0.0 ads12.udc.advance.net +0.0.0.0 ads13.focalink.com +0.0.0.0 ads13.hyperbanner.net +0.0.0.0 ads13.udc.advance.net +0.0.0.0 ads14.bpath.com +0.0.0.0 ads14.focalink.com +0.0.0.0 ads14.hyperbanner.net +0.0.0.0 ads14.udc.advance.net +0.0.0.0 ads15.bpath.com +0.0.0.0 ads15.focalink.com +0.0.0.0 ads15.hyperbanner.net +0.0.0.0 ads15.udc.advance.net +0.0.0.0 ads16.advance.net +0.0.0.0 ads16.focalink.com +0.0.0.0 ads16.hyperbanner.net +0.0.0.0 ads16.udc.advance.net +0.0.0.0 ads17.focalink.com +0.0.0.0 ads17.hyperbanner.net +0.0.0.0 ads18.focalink.com +0.0.0.0 ads18.hyperbanner.net +0.0.0.0 ads19.focalink.com +0.0.0.0 ads2-adnow.com +0.0.0.0 ads2.ad-flow.com +0.0.0.0 ads2.adbrite.com +0.0.0.0 ads2.advance.net +0.0.0.0 ads2.advertwizard.com +0.0.0.0 ads2.canoe.ca +0.0.0.0 ads2.clickad.com +0.0.0.0 ads2.collegclub.com +0.0.0.0 ads2.collegeclub.com +0.0.0.0 ads2.drivelinemedia.com +0.0.0.0 ads2.emeraldcoast.com +0.0.0.0 ads2.exhedra.com +0.0.0.0 ads2.firingsquad.com +0.0.0.0 ads2.haber3.com +0.0.0.0 ads2.ihaberadserver.com +0.0.0.0 ads2.ljworld.com +0.0.0.0 ads2.msn.com +0.0.0.0 ads2.newtimes.com +0.0.0.0 ads2.opensubtitles.org +0.0.0.0 ads2.osdn.com +0.0.0.0 ads2.pittsburghlive.com +0.0.0.0 ads2.realcities.com +0.0.0.0 ads2.revenue.net +0.0.0.0 ads2.rp.pl +0.0.0.0 ads2.theglobeandmail.com +0.0.0.0 ads2.udc.advance.net +0.0.0.0 ads2.virtumundo.com +0.0.0.0 ads2.weblogssl.com +0.0.0.0 ads2.zdnet.com +0.0.0.0 ads2.zeusclicks.com +0.0.0.0 ads20.focalink.com +0.0.0.0 ads21.focalink.com +0.0.0.0 ads22.focalink.com +0.0.0.0 ads23.focalink.com +0.0.0.0 ads24.focalink.com +0.0.0.0 ads25.focalink.com +0.0.0.0 ads2ads.net +0.0.0.0 ads2srv.com +0.0.0.0 ads3.ad-flow.com +0.0.0.0 ads3.adman.gr +0.0.0.0 ads3.advance.net +0.0.0.0 ads3.advertwizard.com +0.0.0.0 ads3.canoe.ca +0.0.0.0 ads3.freebannertrade.com +0.0.0.0 ads3.haber3.com +0.0.0.0 ads3.ihaberadserver.com +0.0.0.0 ads3.jubii.dk +0.0.0.0 ads3.realcities.com +0.0.0.0 ads3.udc.advance.net +0.0.0.0 ads3.virtumundo.com +0.0.0.0 ads3.zdnet.com +0.0.0.0 ads36.hyperbanner.net +0.0.0.0 ads360.com +0.0.0.0 ads4.ad-flow.com +0.0.0.0 ads4.advance.net +0.0.0.0 ads4.advertwizard.com +0.0.0.0 ads4.canoe.ca +0.0.0.0 ads4.realcities.com +0.0.0.0 ads4.udc.advance.net +0.0.0.0 ads4.virtumundo.com +0.0.0.0 ads4cheap.com +0.0.0.0 ads5.ad-flow.com +0.0.0.0 ads5.advance.net +0.0.0.0 ads5.advertwizard.com +0.0.0.0 ads5.fxdepo.com +0.0.0.0 ads5.mconetwork.com +0.0.0.0 ads5.sabah.com.tr +0.0.0.0 ads5.udc.advance.net +0.0.0.0 ads5.virtumundo.com +0.0.0.0 ads6.ad-flow.com +0.0.0.0 ads6.advance.net +0.0.0.0 ads6.advertwizard.com +0.0.0.0 ads6.udc.advance.net +0.0.0.0 ads7.ad-flow.com +0.0.0.0 ads7.advance.net +0.0.0.0 ads7.advertwizard.com +0.0.0.0 ads7.speedbit.com +0.0.0.0 ads7.udc.advance.net +0.0.0.0 ads8.ad-flow.com +0.0.0.0 ads8.advertwizard.com +0.0.0.0 ads8.udc.advance.net +0.0.0.0 ads80.com +0.0.0.0 ads9.ad-flow.com +0.0.0.0 ads9.advertwizard.com +0.0.0.0 ads9.udc.advance.net +0.0.0.0 adsadmin.aspentimes.com +0.0.0.0 adsadmin.corusradionetwork.com +0.0.0.0 adsadmin.vaildaily.com +0.0.0.0 adsbizsimple.com +0.0.0.0 adscendmedia.com +0.0.0.0 adsclick.qq.com +0.0.0.0 adsearch.adkontekst.pl +0.0.0.0 adsearch.pl +0.0.0.0 adsearch.wp.pl +0.0.0.0 adsentnetwork.com +0.0.0.0 adserer.ihigh.com +0.0.0.0 adserv.aip.org +0.0.0.0 adserv.bravenet.com +0.0.0.0 adserv.entriq.net +0.0.0.0 adserv.free6.com +0.0.0.0 adserv.geocomm.com +0.0.0.0 adserv.internetfuel.com +0.0.0.0 adserv.jupiter.com +0.0.0.0 adserv.lwmn.net +0.0.0.0 adserv.maineguide.com +0.0.0.0 adserv.muchosucko.com +0.0.0.0 adserv.mywebtimes.com +0.0.0.0 adserv.pitchforkmedia.com +0.0.0.0 adserv.postbulletin.com +0.0.0.0 adserv.quality-channel.de +0.0.0.0 adserv.usps.com +0.0.0.0 adserv001.adtech.de +0.0.0.0 adserv001.adtech.fr +0.0.0.0 adserv001.adtech.us +0.0.0.0 adserv002.adtech.de +0.0.0.0 adserv002.adtech.fr +0.0.0.0 adserv002.adtech.us +0.0.0.0 adserv003.adtech.de +0.0.0.0 adserv003.adtech.fr +0.0.0.0 adserv003.adtech.us +0.0.0.0 adserv004.adtech.de +0.0.0.0 adserv004.adtech.fr +0.0.0.0 adserv004.adtech.us +0.0.0.0 adserv005.adtech.de +0.0.0.0 adserv005.adtech.fr +0.0.0.0 adserv005.adtech.us +0.0.0.0 adserv006.adtech.de +0.0.0.0 adserv006.adtech.fr +0.0.0.0 adserv006.adtech.us +0.0.0.0 adserv007.adtech.de +0.0.0.0 adserv007.adtech.fr +0.0.0.0 adserv007.adtech.us +0.0.0.0 adserv008.adtech.de +0.0.0.0 adserv008.adtech.fr +0.0.0.0 adserv008.adtech.us +0.0.0.0 adserv2.bravenet.com +0.0.0.0 adservant.guj.de +0.0.0.0 adserve.adtoll.com +0.0.0.0 adserve.canadawidemagazines.com +0.0.0.0 adserve.city-ad.com +0.0.0.0 adserve.ehpub.com +0.0.0.0 adserve.gossipgirls.com +0.0.0.0 adserve.mizzenmedia.com +0.0.0.0 adserve.podaddies.com +0.0.0.0 adserve.profit-smart.com +0.0.0.0 adserve.shopzilla.com +0.0.0.0 adserve.splicetoday.com +0.0.0.0 adserve.viaarena.com +0.0.0.0 adserve5.nikkeibp.co.jp +0.0.0.0 adserver-2.ig.com.br +0.0.0.0 adserver-3.ig.com.br +0.0.0.0 adserver-4.ig.com.br +0.0.0.0 adserver-5.ig.com.br +0.0.0.0 adserver-espnet.sportszone.net +0.0.0.0 adserver-images.adikteev.com +0.0.0.0 adserver.100free.com +0.0.0.0 adserver.163.com +0.0.0.0 adserver.2618.com +0.0.0.0 adserver.3digit.de +0.0.0.0 adserver.a.in.monster.com +0.0.0.0 adserver.abv.bg +0.0.0.0 adserver.ad-it.dk +0.0.0.0 adserver.adreactor.com +0.0.0.0 adserver.adremedy.com +0.0.0.0 adserver.ads360.com +0.0.0.0 adserver.adserver.com.pl +0.0.0.0 adserver.adsimsar.net +0.0.0.0 adserver.adsincontext.com +0.0.0.0 adserver.adtech.fr +0.0.0.0 adserver.adtech.us +0.0.0.0 adserver.adtechus.com +0.0.0.0 adserver.advertist.com +0.0.0.0 adserver.affiliatemg.com +0.0.0.0 adserver.affiliation.com +0.0.0.0 adserver.aim4media.com +0.0.0.0 adserver.airmiles.ca +0.0.0.0 adserver.akqa.net +0.0.0.0 adserver.allheadlinenews.com +0.0.0.0 adserver.amnews.com +0.0.0.0 adserver.ancestry.com +0.0.0.0 adserver.anemo.com +0.0.0.0 adserver.anm.co.uk +0.0.0.0 adserver.archant.co.uk +0.0.0.0 adserver.artempireindustries.com +0.0.0.0 adserver.arttoday.com +0.0.0.0 adserver.atari.net +0.0.0.0 adserver.billiger-surfen.de +0.0.0.0 adserver.billiger-telefonieren.de +0.0.0.0 adserver.bizland-inc.net +0.0.0.0 adserver.bluereactor.com +0.0.0.0 adserver.bluereactor.net +0.0.0.0 adserver.bluewin.ch +0.0.0.0 adserver.buttonware.com +0.0.0.0 adserver.buttonware.net +0.0.0.0 adserver.cantv.net +0.0.0.0 adserver.cebu-online.com +0.0.0.0 adserver.cheatplanet.com +0.0.0.0 adserver.chickclick.com +0.0.0.0 adserver.click4cash.de +0.0.0.0 adserver.clubic.com +0.0.0.0 adserver.clundressed.com +0.0.0.0 adserver.co.il +0.0.0.0 adserver.colleges.com +0.0.0.0 adserver.com-solutions.com +0.0.0.0 adserver.comparatel.fr +0.0.0.0 adserver.conjelco.com +0.0.0.0 adserver.corusradionetwork.com +0.0.0.0 adserver.creative-asia.com +0.0.0.0 adserver.creativeinspire.com +0.0.0.0 adserver.dayrates.com +0.0.0.0 adserver.dbusiness.com +0.0.0.0 adserver.developersnetwork.com +0.0.0.0 adserver.devx.com +0.0.0.0 adserver.digitalpartners.com +0.0.0.0 adserver.directforce.com +0.0.0.0 adserver.directforce.net +0.0.0.0 adserver.dnps.com +0.0.0.0 adserver.dotmusic.com +0.0.0.0 adserver.eham.net +0.0.0.0 adserver.emapadserver.com +0.0.0.0 adserver.emporis.com +0.0.0.0 adserver.emulation64.com +0.0.0.0 adserver.eudora.com +0.0.0.0 adserver.eva2000.com +0.0.0.0 adserver.expatica.nxs.nl +0.0.0.0 adserver.ezzhosting.com +0.0.0.0 adserver.filefront.com +0.0.0.0 adserver.fmpub.net +0.0.0.0 adserver.fr.adtech.de +0.0.0.0 adserver.gameparty.net +0.0.0.0 adserver.gamesquad.net +0.0.0.0 adserver.garden.com +0.0.0.0 adserver.gecce.com +0.0.0.0 adserver.gorillanation.com +0.0.0.0 adserver.gr +0.0.0.0 adserver.gunaxin.com +0.0.0.0 adserver.harktheherald.com +0.0.0.0 adserver.harvestadsdepot.com +0.0.0.0 adserver.hellasnet.gr +0.0.0.0 adserver.hg-computer.de +0.0.0.0 adserver.hi-m.de +0.0.0.0 adserver.hispavista.com +0.0.0.0 adserver.hk.outblaze.com +0.0.0.0 adserver.home.pl +0.0.0.0 adserver.hostinteractive.com +0.0.0.0 adserver.humanux.com +0.0.0.0 adserver.hwupgrade.it +0.0.0.0 adserver.icmedienhaus.de +0.0.0.0 adserver.ifmagazine.com +0.0.0.0 adserver.ig.com.br +0.0.0.0 adserver.ign.com +0.0.0.0 adserver.ilounge.com +0.0.0.0 adserver.infinit.net +0.0.0.0 adserver.infotiger.com +0.0.0.0 adserver.interfree.it +0.0.0.0 adserver.inwind.it +0.0.0.0 adserver.ision.de +0.0.0.0 adserver.isonews.com +0.0.0.0 adserver.ixm.co.uk +0.0.0.0 adserver.jacotei.com.br +0.0.0.0 adserver.janes.net +0.0.0.0 adserver.janes.org +0.0.0.0 adserver.jolt.co.uk +0.0.0.0 adserver.journalinteractive.com +0.0.0.0 adserver.juicyads.com +0.0.0.0 adserver.kcilink.com +0.0.0.0 adserver.killeraces.com +0.0.0.0 adserver.kimia.es +0.0.0.0 adserver.kylemedia.com +0.0.0.0 adserver.lanacion.com.ar +0.0.0.0 adserver.lanepress.com +0.0.0.0 adserver.latimes.com +0.0.0.0 adserver.legacy-network.com +0.0.0.0 adserver.linktrader.co.uk +0.0.0.0 adserver.livejournal.com +0.0.0.0 adserver.lostreality.com +0.0.0.0 adserver.lunarpages.com +0.0.0.0 adserver.lycos.co.jp +0.0.0.0 adserver.m2kcore.com +0.0.0.0 adserver.magazyn.pl +0.0.0.0 adserver.matchcraft.com +0.0.0.0 adserver.merc.com +0.0.0.0 adserver.mindshare.de +0.0.0.0 adserver.mobsmith.com +0.0.0.0 adserver.monster.com +0.0.0.0 adserver.monstersandcritics.com +0.0.0.0 adserver.motonews.pl +0.0.0.0 adserver.myownemail.com +0.0.0.0 adserver.netcreators.nl +0.0.0.0 adserver.netshelter.net +0.0.0.0 adserver.newdigitalgroup.com +0.0.0.0 adserver.newmassmedia.net +0.0.0.0 adserver.news-journalonline.com +0.0.0.0 adserver.news.com +0.0.0.0 adserver.newtimes.com +0.0.0.0 adserver.nzoom.com +0.0.0.0 adserver.onwisconsin.com +0.0.0.0 adserver.passion.com +0.0.0.0 adserver.phatmax.net +0.0.0.0 adserver.phillyburbs.com +0.0.0.0 adserver.planet-multiplayer.de +0.0.0.0 adserver.plhb.com +0.0.0.0 adserver.pollstar.com +0.0.0.0 adserver.portal.pl +0.0.0.0 adserver.prodigy.net +0.0.0.0 adserver.proteinos.com +0.0.0.0 adserver.radio-canada.ca +0.0.0.0 adserver.ratestar.net +0.0.0.0 adserver.revver.com +0.0.0.0 adserver.ro +0.0.0.0 adserver.sabc.co.za +0.0.0.0 adserver.sabcnews.co.za +0.0.0.0 adserver.sandbox.cxad.cxense.com +0.0.0.0 adserver.scmp.com +0.0.0.0 adserver.securityfocus.com +0.0.0.0 adserver.sextracker.com +0.0.0.0 adserver.singnet.com +0.0.0.0 adserver.sl.kharkov.ua +0.0.0.0 adserver.smashtv.com +0.0.0.0 adserver.snowball.com +0.0.0.0 adserver.softonic.com +0.0.0.0 adserver.soloserver.com +0.0.0.0 adserver.swiatobrazu.pl +0.0.0.0 adserver.synergetic.de +0.0.0.0 adserver.te.pt +0.0.0.0 adserver.telalink.net +0.0.0.0 adserver.teracent.net +0.0.0.0 adserver.terra.com.br +0.0.0.0 adserver.terra.es +0.0.0.0 adserver.theknot.com +0.0.0.0 adserver.thirty4.com +0.0.0.0 adserver.thisislondon.co.uk +0.0.0.0 adserver.tilted.net +0.0.0.0 adserver.tqs.ca +0.0.0.0 adserver.track-star.com +0.0.0.0 adserver.trader.ca +0.0.0.0 adserver.trafficsyndicate.com +0.0.0.0 adserver.trb.com +0.0.0.0 adserver.tribuneinteractive.com +0.0.0.0 adserver.tsgadv.com +0.0.0.0 adserver.tulsaworld.com +0.0.0.0 adserver.tweakers.net +0.0.0.0 adserver.ugo.com +0.0.0.0 adserver.ugo.nl +0.0.0.0 adserver.ukplus.co.uk +0.0.0.0 adserver.uproxx.com +0.0.0.0 adserver.usermagnet.com +0.0.0.0 adserver.van.net +0.0.0.0 adserver.virgin.net +0.0.0.0 adserver.virtualminds.nl +0.0.0.0 adserver.virtuous.co.uk +0.0.0.0 adserver.voir.ca +0.0.0.0 adserver.webads.co.uk +0.0.0.0 adserver.webads.nl +0.0.0.0 adserver.wemnet.nl +0.0.0.0 adserver.wietforum.nl +0.0.0.0 adserver.x3.hu +0.0.0.0 adserver.ya.com +0.0.0.0 adserver.zaz.com.br +0.0.0.0 adserver.zeads.com +0.0.0.0 adserver01.ancestry.com +0.0.0.0 adserver1.adserver.com.pl +0.0.0.0 adserver1.adtech.com.tr +0.0.0.0 adserver1.economist.com +0.0.0.0 adserver1.eudora.com +0.0.0.0 adserver1.harvestadsdepot.com +0.0.0.0 adserver1.hookyouup.com +0.0.0.0 adserver1.isohunt.com +0.0.0.0 adserver1.lokitorrent.com +0.0.0.0 adserver1.mediainsight.de +0.0.0.0 adserver1.realtracker.com +0.0.0.0 adserver1.sonymusiceurope.com +0.0.0.0 adserver1.teracent.net +0.0.0.0 adserver1.wmads.com +0.0.0.0 adserver2.adserver.com.pl +0.0.0.0 adserver2.atman.pl +0.0.0.0 adserver2.christianitytoday.com +0.0.0.0 adserver2.condenast.co.uk +0.0.0.0 adserver2.creative.com +0.0.0.0 adserver2.eudora.com +0.0.0.0 adserver2.mediainsight.de +0.0.0.0 adserver2.news-journalonline.com +0.0.0.0 adserver2.popdata.de +0.0.0.0 adserver2.realtracker.com +0.0.0.0 adserver2.teracent.net +0.0.0.0 adserver3.eudora.com +0.0.0.0 adserver4.eudora.com +0.0.0.0 adserver9.contextad.com +0.0.0.0 adserverb.conjelco.com +0.0.0.0 adservices.google.com +0.0.0.0 adservices.picadmedia.com +0.0.0.0 adservicestats.com +0.0.0.0 adserving.cpxinteractive.com +0.0.0.0 adservingcentral.com +0.0.0.0 adserwer.o2.pl +0.0.0.0 adseu.novem.pl +0.0.0.0 adsfile.qq.com +0.0.0.0 adsgroup.qq.com +0.0.0.0 adshmct.qq.com +0.0.0.0 adshmmsg.qq.com +0.0.0.0 adsim.sabah.com.tr +0.0.0.0 adsinimages.com +0.0.0.0 adsino24.com +0.0.0.0 adsintl.starwave.com +0.0.0.0 adslvfile.qq.com +0.0.0.0 adslvseed.qq.com +0.0.0.0 adsm.soush.com +0.0.0.0 adsnew.internethaber.com +0.0.0.0 adsnew.userfriendly.org +0.0.0.0 adsniper.ru +0.0.0.0 adsomenoise.cdn01.rambla.be +0.0.0.0 adsp.ciner.com.tr +0.0.0.0 adsp.haberturk.com +0.0.0.0 adspace.zaman.com.tr +0.0.0.0 adspaces.ero-advertising.com +0.0.0.0 adspirit.net +0.0.0.0 adspiro.pl +0.0.0.0 adspr.haber7.net +0.0.0.0 adsqqclick.qq.com +0.0.0.0 adsr3pg.com.br +0.0.0.0 adsrc.bankrate.com +0.0.0.0 adsremote.scripps.com +0.0.0.0 adsremote.scrippsnetwork.com +0.0.0.0 adsrich.qq.com +0.0.0.0 adsrv.bankrate.com +0.0.0.0 adsrv.dispatch.com +0.0.0.0 adsrv.emporis.com +0.0.0.0 adsrv.heraldtribune.com +0.0.0.0 adsrv.hpg.com.br +0.0.0.0 adsrv.lua.pl +0.0.0.0 adsrv.news.com.au +0.0.0.0 adsrv.tuscaloosanews.com +0.0.0.0 adsrv.wilmingtonstar.com +0.0.0.0 adsrv2.wilmingtonstar.com +0.0.0.0 adsrvr.com +0.0.0.0 adssl01.adtech.de +0.0.0.0 adssl01.adtech.fr +0.0.0.0 adssl01.adtech.us +0.0.0.0 adssl02.adtech.de +0.0.0.0 adssl02.adtech.fr +0.0.0.0 adssl02.adtech.us +0.0.0.0 adsspace.net +0.0.0.0 adstest.reklamstore.com +0.0.0.0 adstextview.qq.com +0.0.0.0 adstil.indiatimes.com +0.0.0.0 adstogo.com +0.0.0.0 adstome.com +0.0.0.0 adstract.adk2x.com +0.0.0.0 adstream.cardboardfish.com +0.0.0.0 adstreams.org +0.0.0.0 adsvidsdouble.com +0.0.0.0 adsview.qq.com +0.0.0.0 adsview2.qq.com +0.0.0.0 adsvr.adknowledge.com +0.0.0.0 adsweb.tiscali.cz +0.0.0.0 adsyndication.msn.com +0.0.0.0 adsyndication.yelldirect.com +0.0.0.0 adtag.msn.ca +0.0.0.0 adtag.sympatico.ca +0.0.0.0 adtaily.com +0.0.0.0 adtaily.pl +0.0.0.0 adtcp.ru +0.0.0.0 adtech.com +0.0.0.0 adtech.panthercustomer.com +0.0.0.0 adtech.sabitreklam.com +0.0.0.0 adtegrity.spinbox.net +0.0.0.0 adtext.pl +0.0.0.0 adthru.com +0.0.0.0 adtigerpl.adspirit.net +0.0.0.0 adtlgc.com +0.0.0.0 adtology3.com +0.0.0.0 adtotal.pl +0.0.0.0 adtracking.vinden.nl +0.0.0.0 adtrader.com +0.0.0.0 adultadworld.com +0.0.0.0 adv-op2.joygames.me +0.0.0.0 adv.440net.com +0.0.0.0 adv.adgates.com +0.0.0.0 adv.adtotal.pl +0.0.0.0 adv.adview.pl +0.0.0.0 adv.bannercity.ru +0.0.0.0 adv.bbanner.it +0.0.0.0 adv.bookclubservices.ca +0.0.0.0 adv.federalpost.ru +0.0.0.0 adv.gazeta.pl +0.0.0.0 adv.lampsplus.com +0.0.0.0 adv.merlin.co.il +0.0.0.0 adv.netshelter.net +0.0.0.0 adv.publy.net +0.0.0.0 adv.strategy.it +0.0.0.0 adv.surinter.net +0.0.0.0 adv.virgilio.it +0.0.0.0 adv.zapal.ru +0.0.0.0 adv0005.247realmedia.com +0.0.0.0 adv0035.247realmedia.com +0.0.0.0 advancing-technology.com +0.0.0.0 advconversion.com +0.0.0.0 adveng.hiasys.com +0.0.0.0 adver.pengyou.com +0.0.0.0 adveraction.pl +0.0.0.0 advert.gameranger.com +0.0.0.0 advert.gittigidiyor.com +0.0.0.0 advert.istanbul.net +0.0.0.0 advert.uloz.to +0.0.0.0 advert.uzmantv.com +0.0.0.0 advertere.zamunda.net +0.0.0.0 adverteren.vakmedianet.nl +0.0.0.0 adverterenbijnh.nl +0.0.0.0 adverterenbijsbs.nl +0.0.0.0 advertisers.federatedmedia.net +0.0.0.0 advertising.aol.com +0.0.0.0 advertising.bbcworldwide.com +0.0.0.0 advertising.gfxartist.com +0.0.0.0 advertising.hiasys.com +0.0.0.0 advertising.illinimedia.com +0.0.0.0 advertising.online-media24.de +0.0.0.0 advertising.paltalk.com +0.0.0.0 advertising.wellpack.fr +0.0.0.0 advertising.zenit.org +0.0.0.0 advertisingbay.com +0.0.0.0 advertlets.com +0.0.0.0 advertpro.investorvillage.com +0.0.0.0 adverts.digitalspy.co.uk +0.0.0.0 adverts.ecn.co.uk +0.0.0.0 adverts.freeloader.com +0.0.0.0 adverts.im4ges.com +0.0.0.0 advice-ads-cdn.vice.com +0.0.0.0 advicepl.adocean.pl +0.0.0.0 adview.pl +0.0.0.0 advmaker.ru +0.0.0.0 advplace.com +0.0.0.0 advplace.nuggad.net +0.0.0.0 advserver.xyz +0.0.0.0 advstat.xunlei.com +0.0.0.0 advt.webindia123.com +0.0.0.0 advzilla.com +0.0.0.0 adw.sapo.pt +0.0.0.0 adware.kogaryu.com +0.0.0.0 adweb2.hornymatches.com +0.0.0.0 adwenturehelp.club +0.0.0.0 adx.adform.net +0.0.0.0 adx.adrenalinesk.sk +0.0.0.0 adx.gainesvillesun.com +0.0.0.0 adx.gainesvillsun.com +0.0.0.0 adx.groupstate.com +0.0.0.0 adx.hendersonvillenews.com +0.0.0.0 adx.heraldtribune.com +0.0.0.0 adx.starnewsonline.com +0.0.0.0 adx.theledger.com +0.0.0.0 adxite-ads.com +0.0.0.0 adz.afterdawn.net +0.0.0.0 adzone.ro +0.0.0.0 adzone.stltoday.com +0.0.0.0 adzservice.theday.com +0.0.0.0 ae-gb.mgid.com +0.0.0.0 ae.goodsblock.marketgid.com +0.0.0.0 afdyfxfrwbfy.com +0.0.0.0 afe.specificclick.net +0.0.0.0 afe2.specificclick.net +0.0.0.0 aff.foxtab.com +0.0.0.0 aff.gittigidiyor.com +0.0.0.0 aff.promodeals.nl +0.0.0.0 aff1.gittigidiyor.com +0.0.0.0 aff2.gittigidiyor.com +0.0.0.0 aff3.gittigidiyor.com +0.0.0.0 aff4.gittigidiyor.com +0.0.0.0 affiliate.2mdn.net +0.0.0.0 affiliate.a4dtracker.com +0.0.0.0 affiliate.aol.com +0.0.0.0 affiliate.baazee.com +0.0.0.0 affiliate.cfdebt.com +0.0.0.0 affiliate.exabytes.com.my +0.0.0.0 affiliate.fr.espotting.com +0.0.0.0 affiliate.googleusercontent.com +0.0.0.0 affiliate.hbytracker.com +0.0.0.0 affiliate.kitapyurdu.com +0.0.0.0 affiliate.mlntracker.com +0.0.0.0 affiliates.arvixe.com +0.0.0.0 affiliates.eblastengine.com +0.0.0.0 affiliates.genealogybank.com +0.0.0.0 affimg.pop6.com +0.0.0.0 afform.co.uk +0.0.0.0 affpartners.com +0.0.0.0 affrh2023.com +0.0.0.0 afi.adocean.pl +0.0.0.0 afilo.pl +0.0.0.0 afkarehroshan.com +0.0.0.0 afp.qiyi.com +0.0.0.0 afunnygames.com +0.0.0.0 agisdayra.com +0.0.0.0 agkn.com +0.0.0.0 ahzahg6ohb.com +0.0.0.0 aimg.haber3.com +0.0.0.0 aj.600z.com +0.0.0.0 ajcclassifieds.com +0.0.0.0 ak.buyservices.com +0.0.0.0 ak.maxserving.com +0.0.0.0 ak.p.openx.net +0.0.0.0 aka-cdn-ns.adtech.de +0.0.0.0 aka-cdn-ns.adtechus.com +0.0.0.0 aka-cdn.adtechus.com +0.0.0.0 akaads-espn.starwave.com +0.0.0.0 akamai.invitemedia.com +0.0.0.0 ako.cc +0.0.0.0 aksdk-images.adikteev.com +0.0.0.0 aktif.haberx.com +0.0.0.0 al1.sharethis.com +0.0.0.0 alert.police-patrol-agent.com +0.0.0.0 all.orfr.adgtw.orangeads.fr +0.0.0.0 alliance.adbureau.net +0.0.0.0 altfarm.mediaplex.com +0.0.0.0 alxsite.com +0.0.0.0 amazinggreentechshop.com +0.0.0.0 amch.questionmarket.com +0.0.0.0 americansingles.click-url.com +0.0.0.0 amplifypixel.outbrain.com +0.0.0.0 amrytt.adk2x.com +0.0.0.0 amscdn.btrll.com +0.0.0.0 analysis.fc2.com +0.0.0.0 analytics.ku6.com +0.0.0.0 analytics.kwebsoft.com +0.0.0.0 analytics.onesearch.id +0.0.0.0 analytics.percentmobile.com +0.0.0.0 analytics.services.kirra.nl +0.0.0.0 analytics.shareaholic.com +0.0.0.0 analytics.spotta.nl +0.0.0.0 analytics.verizonenterprise.com +0.0.0.0 analytics.vodafone.co.uk +0.0.0.0 analyzer51.fc2.com +0.0.0.0 anetit.tradedoubler.com +0.0.0.0 ankieta-online.pl +0.0.0.0 annuaire-autosurf.com +0.0.0.0 anonymousstats.keefox.org +0.0.0.0 anrtx.tacoda.net +0.0.0.0 answers.us.intellitxt.com +0.0.0.0 antyweb.push-ad.com +0.0.0.0 any-log.videe.tv +0.0.0.0 aos.gw.youmi.net +0.0.0.0 ap.read.mediation.pns.ap.orangeads.fr +0.0.0.0 ap76rmx3.accountant +0.0.0.0 api-public.addthis.com +0.0.0.0 api.adcalls.nl +0.0.0.0 api.addthis.com +0.0.0.0 api.adlure.net +0.0.0.0 api.admob.com +0.0.0.0 api.affinesystems.com +0.0.0.0 api.content.ad +0.0.0.0 api.linkgist.com +0.0.0.0 api.linkz.net +0.0.0.0 api.optnmnstr.com +0.0.0.0 api.sagent.io +0.0.0.0 api.shoppingminds.net +0.0.0.0 api.viglink.com +0.0.0.0 apopt.hbmediapro.com +0.0.0.0 app.datafastguru.info +0.0.0.0 app.getresponse.com +0.0.0.0 app.scanscout.com +0.0.0.0 app2.letmacwork.world +0.0.0.0 app3.letmacwork.world +0.0.0.0 app4.letslowbefast.today +0.0.0.0 apparelncs.com +0.0.0.0 appdev.addthis.com +0.0.0.0 apple.com--------scanner.bid +0.0.0.0 apple.com-----scanner.club +0.0.0.0 apple.com-internet-security-review.info +0.0.0.0 apple.com-internet-security-review.review +0.0.0.0 apple.com-supportcenter.pro +0.0.0.0 apple.com.clean-virus-mac.com +0.0.0.0 applicationpremium70.club +0.0.0.0 applyfix.tech +0.0.0.0 appnexus.com +0.0.0.0 apps5.oingo.com +0.0.0.0 appsrv1.madserving.cn +0.0.0.0 aptitude.newversionupdatefreshand4you.space +0.0.0.0 apx.moatads.com +0.0.0.0 arabtechmessenger.net +0.0.0.0 arbomedia.pl +0.0.0.0 arbopl.bbelements.com +0.0.0.0 arena.altitudeplatform.com +0.0.0.0 arm2pie.com +0.0.0.0 arsconsole.global-intermedia.com +0.0.0.0 art-music-rewardpath.com +0.0.0.0 art-offer.com +0.0.0.0 art-offer.net +0.0.0.0 art-photo-music-premiumblvd.com +0.0.0.0 art-photo-music-rewardempire.com +0.0.0.0 art-photo-music-savingblvd.com +0.0.0.0 as.5to1.com +0.0.0.0 as.adwise.bg +0.0.0.0 as.casalemedia.com +0.0.0.0 as.ebz.io +0.0.0.0 as.sexad.net +0.0.0.0 as.vs4entertainment.com +0.0.0.0 as1.falkag.de +0.0.0.0 as1.inoventiv.com +0.0.0.0 as1image1.adshuffle.com +0.0.0.0 as1image2.adshuffle.com +0.0.0.0 as2.falkag.de +0.0.0.0 as3.falkag.de +0.0.0.0 as4.falkag.de +0.0.0.0 asa.tynt.com +0.0.0.0 asb.tynt.com +0.0.0.0 asg01.casalemedia.com +0.0.0.0 asg02.casalemedia.com +0.0.0.0 asg03.casalemedia.com +0.0.0.0 asg04.casalemedia.com +0.0.0.0 asg05.casalemedia.com +0.0.0.0 asg06.casalemedia.com +0.0.0.0 asg07.casalemedia.com +0.0.0.0 asg08.casalemedia.com +0.0.0.0 asg09.casalemedia.com +0.0.0.0 asg10.casalemedia.com +0.0.0.0 asg11.casalemedia.com +0.0.0.0 asg12.casalemedia.com +0.0.0.0 asg13.casalemedia.com +0.0.0.0 ashow.pcpop.com +0.0.0.0 ask-gps.ru +0.0.0.0 asklots.com +0.0.0.0 askmen.thruport.com +0.0.0.0 asm2.z1.adserver.com +0.0.0.0 asm3.z1.adserver.com +0.0.0.0 asmedia.adsupplyssl.com +0.0.0.0 asn.advolution.de +0.0.0.0 asn.cunda.advolution.biz +0.0.0.0 assets.igapi.com +0.0.0.0 assets.kixer.com +0.0.0.0 assets.percentmobile.com +0.0.0.0 asv.nuggad.net +0.0.0.0 at-img1.tdimg.com +0.0.0.0 at-img2.tdimg.com +0.0.0.0 at-img3.tdimg.com +0.0.0.0 at.campaigns.f2.com.au +0.0.0.0 at.ceofreehost.com +0.0.0.0 at.m1.nedstatbasic.net +0.0.0.0 atemda.com +0.0.0.0 atm.youku.com +0.0.0.0 atout-energie-69.com +0.0.0.0 au.ads.link4ads.com +0.0.0.0 au.adserver.yahoo.com +0.0.0.0 aud.pubmatic.com +0.0.0.0 aureate.com +0.0.0.0 auslieferung.commindo-media-ressourcen.de +0.0.0.0 aussiemethod.com +0.0.0.0 aussieroadtosuccess.com +0.0.0.0 austria1.adverserve.net +0.0.0.0 autocontext.begun.ru +0.0.0.0 automotive-offer.com +0.0.0.0 automotive-rewardpath.com +0.0.0.0 avcounter10.com +0.0.0.0 avidnewssource.com +0.0.0.0 avpa.dzone.com +0.0.0.0 awesomevipoffers.com +0.0.0.0 awrz.net +0.0.0.0 axbetb2.com +0.0.0.0 axp.zedo.com +0.0.0.0 aynachatsrv.com +0.0.0.0 azcentra.app.ur.gcion.com +0.0.0.0 azoogleads.com +0.0.0.0 b.a2gw.com +0.0.0.0 b.admob.com +0.0.0.0 b.ads2.msn.com +0.0.0.0 b.am15.net +0.0.0.0 b.as-us.falkag.net +0.0.0.0 b.getprizenow.top +0.0.0.0 b.grabo.bg +0.0.0.0 b.liquidustv.com +0.0.0.0 b.myspace.com +0.0.0.0 b.rad.live.com +0.0.0.0 b.rad.msn.com +0.0.0.0 b1.adbrite.com +0.0.0.0 b1.azjmp.com +0.0.0.0 b2b.filecloud.me +0.0.0.0 b34rightym.com +0.0.0.0 babanetwork.adk2x.com +0.0.0.0 babycenter.tt.omtrdc.net +0.0.0.0 backoffice.evobinary.com +0.0.0.0 badservant.guj.de +0.0.0.0 badults.se +0.0.0.0 baiduccdn1.com +0.0.0.0 baidutv.baidu.com +0.0.0.0 bananacashback.com +0.0.0.0 banery.acr.pl +0.0.0.0 banery.netart.pl +0.0.0.0 banery.onet.pl +0.0.0.0 bang-hotties.com +0.0.0.0 banki.onet.pl +0.0.0.0 bankofamerica.tt.omtrdc.net +0.0.0.0 banlv.baidu.com +0.0.0.0 banman.nepsecure.co.uk +0.0.0.0 banner.1and1.co.uk +0.0.0.0 banner.affactive.com +0.0.0.0 banner.betroyalaffiliates.com +0.0.0.0 banner.betwwts.com +0.0.0.0 banner.cdpoker.com +0.0.0.0 banner.diamondclubcasino.com +0.0.0.0 banner.free6.com +0.0.0.0 banner.joylandcasino.com +0.0.0.0 banner.monacogoldcasino.com +0.0.0.0 banner.newyorkcasino.com +0.0.0.0 banner.oddcast.com +0.0.0.0 banner.piratos.de +0.0.0.0 banner.playgatecasino.com +0.0.0.0 banner.prestigecasino.com +0.0.0.0 banner.publisher.to +0.0.0.0 banner.ringofon.com +0.0.0.0 banner.tattomedia.com +0.0.0.0 banner.techarp.com +0.0.0.0 banner.usacasino.com +0.0.0.0 banner1.pornhost.com +0.0.0.0 banner2.inet-traffic.com +0.0.0.0 banner2.isobarturkiye.net +0.0.0.0 bannerads.anytimenews.com +0.0.0.0 bannerads.zwire.com +0.0.0.0 bannerdriven.ru +0.0.0.0 bannerfarm.ace.advertising.com +0.0.0.0 bannerhost.egamingonline.com +0.0.0.0 bannerimages.0catch.com +0.0.0.0 banners.adgoto.com +0.0.0.0 banners.affiliatefuel.com +0.0.0.0 banners.affiliatefuture.com +0.0.0.0 banners.aftrk.com +0.0.0.0 banners.blogads.com +0.0.0.0 banners.bol.se +0.0.0.0 banners.broadwayworld.com +0.0.0.0 banners.celebritybling.com +0.0.0.0 banners.crisscross.com +0.0.0.0 banners.dnastudio.com +0.0.0.0 banners.easysolutions.be +0.0.0.0 banners.ebay.com +0.0.0.0 banners.expressindia.com +0.0.0.0 banners.flair.be +0.0.0.0 banners.free6.com +0.0.0.0 banners.fuifbeest.be +0.0.0.0 banners.globovision.com +0.0.0.0 banners.img.uol.com.br +0.0.0.0 banners.ims.nl +0.0.0.0 banners.iop.org +0.0.0.0 banners.ipotd.com +0.0.0.0 banners.japantoday.com +0.0.0.0 banners.kfmb.com +0.0.0.0 banners.ksl.com +0.0.0.0 banners.looksmart.com +0.0.0.0 banners.nbcupromotes.com +0.0.0.0 banners.netcraft.com +0.0.0.0 banners.newsru.com +0.0.0.0 banners.nextcard.com +0.0.0.0 banners.pennyweb.com +0.0.0.0 banners.primaryclick.com +0.0.0.0 banners.rspworldwide.com +0.0.0.0 banners.sextracker.com +0.0.0.0 banners.spiceworks.com +0.0.0.0 banners.thegridwebmaster.com +0.0.0.0 banners.thestranger.com +0.0.0.0 banners.thgimages.co.uk +0.0.0.0 banners.tribute.ca +0.0.0.0 banners.tucson.com +0.0.0.0 banners.unibet.com +0.0.0.0 banners.valuead.com +0.0.0.0 banners.videosecrets.com +0.0.0.0 banners.webmasterplan.com +0.0.0.0 banners.zbs.ru +0.0.0.0 banners1.linkbuddies.com +0.0.0.0 banners2.castles.org +0.0.0.0 banners3.spacash.com +0.0.0.0 bannersurvey.biz +0.0.0.0 bannert.ru +0.0.0.0 bannerus1.axelsfun.com +0.0.0.0 bannerus3.axelsfun.com +0.0.0.0 banniere.reussissonsensemble.fr +0.0.0.0 banstex.com +0.0.0.0 bansys.onzin.com +0.0.0.0 bar.baidu.com +0.0.0.0 bargainbeautybuys.com +0.0.0.0 battleoftheprizes.club +0.0.0.0 bayoubuzz.advertserve.com +0.0.0.0 bazandegan.com +0.0.0.0 bb.crwdcntrl.net +0.0.0.0 bbcdn.delivery.reklamz.com +0.0.0.0 bbcdn.go.adlt.bbelements.com +0.0.0.0 bbcdn.go.adnet.bbelements.com +0.0.0.0 bbcdn.go.arbo.bbelements.com +0.0.0.0 bbcdn.go.arbopl.bbelements.com +0.0.0.0 bbcdn.go.cz.bbelements.com +0.0.0.0 bbcdn.go.eu.bbelements.com +0.0.0.0 bbcdn.go.ihned.bbelements.com +0.0.0.0 bbcdn.go.pl.bbelements.com +0.0.0.0 bbcdn.go.pol.bbelements.com +0.0.0.0 bbnaut.bbelements.com +0.0.0.0 bc685d37-266c-488e-824e-dd95d1c0e98b.statcamp.net +0.0.0.0 bcp.crwdcntrl.net +0.0.0.0 bdnad1.bangornews.com +0.0.0.0 bdv.bidvertiser.com +0.0.0.0 be.ads.justpremium.com +0.0.0.0 beacon-3.newrelic.com +0.0.0.0 beacon-us-west.rubiconproject.com +0.0.0.0 beacons.helium.com +0.0.0.0 beap.gemini.yahoo.com +0.0.0.0 bedach.stream +0.0.0.0 bell.adcentriconline.com +0.0.0.0 benimreklam.com +0.0.0.0 benrie.stream +0.0.0.0 beseenad.looksmart.com +0.0.0.0 bestgift4you.cn +0.0.0.0 bestorican.com +0.0.0.0 bestshopperrewards.com +0.0.0.0 bet-at-home.com +0.0.0.0 betclic.com +0.0.0.0 betterperformance.goldenopps.info +0.0.0.0 bfast.com +0.0.0.0 bid.openx.net +0.0.0.0 bidsystem.com +0.0.0.0 bidtraffic.com +0.0.0.0 bigads.guj.de +0.0.0.0 bigbrandpromotions.com +0.0.0.0 bigbrandrewards.com +0.0.0.0 bigfreelotto.com +0.0.0.0 biggestgiftrewards.com +0.0.0.0 bill.agent.56.com +0.0.0.0 bill.agent.v-56.com +0.0.0.0 billing.speedboink.com +0.0.0.0 bimg.abv.bg +0.0.0.0 bitburg.adtech.de +0.0.0.0 bitburg.adtech.fr +0.0.0.0 bitburg.adtech.us +0.0.0.0 bitcast-d.bitgravity.com +0.0.0.0 biz-offer.com +0.0.0.0 biz5.sandai.net +0.0.0.0 bizographics.com +0.0.0.0 bizopprewards.com +0.0.0.0 bj7kpvd.gandjaltilogoki.com +0.0.0.0 bl.wavecdn.de +0.0.0.0 blabla4u.adserver.co.il +0.0.0.0 blasphemysfhs.info +0.0.0.0 blatant8jh.info +0.0.0.0 blog.addthis.com +0.0.0.0 blogads.ebanner.nl +0.0.0.0 blogvertising.pl +0.0.0.0 blu.mobileads.msn.com +0.0.0.0 bluediamondoffers.com +0.0.0.0 bm.alimama.cn +0.0.0.0 bmvip.alimama.cn +0.0.0.0 bnmgr.adinjector.net +0.0.0.0 bnrs.ilm.ee +0.0.0.0 boksy.dir.onet.pl +0.0.0.0 boksy.onet.pl +0.0.0.0 bookclub-offer.com +0.0.0.0 books-media-edu-premiumblvd.com +0.0.0.0 books-media-edu-rewardempire.com +0.0.0.0 books-media-rewardpath.com +0.0.0.0 bostonsubwayoffer.com +0.0.0.0 bowlingle.com +0.0.0.0 bp.specificclick.net +0.0.0.0 br.adserver.yahoo.com +0.0.0.0 brandrewardcentral.com +0.0.0.0 brandsurveypanel.com +0.0.0.0 bravo.israelinfo.ru +0.0.0.0 bravospots.com +0.0.0.0 brittlefilet.com +0.0.0.0 broadcast.piximedia.fr +0.0.0.0 broadent.vo.llnwd.net +0.0.0.0 brokertraffic.com +0.0.0.0 browserbreckalarm.info +0.0.0.0 browsesafemac.com +0.0.0.0 bs.israelinfo.ru +0.0.0.0 bs.serving-sys.com +0.0.0.0 bsads.looksmart.com +0.0.0.0 bt.linkpulse.com +0.0.0.0 bumerangshowsites.hurriyet.com.tr +0.0.0.0 bundasnovinhas.com +0.0.0.0 burns.adtech.de +0.0.0.0 burns.adtech.fr +0.0.0.0 burns.adtech.us +0.0.0.0 business-rewardpath.com +0.0.0.0 businessdealsblog.com +0.0.0.0 businessdirectnessource.com +0.0.0.0 businessedgeadvance.com +0.0.0.0 buttcandy.com +0.0.0.0 buttons.googlesyndication.com +0.0.0.0 buzzbox.buzzfeed.com +0.0.0.0 bwp.lastfm.com.com +0.0.0.0 bwp.news.com +0.0.0.0 c.actiondesk.com +0.0.0.0 c.ad6media.fr +0.0.0.0 c.adroll.com +0.0.0.0 c.am10.ru +0.0.0.0 c.anytrx.com +0.0.0.0 c.ar.msn.com +0.0.0.0 c.as-us.falkag.net +0.0.0.0 c.at.msn.com +0.0.0.0 c.baidu.com +0.0.0.0 c.be.msn.com +0.0.0.0 c.blogads.com +0.0.0.0 c.br.msn.com +0.0.0.0 c.ca.msn.com +0.0.0.0 c.casalemedia.com +0.0.0.0 c.cl.msn.com +0.0.0.0 c.de.msn.com +0.0.0.0 c.dk.msn.com +0.0.0.0 c.eblastengine.com +0.0.0.0 c.es.msn.com +0.0.0.0 c.fi.msn.com +0.0.0.0 c.fr.msn.com +0.0.0.0 c.gr.msn.com +0.0.0.0 c.hk.msn.com +0.0.0.0 c.id.msn.com +0.0.0.0 c.ie.msn.com +0.0.0.0 c.il.msn.com +0.0.0.0 c.imedia.cz +0.0.0.0 c.in.msn.com +0.0.0.0 c.it.msn.com +0.0.0.0 c.jp.msn.com +0.0.0.0 c.l.qq.com +0.0.0.0 c.latam.msn.com +0.0.0.0 c.lomadee.com +0.0.0.0 c.mgid.com +0.0.0.0 c.mttwtrack.com +0.0.0.0 c.my.msn.com +0.0.0.0 c.ninemsn.com.au +0.0.0.0 c.nl.msn.com +0.0.0.0 c.no.msn.com +0.0.0.0 c.novostimira.biz +0.0.0.0 c.ph.msn.com +0.0.0.0 c.prodigy.msn.com +0.0.0.0 c.pt.msn.com +0.0.0.0 c.ru.msn.com +0.0.0.0 c.se.msn.com +0.0.0.0 c.sg.msn.com +0.0.0.0 c.silvinst.com +0.0.0.0 c.th.msn.com +0.0.0.0 c.tr.msn.com +0.0.0.0 c.tw.msn.com +0.0.0.0 c.uk.msn.com +0.0.0.0 c.za.msn.com +0.0.0.0 c1.popads.net +0.0.0.0 c1.teaser-goods.ru +0.0.0.0 c1.zedo.com +0.0.0.0 c11370896.c.youradexchange.com +0.0.0.0 c2.l.qq.com +0.0.0.0 c2.zedo.com +0.0.0.0 c2366475.c.youradexchange.com +0.0.0.0 c3.zedo.com +0.0.0.0 c35000246.c.youradexchange.com +0.0.0.0 c4.maxserving.com +0.0.0.0 c4.zedo.com +0.0.0.0 c5.zedo.com +0.0.0.0 c6.zedo.com +0.0.0.0 c7.zedo.com +0.0.0.0 c8.zedo.com +0.0.0.0 ca.adserver.yahoo.com +0.0.0.0 cache-dev.addthis.com +0.0.0.0 cache.addthis.com +0.0.0.0 cache.addthiscdn.com +0.0.0.0 cache.adm.cnzz.net +0.0.0.0 cache.blogads.com +0.0.0.0 cache.unicast.com +0.0.0.0 cacheserve.eurogrand.com +0.0.0.0 cacheserve.prestigecasino.com +0.0.0.0 califia.imaginemedia.com +0.0.0.0 cam2cam.xlovecam.com +0.0.0.0 camgeil.com +0.0.0.0 campaign.iitech.dk +0.0.0.0 campaign.indieclick.com +0.0.0.0 campaigns.interclick.com +0.0.0.0 canadaalltax.com +0.0.0.0 canuckmethod.com +0.0.0.0 canuckmethod.net +0.0.0.0 capath.com +0.0.0.0 car-truck-boat-bonuspath.com +0.0.0.0 car-truck-boat-premiumblvd.com +0.0.0.0 carambo.la +0.0.0.0 cardgamespidersolitaire.com +0.0.0.0 cards.virtuagirlhd.com +0.0.0.0 careers-rewardpath.com +0.0.0.0 careers.canwestad.net +0.0.0.0 carmuffler.net +0.0.0.0 carrier.bz +0.0.0.0 cas.clickability.com +0.0.0.0 cas.criteo.com +0.0.0.0 cashadvancework.com +0.0.0.0 cashback.co.uk +0.0.0.0 cashbackwow.co.uk +0.0.0.0 cashflowmarketing.com +0.0.0.0 casino770.com +0.0.0.0 caslemedia.com +0.0.0.0 casting.openv.com +0.0.0.0 catalinkcashback.com +0.0.0.0 catchvid.info +0.0.0.0 cb.alimama.cn +0.0.0.0 cb.baidu.com +0.0.0.0 cc-dt.com +0.0.0.0 ccas.clearchannel.com +0.0.0.0 ccpmo.com +0.0.0.0 cctv.adsunion.com +0.0.0.0 cd8iw9mh.cricket +0.0.0.0 cdn.8digits.com +0.0.0.0 cdn.adigniter.org +0.0.0.0 cdn.adikteev.com +0.0.0.0 cdn.adk2.com +0.0.0.0 cdn.adnxs.com +0.0.0.0 cdn.adplxmd.com +0.0.0.0 cdn.ads.ookla.com +0.0.0.0 cdn.adservingsolutionsinc.com +0.0.0.0 cdn.adsrvmedia.net +0.0.0.0 cdn.altitudeplatform.com +0.0.0.0 cdn.amateurmatch.com +0.0.0.0 cdn.amgdgt.com +0.0.0.0 cdn.askosshunt.com +0.0.0.0 cdn.assets.craveonline.com +0.0.0.0 cdn.atlassbx.com +0.0.0.0 cdn.augur.io +0.0.0.0 cdn.banners.scubl.com +0.0.0.0 cdn.bestssaker.com +0.0.0.0 cdn.carbonads.com +0.0.0.0 cdn.constafun.com +0.0.0.0 cdn.cpmstar.com +0.0.0.0 cdn.crowdignite.com +0.0.0.0 cdn.directrev.com +0.0.0.0 cdn.dustyorate.com +0.0.0.0 cdn.employchannel.info +0.0.0.0 cdn.epommarket.com +0.0.0.0 cdn.eyewonder.com +0.0.0.0 cdn.freefaits.com +0.0.0.0 cdn.freehalves.com +0.0.0.0 cdn.freehas.com +0.0.0.0 cdn.freehonor.com +0.0.0.0 cdn.freeimply.com +0.0.0.0 cdn.freeinfringe.com +0.0.0.0 cdn.freejabs.com +0.0.0.0 cdn.freejars.com +0.0.0.0 cdn.freejaw.com +0.0.0.0 cdn.freejax.com +0.0.0.0 cdn.freejlo.com +0.0.0.0 cdn.freelac.com +0.0.0.0 cdn.freelev.com +0.0.0.0 cdn.geni.us +0.0.0.0 cdn.go.arbo.bbelements.com +0.0.0.0 cdn.go.arbopl.bbelements.com +0.0.0.0 cdn.go.cz.bbelements.com +0.0.0.0 cdn.go.idmnet.bbelements.com +0.0.0.0 cdn.go.pol.bbelements.com +0.0.0.0 cdn.hadj7.adjuggler.net +0.0.0.0 cdn.hanaging.info +0.0.0.0 cdn.hauleddes.com +0.0.0.0 cdn.holdlads.com +0.0.0.0 cdn.imgtty.com +0.0.0.0 cdn.innovid.com +0.0.0.0 cdn.komoona.com +0.0.0.0 cdn.lazymem.com +0.0.0.0 cdn.lazymic.com +0.0.0.0 cdn.likeaced.com +0.0.0.0 cdn.mahmukhach.info +0.0.0.0 cdn.mediative.ca +0.0.0.0 cdn.mega-tags.com +0.0.0.0 cdn.merchenta.com +0.0.0.0 cdn.mobicow.com +0.0.0.0 cdn.nsimg.net +0.0.0.0 cdn.onescreen.net +0.0.0.0 cdn.palomatik.info +0.0.0.0 cdn.pickyopahs.com +0.0.0.0 cdn.sagent.io +0.0.0.0 cdn.shoppingminds.net +0.0.0.0 cdn.stat.easydate.biz +0.0.0.0 cdn.stickyadstv.com +0.0.0.0 cdn.syn.verticalacuity.com +0.0.0.0 cdn.tabnak.ir +0.0.0.0 cdn.taboola.com +0.0.0.0 cdn.trafficstars.com +0.0.0.0 cdn.udmserve.net +0.0.0.0 cdn.undertone.com +0.0.0.0 cdn.usabilitytracker.com +0.0.0.0 cdn.viglink.com +0.0.0.0 cdn.westbaud.com +0.0.0.0 cdn.wg.uproxx.com +0.0.0.0 cdn.wwwpromoter.com +0.0.0.0 cdn.yieldmedia.net +0.0.0.0 cdn.yottos.com +0.0.0.0 cdn.zeusclicks.com +0.0.0.0 cdn1.adexprt.com +0.0.0.0 cdn1.ads.contentabc.com +0.0.0.0 cdn1.ads.mofos.com +0.0.0.0 cdn1.eyewonder.com +0.0.0.0 cdn1.rmgserving.com +0.0.0.0 cdn1.traffichaus.com +0.0.0.0 cdn1.xlightmedia.com +0.0.0.0 cdn1sitescout.edgesuite.net +0.0.0.0 cdn2.adsdk.com +0.0.0.0 cdn2.amateurmatch.com +0.0.0.0 cdn2.emediate.eu +0.0.0.0 cdn3.adexprts.com +0.0.0.0 cdn3.telemetryverification.net +0.0.0.0 cdn454.telemetryverification.net +0.0.0.0 cdn5.tribalfusion.com +0.0.0.0 cdn6.emediate.eu +0.0.0.0 cdnads.cam4.com +0.0.0.0 cdnaws.mobidea.com +0.0.0.0 cdns.mydirtyhobby.com +0.0.0.0 cdns.privatamateure.com +0.0.0.0 cdnt.yottos.com +0.0.0.0 cdnw.ringtonepartner.com +0.0.0.0 cds.adecn.com +0.0.0.0 ced.sascdn.com +0.0.0.0 cell-phone-giveaways.com +0.0.0.0 cellphoneincentives.com +0.0.0.0 cent.adbureau.net +0.0.0.0 center-message-mobile.com +0.0.0.0 cf.kampyle.com +0.0.0.0 cfg.adsmogo.com +0.0.0.0 cfg.datafastguru.info +0.0.0.0 cgirm.greatfallstribune.com +0.0.0.0 cgm.adbureau.ne +0.0.0.0 cgm.adbureau.net +0.0.0.0 chainsawoffer.com +0.0.0.0 charging-technology.com +0.0.0.0 charmedno1.com +0.0.0.0 checkintocash.data.7bpeople.com +0.0.0.0 chefti.info +0.0.0.0 cherryhi.app.ur.gcion.com +0.0.0.0 chip.popmarker.com +0.0.0.0 chkpt.zdnet.com +0.0.0.0 choicedealz.com +0.0.0.0 choicesurveypanel.com +0.0.0.0 christianbusinessadvertising.com +0.0.0.0 cigape.net +0.0.0.0 cithingy.info +0.0.0.0 citrio.com +0.0.0.0 citrix.market2lead.com +0.0.0.0 citycash2.blogspot.com +0.0.0.0 cjhq.baidu.com +0.0.0.0 cl21.v4.adaction.se +0.0.0.0 cl320.v4.adaction.se +0.0.0.0 claimfreerewards.com +0.0.0.0 clashmediausa.com +0.0.0.0 classicjack.com +0.0.0.0 cleaningformac.com +0.0.0.0 clhctrk.com +0.0.0.0 click-find-save.com +0.0.0.0 click-see-save.com +0.0.0.0 click.adpile.net +0.0.0.0 click.am1.adm.cnzz.net +0.0.0.0 click.avenuea.com +0.0.0.0 click.go2net.com +0.0.0.0 click.israelinfo.ru +0.0.0.0 click.newviralmobistore.com +0.0.0.0 click.pulse360.com +0.0.0.0 click1.mainadv.com +0.0.0.0 click1.rbc.magna.ru +0.0.0.0 click2.rbc.magna.ru +0.0.0.0 click3.rbc.magna.ru +0.0.0.0 click4.rbc.magna.ru +0.0.0.0 clickad.eo.pl +0.0.0.0 clickarrows.com +0.0.0.0 clickbangpop.com +0.0.0.0 clickcdn.shareaholic.com +0.0.0.0 clickit.go2net.com +0.0.0.0 clicks.adhese.be +0.0.0.0 clicks.adultplex.com +0.0.0.0 clicks.deskbabes.com +0.0.0.0 clicks.hurriyet.com.tr +0.0.0.0 clicks.minimob.com +0.0.0.0 clicks.roularta.adhese.com +0.0.0.0 clicks.toteme.com +0.0.0.0 clicks.virtuagirl.com +0.0.0.0 clicks.virtuagirlhd.com +0.0.0.0 clicks.virtuaguyhd.com +0.0.0.0 clicks.walla.co.il +0.0.0.0 clicks2.virtuagirl.com +0.0.0.0 clickserv.sitescout.com +0.0.0.0 clickserve.dartsearch.net +0.0.0.0 clickserve.eu.dartsearch.net +0.0.0.0 clickserve.uk.dartsearch.net +0.0.0.0 clickserve.us2.dartsearch.net +0.0.0.0 clickthru.net +0.0.0.0 clickthrunet.net +0.0.0.0 clicktorrent.info +0.0.0.0 clien.info +0.0.0.0 clipserv.adclip.com +0.0.0.0 clk.addmt.com +0.0.0.0 clk.atdmt.com +0.0.0.0 clk.cloudyisland.com +0.0.0.0 clk.tradedoubler.com +0.0.0.0 clkuk.tradedoubler.com +0.0.0.0 closeoutproductsreview.com +0.0.0.0 cloudcrown.com +0.0.0.0 cluster.adultadworld.com +0.0.0.0 cluster3.adultadworld.com +0.0.0.0 cm.npc-hearst.overture.com +0.0.0.0 cm.the-n.overture.com +0.0.0.0 cm1359.com +0.0.0.0 cmads.sv.publicus.com +0.0.0.0 cmads.us.publicus.com +0.0.0.0 cmap.am.ace.advertising.com +0.0.0.0 cmap.an.ace.advertising.com +0.0.0.0 cmap.at.ace.advertising.com +0.0.0.0 cmap.dc.ace.advertising.com +0.0.0.0 cmap.ox.ace.advertising.com +0.0.0.0 cmap.pub.ace.advertising.com +0.0.0.0 cmap.rm.ace.advertising.com +0.0.0.0 cmap.rub.ace.advertising.com +0.0.0.0 cmhtml.overture.com +0.0.0.0 cmn1lsm2.beliefnet.com +0.0.0.0 cmps.mt50ad.com +0.0.0.0 cmweb.ilike.alibaba.com +0.0.0.0 cn.ad.adon.vpon.com +0.0.0.0 cn.adserver.yahoo.com +0.0.0.0 cn.img.adon.vpon.com +0.0.0.0 cnad.economicoutlook.net +0.0.0.0 cnad1.economicoutlook.net +0.0.0.0 cnad2.economicoutlook.net +0.0.0.0 cnad3.economicoutlook.net +0.0.0.0 cnad4.economicoutlook.net +0.0.0.0 cnad5.economicoutlook.net +0.0.0.0 cnad6.economicoutlook.net +0.0.0.0 cnad7.economicoutlook.net +0.0.0.0 cnad8.economicoutlook.net +0.0.0.0 cnad9.economicoutlook.net +0.0.0.0 cnf.adshuffle.com +0.0.0.0 cnt.trafficstars.com +0.0.0.0 cnt1.xhamster.com +0.0.0.0 code.adtlgc.com +0.0.0.0 code.vihub.ru +0.0.0.0 code2.adtlgc.com +0.0.0.0 coffeehausblog.com +0.0.0.0 coinurl.com +0.0.0.0 col.mobileads.msn.com +0.0.0.0 collectiveads.net +0.0.0.0 com.cool-premiums-now.com +0.0.0.0 com.htmlwww.youfck.com +0.0.0.0 com.shc-rebates.com +0.0.0.0 comadverts.bcmpweb.co.nz +0.0.0.0 come-see-it-all.com +0.0.0.0 commerce-offer.com +0.0.0.0 commerce-rewardpath.com +0.0.0.0 commerce.www.ibm.com +0.0.0.0 common.ziffdavisinternet.com +0.0.0.0 companion.adap.tv +0.0.0.0 computer-offer.com +0.0.0.0 computer-offer.net +0.0.0.0 computers-electronics-rewardpath.com +0.0.0.0 computersncs.com +0.0.0.0 computertechanalysis.com +0.0.0.0 config.getmyip.com +0.0.0.0 config.sensic.net +0.0.0.0 connect.247media.ads.link4ads.com +0.0.0.0 consumer-org.com +0.0.0.0 consumergiftcenter.com +0.0.0.0 consumerincentivenetwork.com +0.0.0.0 contaxe.com +0.0.0.0 content.ad-flow.com +0.0.0.0 content.aimatch.com +0.0.0.0 content.clipster.ws +0.0.0.0 content.codelnet.com +0.0.0.0 content.promoisland.net +0.0.0.0 content.yieldmanager.edgesuite.net +0.0.0.0 content.zontera.com +0.0.0.0 contentsearch.de.espotting.com +0.0.0.0 context.adshadow.net +0.0.0.0 context3.kanoodle.com +0.0.0.0 context5.kanoodle.com +0.0.0.0 contextad.pl +0.0.0.0 conv.adengage.com +0.0.0.0 conversion-pixel.invitemedia.com +0.0.0.0 cookie.pebblemedia.be +0.0.0.0 cookiecontainer.blox.pl +0.0.0.0 cookingtiprewards.com +0.0.0.0 cookonsea.com +0.0.0.0 cool-premiums-now.com +0.0.0.0 cool-premiums.com +0.0.0.0 coolpremiumsnow.com +0.0.0.0 coolsavings.com +0.0.0.0 coquine-dispo.com +0.0.0.0 corba.adtech.de +0.0.0.0 corba.adtech.fr +0.0.0.0 corba.adtech.us +0.0.0.0 core.adprotected.com +0.0.0.0 core.insightexpressai.com +0.0.0.0 core.videoegg.com +0.0.0.0 core.zontera.com +0.0.0.0 core0.node12.top.mail.ru +0.0.0.0 core2.adtlgc.com +0.0.0.0 coreg.flashtrack.net +0.0.0.0 coreglead.co.uk +0.0.0.0 cornflakes.pathfinder.com +0.0.0.0 corusads.dserv.ca +0.0.0.0 cosmeticscentre.uk.com +0.0.0.0 count.casino-trade.com +0.0.0.0 count6.51yes.com +0.0.0.0 cover.m2y.siemens.ch +0.0.0.0 cp.promoisland.net +0.0.0.0 cpm.admob.com +0.0.0.0 cpm2.admob.com +0.0.0.0 cpmadvisors.com +0.0.0.0 cpro.baidu.com +0.0.0.0 cpu.firingsquad.com +0.0.0.0 cpxdeliv.com +0.0.0.0 creatiby1.unicast.com +0.0.0.0 creative.ad121m.com +0.0.0.0 creative.ad131m.com +0.0.0.0 creative.adshuffle.com +0.0.0.0 creative.ak.facebook.com +0.0.0.0 creative.medianexusnetwork.com +0.0.0.0 creatives.rgadvert.com +0.0.0.0 creatrixads.com +0.0.0.0 crediblegfj.info +0.0.0.0 creditburner.blueadvertise.com +0.0.0.0 creditsoffer.blogspot.com +0.0.0.0 creview.adbureau.net +0.0.0.0 cribdare2no.com +0.0.0.0 crisptic01.net +0.0.0.0 crosspixel.demdex.net +0.0.0.0 crowdignite.com +0.0.0.0 crux.songline.com +0.0.0.0 cs.adxpansion.com +0.0.0.0 cs.prd.msys.playstation.net +0.0.0.0 cserver.mii.instacontent.net +0.0.0.0 csh.actiondesk.com +0.0.0.0 csm.rotator.hadj7.adjuggler.net +0.0.0.0 cspix.media6degrees.com +0.0.0.0 csr.onet.pl +0.0.0.0 cstatic.weborama.fr +0.0.0.0 ctbdev.net +0.0.0.0 cti.w55c.net +0.0.0.0 ctnsnet.com +0.0.0.0 cts.channelintelligence.com +0.0.0.0 ctxtad.tribalfusion.com +0.0.0.0 custom.allistracking.com +0.0.0.0 customerscreensavers.com +0.0.0.0 cxoadfarm.dyndns.info +0.0.0.0 cxtad.specificmedia.com +0.0.0.0 cyber-incentives.com +0.0.0.0 cz.bbelements.com +0.0.0.0 cz8.clickzs.com +0.0.0.0 d.101m3.com +0.0.0.0 d.admob.com +0.0.0.0 d.adnetxchange.com +0.0.0.0 d.ads.readwriteweb.com +0.0.0.0 d.adserve.com +0.0.0.0 d.adxcore.com +0.0.0.0 d.agkn.com +0.0.0.0 d.cntv.cn +0.0.0.0 d.serve-sys.com +0.0.0.0 d.sspcash.adxcore.com +0.0.0.0 d.wiyun.com +0.0.0.0 d1.openx.org +0.0.0.0 d1.zedo.com +0.0.0.0 d10.zedo.com +0.0.0.0 d11.zedo.com +0.0.0.0 d12.zedo.com +0.0.0.0 d14.zedo.com +0.0.0.0 d2.zedo.com +0.0.0.0 d3.zedo.com +0.0.0.0 d4.zedo.com +0.0.0.0 d5.zedo.com +0.0.0.0 d6.c5.b0.a2.top.mail.ru +0.0.0.0 d6.zedo.com +0.0.0.0 d7.zedo.com +0.0.0.0 d8.zedo.com +0.0.0.0 d9.zedo.com +0.0.0.0 da.2000888.com +0.0.0.0 dads.new.digg.com +0.0.0.0 daily-saver.com +0.0.0.0 damamaty.tk +0.0.0.0 damavandkuh.com +0.0.0.0 darakht.com +0.0.0.0 darmowe-liczniki.info +0.0.0.0 dart.chron.com +0.0.0.0 dash001.prxio.site +0.0.0.0 dashboard.adcalls.nl +0.0.0.0 dashboardnew.adcalls.nl +0.0.0.0 dashgreen.online +0.0.0.0 data.flurry.com +0.0.0.0 data.namesakeoscilloscopemarquis.com +0.0.0.0 data0.bell.ca +0.0.0.0 date.ventivmedia.com +0.0.0.0 datingadvertising.com +0.0.0.0 dawnnationaladvertiser.com +0.0.0.0 db4.net-filter.com +0.0.0.0 dc.sabela.com.pl +0.0.0.0 dcads.sina.com.cn +0.0.0.0 dctracking.com +0.0.0.0 de.ads.justpremium.com +0.0.0.0 de.adserver.yahoo.com +0.0.0.0 dearerfonder.info +0.0.0.0 del1.phillyburbs.com +0.0.0.0 delb.mspaceads.com +0.0.0.0 delivery.adyea.com +0.0.0.0 delivery.clickonometrics.pl +0.0.0.0 delivery.myswitchads.com +0.0.0.0 delivery.reklamz.com +0.0.0.0 delivery.swid.switchads.com +0.0.0.0 delivery.trafficjunky.net +0.0.0.0 delivery.us.myswitchads.com +0.0.0.0 delivery.w00tads.com +0.0.0.0 delivery.way2traffic.com +0.0.0.0 demr.mspaceads.com +0.0.0.0 demr.opt.fimserve.com +0.0.0.0 depo.realist.gen.tr +0.0.0.0 derkeiler.com +0.0.0.0 derstandard.nuggad.net +0.0.0.0 desb.mspaceads.com +0.0.0.0 descargas2.tuvideogratis.com +0.0.0.0 designbloxlive.com +0.0.0.0 desk.mspaceads.com +0.0.0.0 desk.opt.fimserve.com +0.0.0.0 dev.adforum.com +0.0.0.0 dev.sfbg.com +0.0.0.0 devart.adbureau.net +0.0.0.0 devlp1.linkpulse.com +0.0.0.0 dg.specificclick.net +0.0.0.0 dgm2.com +0.0.0.0 dgmaustralia.com +0.0.0.0 dietoftoday.ca.pn +0.0.0.0 diff1.smartadserver.com +0.0.0.0 diff4.smartadserver.com +0.0.0.0 diff5.smartadserver.com +0.0.0.0 dinoadserver1.roka.net +0.0.0.0 dinoadserver2.roka.net +0.0.0.0 dinsalgsvagt.adservinginternational.com +0.0.0.0 directpowerrewards.com +0.0.0.0 directrev.cloudapp.net +0.0.0.0 dirtyrhino.com +0.0.0.0 discount-savings-more.com +0.0.0.0 discoverdemo.com +0.0.0.0 discoverecommerce.tt.omtrdc.net +0.0.0.0 display.gestionpub.com +0.0.0.0 divx.adbureau.net +0.0.0.0 dizzcloud.com +0.0.0.0 djbanners.deadjournal.com +0.0.0.0 djugoogs.com +0.0.0.0 dk.adserver.yahoo.com +0.0.0.0 dl-plugin.com +0.0.0.0 dl.bestofupload.info +0.0.0.0 dl.ncbuy.com +0.0.0.0 dl.neodownload.webcam +0.0.0.0 dlvr.readserver.net +0.0.0.0 dnps.com +0.0.0.0 dnse.linkpulse.com +0.0.0.0 do-wn-lo-ad.com +0.0.0.0 dock.inmobi.com +0.0.0.0 domwpm.stream +0.0.0.0 donnez-votre-avis.org +0.0.0.0 dosugcz.biz +0.0.0.0 dot.wp.pl +0.0.0.0 dowelsobject.com +0.0.0.0 downads.com +0.0.0.0 download.filmfanatic.com +0.0.0.0 download.yesmessenger.com +0.0.0.0 downloadapps.tech +0.0.0.0 downloadcdn.com +0.0.0.0 downloadmpplayer.com +0.0.0.0 downloads.larivieracasino.com +0.0.0.0 downloads.mytvandmovies.com +0.0.0.0 dqs001.adtech.de +0.0.0.0 dqs001.adtech.fr +0.0.0.0 dqs001.adtech.us +0.0.0.0 dr.soso.com +0.0.0.0 dra.amazon-adsystem.com +0.0.0.0 drmcmm.baidu.com +0.0.0.0 drowle.com +0.0.0.0 ds.contextweb.com +0.0.0.0 ds.onet.pl +0.0.0.0 ds.serving-sys.com +0.0.0.0 dt.linkpulse.com +0.0.0.0 dtm.advertising.com +0.0.0.0 dub.mobileads.msn.com +0.0.0.0 dy.admerize.be +0.0.0.0 dyn.loolav.space +0.0.0.0 dzl.baidu.com +0.0.0.0 e-ltvp.inmobi.com +0.0.0.0 e.admob.com +0.0.0.0 e.as-eu.falkag.net +0.0.0.0 e.baidu.com +0.0.0.0 e1.addthis.com +0.0.0.0 e2.cdn.qnsr.com +0.0.0.0 e2.emediate.se +0.0.0.0 ead.sharethis.com +0.0.0.0 eads-adserving.com +0.0.0.0 earnmygift.com +0.0.0.0 earnpointsandgifts.com +0.0.0.0 eas4.emediate.eu +0.0.0.0 easyadservice.com +0.0.0.0 easyadvertonline.com +0.0.0.0 easyweb.tdcanadatrust.secureserver.host1.customer-identification-process.b88600d8.com +0.0.0.0 eatps.web.aol.com +0.0.0.0 eb.adbureau.net +0.0.0.0 ebayadvertising.triadretail.net +0.0.0.0 ebiads.ebiuniverse.com +0.0.0.0 eblastengine.upickem.net +0.0.0.0 eclkmpbn.com +0.0.0.0 eclkmpsa.com +0.0.0.0 eclkspbn.com +0.0.0.0 ecomadserver.com +0.0.0.0 ecs1.engageya.com +0.0.0.0 eddamedia.linkpulse.com +0.0.0.0 edge.bnmla.com +0.0.0.0 edge.quantserve.com +0.0.0.0 edirect.hotkeys.com +0.0.0.0 edu-offer.com +0.0.0.0 education-rewardpath.com +0.0.0.0 electronics-bonuspath.com +0.0.0.0 electronics-offer.net +0.0.0.0 electronics-rewardpath.com +0.0.0.0 electronicspresent.com +0.0.0.0 emailadvantagegroup.com +0.0.0.0 emailproductreview.com +0.0.0.0 emapadserver.com +0.0.0.0 emea-bidder.mathtag.com +0.0.0.0 emisja.adsearch.pl +0.0.0.0 engage.everyone.net +0.0.0.0 engage.speedera.net +0.0.0.0 engager.tmg.nl +0.0.0.0 engine.4chan-ads.org +0.0.0.0 engine.adbooth.com +0.0.0.0 engine.adland.ru +0.0.0.0 engine.adzerk.net +0.0.0.0 engine.carbonads.com +0.0.0.0 engine.influads.com +0.0.0.0 engine.phn.doublepimp.com +0.0.0.0 engine.rorer.ru +0.0.0.0 engine.spotscenered.info +0.0.0.0 engine2.adzerk.net +0.0.0.0 enirocode.adtlgc.com +0.0.0.0 enirodk.adtlgc.com +0.0.0.0 enn.advertserve.com +0.0.0.0 enquete-annuelle.info +0.0.0.0 entertainment-rewardpath.com +0.0.0.0 entertainment-specials.com +0.0.0.0 epomads2.4shared.com +0.0.0.0 erie.smartage.com +0.0.0.0 errorfixing.tech +0.0.0.0 es.adserver.yahoo.com +0.0.0.0 escape.insites.eu +0.0.0.0 espn.footprint.net +0.0.0.0 etad.telegraph.co.uk +0.0.0.0 eternal.reklamlab.com +0.0.0.0 etrk.asus.com +0.0.0.0 etype.adbureau.net +0.0.0.0 eu-pn4.adserver.yahoo.com +0.0.0.0 eu-sonar.sociomantic.com +0.0.0.0 eu.xtms.net +0.0.0.0 eu1.recompenses.win +0.0.0.0 eu2.madsone.com +0.0.0.0 euniverseads.com +0.0.0.0 europe.adserver.yahoo.com +0.0.0.0 eveley.club +0.0.0.0 event-log.videe.tv +0.0.0.0 events.streamrail.net +0.0.0.0 eventtracker.videostrip.com +0.0.0.0 excellent.michaelanthonyrobinson.com +0.0.0.0 exclusivegiftcards.com +0.0.0.0 exits1.webquest.net +0.0.0.0 exits2.webquest.net +0.0.0.0 exity.info +0.0.0.0 ezboard.bigbangmedia.com +0.0.0.0 f.admob.com +0.0.0.0 f.as-eu.falkag.net +0.0.0.0 f.qstatic.com +0.0.0.0 f1.p0y.com +0.0.0.0 f2.p0y.com +0.0.0.0 f3.p0y.com +0.0.0.0 f4.p0y.com +0.0.0.0 falkag.net +0.0.0.0 family-offer.com +0.0.0.0 farm.plista.com +0.0.0.0 fatcatrewards.com +0.0.0.0 fbfreegifts.com +0.0.0.0 fbi.gov.id402037057-8235504608.d9680.com +0.0.0.0 fcg.casino770.com +0.0.0.0 fdimages.fairfax.com.au +0.0.0.0 fe.lea.lycos.es +0.0.0.0 feedads.googleadservices.com +0.0.0.0 feeds.weselltraffic.com +0.0.0.0 fei.pro-market.net +0.0.0.0 fengfengtie.com.cn +0.0.0.0 fengfengtiecrv.com.cn +0.0.0.0 fengfengtiessp.com.cn +0.0.0.0 fervortracer.com +0.0.0.0 fhm.valueclick.net +0.0.0.0 fif49.info +0.0.0.0 file.ipinyou.com.cn +0.0.0.0 files.adbrite.com +0.0.0.0 fin.adbureau.net +0.0.0.0 fin.tips +0.0.0.0 finance-offer.com +0.0.0.0 finanzmeldungen.com +0.0.0.0 finder.cox.net +0.0.0.0 findsexguide.com +0.0.0.0 firstgame.xyz +0.0.0.0 fixbonus.com +0.0.0.0 fliteilex.com +0.0.0.0 float.2693.bm-impbus.prod.ams1.adnexus.net +0.0.0.0 floatingads.madisonavenue.com +0.0.0.0 floridat.app.ur.gcion.com +0.0.0.0 flower.bg +0.0.0.0 flowers-offer.com +0.0.0.0 fls-na.amazon.com +0.0.0.0 flu23.com +0.0.0.0 fmads.osdn.com +0.0.0.0 fnlpic.com +0.0.0.0 focusbaiduafp.allyes.com +0.0.0.0 focusin.ads.targetnet.com +0.0.0.0 fodder.qq.com +0.0.0.0 fodder.tc.qq.com +0.0.0.0 following-technology.com +0.0.0.0 folloyu.com +0.0.0.0 food-drink-bonuspath.com +0.0.0.0 food-drink-rewardpath.com +0.0.0.0 food-offer.com +0.0.0.0 foodmixeroffer.com +0.0.0.0 foreignpolicy.advertserve.com +0.0.0.0 forgotten-deals.com +0.0.0.0 foroushi.net +0.0.0.0 fp.oneshotdate.com +0.0.0.0 fp.uclo.net +0.0.0.0 fp.valueclick.com +0.0.0.0 fr.a2dfp.net +0.0.0.0 fr.adserver.yahoo.com +0.0.0.0 fr.classic.clickintext.net +0.0.0.0 free-gift-cards-now.com +0.0.0.0 free-gifts-comp.com +0.0.0.0 free-rewards.com-s.tv +0.0.0.0 free.hotsocialz.com +0.0.0.0 free.thesocialsexnetwork.com +0.0.0.0 freebiegb.co.uk +0.0.0.0 freecameraonus.com +0.0.0.0 freecameraprovider.com +0.0.0.0 freecamerasource.com +0.0.0.0 freecamerauk.co.uk +0.0.0.0 freecamsexposed.com +0.0.0.0 freecoolgift.com +0.0.0.0 freedesignerhandbagreviews.com +0.0.0.0 freedinnersource.com +0.0.0.0 freedvddept.com +0.0.0.0 freeelectronicscenter.com +0.0.0.0 freeelectronicsdepot.com +0.0.0.0 freeelectronicsonus.com +0.0.0.0 freeelectronicssource.com +0.0.0.0 freeentertainmentsource.com +0.0.0.0 freefoodprovider.com +0.0.0.0 freefoodsource.com +0.0.0.0 freefuelcard.com +0.0.0.0 freefuelcoupon.com +0.0.0.0 freegasonus.com +0.0.0.0 freegasprovider.com +0.0.0.0 freegiftcardsource.com +0.0.0.0 freegiftreward.com +0.0.0.0 freeipodnanouk.co.uk +0.0.0.0 freeipoduk.co.uk +0.0.0.0 freeipoduk.com +0.0.0.0 freelaptopgift.com +0.0.0.0 freelaptopnation.com +0.0.0.0 freelaptopreward.com +0.0.0.0 freelaptopwebsites.com +0.0.0.0 freenation.com +0.0.0.0 freeoffers-toys.com +0.0.0.0 freepayasyougotopupuk.co.uk +0.0.0.0 freeplasmanation.com +0.0.0.0 freerestaurantprovider.com +0.0.0.0 freerestaurantsource.com +0.0.0.0 freeshoppingprovider.com +0.0.0.0 freeshoppingsource.com +0.0.0.0 freevideodownloadforpc.com +0.0.0.0 freezemac.tech +0.0.0.0 fromslowmactofastmac.com +0.0.0.0 frontend-loadbalancer.meteorsolutions.com +0.0.0.0 functional-business.com +0.0.0.0 funtabsafe.com +0.0.0.0 fw.qq.com +0.0.0.0 fwdservice.com +0.0.0.0 g.admob.com +0.0.0.0 g.adnxs.com +0.0.0.0 g.thinktarget.com +0.0.0.0 g1.idg.pl +0.0.0.0 g2.gumgum.com +0.0.0.0 g3t4d5.madison.com +0.0.0.0 g4p.grt02.com +0.0.0.0 gadgeteer.pdamart.com +0.0.0.0 gam.adnxs.com +0.0.0.0 gameconsolerewards.com +0.0.0.0 gamerz123.com +0.0.0.0 games-toys-bonuspath.com +0.0.0.0 games-toys-free.com +0.0.0.0 games-toys-rewardpath.com +0.0.0.0 gar-tech.com +0.0.0.0 gasurvey.gemius.com +0.0.0.0 gate.hyperpaysys.com +0.0.0.0 gavzad.keenspot.com +0.0.0.0 gazeta.hit.gemius.pl +0.0.0.0 gazetteextra.advertserve.com +0.0.0.0 gbp.ebayadvertising.triadretail.net +0.0.0.0 gc.gcl.ru +0.0.0.0 gcads.osdn.com +0.0.0.0 gcdn.2mdn.net +0.0.0.0 gcir.gannett-tv.com +0.0.0.0 gcirm.argusleader.com +0.0.0.0 gcirm.argusleader.gcion.com +0.0.0.0 gcirm.battlecreekenquirer.com +0.0.0.0 gcirm.burlingtonfreepress.com +0.0.0.0 gcirm.centralohio.com +0.0.0.0 gcirm.centralohio.gcion.com +0.0.0.0 gcirm.cincinnati.com +0.0.0.0 gcirm.citizen-times.com +0.0.0.0 gcirm.clarionledger.com +0.0.0.0 gcirm.coloradoan.com +0.0.0.0 gcirm.courier-journal.com +0.0.0.0 gcirm.courierpostonline.com +0.0.0.0 gcirm.customcoupon.com +0.0.0.0 gcirm.dailyrecord.com +0.0.0.0 gcirm.delawareonline.com +0.0.0.0 gcirm.democratandchronicle.com +0.0.0.0 gcirm.desmoinesregister.com +0.0.0.0 gcirm.detnews.com +0.0.0.0 gcirm.dmp.gcion.com +0.0.0.0 gcirm.dmregister.com +0.0.0.0 gcirm.dnj.com +0.0.0.0 gcirm.flatoday.com +0.0.0.0 gcirm.gannett-tv.com +0.0.0.0 gcirm.gannettnetwork.com +0.0.0.0 gcirm.greatfallstribune.com +0.0.0.0 gcirm.greenvilleonline.com +0.0.0.0 gcirm.greenvilleonline.gcion.com +0.0.0.0 gcirm.honoluluadvertiser.gcion.com +0.0.0.0 gcirm.idahostatesman.com +0.0.0.0 gcirm.idehostatesman.com +0.0.0.0 gcirm.indystar.com +0.0.0.0 gcirm.injersey.com +0.0.0.0 gcirm.jacksonsun.com +0.0.0.0 gcirm.laregionalonline.com +0.0.0.0 gcirm.lsj.com +0.0.0.0 gcirm.montgomeryadvertiser.com +0.0.0.0 gcirm.muskogeephoenix.com +0.0.0.0 gcirm.news-press.com +0.0.0.0 gcirm.newsleader.com +0.0.0.0 gcirm.ozarksnow.com +0.0.0.0 gcirm.pensacolanewsjournal.com +0.0.0.0 gcirm.press-citizen.com +0.0.0.0 gcirm.pressconnects.com +0.0.0.0 gcirm.rgj.com +0.0.0.0 gcirm.sctimes.com +0.0.0.0 gcirm.stargazette.com +0.0.0.0 gcirm.statesmanjournal.com +0.0.0.0 gcirm.tallahassee.com +0.0.0.0 gcirm.tennessean.com +0.0.0.0 gcirm.thedailyjournal.com +0.0.0.0 gcirm.thedesertsun.com +0.0.0.0 gcirm.theithacajournal.com +0.0.0.0 gcirm.thejournalnews.com +0.0.0.0 gcirm.theolympian.com +0.0.0.0 gcirm.thespectrum.com +0.0.0.0 gcirm.tucson.com +0.0.0.0 gcirm.wisinfo.com +0.0.0.0 gcirm2.indystar.com +0.0.0.0 gde.adocean.pl +0.0.0.0 gdeee.hit.gemius.pl +0.0.0.0 gdelt.hit.gemius.pl +0.0.0.0 gdelv.hit.gemius.pl +0.0.0.0 gdyn.cnngo.com +0.0.0.0 gdyn.trutv.com +0.0.0.0 ge-0-0-1-edge1.sc9.admob.com +0.0.0.0 ge-0-0-43-crs1.sc9.admob.com +0.0.0.0 gem.pl +0.0.0.0 geo.precisionclick.com +0.0.0.0 geoads.osdn.com +0.0.0.0 geoloc11.geovisite.com +0.0.0.0 geoweb.e-kolay.net +0.0.0.0 getacool100.com +0.0.0.0 getacool500.com +0.0.0.0 getacoollaptop.com +0.0.0.0 getacooltv.com +0.0.0.0 getafreeiphone.org +0.0.0.0 getagiftonline.com +0.0.0.0 getmyads.com +0.0.0.0 getmyfreebabystuff.com +0.0.0.0 getmyfreegear.com +0.0.0.0 getmyfreegiftcard.com +0.0.0.0 getmyfreelaptop.com +0.0.0.0 getmyfreelaptophere.com +0.0.0.0 getmyfreeplasma.com +0.0.0.0 getmylaptopfree.com +0.0.0.0 getmynumber.net +0.0.0.0 getmyplasmatv.com +0.0.0.0 getspecialgifts.com +0.0.0.0 getyour5kcredits0.blogspot.com +0.0.0.0 getyourfreecomputer.com +0.0.0.0 getyourfreetv.com +0.0.0.0 getyourgiftnow2.blogspot.com +0.0.0.0 getyourgiftnow3.blogspot.com +0.0.0.0 gezinti.com +0.0.0.0 gg.adocean.pl +0.0.0.0 ghalibaft.com +0.0.0.0 ghmtr.hit.gemius.pl +0.0.0.0 gift-today85.online +0.0.0.0 giftcardchallenge.com +0.0.0.0 giftcardsurveys.us.com +0.0.0.0 giftrewardzone.com +0.0.0.0 gifts-flowers-rewardpath.com +0.0.0.0 gimg.baidu.com +0.0.0.0 gimmethatreward.com +0.0.0.0 gingert.net +0.0.0.0 global-promotions.internationalredirects.com +0.0.0.0 global.msmtrakk03a.com +0.0.0.0 global.ymtrack.com +0.0.0.0 globalnetworkanalys.com +0.0.0.0 globalwebads.com +0.0.0.0 gm.mmstat.com +0.0.0.0 gm.preferences.com +0.0.0.0 go-free-gifts.com +0.0.0.0 go.adee.bbelements.com +0.0.0.0 go.adlt.bbelements.com +0.0.0.0 go.adlv.bbelements.com +0.0.0.0 go.admulti.com +0.0.0.0 go.adnet.bbelements.com +0.0.0.0 go.arbo.bbelements.com +0.0.0.0 go.arbopl.bbelements.com +0.0.0.0 go.arboru.bbelements.com +0.0.0.0 go.bb007.bbelements.com +0.0.0.0 go.cz.bbelements.com +0.0.0.0 go.data1rtb.com +0.0.0.0 go.eu.bbelements.com +0.0.0.0 go.evolutionmedia.bbelements.com +0.0.0.0 go.idmnet.bbelements.com +0.0.0.0 go.idnes.bbelements.com +0.0.0.0 go.ihned.bbelements.com +0.0.0.0 go.intact.bbelements.com +0.0.0.0 go.lfstmedia.com +0.0.0.0 go.lotech.bbelements.com +0.0.0.0 go.padsdelivery.com +0.0.0.0 go.padstm.com +0.0.0.0 go.pl.bbelements.com +0.0.0.0 go.pol.bbelements.com +0.0.0.0 go.spaceshipads.com +0.0.0.0 go.stirshakead.com +0.0.0.0 go.trkreward.com +0.0.0.0 go.verymuchad.com +0.0.0.0 go2.hit.gemius.pl +0.0.0.0 goautofinance.com +0.0.0.0 gofreegifts.com +0.0.0.0 goldbach.hit.gemius.pl +0.0.0.0 goodbizez.com +0.0.0.0 goodbookbook.com +0.0.0.0 goodsblock.marketgid.com +0.0.0.0 goody-garage.com +0.0.0.0 googlewordpad.info +0.0.0.0 got2goshop.com +0.0.0.0 goto.mystreamdelivery.xyz +0.0.0.0 goto.trafficmultiplier.com +0.0.0.0 gozatar.com +0.0.0.0 gozing.directtrack.com +0.0.0.0 grabbit-rabbit.com +0.0.0.0 graphics.adultfriendfinder.com +0.0.0.0 graphics.pop6.com +0.0.0.0 gratkapl.adocean.pl +0.0.0.0 gravitron.chron.com +0.0.0.0 greasypalm.com +0.0.0.0 grfx.mp3.com +0.0.0.0 groupm.com +0.0.0.0 grz67.com +0.0.0.0 gs1.idsales.co.uk +0.0.0.0 gserv.cneteu.net +0.0.0.0 gspro.hit.gemius.pl +0.0.0.0 guanjia.baidu.com +0.0.0.0 gug.ku6cdn.com +0.0.0.0 guiaconsumidor.com +0.0.0.0 guide2poker.com +0.0.0.0 guptamedianetwork.com +0.0.0.0 guru.sitescout.netdna-cdn.com +0.0.0.0 gw.youmi.net +0.0.0.0 gwallet.com +0.0.0.0 gx-in-f109.1e100.net +0.0.0.0 h-afnetwww.adshuffle.com +0.0.0.0 h.admob.com +0.0.0.0 h.ppjol.com +0.0.0.0 hadik.info +0.0.0.0 halfords.ukrpts.net +0.0.0.0 haouzy.info +0.0.0.0 happydiscountspecials.com +0.0.0.0 harvest.adgardener.com +0.0.0.0 harvest176.adgardener.com +0.0.0.0 harvest284.adgardener.com +0.0.0.0 harvest285.adgardener.com +0.0.0.0 hathor.eztonez.com +0.0.0.0 havakhosh.com +0.0.0.0 haynet.adbureau.net +0.0.0.0 hbads.eboz.com +0.0.0.0 hbadz.eboz.com +0.0.0.0 hc.baidu.com +0.0.0.0 hdporium.com +0.0.0.0 health-beauty-rewardpath.com +0.0.0.0 health-beauty-savingblvd.com +0.0.0.0 healthbeautyncs.com +0.0.0.0 healthclicks.co.uk +0.0.0.0 hebdotop.com +0.0.0.0 help.adtech.de +0.0.0.0 help.adtech.fr +0.0.0.0 help.adtech.us +0.0.0.0 helpmymacfaster.club +0.0.0.0 hermes.airad.com +0.0.0.0 hikesearch.net +0.0.0.0 hilltopads.net +0.0.0.0 himediads.com +0.0.0.0 hipersushiads.com +0.0.0.0 hit.8digits.com +0.0.0.0 hit4.hotlog.ru +0.0.0.0 hk.adserver.yahoo.com +0.0.0.0 hlcc.ca +0.0.0.0 hlu9tseh.men +0.0.0.0 hm.baidu.com +0.0.0.0 hm.l.qq.com +0.0.0.0 hnfwg.voluumtrk.com +0.0.0.0 holiday-gift-offers.com +0.0.0.0 holidayproductpromo.com +0.0.0.0 holidayshoppingrewards.com +0.0.0.0 home-garden-premiumblvd.com +0.0.0.0 home-garden-rewardempire.com +0.0.0.0 home-garden-rewardpath.com +0.0.0.0 home4bizstart.ru +0.0.0.0 homeelectronicproducts.com +0.0.0.0 homeimprovementonus.com +0.0.0.0 honarkhabar.com +0.0.0.0 honarkhaneh.net +0.0.0.0 honolulu.app.ur.gcion.com +0.0.0.0 hooqy.com +0.0.0.0 host207.ewtn.com +0.0.0.0 hostedaje14.thruport.com +0.0.0.0 hosting.adjug.com +0.0.0.0 hot-daily-deal.com +0.0.0.0 hot-product-hangout.com +0.0.0.0 hotbar.dgndesign.com +0.0.0.0 hotgiftzone.com +0.0.0.0 housedman.com +0.0.0.0 hpad.www.infoseek.co.jp +0.0.0.0 html.atm.youku.com +0.0.0.0 html.centralmediaserver.com +0.0.0.0 htmlads.ru +0.0.0.0 htmlwww.youfck.com +0.0.0.0 http300.content.ru4.com +0.0.0.0 httpads.com +0.0.0.0 httpring.qq.com +0.0.0.0 httpwwwadserver.com +0.0.0.0 hub.com.pl +0.0.0.0 huis.istats.nl +0.0.0.0 huiwiw.hit.gemius.pl +0.0.0.0 huntingtonbank.tt.omtrdc.net +0.0.0.0 huomdgde.adocean.pl +0.0.0.0 hyperion.adtech.de +0.0.0.0 hyperion.adtech.fr +0.0.0.0 hyperion.adtech.us +0.0.0.0 hz.mmstat.com +0.0.0.0 i.admob.com +0.0.0.0 i.adwise.bg +0.0.0.0 i.blogads.com +0.0.0.0 i.casalemedia.com +0.0.0.0 i.hotkeys.com +0.0.0.0 i.interia.pl +0.0.0.0 i.laih.com +0.0.0.0 i.media.cz +0.0.0.0 i.pcp001.com +0.0.0.0 i.qitrck.com +0.0.0.0 i.radzolo.com +0.0.0.0 i.securecontactinfo.com +0.0.0.0 i.simpli.fi +0.0.0.0 i.static.zaplata.bg +0.0.0.0 i.total-media.net +0.0.0.0 i1.teaser-goods.ru +0.0.0.0 i4eg76.vindicated-shelter.space +0.0.0.0 iacas.adbureau.net +0.0.0.0 iadc.qwapi.com +0.0.0.0 ialaddin.genieesspv.jp +0.0.0.0 ib.adnxs.com +0.0.0.0 ibis.lgappstv.com +0.0.0.0 icanoptout.com +0.0.0.0 icon.clickthru.net +0.0.0.0 id11938.luxup.ru +0.0.0.0 id5576.al21.luxup.ru +0.0.0.0 idearc.tt.omtrdc.net +0.0.0.0 idpix.media6degrees.com +0.0.0.0 iebar.baidu.com +0.0.0.0 ieee.adbureau.net +0.0.0.0 if.bbanner.it +0.0.0.0 iftarvakitleri.net +0.0.0.0 ih2.gamecopyworld.com +0.0.0.0 ikcode.baidu.com +0.0.0.0 ilinks.industrybrains.com +0.0.0.0 im.adtech.de +0.0.0.0 im.banner.t-online.de +0.0.0.0 im.of.pl +0.0.0.0 im.xo.pl +0.0.0.0 imads.integral-marketing.com +0.0.0.0 image.click.livedoor.com +0.0.0.0 image.i1img.com +0.0.0.0 image.linkexchange.com +0.0.0.0 image2.pubmatic.com +0.0.0.0 imagec08.247realmedia.com +0.0.0.0 imagec12.247realmedia.com +0.0.0.0 imagec14.247realmedia.com +0.0.0.0 imageceu1.247realmedia.com +0.0.0.0 images-cdn.azoogleads.com +0.0.0.0 images.ads.fairfax.com.au +0.0.0.0 images.blogads.com +0.0.0.0 images.bluetime.com +0.0.0.0 images.clickfinders.com +0.0.0.0 images.conduit-banners.com +0.0.0.0 images.cybereps.com +0.0.0.0 images.directtrack.com +0.0.0.0 images.emapadserver.com +0.0.0.0 images.jambocast.com +0.0.0.0 images.linkwithin.com +0.0.0.0 images.mbuyu.nl +0.0.0.0 images.netcomvad.com +0.0.0.0 images.newsx.cc +0.0.0.0 images.people2people.com +0.0.0.0 images.persgroepadvertising.be +0.0.0.0 images.primaryads.com +0.0.0.0 images.sexlist.com +0.0.0.0 images.sohu.com +0.0.0.0 images.steamray.com +0.0.0.0 images.taboola.com +0.0.0.0 images.trafficmp.com +0.0.0.0 images2.laih.com +0.0.0.0 images3.linkwithin.com +0.0.0.0 imageserv.adtech.de +0.0.0.0 imageserv.adtech.fr +0.0.0.0 imageserv.adtech.us +0.0.0.0 imageserver1.thruport.com +0.0.0.0 imagesrv.adition.com +0.0.0.0 imarker.com +0.0.0.0 imarker.ru +0.0.0.0 imc.l.qq.com +0.0.0.0 img-a2.ak.imagevz.net +0.0.0.0 img-cdn.mediaplex.com +0.0.0.0 img.alibaba.com +0.0.0.0 img.blogads.com +0.0.0.0 img.directtrack.com +0.0.0.0 img.layer-ads.de +0.0.0.0 img.marketgid.com +0.0.0.0 img.sn00.net +0.0.0.0 img.soulmate.com +0.0.0.0 img.xnxx.com +0.0.0.0 img0.ru.redtram.com +0.0.0.0 img1.ru.redtram.com +0.0.0.0 img2.ru.redtram.com +0.0.0.0 img4.cdn.adjuggler.com +0.0.0.0 imgg-cdn.adskeeper.co.uk +0.0.0.0 imgg.dt00.net +0.0.0.0 imgg.marketgid.com +0.0.0.0 imgg.mgid.com +0.0.0.0 imgn.dt00.net +0.0.0.0 imgn.dt07.com +0.0.0.0 imgn.marketgid.com +0.0.0.0 imgserv.adbutler.com +0.0.0.0 immediadement-arretez-ezhez-identfcie-jasdasd1233-9057.com +0.0.0.0 imp.adsmogo.com +0.0.0.0 imp.partner2profit.com +0.0.0.0 impact.cossette-webpact.com +0.0.0.0 impbe.tradedoubler.com +0.0.0.0 imppl.tradedoubler.com +0.0.0.0 impressionaffiliate.com +0.0.0.0 impressionaffiliate.mobi +0.0.0.0 impressionlead.com +0.0.0.0 impressionperformance.biz +0.0.0.0 imrk.net +0.0.0.0 imrkcrv.net +0.0.0.0 imserv001.adtech.de +0.0.0.0 imserv001.adtech.fr +0.0.0.0 imserv001.adtech.us +0.0.0.0 imserv002.adtech.de +0.0.0.0 imserv002.adtech.fr +0.0.0.0 imserv002.adtech.us +0.0.0.0 imserv003.adtech.de +0.0.0.0 imserv003.adtech.fr +0.0.0.0 imserv003.adtech.us +0.0.0.0 imserv004.adtech.de +0.0.0.0 imserv004.adtech.fr +0.0.0.0 imserv004.adtech.us +0.0.0.0 imserv005.adtech.de +0.0.0.0 imserv005.adtech.fr +0.0.0.0 imserv005.adtech.us +0.0.0.0 imserv006.adtech.de +0.0.0.0 imserv006.adtech.fr +0.0.0.0 imserv006.adtech.us +0.0.0.0 imserv00x.adtech.de +0.0.0.0 imserv00x.adtech.fr +0.0.0.0 imserv00x.adtech.us +0.0.0.0 imssl01.adtech.de +0.0.0.0 imssl01.adtech.fr +0.0.0.0 imssl01.adtech.us +0.0.0.0 in.adserver.yahoo.com +0.0.0.0 in.getclicky.com +0.0.0.0 incentive-scene.com +0.0.0.0 incentivegateway.com +0.0.0.0 incentiverewardcenter.com +0.0.0.0 inclk.com +0.0.0.0 indexhu.adocean.pl +0.0.0.0 indisancal.com +0.0.0.0 industry-deals.com +0.0.0.0 infos-bourses.com +0.0.0.0 inklineglobal.com +0.0.0.0 inl.adbureau.net +0.0.0.0 inpagevideo.nl +0.0.0.0 input.insights.gravity.com +0.0.0.0 ins-offer.com +0.0.0.0 insightxe.pittsburghlive.com +0.0.0.0 insightxe.vtsgonline.com +0.0.0.0 installer.zutrack.com +0.0.0.0 insurance-rewardpath.com +0.0.0.0 intela.com +0.0.0.0 intensedigital.adk2x.com +0.0.0.0 interia.adsearch.adkontekst.pl +0.0.0.0 internet.billboard.cz +0.0.0.0 intnet-offer.com +0.0.0.0 intrack.pl +0.0.0.0 inv-nets.admixer.net +0.0.0.0 ioubes.press +0.0.0.0 ipacc1.adtech.de +0.0.0.0 ipacc1.adtech.fr +0.0.0.0 ipacc1.adtech.us +0.0.0.0 ipad2free4u.com +0.0.0.0 ipdata.adtech.de +0.0.0.0 ipdata.adtech.fr +0.0.0.0 ipdata.adtech.us +0.0.0.0 iphone-avril.offreflash.xyz +0.0.0.0 iq001.adtech.de +0.0.0.0 iq001.adtech.fr +0.0.0.0 iq001.adtech.us +0.0.0.0 ir-na.amazon-adsystem.com +0.0.0.0 is.casalemedia.com +0.0.0.0 isg01.casalemedia.com +0.0.0.0 isg02.casalemedia.com +0.0.0.0 isg03.casalemedia.com +0.0.0.0 isg04.casalemedia.com +0.0.0.0 isg05.casalemedia.com +0.0.0.0 isg06.casalemedia.com +0.0.0.0 isg07.casalemedia.com +0.0.0.0 isg08.casalemedia.com +0.0.0.0 isg09.casalemedia.com +0.0.0.0 islamicmarketing.net +0.0.0.0 istockbargains.com +0.0.0.0 it.adserver.yahoo.com +0.0.0.0 itemagic.net +0.0.0.0 itempana.site +0.0.0.0 itrackerpro.com +0.0.0.0 itsfree123.com +0.0.0.0 itxt.vibrantmedia.com +0.0.0.0 iwantmy-freelaptop.com +0.0.0.0 iwantmyfree-laptop.com +0.0.0.0 iwantmyfreelaptop.com +0.0.0.0 iwantmygiftcard.com +0.0.0.0 iwstat.tudou.com +0.0.0.0 j.adlooxtracking.com +0.0.0.0 j.admob.com +0.0.0.0 j.clickdensity.com +0.0.0.0 j3safetyismyname.com +0.0.0.0 jambocast.com +0.0.0.0 jb9clfifs6.s.ad6media.fr +0.0.0.0 jcarter.spinbox.net +0.0.0.0 jcrew.tt.omtrdc.net +0.0.0.0 jenno.adsb4all.com +0.0.0.0 jerichoplay.com +0.0.0.0 jersey-offer.com +0.0.0.0 jgedads.cjt.net +0.0.0.0 jh.revolvermaps.com +0.0.0.0 jingjia.qq.com +0.0.0.0 jivox.com +0.0.0.0 jl29jd25sm24mc29.com +0.0.0.0 jlinks.industrybrains.com +0.0.0.0 jmn.jangonetwork.com +0.0.0.0 jmvjmgofvxnu.com +0.0.0.0 jobs.nuwerk.monsterboard.nl +0.0.0.0 join1.winhundred.com +0.0.0.0 journal-des-bourses.com +0.0.0.0 js.adlink.net +0.0.0.0 js.admngr.com +0.0.0.0 js.adscale.de +0.0.0.0 js.adserverpub.com +0.0.0.0 js.adsonar.com +0.0.0.0 js.adsrvr.org +0.0.0.0 js.betburdaaffiliates.com +0.0.0.0 js.bizographics.com +0.0.0.0 js.goods.redtram.com +0.0.0.0 js.himediads.com +0.0.0.0 js.hotkeys.com +0.0.0.0 js.moatads.com +0.0.0.0 js.ru.redtram.com +0.0.0.0 js.selectornews.com +0.0.0.0 js.smi2.ru +0.0.0.0 js.softreklam.com +0.0.0.0 js.srcsmrtgs.com +0.0.0.0 js.zevents.com +0.0.0.0 js1.bloggerads.net +0.0.0.0 js77.neodatagroup.com +0.0.0.0 jsc.dt07.net +0.0.0.0 jsc.mgid.com +0.0.0.0 jsn.dt07.net +0.0.0.0 judo.salon.com +0.0.0.0 juggler.inetinteractive.com +0.0.0.0 jxliu.com +0.0.0.0 jzclick.soso.com +0.0.0.0 k.admob.com +0.0.0.0 k5ads.osdn.com +0.0.0.0 kaartenhuis.nl.site-id.nl +0.0.0.0 kansas.valueclick.com +0.0.0.0 katu.adbureau.net +0.0.0.0 kazaa.adserver.co.il +0.0.0.0 kermit.macnn.com +0.0.0.0 kestrel.ospreymedialp.com +0.0.0.0 keys.dmtracker.com +0.0.0.0 keywordblocks.com +0.0.0.0 keywords.adtlgc.com +0.0.0.0 khalto.info +0.0.0.0 kitaramarketplace.com +0.0.0.0 kitaramedia.com +0.0.0.0 kitaratrk.com +0.0.0.0 kithrup.matchlogic.com +0.0.0.0 kixer.com +0.0.0.0 klikk.linkpulse.com +0.0.0.0 klikmoney.net +0.0.0.0 kliks.affiliate4you.nl +0.0.0.0 klipads.dvlabs.com +0.0.0.0 klipmart.dvlabs.com +0.0.0.0 klipmart.forbes.com +0.0.0.0 kmdl101.com +0.0.0.0 knc.lv +0.0.0.0 knight.economist.com +0.0.0.0 kona.kontera.com +0.0.0.0 kona2.kontera.com +0.0.0.0 kona3.kontera.com +0.0.0.0 kona33.kontera.com +0.0.0.0 kona4.kontera.com +0.0.0.0 kona5.kontera.com +0.0.0.0 kona6.kontera.com +0.0.0.0 kona7.kontera.com +0.0.0.0 kona8.kontera.com +0.0.0.0 konax.kontera.com +0.0.0.0 kos.interseek.si +0.0.0.0 kreaffiliation.com +0.0.0.0 kropka.onet.pl +0.0.0.0 ktrackdata.com +0.0.0.0 ku6.allyes.com +0.0.0.0 ku6afp.allyes.com +0.0.0.0 kuhdi.com +0.0.0.0 kxrzz.superpromo.7112531.com +0.0.0.0 l-sspcash.adxcore.com +0.0.0.0 l.5min.com +0.0.0.0 l.admob.com +0.0.0.0 l.linkpulse.com +0.0.0.0 l.ohmyad.co +0.0.0.0 l.qq.com +0.0.0.0 l.yieldmanager.net +0.0.0.0 l2.l.qq.com +0.0.0.0 ladyclicks.ru +0.0.0.0 land.purifier.cc +0.0.0.0 lanzar.publicidadweb.com +0.0.0.0 laptopreportcard.com +0.0.0.0 laptoprewards.com +0.0.0.0 laptoprewardsgroup.com +0.0.0.0 laptoprewardszone.com +0.0.0.0 larivieracasino.com +0.0.0.0 lasthr.info +0.0.0.0 lastmeasure.zoy.org +0.0.0.0 latency.ttrraacckkrr.com +0.0.0.0 latestsearch.website +0.0.0.0 latribune.electronicpromotions2015.com +0.0.0.0 launch.adserver.yahoo.com +0.0.0.0 lb-adserver.ig.com.br +0.0.0.0 ld1.criteo.com +0.0.0.0 ld2.criteo.com +0.0.0.0 ldglob01.adtech.de +0.0.0.0 ldglob01.adtech.fr +0.0.0.0 ldglob01.adtech.us +0.0.0.0 ldglob02.adtech.de +0.0.0.0 ldglob02.adtech.fr +0.0.0.0 ldglob02.adtech.us +0.0.0.0 ldimage01.adtech.de +0.0.0.0 ldimage01.adtech.fr +0.0.0.0 ldimage01.adtech.us +0.0.0.0 ldimage02.adtech.de +0.0.0.0 ldimage02.adtech.fr +0.0.0.0 ldimage02.adtech.us +0.0.0.0 ldserv01.adtech.de +0.0.0.0 ldserv01.adtech.fr +0.0.0.0 ldserv01.adtech.us +0.0.0.0 ldserv02.adtech.de +0.0.0.0 ldserv02.adtech.fr +0.0.0.0 ldserv02.adtech.us +0.0.0.0 le1er.net +0.0.0.0 lead.program3.com +0.0.0.0 leadback.advertising.com +0.0.0.0 leader.linkexchange.com +0.0.0.0 leadsynaptic.go2jump.org +0.0.0.0 learning-offer.com +0.0.0.0 legal-rewardpath.com +0.0.0.0 leisure-offer.com +0.0.0.0 letmefind.co +0.0.0.0 letsfinder.com +0.0.0.0 levexis.com +0.0.0.0 lg.brandreachsys.com +0.0.0.0 liberty.gedads.com +0.0.0.0 ligtv.kokteyl.com +0.0.0.0 link2me.ru +0.0.0.0 linktracker.angelfire.com +0.0.0.0 linuxpark.adtech.de +0.0.0.0 linuxpark.adtech.fr +0.0.0.0 linuxpark.adtech.us +0.0.0.0 liones.nl +0.0.0.0 listennewsnetwork.com +0.0.0.0 livingnet.adtech.de +0.0.0.0 ll.atdmt.com +0.0.0.0 lnads.osdn.com +0.0.0.0 load.exelator.com +0.0.0.0 load.focalex.com +0.0.0.0 load.sumome.com +0.0.0.0 loadm.exelator.com +0.0.0.0 local.promoisland.net +0.0.0.0 log.feedjit.com +0.0.0.0 log.olark.com +0.0.0.0 log.pladform.ru +0.0.0.0 log.tagcade.com +0.0.0.0 logc252.xiti.com +0.0.0.0 logger.virgul.com +0.0.0.0 login.linkpulse.com +0.0.0.0 logs.spilgames.com +0.0.0.0 looksmartcollect.247realmedia.com +0.0.0.0 louisvil.app.ur.gcion.com +0.0.0.0 louisvil.ur.gcion.com +0.0.0.0 lp.empire.goodgamestudios.com +0.0.0.0 lp.jeux-lk.com +0.0.0.0 lp.sexyadults.eu +0.0.0.0 lp1.linkpulse.com +0.0.0.0 lp4.linkpulse.com +0.0.0.0 lpcloudsvr405.com +0.0.0.0 ls.hit.gemius.pl +0.0.0.0 lsassoc.com +0.0.0.0 lstat.youku.com +0.0.0.0 lstats.qip.ru +0.0.0.0 lt.andomedia.com +0.0.0.0 lt.angelfire.com +0.0.0.0 lucky-day-uk.com +0.0.0.0 lw1.gamecopyworld.com +0.0.0.0 lw2.gamecopyworld.com +0.0.0.0 lycos.247realmedia.com +0.0.0.0 m.adbridge.de +0.0.0.0 m.admob.com +0.0.0.0 m.fr.2mdn.net +0.0.0.0 m.fr.a2dfp.net +0.0.0.0 m.openv.tv +0.0.0.0 m.pl.pornzone.tv +0.0.0.0 m.tribalfusion.com +0.0.0.0 m.uk.2mdn.net +0.0.0.0 m1.emea.2mdn.net +0.0.0.0 m1.emea.2mdn.net.edgesuite.net +0.0.0.0 m2.media-box.co +0.0.0.0 m2.sexgarantie.nl +0.0.0.0 m3.2mdn.net +0.0.0.0 m4.afs.googleadservices.com +0.0.0.0 m4.media-box.co +0.0.0.0 m4ymh0220.tech +0.0.0.0 ma.baidu.com +0.0.0.0 mac-helper.site +0.0.0.0 mac.system-alert1.com +0.0.0.0 macaddictads.snv.futurenet.com +0.0.0.0 macads.net +0.0.0.0 maccleanersecurity.com +0.0.0.0 macfixingsoftware.space +0.0.0.0 mackeeperapp1.zeobit.com +0.0.0.0 mackeeperapp2.mackeeper.com +0.0.0.0 mackeeperapp3.mackeeper.com +0.0.0.0 macleaner.space +0.0.0.0 macleaner.work +0.0.0.0 macpurifier.com +0.0.0.0 mad2.brandreachsys.com +0.0.0.0 madadsmedia.com +0.0.0.0 mads.amazon-adsystem.com +0.0.0.0 mads.aol.com +0.0.0.0 mail.radar.imgsmail.ru +0.0.0.0 main.exoclick.com +0.0.0.0 main.vodonet.net +0.0.0.0 makemoneyrobot.com +0.0.0.0 manage001.adtech.de +0.0.0.0 manage001.adtech.fr +0.0.0.0 manage001.adtech.us +0.0.0.0 manager.rovion.com +0.0.0.0 mangler1.generals.ea.com +0.0.0.0 mangler10.generals.ea.com +0.0.0.0 mangler2.generals.ea.com +0.0.0.0 mangler3.generals.ea.com +0.0.0.0 mangler4.generals.ea.com +0.0.0.0 mangler5.generals.ea.com +0.0.0.0 mangler6.generals.ea.com +0.0.0.0 mangler7.generals.ea.com +0.0.0.0 mangler8.generals.ea.com +0.0.0.0 mangler9.generals.ea.com +0.0.0.0 manuel.theonion.com +0.0.0.0 mapleway2profit.com +0.0.0.0 marketgid.com +0.0.0.0 marketing-rewardpath.com +0.0.0.0 mashinkhabar.com +0.0.0.0 mastertracks.be +0.0.0.0 match.adsrvr.org +0.0.0.0 matomy.adk2.co +0.0.0.0 matrix.mediavantage.de +0.0.0.0 maxads.ruralpress.com +0.0.0.0 maxadserver.corusradionetwork.com +0.0.0.0 maximumpcads.imaginemedia.com +0.0.0.0 maxmedia.sgaonline.com +0.0.0.0 maxmusics.com +0.0.0.0 maxonclick.com +0.0.0.0 maxserving.com +0.0.0.0 mb01.com +0.0.0.0 mbox2.offermatica.com +0.0.0.0 mbox9.offermatica.com +0.0.0.0 mcagbtdcwklf.com +0.0.0.0 mcfg.sandai.net +0.0.0.0 mds.centrport.net +0.0.0.0 media-fire.org +0.0.0.0 media.888.com +0.0.0.0 media.adcentriconline.com +0.0.0.0 media.adrcdn.com +0.0.0.0 media.adrevolver.com +0.0.0.0 media.adrime.com +0.0.0.0 media.adshadow.net +0.0.0.0 media.b.lead.program3.com +0.0.0.0 media.betburdaaffiliates.com +0.0.0.0 media.bonnint.net +0.0.0.0 media.boomads.com +0.0.0.0 media.charter.com +0.0.0.0 media.contextweb.com +0.0.0.0 media.easyads.bg +0.0.0.0 media.elb-kind.de +0.0.0.0 media.espace-plus.net +0.0.0.0 media.fairlink.ru +0.0.0.0 media.markethealth.com +0.0.0.0 media.naked.com +0.0.0.0 media.nk-net.pl +0.0.0.0 media.ontarionorth.com +0.0.0.0 media.popmarker.com +0.0.0.0 media.popuptraffic.com +0.0.0.0 media.trafficfactory.biz +0.0.0.0 media.trafficjunky.net +0.0.0.0 media.ventivmedia.com +0.0.0.0 media.viwii.net +0.0.0.0 media.xxxnavy.com +0.0.0.0 media1.popmarker.com +0.0.0.0 media10.popmarker.com +0.0.0.0 media2.adshuffle.com +0.0.0.0 media2.legacy.com +0.0.0.0 media2.popmarker.com +0.0.0.0 media2.travelzoo.com +0.0.0.0 media2021.videostrip.com +0.0.0.0 media3.popmarker.com +0.0.0.0 media4.popmarker.com +0.0.0.0 media4021.videostrip.com +0.0.0.0 media5.popmarker.com +0.0.0.0 media5021.videostrip.com +0.0.0.0 media6.popmarker.com +0.0.0.0 media6.sitebrand.com +0.0.0.0 media6021.videostrip.com +0.0.0.0 media7.popmarker.com +0.0.0.0 media8.popmarker.com +0.0.0.0 media9.popmarker.com +0.0.0.0 mediafr.247realmedia.com +0.0.0.0 medialand.relax.ru +0.0.0.0 mediapst-images.adbureau.net +0.0.0.0 mediapst.adbureau.net +0.0.0.0 medias.clicks4ads.com +0.0.0.0 medias.europacash.com +0.0.0.0 mediative.ca +0.0.0.0 mediative.com +0.0.0.0 mediauk.247realmedia.com +0.0.0.0 mediaupdate41.com +0.0.0.0 medical-offer.com +0.0.0.0 medical-rewardpath.com +0.0.0.0 medusa.reklamlab.com +0.0.0.0 medya.e-kolay.net +0.0.0.0 meevehdar.com +0.0.0.0 mega.vast.mega-tags.com +0.0.0.0 megapanel.gem.pl +0.0.0.0 melding-technology.com +0.0.0.0 mercury.bravenet.com +0.0.0.0 messagent.duvalguillaume.com +0.0.0.0 messagent.sanomadigital.nl +0.0.0.0 messagia.adcentric.proximi-t.com +0.0.0.0 mesterads.com +0.0.0.0 metaapi.bulletproofserving.com +0.0.0.0 meter-svc.nytimes.com +0.0.0.0 metrics.ikea.com +0.0.0.0 metrics.natmags.co.uk +0.0.0.0 metrics.sfr.fr +0.0.0.0 metrics.target.com +0.0.0.0 mexico-mmm.net +0.0.0.0 mf.sitescout.com +0.0.0.0 mg.mgid.com +0.0.0.0 mhlnk.com +0.0.0.0 mi.adinterax.com +0.0.0.0 micmusik.com +0.0.0.0 micraamber.net +0.0.0.0 microsof.wemfbox.ch +0.0.0.0 mightymagoo.com +0.0.0.0 mii-image.adjuggler.com +0.0.0.0 milyondolar.com +0.0.0.0 mimageads.googleadservices.com +0.0.0.0 mimageads1.googleadservices.com +0.0.0.0 mimageads2.googleadservices.com +0.0.0.0 mimageads3.googleadservices.com +0.0.0.0 mimageads4.googleadservices.com +0.0.0.0 mimageads5.googleadservices.com +0.0.0.0 mimageads6.googleadservices.com +0.0.0.0 mimageads7.googleadservices.com +0.0.0.0 mimageads8.googleadservices.com +0.0.0.0 mimageads9.googleadservices.com +0.0.0.0 mimicrice.com +0.0.0.0 mini.videostrip.com +0.0.0.0 mirror.pointroll.com +0.0.0.0 mjx.ads.nwsource.com +0.0.0.0 mklik.gazeta.pl +0.0.0.0 mktg-offer.com +0.0.0.0 mlntracker.com +0.0.0.0 mm.admob.com +0.0.0.0 mm.chitika.net +0.0.0.0 mm1.vip.sc1.admob.com +0.0.0.0 mmv.admob.com +0.0.0.0 mobfactory.info +0.0.0.0 mobile.juicyads.com +0.0.0.0 mobileanalytics.us-east-1.amazonaws.com +0.0.0.0 mobileanalytics.us-east-2.amazonaws.com +0.0.0.0 mobileanalytics.us-west-1.amazonaws.com +0.0.0.0 mobileanalytics.us-west-2.amazonaws.com +0.0.0.0 mobrevflwms.com +0.0.0.0 mobscan.info +0.0.0.0 mobularity.com +0.0.0.0 mochibot.com +0.0.0.0 modescrips.info +0.0.0.0 mojofarm.mediaplex.com +0.0.0.0 monetate.net +0.0.0.0 moneybot.net +0.0.0.0 moneyraid.com +0.0.0.0 monster-ads.net +0.0.0.0 monstersandcritics.advertserve.com +0.0.0.0 moodoo.com.cn +0.0.0.0 moodoocrv.com.cn +0.0.0.0 morefreecamsecrets.com +0.0.0.0 morevisits.info +0.0.0.0 motd.pinion.gg +0.0.0.0 movieads.imgs.sapo.pt +0.0.0.0 movsflix.com +0.0.0.0 mp.tscapeplay.com +0.0.0.0 mp3playersource.com +0.0.0.0 mpartner.googleadservices.com +0.0.0.0 mpv.sandai.net +0.0.0.0 mr4evmd0r1.s.ad6media.fr +0.0.0.0 ms.yandex.ru +0.0.0.0 msn-cdn.effectivemeasure.net +0.0.0.0 msn.allyes.com +0.0.0.0 msn.tns-cs.net +0.0.0.0 msn.uvwbox.de +0.0.0.0 msn.wrating.com +0.0.0.0 msnbe-hp.metriweb.be +0.0.0.0 msnsearch.srv.girafa.com +0.0.0.0 mt58.mtree.com +0.0.0.0 mtvbrazil-services.vimn.com +0.0.0.0 mtvnlatservices.com +0.0.0.0 mu-in-f167.1e100.net +0.0.0.0 multi.xnxx.com +0.0.0.0 music611.com +0.0.0.0 musikzoo.com +0.0.0.0 mvonline.com +0.0.0.0 mx.adserver.yahoo.com +0.0.0.0 my-reward-channel.com +0.0.0.0 my-rewardsvault.com +0.0.0.0 my.blueadvertise.com +0.0.0.0 my.mystreamdelivery.xyz +0.0.0.0 my.trgino.com +0.0.0.0 my2.hizliizlefilm.net +0.0.0.0 my2.teknoter.com +0.0.0.0 myanyone.net +0.0.0.0 myao.adocean.pl +0.0.0.0 myasiantv.gsspcln.jp +0.0.0.0 mybinaryoptionsrobot.com +0.0.0.0 mycamptrack.com +0.0.0.0 mycashback.co.uk +0.0.0.0 mycelloffer.com +0.0.0.0 mychoicerewards.com +0.0.0.0 myclicknet.ro +0.0.0.0 myclicknet.romtelecom.ro +0.0.0.0 myexclusiverewards.com +0.0.0.0 myfreedinner.com +0.0.0.0 myfreegifts.co.uk +0.0.0.0 myfreemp3player.com +0.0.0.0 mygiftcardcenter.com +0.0.0.0 mygiftresource.com +0.0.0.0 mygreatrewards.com +0.0.0.0 myhousetechnews.com +0.0.0.0 myoffertracking.com +0.0.0.0 mysagagame.com +0.0.0.0 myseostats.com +0.0.0.0 myusersonline.com +0.0.0.0 myyearbookdigital.checkm8.com +0.0.0.0 n.admob.com +0.0.0.0 n01d05.cumulus-cloud.com +0.0.0.0 n339.asp-cc.com +0.0.0.0 n4g.us.intellitxt.com +0.0.0.0 n4p.ru.redtram.com +0.0.0.0 nanocluster.reklamz.com +0.0.0.0 nationalissuepanel.com +0.0.0.0 nationalpost.adperfect.com +0.0.0.0 nationalsurveypanel.com +0.0.0.0 native.sharethrough.com +0.0.0.0 nativead.tech +0.0.0.0 nb.netbreak.com.au +0.0.0.0 nbads.com +0.0.0.0 nbc.adbureau.net +0.0.0.0 nbimg.dt00.net +0.0.0.0 nc.ru.redtram.com +0.0.0.0 nctracking.com +0.0.0.0 nd1.gamecopyworld.com +0.0.0.0 nearbyad.com +0.0.0.0 needadvertising.com +0.0.0.0 neirong.baidu.com +0.0.0.0 netads.hotwired.com +0.0.0.0 netads.sohu.com +0.0.0.0 netadsrv.iworld.com +0.0.0.0 netcomm.spinbox.net +0.0.0.0 netpalnow.com +0.0.0.0 netshelter.adtrix.com +0.0.0.0 netspiderads2.indiatimes.com +0.0.0.0 netsponsors.com +0.0.0.0 network-ca.247realmedia.com +0.0.0.0 network.adsmarket.com +0.0.0.0 network.realmedia.com +0.0.0.0 network.realtechnetwork.net +0.0.0.0 networkads.net +0.0.0.0 new-ads.eurogamer.net +0.0.0.0 new.smartcontext.pl +0.0.0.0 newads.cmpnet.com +0.0.0.0 newadserver.interfree.it +0.0.0.0 newbs.hutz.co.il +0.0.0.0 newclk.com +0.0.0.0 newip427.changeip.net +0.0.0.0 newjunk4u.com +0.0.0.0 news-finances.com +0.0.0.0 news6health.com +0.0.0.0 newsblock.marketgid.com +0.0.0.0 newssourceoftoday.com +0.0.0.0 newsterminalvelocity.com +0.0.0.0 newtger.info +0.0.0.0 newversionupdate.space4update.pw +0.0.0.0 newversionupdate.space4updating.win +0.0.0.0 ng.virgul.com +0.0.0.0 ngads.smartage.com +0.0.0.0 nicappazaza.com +0.0.0.0 nickleplatedads.com +0.0.0.0 nitrous.exitfuel.com +0.0.0.0 nitrous.internetfuel.com +0.0.0.0 nivendas.net +0.0.0.0 nkcache.brandreachsys.com +0.0.0.0 nl.ads.justpremium.com +0.0.0.0 nl.adserver.yahoo.com +0.0.0.0 no.adserver.yahoo.com +0.0.0.0 nofreezingmac.space +0.0.0.0 nospartenaires.com +0.0.0.0 nothing-but-value.com +0.0.0.0 noticiasftpsrv.com +0.0.0.0 novafinanza.com +0.0.0.0 novem.onet.pl +0.0.0.0 nowinstallupgrade.clickforultimateandbest2updatingpc.top +0.0.0.0 nowruzbakher.com +0.0.0.0 nowtestpc.updatenewfresh4u.top +0.0.0.0 nqm.blackcurranthumidifiers.site +0.0.0.0 nrads.1host.co.il +0.0.0.0 nrkno.linkpulse.com +0.0.0.0 ns-vip1.hitbox.com +0.0.0.0 ns-vip2.hitbox.com +0.0.0.0 ns-vip3.hitbox.com +0.0.0.0 ns1.lalibco.com +0.0.0.0 ns1.primeinteractive.net +0.0.0.0 ns2.hitbox.com +0.0.0.0 ns2.lalibco.com +0.0.0.0 ns2.primeinteractive.net +0.0.0.0 nsads.hotwired.com +0.0.0.0 nsads.us.publicus.com +0.0.0.0 nsads4.us.publicus.com +0.0.0.0 nsclick.baidu.com +0.0.0.0 nspmotion.com +0.0.0.0 nst.broadcast.pm +0.0.0.0 nstat.tudou.com +0.0.0.0 ntbanner.digitalriver.com +0.0.0.0 nuwerk.monsterboard.nl +0.0.0.0 nx-adv0005.247realmedia.com +0.0.0.0 nxs.kidcolez.cn +0.0.0.0 nxtscrn.adbureau.net +0.0.0.0 nysubwayoffer.com +0.0.0.0 nytadvertising.nytimes.com +0.0.0.0 o.admob.com +0.0.0.0 o0.winfuture.de +0.0.0.0 o1.qnsr.com +0.0.0.0 o2.eyereturn.com +0.0.0.0 oads.cracked.com +0.0.0.0 oamsrhads.us.publicus.com +0.0.0.0 oas-1.rmuk.co.uk +0.0.0.0 oas-eu.247realmedia.com +0.0.0.0 oas.dn.se +0.0.0.0 oas.heise.de +0.0.0.0 oasads.whitepages.com +0.0.0.0 oasc02.247realmedia.com +0.0.0.0 oasc02023.247realmedia.com +0.0.0.0 oasc03.247realmedia.com +0.0.0.0 oasc04.247.realmedia.com +0.0.0.0 oasc05.247realmedia.com +0.0.0.0 oasc05050.247realmedia.com +0.0.0.0 oasc16.247realmedia.com +0.0.0.0 oascenral.phoenixnewtimes.com +0.0.0.0 oascentral.videodome.com +0.0.0.0 oasis.411affiliates.ca +0.0.0.0 oasis.nysun.com +0.0.0.0 oasis.promon.cz +0.0.0.0 oasis.realbeer.com +0.0.0.0 oasis.zmh.zope.com +0.0.0.0 oasis.zmh.zope.net +0.0.0.0 oasis2.advfn.com +0.0.0.0 oasn03.247realmedia.com +0.0.0.0 oassis.zmh.zope.com +0.0.0.0 objects.abcvisiteurs.com +0.0.0.0 objects.designbloxlive.com +0.0.0.0 obozua.adocean.pl +0.0.0.0 obs.nnm2.ru +0.0.0.0 observer.advertserve.com +0.0.0.0 ocdn.adsterra.com +0.0.0.0 ocslab.com +0.0.0.0 offer.alibaba.com +0.0.0.0 offerfactory.click +0.0.0.0 offerreality.com +0.0.0.0 offers.impower.com +0.0.0.0 offers.nordvpn.com +0.0.0.0 offers.royalvegascasino.com +0.0.0.0 offertrakking.info +0.0.0.0 offertunity.click +0.0.0.0 offerx.co.uk +0.0.0.0 ogulzxfxrmow.com +0.0.0.0 ohmydating.com +0.0.0.0 oidiscover.com +0.0.0.0 oik.mactechinfo.info +0.0.0.0 oimsgad.qq.com +0.0.0.0 oinadserve.com +0.0.0.0 oix-rubyem.net +0.0.0.0 oix-rubytest.net +0.0.0.0 oix0.net +0.0.0.0 oix1.net +0.0.0.0 oix2.net +0.0.0.0 oix3.net +0.0.0.0 oix4.net +0.0.0.0 oix5.net +0.0.0.0 oix6.net +0.0.0.0 oix7.net +0.0.0.0 oix8.net +0.0.0.0 oix9.net +0.0.0.0 oixchina.com +0.0.0.0 oixcrv-rubyem.net +0.0.0.0 oixcrv-rubytest.net +0.0.0.0 oixssp-rubyem.net +0.0.0.0 ok.internetmedia.si +0.0.0.0 old-darkroast.adknowledge.com +0.0.0.0 olqdh.top +0.0.0.0 om.elvenar.com +0.0.0.0 ometrics.warnerbros.com +0.0.0.0 onclkds.com +0.0.0.0 online1.webcams.com +0.0.0.0 onlineads.magicvalley.com +0.0.0.0 onlinebestoffers.net +0.0.0.0 only.best-games.today +0.0.0.0 only2date.com +0.0.0.0 onocollect.247realmedia.com +0.0.0.0 open.4info.net +0.0.0.0 openad.infobel.com +0.0.0.0 openadext.tf1.fr +0.0.0.0 openads.dimcab.com +0.0.0.0 openads.nightlifemagazine.ca +0.0.0.0 openads.smithmag.net +0.0.0.0 openads.zeads.com +0.0.0.0 opencandy.com +0.0.0.0 openload.info +0.0.0.0 opentable.tt.omtrdc.net +0.0.0.0 openx.adfactor.nl +0.0.0.0 openx.coolconcepts.nl +0.0.0.0 openx.shinyads.com +0.0.0.0 openx.xenium.pl +0.0.0.0 openx2.fotoflexer.com +0.0.0.0 openxxx.viragemedia.com +0.0.0.0 optimize.indieclick.com +0.0.0.0 optimized.by.vitalads.net +0.0.0.0 optimizedby.openx.com +0.0.0.0 optimzedby.rmxads.com +0.0.0.0 orange.fr-enqueteannuelle.xyz +0.0.0.0 orange.fr-enqueteofficielle.online +0.0.0.0 orange.fr-enqueteofficielle2015.xyz +0.0.0.0 orange.fr-felicitations.xyz +0.0.0.0 orange.fr-votre-opinion.xyz +0.0.0.0 orange.fr-votreopinion.xyz +0.0.0.0 orange.recompenses.win +0.0.0.0 orange.recompenses.xyz +0.0.0.0 orange.weborama.fr +0.0.0.0 ordie.adbureau.net +0.0.0.0 origin.chron.com +0.0.0.0 ortaklik.mynet.com +0.0.0.0 out.popads.net +0.0.0.0 outils.yesmessenger.com +0.0.0.0 overflow.adsoftware.com +0.0.0.0 owabgxis.wp.pl +0.0.0.0 ox-d.hbr.org +0.0.0.0 ox-d.hulkshare.com +0.0.0.0 ox-d.hypeads.org +0.0.0.0 ox-d.zenoviagroup.com +0.0.0.0 ox-i.zenoviagroup.com +0.0.0.0 ox.eurogamer.net +0.0.0.0 oz.valueclick.com +0.0.0.0 oz.valueclick.ne.jp +0.0.0.0 ozonemedia.adbureau.net +0.0.0.0 p.ic.tynt.com +0.0.0.0 p.l.qq.com +0.0.0.0 p.nexac.com +0.0.0.0 p.profistats.net +0.0.0.0 p.publico.es +0.0.0.0 p0rnuha.com +0.0.0.0 p1.adhitzads.com +0.0.0.0 p2.l.qq.com +0.0.0.0 p3p.alibaba.com +0.0.0.0 p3p.mmstat.com +0.0.0.0 p4psearch.china.alibaba.com +0.0.0.0 paclitor.com +0.0.0.0 page.0ffer.eu +0.0.0.0 pagead3.googlesyndication.com +0.0.0.0 pages.etology.com +0.0.0.0 pagespeed.report.qq.com +0.0.0.0 paid.outbrain.com +0.0.0.0 paix1.sc1.admob.com +0.0.0.0 panel.adtify.pl +0.0.0.0 paperg.com +0.0.0.0 paques-2016.offre-exceptionnelle.xyz +0.0.0.0 parserworld.info +0.0.0.0 parskabab.com +0.0.0.0 partner-ts.groupon.be +0.0.0.0 partner-ts.groupon.co.uk +0.0.0.0 partner-ts.groupon.com +0.0.0.0 partner-ts.groupon.de +0.0.0.0 partner-ts.groupon.fr +0.0.0.0 partner-ts.groupon.net +0.0.0.0 partner-ts.groupon.nl +0.0.0.0 partner-ts.groupon.pl +0.0.0.0 partner.ah-ha.com +0.0.0.0 partner.ceneo.pl +0.0.0.0 partner.join.com.ua +0.0.0.0 partner.magna.ru +0.0.0.0 partner.pobieraczek.pl +0.0.0.0 partner.tagscreator.com +0.0.0.0 partner.wapacz.pl +0.0.0.0 partner.wapster.pl +0.0.0.0 partner01.oingo.com +0.0.0.0 partner02.oingo.com +0.0.0.0 partner03.oingo.com +0.0.0.0 partnerprogramma.bol.com +0.0.0.0 partners.adklick.de +0.0.0.0 partners.salesforce.com +0.0.0.0 partners.sprintrade.com +0.0.0.0 partners.webmasterplan.com +0.0.0.0 partnerwebsites.mistermedia.nl +0.0.0.0 pathforpoints.com +0.0.0.0 paulsnetwork.com +0.0.0.0 pb.tynt.com +0.0.0.0 pbid.pro-market.net +0.0.0.0 pc-gizmos-ssl.com +0.0.0.0 pcookie.aliexpress.com +0.0.0.0 peaky.tags.yield-atx.com +0.0.0.0 pei-ads.playboy.com +0.0.0.0 people-choice-sites.com +0.0.0.0 persgroepadvertising.nl +0.0.0.0 personalcare-offer.com +0.0.0.0 personalcashbailout.com +0.0.0.0 pg2.solution.weborama.fr +0.0.0.0 ph-ad01.focalink.com +0.0.0.0 ph-ad02.focalink.com +0.0.0.0 ph-ad03.focalink.com +0.0.0.0 ph-ad04.focalink.com +0.0.0.0 ph-ad05.focalink.com +0.0.0.0 ph-ad06.focalink.com +0.0.0.0 ph-ad07.focalink.com +0.0.0.0 ph-ad08.focalink.com +0.0.0.0 ph-ad09.focalink.com +0.0.0.0 ph-ad10.focalink.com +0.0.0.0 ph-ad11.focalink.com +0.0.0.0 ph-ad12.focalink.com +0.0.0.0 ph-ad13.focalink.com +0.0.0.0 ph-ad14.focalink.com +0.0.0.0 ph-ad15.focalink.com +0.0.0.0 ph-ad16.focalink.com +0.0.0.0 ph-ad17.focalink.com +0.0.0.0 ph-ad18.focalink.com +0.0.0.0 ph-ad19.focalink.com +0.0.0.0 ph-ad20.focalink.com +0.0.0.0 ph-ad21.focalink.com +0.0.0.0 ph-cdn.effectivemeasure.net +0.0.0.0 phoenixads.co.in +0.0.0.0 phoneysoap.com +0.0.0.0 phormstandards.com +0.0.0.0 photobucket.adnxs.com +0.0.0.0 photos.daily-deals.analoganalytics.com +0.0.0.0 photos.pop6.com +0.0.0.0 photos0.pop6.com +0.0.0.0 photos1.pop6.com +0.0.0.0 photos2.pop6.com +0.0.0.0 photos3.pop6.com +0.0.0.0 photos4.pop6.com +0.0.0.0 photos5.pop6.com +0.0.0.0 photos6.pop6.com +0.0.0.0 photos7.pop6.com +0.0.0.0 photos8.pop6.com +0.0.0.0 phox2ey.bid +0.0.0.0 php.fark.com +0.0.0.0 phpads.astalavista.us +0.0.0.0 phpads.cnpapers.com +0.0.0.0 phpads.flipcorp.com +0.0.0.0 phpads.foundrymusic.com +0.0.0.0 phpads.i-merge.net +0.0.0.0 phpads.macbidouille.com +0.0.0.0 phpadsnew.gamefolk.de +0.0.0.0 phpadsnew.wn.com +0.0.0.0 pic.casee.cn +0.0.0.0 pick-savings.com +0.0.0.0 pickytime.com +0.0.0.0 ping.chartbeat.net +0.0.0.0 pingfore.qq.com +0.0.0.0 pingfore.soso.com +0.0.0.0 pink.habralab.ru +0.0.0.0 pix.revsci.net +0.0.0.0 pix01.revsci.net +0.0.0.0 pix521.adtech.de +0.0.0.0 pix521.adtech.fr +0.0.0.0 pix521.adtech.us +0.0.0.0 pix522.adtech.de +0.0.0.0 pix522.adtech.fr +0.0.0.0 pix522.adtech.us +0.0.0.0 pixel-secure.solvemedia.com +0.0.0.0 pixel.adssafeprotected.com +0.0.0.0 pixel.everesttech.net +0.0.0.0 pixel.mathtag.com +0.0.0.0 pixel.sitescout.com +0.0.0.0 pixel.watch +0.0.0.0 pl.ads.justpremium.com +0.0.0.0 pl.bbelements.com +0.0.0.0 pl.betclic.com +0.0.0.0 pl.spanel.gem.pl +0.0.0.0 plasmatv4free.com +0.0.0.0 plasmatvreward.com +0.0.0.0 platads.com +0.0.0.0 play.traffpartners.com +0.0.0.0 playinvaders.com +0.0.0.0 playlink.pl +0.0.0.0 playnow.guru +0.0.0.0 playtime.tubemogul.com +0.0.0.0 ploaz54.com +0.0.0.0 pm.w55c.net +0.0.0.0 pmelon.com +0.0.0.0 pmstrk.mercadolivre.com.br +0.0.0.0 pntm-images.adbureau.net +0.0.0.0 pntm.adbureau.net +0.0.0.0 pol.bbelements.com +0.0.0.0 poland.gift-today85.online +0.0.0.0 pole.6rooms.com +0.0.0.0 politicalopinionsurvey.com +0.0.0.0 polskasupermarkecie.website +0.0.0.0 pool-roularta.adhese.com +0.0.0.0 pool.admedo.com +0.0.0.0 pool.pebblemedia.adhese.com +0.0.0.0 pop.redirect.adsjudo.com +0.0.0.0 popadscdn.net +0.0.0.0 popclick.net +0.0.0.0 popmycash.com +0.0.0.0 poponclick.com +0.0.0.0 popunder.adsrevenue.net +0.0.0.0 popunder.loading-delivery1.com +0.0.0.0 popunder.paypopup.com +0.0.0.0 popup.softreklam.com +0.0.0.0 popup.taboola.com +0.0.0.0 popupclick.ru +0.0.0.0 popupdomination.com +0.0.0.0 popups.ad-logics.com +0.0.0.0 popups.afftrack001.com +0.0.0.0 pos.baidu.com +0.0.0.0 posed2shade.com +0.0.0.0 post.rmbn.ru +0.0.0.0 poster-op2joygames.me +0.0.0.0 poster.gamesprite.me +0.0.0.0 postmasterdirect.com +0.0.0.0 pp.free.fr +0.0.0.0 pp2.pptv.com +0.0.0.0 pq.stat.ku6.com +0.0.0.0 pr.ydp.yahoo.com +0.0.0.0 premium-reward-club.com +0.0.0.0 premium.ascensionweb.com +0.0.0.0 premiumholidayoffers.com +0.0.0.0 premiumproductsonline.com +0.0.0.0 prestoris.com +0.0.0.0 prexyone.appspot.com +0.0.0.0 primetime.ad.primetime.net +0.0.0.0 privitize.com +0.0.0.0 prizes.co.uk +0.0.0.0 prjcq.com +0.0.0.0 pro.letv.com +0.0.0.0 prod-e.sprtad.com +0.0.0.0 productopinionpanel.com +0.0.0.0 productresearchpanel.com +0.0.0.0 producttestpanel.com +0.0.0.0 profile.uproxx.com +0.0.0.0 profitboosterapp.com +0.0.0.0 promo.easy-dating.org +0.0.0.0 promo.mes-meilleurs-films.fr +0.0.0.0 promo.mobile.de +0.0.0.0 promo.streaming-illimite.net +0.0.0.0 promote-bz.net +0.0.0.0 promotion.partnercash.com +0.0.0.0 promoviral.com +0.0.0.0 protection.alpolice.com +0.0.0.0 protection.aspolice.com +0.0.0.0 protection.aupolice.com +0.0.0.0 protection.azpolice.com +0.0.0.0 protection.bspolice.com +0.0.0.0 protection.btpolice.com +0.0.0.0 protection.bypolice.com +0.0.0.0 protection.capolice.com +0.0.0.0 protection.ccpolice.com +0.0.0.0 protection.dkpolice.com +0.0.0.0 protection.espolice.com +0.0.0.0 protection.frpolice.com +0.0.0.0 protection.fxpolice.com +0.0.0.0 protection.gapolice.com +0.0.0.0 protection.grpolice.com +0.0.0.0 protection.hkpolice.com +0.0.0.0 protection.hnpolice.com +0.0.0.0 protection.idpolice.com +0.0.0.0 protection.ilpolice.com +0.0.0.0 protection.iqpolice.com +0.0.0.0 protection.itpolice.com +0.0.0.0 protection.itpolice.net +0.0.0.0 protection.jmpolice.com +0.0.0.0 protection.kppolice.com +0.0.0.0 protection.kypolice.com +0.0.0.0 protection.lapolice.com +0.0.0.0 protection.lapolice.net +0.0.0.0 protection.lbpolice.com +0.0.0.0 protection.lcpolice.com +0.0.0.0 protection.lipolice.com +0.0.0.0 protection.lrpolice.com +0.0.0.0 protection.lspolice.com +0.0.0.0 protection.lvpolice.com +0.0.0.0 protection.mapolice.com +0.0.0.0 protection.mcpolice.com +0.0.0.0 protection.mdpolice.com +0.0.0.0 protection.mepolice.com +0.0.0.0 protection.mnpolice.com +0.0.0.0 protection.mopolice.com +0.0.0.0 protection.mspolice.net +0.0.0.0 protection.napolice.com +0.0.0.0 protection.napolice.net +0.0.0.0 protection.ncpolice.com +0.0.0.0 protection.nzpolice.com +0.0.0.0 protection.papolice.com +0.0.0.0 protection.pfpolice.com +0.0.0.0 protection.pgpolice.com +0.0.0.0 protection.phpolice.com +0.0.0.0 protection.pkpolice.com +0.0.0.0 protection.prpolice.com +0.0.0.0 protection.ptpolice.com +0.0.0.0 protection.sbpolice.com +0.0.0.0 protection.scpolice.com +0.0.0.0 protection.sdpolice.com +0.0.0.0 protection.sipolice.com +0.0.0.0 protection.skpolice.com +0.0.0.0 protection.tkpolice.com +0.0.0.0 protection.tnpolice.com +0.0.0.0 protection.topolice.com +0.0.0.0 protection.vapolice.com +0.0.0.0 protection.vipolice.com +0.0.0.0 protection.stpolice.com +0.0.0.0 proximityads.flipcorp.com +0.0.0.0 proxy.blogads.com +0.0.0.0 pstatic.datafastguru.info +0.0.0.0 pt.trafficjunky.net +0.0.0.0 pt21na.com +0.0.0.0 ptrads.mp3.com +0.0.0.0 ptreklam.com +0.0.0.0 ptreklam.com.tr +0.0.0.0 ptreklam.net +0.0.0.0 ptreklamcrv.com +0.0.0.0 ptreklamcrv.com.tr +0.0.0.0 ptreklamcrv.net +0.0.0.0 ptreklamssp.com +0.0.0.0 ptreklamssp.com.tr +0.0.0.0 ptreklamssp.net +0.0.0.0 pttsite.com +0.0.0.0 pub.sapo.pt +0.0.0.0 pub.web.sapo.io +0.0.0.0 pubimgs.sapo.pt +0.0.0.0 publiads.com +0.0.0.0 publicidades.redtotalonline.com +0.0.0.0 publicis.adcentriconline.com +0.0.0.0 publish.bonzaii.no +0.0.0.0 publishers.adscholar.com +0.0.0.0 publishers.bidtraffic.com +0.0.0.0 publishers.brokertraffic.com +0.0.0.0 publishing.kalooga.com +0.0.0.0 pubshop.img.uol.com.br +0.0.0.0 purgecolon.net +0.0.0.0 purredheanb.online +0.0.0.0 purryowl.com +0.0.0.0 px10.net +0.0.0.0 q.admob.com +0.0.0.0 q.b.h.cltomedia.info +0.0.0.0 qip.magna.ru +0.0.0.0 qitrck.com +0.0.0.0 qqlogo.qq.com +0.0.0.0 qring-tms.qq.com +0.0.0.0 qss-client.qq.com +0.0.0.0 qto.reprintingstakeholder.com +0.0.0.0 qualifiedourspecialoffer.com +0.0.0.0 quickbrowsersearch.com +0.0.0.0 quickfilmz.com +0.0.0.0 quickupdateserv.com +0.0.0.0 quik-serv.com +0.0.0.0 r.ace.advertising.com +0.0.0.0 r.admob.com +0.0.0.0 r.chitika.net +0.0.0.0 r.domob.cn +0.0.0.0 r.ligatus.com +0.0.0.0 r.reklama.biz +0.0.0.0 r.turn.com +0.0.0.0 r1-ads.ace.advertising.com +0.0.0.0 r2.adwo.com +0.0.0.0 r7mediar.com +0.0.0.0 rad.live.com +0.0.0.0 radaronline.advertserve.com +0.0.0.0 rads.stackoverflow.com +0.0.0.0 rampagegramar.com +0.0.0.0 randevumads.com +0.0.0.0 rapidlyserv.com +0.0.0.0 ravel-rewardpath.com +0.0.0.0 rb.burstway.com +0.0.0.0 rb.newsru.com +0.0.0.0 rbqip.pochta.ru +0.0.0.0 rc.asci.freenet.de +0.0.0.0 rc.bt.ilsemedia.nl +0.0.0.0 rc.hotkeys.com +0.0.0.0 rc.rlcdn.com +0.0.0.0 rc.wl.webads.nl +0.0.0.0 rccl.bridgetrack.com +0.0.0.0 rcdna.gwallet.com +0.0.0.0 rcm-images.amazon.com +0.0.0.0 rcm-it.amazon.it +0.0.0.0 rdsa2012.com +0.0.0.0 re.directrev.com +0.0.0.0 re.kontera.com +0.0.0.0 realads.realmedia.com +0.0.0.0 realgfsbucks.com +0.0.0.0 realizemobicom.com +0.0.0.0 realizmobi.com +0.0.0.0 realmedia.advance.net +0.0.0.0 reboot.sitescout.com +0.0.0.0 record.commissionlounge.com +0.0.0.0 recreation-leisure-rewardpath.com +0.0.0.0 red.as-eu.falkag.net +0.0.0.0 red.as-us.falkag.net +0.0.0.0 red01.as-eu.falkag.net +0.0.0.0 red01.as-us.falkag.net +0.0.0.0 red02.as-eu.falkag.net +0.0.0.0 red02.as-us.falkag.net +0.0.0.0 red03.as-eu.falkag.net +0.0.0.0 red03.as-us.falkag.net +0.0.0.0 red04.as-eu.falkag.net +0.0.0.0 red04.as-us.falkag.net +0.0.0.0 redherring.ngadcenter.net +0.0.0.0 redirect.click2net.com +0.0.0.0 redirect.hotkeys.com +0.0.0.0 redirect.xmlheads.com +0.0.0.0 reduxads.valuead.com +0.0.0.0 reg.coolsavings.com +0.0.0.0 regflow.com +0.0.0.0 regie.espace-plus.net +0.0.0.0 regio.adlink.de +0.0.0.0 register.cinematrix.net +0.0.0.0 rehabretie.com +0.0.0.0 rek2.tascatlasa.com +0.0.0.0 reklam-1.com +0.0.0.0 reklam-one.com +0.0.0.0 reklam.arabul.com +0.0.0.0 reklam.ebiuniverse.com +0.0.0.0 reklam.memurlar.net +0.0.0.0 reklam.milliyet.com.tr +0.0.0.0 reklam.misli.com +0.0.0.0 reklam.mynet.com +0.0.0.0 reklam.softreklam.com +0.0.0.0 reklam.star.com.tr +0.0.0.0 reklam.vogel.com.tr +0.0.0.0 reklam.yonlendir.com +0.0.0.0 reklama.onet.pl +0.0.0.0 reklamagaci.com +0.0.0.0 reklamtrk.com +0.0.0.0 reklamy.sfd.pl +0.0.0.0 relestar.com +0.0.0.0 rencontreavenue.com +0.0.0.0 report02.adtech.de +0.0.0.0 report02.adtech.fr +0.0.0.0 report02.adtech.us +0.0.0.0 reporter.adtech.de +0.0.0.0 reporter.adtech.fr +0.0.0.0 reporter.adtech.us +0.0.0.0 reporter001.adtech.de +0.0.0.0 reporter001.adtech.fr +0.0.0.0 reporter001.adtech.us +0.0.0.0 reportimage.adtech.de +0.0.0.0 reportimage.adtech.fr +0.0.0.0 reportimage.adtech.us +0.0.0.0 req.adsmogo.com +0.0.0.0 resolvingserver.com +0.0.0.0 resources.infolinks.com +0.0.0.0 restaurantcom.tt.omtrdc.net +0.0.0.0 reverso.refr.adgtw.orangeads.fr +0.0.0.0 rewardblvd.com +0.0.0.0 rewardhotspot.com +0.0.0.0 rewardpoll.com +0.0.0.0 rewardsflow.com +0.0.0.0 rh.qq.com +0.0.0.0 rh.revolvermaps.com +0.0.0.0 rhads.sv.publicus.com +0.0.0.0 rich.qq.com +0.0.0.0 ridepush.com +0.0.0.0 rmbn.ru +0.0.0.0 rmcdn.2mdn.net +0.0.0.0 rmcdn.f.2mdn.net +0.0.0.0 rmm1u.checkm8.com +0.0.0.0 rms.admeta.com +0.0.0.0 ro.bbelements.com +0.0.0.0 romepartners.com +0.0.0.0 roosevelt.gjbig.com +0.0.0.0 rosettastone.tt.omtrdc.net +0.0.0.0 roshanavar.com +0.0.0.0 rotabanner100.utro.ru +0.0.0.0 rotabanner468.utro.ru +0.0.0.0 rotator.adjuggler.com +0.0.0.0 rotator.juggler.inetinteractive.com +0.0.0.0 rotobanner468.utro.ru +0.0.0.0 router.adlure.net +0.0.0.0 rovion.com +0.0.0.0 row-advil.waze.com +0.0.0.0 rp.hit.gemius.pl +0.0.0.0 rpc-php.trafficfactory.biz +0.0.0.0 rpc.trafficfactory.biz +0.0.0.0 rpm.newrelisc.com +0.0.0.0 rqtrk.eu +0.0.0.0 rs1.qq.com +0.0.0.0 rs2.qq.com +0.0.0.0 rscounter10.com +0.0.0.0 rsense-ad.realclick.co.kr +0.0.0.0 rss.buysellads.com +0.0.0.0 rt.visilabs.com +0.0.0.0 rt2.infolinks.com +0.0.0.0 rt3.infolinks.com +0.0.0.0 rtb-lb-event-sjc.tubemogul.com +0.0.0.0 rtb.pclick.yahoo.com +0.0.0.0 rtb.tubemogul.com +0.0.0.0 rtb1.adscience.nl +0.0.0.0 rtb10.adscience.nl +0.0.0.0 rtb11.adscience.nl +0.0.0.0 rtb12.adscience.nl +0.0.0.0 rtb13.adscience.nl +0.0.0.0 rtb14.adscience.nl +0.0.0.0 rtb15.adscience.nl +0.0.0.0 rtb16.adscience.nl +0.0.0.0 rtb17.adscience.nl +0.0.0.0 rtb18.adscience.nl +0.0.0.0 rtb19.adscience.nl +0.0.0.0 rtb2.adscience.nl +0.0.0.0 rtb20.adscience.nl +0.0.0.0 rtb21.adscience.nl +0.0.0.0 rtb22.adscience.nl +0.0.0.0 rtb23.adscience.nl +0.0.0.0 rtb24.adscience.nl +0.0.0.0 rtb25.adscience.nl +0.0.0.0 rtb26.adscience.nl +0.0.0.0 rtb27.adscience.nl +0.0.0.0 rtb28.adscience.nl +0.0.0.0 rtb29.adscience.nl +0.0.0.0 rtb3.adscience.nl +0.0.0.0 rtb30.adscience.nl +0.0.0.0 rtb4.adscience.nl +0.0.0.0 rtb5.adscience.nl +0.0.0.0 rtb6.adscience.nl +0.0.0.0 rtb7.adscience.nl +0.0.0.0 rtb8.adscience.nl +0.0.0.0 rtb9.adscience.nl +0.0.0.0 rtr.innovid.com +0.0.0.0 rts.sparkstudios.com +0.0.0.0 ru.bbelements.com +0.0.0.0 ru.redtram.com +0.0.0.0 rubi4edit.com +0.0.0.0 rubiccrum.com +0.0.0.0 rubriccrumb.com +0.0.0.0 rubyfortune.com +0.0.0.0 rubylan.net +0.0.0.0 rubytag.net +0.0.0.0 russ-shalavy.ru +0.0.0.0 rv.adcpx.v1.de.eusem.adaos-ads.net +0.0.0.0 rya.rockyou.com +0.0.0.0 s-adserver.sandbox.cxad.cxense.com +0.0.0.0 s.ad121m.com +0.0.0.0 s.ad131m.com +0.0.0.0 s.admob.com +0.0.0.0 s.admulti.com +0.0.0.0 s.as-us.falkag.net +0.0.0.0 s.atemda.com +0.0.0.0 s.baidu.com +0.0.0.0 s.boom.ro +0.0.0.0 s.clicktale.net +0.0.0.0 s.di.com.pl +0.0.0.0 s.domob.cn +0.0.0.0 s.flite.com +0.0.0.0 s.innovid.com +0.0.0.0 s.media-imdb.com +0.0.0.0 s.megaclick.com +0.0.0.0 s.moatads.com +0.0.0.0 s.oroll.com +0.0.0.0 s.ppjol.net +0.0.0.0 s.rev2pub.com +0.0.0.0 s.skimresources.com +0.0.0.0 s.tcimg.com +0.0.0.0 s.thebrighttag.com +0.0.0.0 s.visilabs.com +0.0.0.0 s.visilabs.net +0.0.0.0 s0b.bluestreak.com +0.0.0.0 s1.2mdn.net +0.0.0.0 s1.buysellads.com +0.0.0.0 s1.cz.adocean.pl +0.0.0.0 s1.gratkapl.adocean.pl +0.0.0.0 s2.buysellads.com +0.0.0.0 s3.adbers.com +0.0.0.0 s3.buysellads.com +0.0.0.0 s5.addthis.com +0.0.0.0 s7.addthis.com +0.0.0.0 sad.sharethis.com +0.0.0.0 safari-critical-alert.com +0.0.0.0 safe.bestapps.com-protection.info +0.0.0.0 safe.hyperpaysys.com +0.0.0.0 safebrowse.com +0.0.0.0 safenyplanet.in +0.0.0.0 sagent.io +0.0.0.0 salesforcecom.tt.omtrdc.net +0.0.0.0 samsung3.solution.weborama.fr +0.0.0.0 sanalreklam.com +0.0.0.0 sarah.dntrx.com +0.0.0.0 sas.decisionnews.com +0.0.0.0 sat-city-ads.com +0.0.0.0 saturn.tiser.com.au +0.0.0.0 save-plan.com +0.0.0.0 savings-specials.com +0.0.0.0 savings-time.com +0.0.0.0 sayac.hurriyet.com.tr +0.0.0.0 sayfabulunamadi.com +0.0.0.0 sb.freeskreen.com +0.0.0.0 sc1.admob.com +0.0.0.0 sc9.admob.com +0.0.0.0 scdown.qq.com +0.0.0.0 schumacher.adtech.de +0.0.0.0 schumacher.adtech.fr +0.0.0.0 schumacher.adtech.us +0.0.0.0 schwab.tt.omtrdc.net +0.0.0.0 scoremygift.com +0.0.0.0 scorepconline.club +0.0.0.0 scr.kliksaya.com +0.0.0.0 screen-mates.com +0.0.0.0 script.banstex.com +0.0.0.0 script.crsspxl.com +0.0.0.0 scripts.linkz.net +0.0.0.0 scripts.verticalacuity.com +0.0.0.0 sdk.streamrail.com +0.0.0.0 se.adserver.yahoo.com +0.0.0.0 search.addthis.com +0.0.0.0 search.freeonline.com +0.0.0.0 search.keywordblocks.com +0.0.0.0 search.netseer.com +0.0.0.0 search.spotxchange.com +0.0.0.0 searchportal.information.com +0.0.0.0 searchstats.usa.gov +0.0.0.0 searchwe.com +0.0.0.0 seasonalsamplerspecials.com +0.0.0.0 sebar.thand.info +0.0.0.0 sec.hit.gemius.pl +0.0.0.0 secimage.adtech.de +0.0.0.0 secimage.adtech.fr +0.0.0.0 secimage.adtech.us +0.0.0.0 secserv.adtech.de +0.0.0.0 secserv.adtech.fr +0.0.0.0 secserv.adtech.us +0.0.0.0 secure-js.kontera.com +0.0.0.0 secure.160117rd.xyz +0.0.0.0 secure.ace-tag.advertising.com +0.0.0.0 secure.addthis.com +0.0.0.0 secure.adnxs.com +0.0.0.0 secure.bidvertiser.com +0.0.0.0 secure.bidvertiserr.com +0.0.0.0 secure.img-cdn.mediaplex.com +0.0.0.0 secureads.ft.com +0.0.0.0 securecontactinfo.com +0.0.0.0 securemacfix.com +0.0.0.0 securerr.com +0.0.0.0 securerunner.com +0.0.0.0 seduction-zone.com +0.0.0.0 seemlessfixing.tech +0.0.0.0 seks-partner.com +0.0.0.0 sel.as-eu.falkag.net +0.0.0.0 sel.as-us.falkag.net +0.0.0.0 select001.adtech.de +0.0.0.0 select001.adtech.fr +0.0.0.0 select001.adtech.us +0.0.0.0 select002.adtech.de +0.0.0.0 select002.adtech.fr +0.0.0.0 select002.adtech.us +0.0.0.0 select003.adtech.de +0.0.0.0 select003.adtech.fr +0.0.0.0 select003.adtech.us +0.0.0.0 select004.adtech.de +0.0.0.0 select004.adtech.fr +0.0.0.0 select004.adtech.us +0.0.0.0 selective-business.com +0.0.0.0 sergarius.popunder.ru +0.0.0.0 serv-load.com +0.0.0.0 serv.ad-rotator.com +0.0.0.0 serv.adspeed.com +0.0.0.0 serv.tooplay.com +0.0.0.0 serv2.ad-rotator.com +0.0.0.0 servad.mynet.com +0.0.0.0 servads.aip.org +0.0.0.0 serve.adplxmd.com +0.0.0.0 serve.freegaypix.com +0.0.0.0 serve.mediayan.com +0.0.0.0 serve.popads.net +0.0.0.0 serve.prestigecasino.com +0.0.0.0 servedby.adcombination.com +0.0.0.0 servedby.advertising.com +0.0.0.0 servedby.dm3adserver.com +0.0.0.0 servedby.flashtalking.com +0.0.0.0 servedby.netshelter.net +0.0.0.0 servedby.precisionclick.com +0.0.0.0 server-ssl.yieldmanaged.com +0.0.0.0 server.as5000.com +0.0.0.0 server.bittads.com +0.0.0.0 server.cpmstar.com +0.0.0.0 server.zoiets.be +0.0.0.0 server01.popupmoney.com +0.0.0.0 server1.adpolestar.net +0.0.0.0 server2.as5000.com +0.0.0.0 server2.mediajmp.com +0.0.0.0 server3.yieldmanaged.com +0.0.0.0 server821.com +0.0.0.0 service.mm-r-prop-11-16-2.com +0.0.0.0 service.urchin.com +0.0.0.0 service001.adtech.de +0.0.0.0 service001.adtech.fr +0.0.0.0 service001.adtech.us +0.0.0.0 service002.adtech.de +0.0.0.0 service002.adtech.fr +0.0.0.0 service002.adtech.us +0.0.0.0 service003.adtech.de +0.0.0.0 service003.adtech.fr +0.0.0.0 service003.adtech.us +0.0.0.0 service004.adtech.fr +0.0.0.0 service004.adtech.us +0.0.0.0 service00x.adtech.de +0.0.0.0 service00x.adtech.fr +0.0.0.0 service00x.adtech.us +0.0.0.0 services.adtech.de +0.0.0.0 services.adtech.fr +0.0.0.0 services.adtech.us +0.0.0.0 services1.adtech.de +0.0.0.0 services1.adtech.fr +0.0.0.0 services1.adtech.us +0.0.0.0 serving.plexop.net +0.0.0.0 servserv.generals.ea.com +0.0.0.0 setupdate24.updateworkfreshandnew.space +0.0.0.0 setupdate24.updateworkfreshandnew.website +0.0.0.0 sex-now5.com +0.0.0.0 sexpartnerx.com +0.0.0.0 sexsponsors.com +0.0.0.0 sexzavod.com +0.0.0.0 sfads.osdn.com +0.0.0.0 sg.adserver.yahoo.com +0.0.0.0 sgs001.adtech.de +0.0.0.0 sgs001.adtech.fr +0.0.0.0 sgs001.adtech.us +0.0.0.0 sh4sure-images.adbureau.net +0.0.0.0 share-server.com +0.0.0.0 shareaholic.com +0.0.0.0 sharebar.addthiscdn.com +0.0.0.0 shc-rebates.com +0.0.0.0 sherkatkonandeh.com +0.0.0.0 sherkhundi.com +0.0.0.0 shinystat.shiny.it +0.0.0.0 shopperpromotions.com +0.0.0.0 shopping-offer.com +0.0.0.0 shoppingbox.partner.leguide.com +0.0.0.0 shoppingminds.net +0.0.0.0 shoppingsiterewards.com +0.0.0.0 shops-malls-rewardpath.com +0.0.0.0 shoptosaveenergy.com +0.0.0.0 show-msgch.qq.com +0.0.0.0 show.targead.com +0.0.0.0 showads1000.pubmatic.com +0.0.0.0 showadsak.pubmatic.com +0.0.0.0 shrek.6.cn +0.0.0.0 si.hit.gemius.pl +0.0.0.0 sifomedia.citypaketet.se +0.0.0.0 signoredom.com +0.0.0.0 signup.advance.net +0.0.0.0 simba.6.cn +0.0.0.0 simg.zedo.com +0.0.0.0 simpleads.net +0.0.0.0 simpli.fi +0.0.0.0 site.adform.com +0.0.0.0 siteimproveanalytics.com +0.0.0.0 sixapart.adbureau.net +0.0.0.0 sizzle-savings.com +0.0.0.0 skgde.adocean.pl +0.0.0.0 skill.skilljam.com +0.0.0.0 slayinglance.com +0.0.0.0 slider.plugrush.com +0.0.0.0 slimspots.com +0.0.0.0 slowmac.tech +0.0.0.0 smart.besonders.ru +0.0.0.0 smartclip.com +0.0.0.0 smartclip.net +0.0.0.0 smartcontext.pl +0.0.0.0 smartinit.webads.nl +0.0.0.0 smartshare.lgtvsdp.com +0.0.0.0 smile.modchipstore.com +0.0.0.0 smm.sitescout.com +0.0.0.0 smokersopinionpoll.com +0.0.0.0 smsmovies.net +0.0.0.0 sn.baventures.com +0.0.0.0 snaps.vidiemi.com +0.0.0.0 snip.answers.com +0.0.0.0 snipjs.answcdn.com +0.0.0.0 sobar.baidu.com +0.0.0.0 sobartop.baidu.com +0.0.0.0 sochr.com +0.0.0.0 social.bidsystem.com +0.0.0.0 softlinkers.popunder.ru +0.0.0.0 softreadynow.thespaceupdatespcandmac.info +0.0.0.0 softwarepiset.com +0.0.0.0 sokrates.adtech.de +0.0.0.0 sokrates.adtech.fr +0.0.0.0 sokrates.adtech.us +0.0.0.0 sol-images.adbureau.net +0.0.0.0 sol.adbureau.net +0.0.0.0 solicita.info +0.0.0.0 solitairetime.com +0.0.0.0 solution.weborama.fr +0.0.0.0 somethingawful.crwdcntrl.net +0.0.0.0 sonycomputerentertai.tt.omtrdc.net +0.0.0.0 soongu.info +0.0.0.0 spaces.slimspots.com +0.0.0.0 spanel.gem.pl +0.0.0.0 spanids.dictionary.com +0.0.0.0 spanids.thesaurus.com +0.0.0.0 spc.cekfmeoejdbfcfichgbfcgjf.vast2as3.glammedia-pubnet.northamerica.telemetryverification.net +0.0.0.0 spcode.baidu.com +0.0.0.0 spe.atdmt.com +0.0.0.0 specialgiftrewards.com +0.0.0.0 specialoffers.aol.com +0.0.0.0 specialonlinegifts.com +0.0.0.0 specials-rewardpath.com +0.0.0.0 speed.lstat.youku.com +0.0.0.0 speed.pointroll.com +0.0.0.0 speedboink.com +0.0.0.0 speedclicks.ero-advertising.com +0.0.0.0 speedcurve.com +0.0.0.0 speednetwork14.adk2x.com +0.0.0.0 speednetwork6.adk2x.com +0.0.0.0 speedynewsclips.com +0.0.0.0 spin.spinbox.net +0.0.0.0 spinbox.com +0.0.0.0 spinbox.consumerreview.com +0.0.0.0 spinbox.freedom.com +0.0.0.0 spinbox.macworld.com +0.0.0.0 sponsor1.com +0.0.0.0 sponsors.behance.com +0.0.0.0 sponsors.ezgreen.com +0.0.0.0 sponsorships.net +0.0.0.0 sports-bonuspath.com +0.0.0.0 sports-fitness-rewardpath.com +0.0.0.0 sports-offer.com +0.0.0.0 sports-offer.net +0.0.0.0 sports-premiumblvd.com +0.0.0.0 sq2trk2.com +0.0.0.0 srs.targetpoint.com +0.0.0.0 srv.juiceadv.com +0.0.0.0 srv.sayyac.com +0.0.0.0 ssads.osdn.com +0.0.0.0 ssl-nl.persgroep.edgekey.net +0.0.0.0 ssl4anyone5.com +0.0.0.0 sso.canada.com +0.0.0.0 ssp.adplus.co.id +0.0.0.0 ssp.anyclip-media.com +0.0.0.0 ssp.streamrail.net +0.0.0.0 sspcash.adxcore.com +0.0.0.0 st.blogads.com +0.0.0.0 st.marketgid.com +0.0.0.0 st.valueclick.com +0.0.0.0 st.videojam.tv +0.0.0.0 st.vq.ku6.cn +0.0.0.0 staging.snip.answers.com +0.0.0.0 stampen.adtlgc.com +0.0.0.0 stampen.linkpulse.com +0.0.0.0 stampscom.tt.omtrdc.net +0.0.0.0 stanzapub.advertserve.com +0.0.0.0 star-advertising.com +0.0.0.0 star.pulseonclick.com +0.0.0.0 start.badults.se +0.0.0.0 stat.56.com +0.0.0.0 stat.blogads.com +0.0.0.0 stat.detelefoongids.nl +0.0.0.0 stat.ebuzzing.com +0.0.0.0 stat.gw.youmi.net +0.0.0.0 stat.rolledwil.biz +0.0.0.0 stat.tudou.com +0.0.0.0 stat0.888.ku6.com +0.0.0.0 stat1.888.ku6.com +0.0.0.0 stat2.888.ku6.com +0.0.0.0 stat2.corp.56.com +0.0.0.0 stat3.888.ku6.com +0.0.0.0 static.2mdn.net +0.0.0.0 static.admaximize.com +0.0.0.0 static.adsonar.com +0.0.0.0 static.adtaily.pl +0.0.0.0 static.adwo.com +0.0.0.0 static.adzerk.net +0.0.0.0 static.aff-landing-tmp.foxtab.com +0.0.0.0 static.affiliation-france.com +0.0.0.0 static.carbonads.com +0.0.0.0 static.chartbeat.com +0.0.0.0 static.clickonometrics.pl +0.0.0.0 static.clicktorrent.info +0.0.0.0 static.creatives.livejasmin.com +0.0.0.0 static.criteo.net +0.0.0.0 static.doubleclick.net +0.0.0.0 static.eu.criteo.net +0.0.0.0 static.everyone.net +0.0.0.0 static.exoclick.com +0.0.0.0 static.fastpic.ru +0.0.0.0 static.firehunt.com +0.0.0.0 static.freenet.de +0.0.0.0 static.freeskreen.com +0.0.0.0 static.groupy.co.nz +0.0.0.0 static.hitfarm.com +0.0.0.0 static.ifa.camads.net +0.0.0.0 static.ku6.com +0.0.0.0 static.l3.cdn.adbucks.com +0.0.0.0 static.l3.cdn.adsucks.com +0.0.0.0 static.linkz.net +0.0.0.0 static.lstat.youku.com +0.0.0.0 static.mackeeper.com +0.0.0.0 static.mediav.com +0.0.0.0 static.nrelate.com +0.0.0.0 static.onlinevenditatio.space +0.0.0.0 static.oroll.com +0.0.0.0 static.plista.com +0.0.0.0 static.plugrush.com +0.0.0.0 static.pulse360.com +0.0.0.0 static.regiojobs.be +0.0.0.0 static.scanscout.com +0.0.0.0 static.tags.yield-atx.com +0.0.0.0 static.trackuity.com +0.0.0.0 static.trafficstars.com +0.0.0.0 static.unocdn.com +0.0.0.0 static.vertamedia.com +0.0.0.0 static.virgul.com +0.0.0.0 static.vpptechnologies.com +0.0.0.0 static.way2traffic.com +0.0.0.0 static.williamhill.com +0.0.0.0 static.wooboo.com.cn +0.0.0.0 static.youmi.net +0.0.0.0 static1.influads.com +0.0.0.0 staticb.mydirtyhobby.com +0.0.0.0 staticd.cdn.adblade.com +0.0.0.0 statistik-gallup.dk +0.0.0.0 stats.askmoses.com +0.0.0.0 stats.buzzparadise.com +0.0.0.0 stats.defense.gov +0.0.0.0 stats.fd.nl +0.0.0.0 stats.ipinyou.com +0.0.0.0 stats.jtvnw.net +0.0.0.0 stats.shopify.com +0.0.0.0 stats.tubemogul.com +0.0.0.0 stats.tudou.com +0.0.0.0 stats2.dooyoo.com +0.0.0.0 status.addthis.com +0.0.0.0 stephanie.tnctrx.com +0.0.0.0 stocker.bonnint.net +0.0.0.0 stoiximan.gr +0.0.0.0 storage.bulletproofserving.com +0.0.0.0 storage.softure.com +0.0.0.0 storage.trafic.ro +0.0.0.0 streamate.com +0.0.0.0 streamate.doublepimp.com +0.0.0.0 stts.rbc.ru +0.0.0.0 su.addthis.com +0.0.0.0 subad-server.com +0.0.0.0 subtracts.userplane.com +0.0.0.0 successful-marketing-now.com +0.0.0.0 suchaslowmac.tech +0.0.0.0 sudokuwhiz.com +0.0.0.0 sunmaker.com +0.0.0.0 support.sweepstakes.com +0.0.0.0 supremeadsonline.com +0.0.0.0 suresafe1.adsovo.com +0.0.0.0 surfsecured.net +0.0.0.0 surplus-suppliers.com +0.0.0.0 survey.china.alibaba.com +0.0.0.0 survey.nuggad.net +0.0.0.0 surveycentral.directinsure.info +0.0.0.0 surveymonkeycom.tt.omtrdc.net +0.0.0.0 surveypass.com +0.0.0.0 survymonkey.xyz +0.0.0.0 susi.adtech.fr +0.0.0.0 susi.adtech.us +0.0.0.0 svd.adtlgc.com +0.0.0.0 svd2.adtlgc.com +0.0.0.0 sview.avenuea.com +0.0.0.0 sweetsforfree.com +0.0.0.0 swfhostltd.com +0.0.0.0 symbiosting.com +0.0.0.0 syn.verticalacuity.com +0.0.0.0 synad.nuffnang.com.sg +0.0.0.0 synad2.nuffnang.com.cn +0.0.0.0 sync.mathtag.com +0.0.0.0 syncaccess.net +0.0.0.0 syndicated.mondominishows.com +0.0.0.0 syndication.exdynsrv.com +0.0.0.0 syndication.exoclick.com +0.0.0.0 syndication.traffichaus.com +0.0.0.0 sysadmin.map24.com +0.0.0.0 sysip.net +0.0.0.0 t-ads.adap.tv +0.0.0.0 t.admob.com +0.0.0.0 t.adonly.com +0.0.0.0 t.atpanel.com +0.0.0.0 t.cpmadvisors.com +0.0.0.0 t.frtyg.com +0.0.0.0 t.mdn2015x1.com +0.0.0.0 t.silvinst.com +0.0.0.0 t1.adserver.com +0.0.0.0 t4.liverail.com +0.0.0.0 t8t7frium3.s.ad6media.fr +0.0.0.0 tag.admeld.com +0.0.0.0 tag.contextweb.com +0.0.0.0 tag.regieci.com +0.0.0.0 tag.webcompteur.com +0.0.0.0 tag.yieldoptimizer.com +0.0.0.0 tag1.webabacus.com +0.0.0.0 tags.bluekai.com +0.0.0.0 tags.expo9.exponential.com +0.0.0.0 tags.hypeads.org +0.0.0.0 tags.rllcll.com +0.0.0.0 tags.tagcade.com +0.0.0.0 tags.toroadvertising.com +0.0.0.0 takeprofitsystem.com +0.0.0.0 taking-technology.com +0.0.0.0 taloussanomat.linkpulse.com +0.0.0.0 taobaoafp.allyes.cn +0.0.0.0 taobaoafp.allyes.com +0.0.0.0 targetctracker.com +0.0.0.0 tbtrack.zutrack.com +0.0.0.0 tcadops.ca +0.0.0.0 tcimg.com +0.0.0.0 tcss.qq.com +0.0.0.0 tdc.advertorials.dk +0.0.0.0 tdkads.ads.dk +0.0.0.0 te.kontera.com +0.0.0.0 team4heat.net +0.0.0.0 teatac4bath.com +0.0.0.0 tech.weeklytribune.net +0.0.0.0 techasiamusicsvr.com +0.0.0.0 technicads.com +0.0.0.0 technicaldigitalreporting.com +0.0.0.0 technicserv.com +0.0.0.0 technicupdate.com +0.0.0.0 techreview-images.adbureau.net +0.0.0.0 techreview.adbureau.net +0.0.0.0 techsupportpwr.com +0.0.0.0 teeser.ru +0.0.0.0 tel.geenstijl.nl +0.0.0.0 testapp.adhood.com +0.0.0.0 testpc24.profitableads.online +0.0.0.0 testpconly12.prepare2upvideosafesystem4setnow.online +0.0.0.0 text-link-ads-inventory.com +0.0.0.0 text-link-ads.ientry.com +0.0.0.0 textad.traficdublu.ro +0.0.0.0 textads.madisonavenue.com +0.0.0.0 textsrv.com +0.0.0.0 tf.nexac.com +0.0.0.0 tgpmanager.com +0.0.0.0 thanfocus.com +0.0.0.0 the-binary-trader.biz +0.0.0.0 the-path-gateway.com +0.0.0.0 the-smart-stop.com +0.0.0.0 thebrighttag.com +0.0.0.0 thebuzz.today +0.0.0.0 themaplemethod.com +0.0.0.0 thepiratetrader.com +0.0.0.0 thesuperdeliciousnews.com +0.0.0.0 theuploadbusiness.com +0.0.0.0 theuseful.com +0.0.0.0 theuseful.net +0.0.0.0 thinknyc.eu-adcenter.net +0.0.0.0 thinktarget.com +0.0.0.0 thinlaptoprewards.com +0.0.0.0 thirtydaychange.com +0.0.0.0 this.content.served.by.addshuffle.com +0.0.0.0 this.content.served.by.adshuffle.com +0.0.0.0 thoughtfully-free.com +0.0.0.0 timelywebsitehostesses.com +0.0.0.0 tiqcdn.com +0.0.0.0 tk.baidu.com +0.0.0.0 tkweb.baidu.com +0.0.0.0 tmp3.nexac.com +0.0.0.0 tmsads.tribune.com +0.0.0.0 tmx.technoratimedia.com +0.0.0.0 tn.adserve.com +0.0.0.0 toads.osdn.com +0.0.0.0 tommysbookmarks.com +0.0.0.0 tommysbookmarks.net +0.0.0.0 tongji.baidu.com +0.0.0.0 tons-to-see.com +0.0.0.0 toofanshadid.com +0.0.0.0 toolbar.adperium.com +0.0.0.0 toolbar.baidu.com +0.0.0.0 toolbar.soso.com +0.0.0.0 top1site.3host.com +0.0.0.0 top5.mail.ru +0.0.0.0 topbrandrewards.com +0.0.0.0 topconsumergifts.com +0.0.0.0 topdemaroc.com +0.0.0.0 topica.advertserve.com +0.0.0.0 toplist.eu +0.0.0.0 toplist.throughput.de +0.0.0.0 topmarketcenter.com +0.0.0.0 topsurvey-offers.com +0.0.0.0 touch.media-serving.com +0.0.0.0 touche.adcentric.proximi-t.com +0.0.0.0 tour.cineble.com +0.0.0.0 tower.adexpedia.com +0.0.0.0 toy-offer.com +0.0.0.0 toy-offer.net +0.0.0.0 tpads.ovguide.com +0.0.0.0 tpc.googlesyndication.com +0.0.0.0 tps30.doubleverify.com +0.0.0.0 tps31.doubleverify.com +0.0.0.0 tr.bigpoint.com +0.0.0.0 tr.tu.connect.wunderloop.net +0.0.0.0 tr.wl.webads.nl +0.0.0.0 traaaack.com +0.0.0.0 trace.qq.com +0.0.0.0 track-apmebf.cj.akadns.net +0.0.0.0 track.adbooth.net +0.0.0.0 track.adjal.com +0.0.0.0 track.bigbrandpromotions.com +0.0.0.0 track.e7r.com.br +0.0.0.0 track.omgpl.com +0.0.0.0 track.roularta.adhese.com +0.0.0.0 track.the-members-section.com +0.0.0.0 track.tooplay.com +0.0.0.0 track.traffcdn.com +0.0.0.0 track.vscash.com +0.0.0.0 track.whitespace57.com +0.0.0.0 track.zmsndy.com +0.0.0.0 trackadvertising.net +0.0.0.0 tracker.baidu.com +0.0.0.0 tracker.cdn-analytics.host +0.0.0.0 tracker.twenga.nl +0.0.0.0 trackers.1st-affiliation.fr +0.0.0.0 tracking.craktraffic.com +0.0.0.0 tracking.edvisors.com +0.0.0.0 tracking.eurowebaffiliates.com +0.0.0.0 tracking.feedmob.com +0.0.0.0 tracking.joker.com +0.0.0.0 tracking.keywordmax.com +0.0.0.0 tracking.trackmobistore.com +0.0.0.0 tracking.trksrv.com +0.0.0.0 tracking.veoxa.com +0.0.0.0 trackvoluum.com +0.0.0.0 tradearabia.advertserve.com +0.0.0.0 tradefx.advertserve.com +0.0.0.0 tradem.com +0.0.0.0 traffic.adxprts.com +0.0.0.0 traffic.getmyads.com +0.0.0.0 traffic.outbrain.com +0.0.0.0 trafficbee.com +0.0.0.0 trafficnetworkads24.com +0.0.0.0 trafficrevenue.net +0.0.0.0 traffictraders.com +0.0.0.0 traffprofit.com +0.0.0.0 trafmag.com +0.0.0.0 trafsearchonline.com +0.0.0.0 trafstarcurlms.com +0.0.0.0 traktum.com +0.0.0.0 travel-leisure-bonuspath.com +0.0.0.0 travel-leisure-premiumblvd.com +0.0.0.0 traveller-offer.com +0.0.0.0 traveller-offer.net +0.0.0.0 travelncs.com +0.0.0.0 trc.taboola.com +0.0.0.0 trekmedia.net +0.0.0.0 trendingpatrol.com +0.0.0.0 trendnews.com +0.0.0.0 trends.revcontent.com +0.0.0.0 trgde.adocean.pl +0.0.0.0 triangle.dealsaver.com +0.0.0.0 trk.ablogica.com +0.0.0.0 trk.alskeip.com +0.0.0.0 trk.etrigue.com +0.0.0.0 trk.yadomedia.com +0.0.0.0 tropiccritics.com +0.0.0.0 trustedmacleaner.click +0.0.0.0 trustedmacleaner.work +0.0.0.0 trustsitesite.com +0.0.0.0 trvlnet-images.adbureau.net +0.0.0.0 trvlnet.adbureau.net +0.0.0.0 tste.ivillage.com +0.0.0.0 tste.mcclatchyinteractive.com +0.0.0.0 tste.startribune.com +0.0.0.0 ttarget.adbureau.net +0.0.0.0 ttnet.yandex.com.tr +0.0.0.0 ttuk.offers4u.mobi +0.0.0.0 turnerapac.d1.sc.omtrdc.net +0.0.0.0 tv2no.linkpulse.com +0.0.0.0 tvshowsnow.tvmax.hop.clickbank.net +0.0.0.0 tw.adserver.yahoo.com +0.0.0.0 twnads.weather.ca +0.0.0.0 u-ads.adap.tv +0.0.0.0 u.admob.com +0.0.0.0 u85foldero.com +0.0.0.0 ua2.admixer.net +0.0.0.0 uac.advertising.com +0.0.0.0 uav.tidaltv.com +0.0.0.0 ubmcmm.baidustatic.com +0.0.0.0 uc.csc.adserver.yahoo.com +0.0.0.0 ucstat.baidu.com +0.0.0.0 uedata.amazon.com +0.0.0.0 uelbdc74fn.s.ad6media.fr +0.0.0.0 uf2.svrni.ca +0.0.0.0 ugo.eu-adcenter.net +0.0.0.0 ui.ppjol.com +0.0.0.0 uk-ads.openx.net +0.0.0.0 uk.adserver.yahoo.com +0.0.0.0 uktc.ijento.com +0.0.0.0 uleadstrk.com +0.0.0.0 ulic.baidu.com +0.0.0.0 ultimatefashiongifts.com +0.0.0.0 ultrabestportal.com +0.0.0.0 ultraministry.xyz +0.0.0.0 ultrasponsor.com +0.0.0.0 um.simpli.fi +0.0.0.0 undertonenetworks.com +0.0.0.0 uniclick.openv.com +0.0.0.0 union.56.com +0.0.0.0 union.6.cn +0.0.0.0 union.baidu.com +0.0.0.0 unite3tubes.com +0.0.0.0 unstat.baidu.com +0.0.0.0 unwashedsound.com +0.0.0.0 uole.ad.uol.com.br +0.0.0.0 updatehere.ultimatesetnewfreeallsoftupgradesystems.pw +0.0.0.0 upload.adtech.de +0.0.0.0 upload.adtech.fr +0.0.0.0 upload.adtech.us +0.0.0.0 uproar.com +0.0.0.0 uproar.fortunecity.com +0.0.0.0 urban.adspirit.de +0.0.0.0 urchin.lstat.youku.com +0.0.0.0 us-ads.openx.net +0.0.0.0 us-choicevalue.com +0.0.0.0 us-topsites.com +0.0.0.0 us.adserver.yahoo.com +0.0.0.0 usads.vibrantmedia.com +0.0.0.0 usatoday.app.ur.gcion.com +0.0.0.0 usatravel-specials.com +0.0.0.0 usatravel-specials.net +0.0.0.0 usemax.de +0.0.0.0 usr.marketgid.com +0.0.0.0 ut.addthis.com +0.0.0.0 utarget.ru +0.0.0.0 utility.baidu.com +0.0.0.0 utils.media-general.com +0.0.0.0 utils.mediageneral.com +0.0.0.0 utk.baidu.com +0.0.0.0 uvimage.56.com +0.0.0.0 v.admob.com +0.0.0.0 v.vomedia.tv +0.0.0.0 v0.stat.ku6.com +0.0.0.0 v1.stat.ku6.com +0.0.0.0 v16.56.com +0.0.0.0 v2.stat.ku6.com +0.0.0.0 v2profit.com +0.0.0.0 v3.stat.ku6.com +0.0.0.0 v3.toolbar.soso.com +0.0.0.0 vad.adbasket.net +0.0.0.0 vads.adbrite.com +0.0.0.0 vaitu.club +0.0.0.0 valb.atm.youku.com +0.0.0.0 valc.atm.youku.com +0.0.0.0 valf.atm.youku.com +0.0.0.0 valo.atm.youku.com +0.0.0.0 valp.atm.youku.com +0.0.0.0 van.ads.link4ads.com +0.0.0.0 vast.bp3845260.btrll.com +0.0.0.0 vast.bp3846806.btrll.com +0.0.0.0 vast.bp3846885.btrll.com +0.0.0.0 vast.deliads.com +0.0.0.0 vast.tubemogul.com +0.0.0.0 vast.vertamedia.com +0.0.0.0 vclick.adbrite.com +0.0.0.0 ve.tscapeplay.com +0.0.0.0 venus.goclick.com +0.0.0.0 versionsupport.set2updatenowsafesystemset4now.info +0.0.0.0 vht.tradedoubler.com +0.0.0.0 viamichelin.cdn11.contentabc.com +0.0.0.0 viamichelin.media.trafficjunky.net +0.0.0.0 vice-ads-cdn.vice.com +0.0.0.0 vid.atm.youku.com +0.0.0.0 video-game-rewards-central.com +0.0.0.0 video.cynogage.com +0.0.0.0 videobox.com +0.0.0.0 videocop.com +0.0.0.0 videoegg.adbureau.net +0.0.0.0 videogamerewardscentral.com +0.0.0.0 videomediagroep.nl +0.0.0.0 videos.fleshlight.com +0.0.0.0 videos.video-loader.com +0.0.0.0 videoslots.888.com +0.0.0.0 view.atdmt.com +0.0.0.0 view.avenuea.com +0.0.0.0 view.binlayer.com +0.0.0.0 view.iballs.a1.avenuea.com +0.0.0.0 view.jamba.de +0.0.0.0 view.netrams.com +0.0.0.0 views.m4n.nl +0.0.0.0 viglink.com +0.0.0.0 viglink.pgpartner.com +0.0.0.0 villagarden.pl +0.0.0.0 villagevoicecollect.247realmedia.com +0.0.0.0 vip1.tw.adserver.yahoo.com +0.0.0.0 vipfastmoney.com +0.0.0.0 viralture.com +0.0.0.0 vk.18sexporn.ru +0.0.0.0 vmcsatellite.com +0.0.0.0 vmix.adbureau.net +0.0.0.0 vms.boldchat.com +0.0.0.0 vn.grab-credit4u.com +0.0.0.0 vnu.eu-adcenter.net +0.0.0.0 vnumedia02.webtrekk.net +0.0.0.0 vnumedia03.webtrekk.net +0.0.0.0 vnumedia04.webtrekk.net +0.0.0.0 vocal-mess.com +0.0.0.0 vodafoneit.solution.weborama.fr +0.0.0.0 voluumtracker.com +0.0.0.0 voluumtrk2.com +0.0.0.0 voluumtrk3.com +0.0.0.0 voordeel.ad.nl +0.0.0.0 vox-static.liverail.com +0.0.0.0 vp.tscapeplay.com +0.0.0.0 vq91811.com +0.0.0.0 vu.veoxa.com +0.0.0.0 vzarabotke.ru +0.0.0.0 w.admob.com +0.0.0.0 w.bigames.online +0.0.0.0 w.ic.tynt.com +0.0.0.0 w.l.qq.com +0.0.0.0 w.prize44.com +0.0.0.0 w1.am15.net +0.0.0.0 w1.iyi.net +0.0.0.0 w1.webcompteur.com +0.0.0.0 w10.am15.net +0.0.0.0 w10.centralmediaserver.com +0.0.0.0 w100.am15.net +0.0.0.0 w101.am15.net +0.0.0.0 w102.am15.net +0.0.0.0 w103.am15.net +0.0.0.0 w104.am15.net +0.0.0.0 w105.am15.net +0.0.0.0 w106.am15.net +0.0.0.0 w107.am15.net +0.0.0.0 w108.am15.net +0.0.0.0 w109.am15.net +0.0.0.0 w11.am15.net +0.0.0.0 w11.centralmediaserver.com +0.0.0.0 w110.am15.net +0.0.0.0 w111.am15.net +0.0.0.0 w112.am15.net +0.0.0.0 w113.am15.net +0.0.0.0 w114.am15.net +0.0.0.0 w115.am15.net +0.0.0.0 w116.am15.net +0.0.0.0 w117.am15.net +0.0.0.0 w118.am15.net +0.0.0.0 w119.am15.net +0.0.0.0 w12.am15.net +0.0.0.0 w13.am15.net +0.0.0.0 w14.am15.net +0.0.0.0 w15.am15.net +0.0.0.0 w16.am15.net +0.0.0.0 w17.am15.net +0.0.0.0 w18.am15.net +0.0.0.0 w19.am15.net +0.0.0.0 w2.am15.net +0.0.0.0 w20.am15.net +0.0.0.0 w21.am15.net +0.0.0.0 w22.am15.net +0.0.0.0 w23.am15.net +0.0.0.0 w24.am15.net +0.0.0.0 w25.am15.net +0.0.0.0 w26.am15.net +0.0.0.0 w27.am15.net +0.0.0.0 w28.am15.net +0.0.0.0 w29.am15.net +0.0.0.0 w3.am15.net +0.0.0.0 w30.am15.net +0.0.0.0 w31.am15.net +0.0.0.0 w32.am15.net +0.0.0.0 w33.am15.net +0.0.0.0 w34.am15.net +0.0.0.0 w35.am15.net +0.0.0.0 w36.am15.net +0.0.0.0 w37.am15.net +0.0.0.0 w38.am15.net +0.0.0.0 w39.am15.net +0.0.0.0 w4.am15.net +0.0.0.0 w40.am15.net +0.0.0.0 w41.am15.net +0.0.0.0 w42.am15.net +0.0.0.0 w43.am15.net +0.0.0.0 w44.am15.net +0.0.0.0 w45.am15.net +0.0.0.0 w46.am15.net +0.0.0.0 w47.am15.net +0.0.0.0 w48.am15.net +0.0.0.0 w49.am15.net +0.0.0.0 w5.am15.net +0.0.0.0 w50.am15.net +0.0.0.0 w51.am15.net +0.0.0.0 w52.am15.net +0.0.0.0 w53.am15.net +0.0.0.0 w54.am15.net +0.0.0.0 w55.am15.net +0.0.0.0 w56.am15.net +0.0.0.0 w57.am15.net +0.0.0.0 w58.am15.net +0.0.0.0 w59.am15.net +0.0.0.0 w6.am15.net +0.0.0.0 w60.am15.net +0.0.0.0 w61.am15.net +0.0.0.0 w62.am15.net +0.0.0.0 w63.am15.net +0.0.0.0 w64.am15.net +0.0.0.0 w65.am15.net +0.0.0.0 w66.am15.net +0.0.0.0 w67.am15.net +0.0.0.0 w68.am15.net +0.0.0.0 w69.am15.net +0.0.0.0 w7.am15.net +0.0.0.0 w70.am15.net +0.0.0.0 w71.am15.net +0.0.0.0 w72.am15.net +0.0.0.0 w73.am15.net +0.0.0.0 w74.am15.net +0.0.0.0 w75.am15.net +0.0.0.0 w76.am15.net +0.0.0.0 w77.am15.net +0.0.0.0 w78.am15.net +0.0.0.0 w79.am15.net +0.0.0.0 w8.am15.net +0.0.0.0 w80.am15.net +0.0.0.0 w81.am15.net +0.0.0.0 w82.am15.net +0.0.0.0 w83.am15.net +0.0.0.0 w84.am15.net +0.0.0.0 w85.am15.net +0.0.0.0 w86.am15.net +0.0.0.0 w87.am15.net +0.0.0.0 w88.am15.net +0.0.0.0 w89.am15.net +0.0.0.0 w9.am15.net +0.0.0.0 w90.am15.net +0.0.0.0 w91.am15.net +0.0.0.0 w92.am15.net +0.0.0.0 w93.am15.net +0.0.0.0 w94.am15.net +0.0.0.0 w95.am15.net +0.0.0.0 w96.am15.net +0.0.0.0 w97.am15.net +0.0.0.0 w98.am15.net +0.0.0.0 w99.am15.net +0.0.0.0 wac.2ddcc.alphacdn.net +0.0.0.0 wafmedia3.com +0.0.0.0 wahoha.com +0.0.0.0 walp.atm.youku.com +0.0.0.0 wangluoruanjian.com +0.0.0.0 wangmeng.baidu.com +0.0.0.0 wap.casee.cn +0.0.0.0 warp.crystalad.com +0.0.0.0 wdm29.com +0.0.0.0 web.adblade.com +0.0.0.0 web.nyc.ads.juno.co +0.0.0.0 web1b.netreflector.com +0.0.0.0 webads.bizservers.com +0.0.0.0 webbizwild.com +0.0.0.0 webcamsex.nl +0.0.0.0 webcompteur.com +0.0.0.0 webhosting-ads.home.pl +0.0.0.0 weblogger.visilabs.com +0.0.0.0 webnavegador.com +0.0.0.0 webservices-rewardpath.com +0.0.0.0 websurvey.spa-mr.com +0.0.0.0 webtrekk.net +0.0.0.0 webuysupplystore.mooo.com +0.0.0.0 webwise.bt.com +0.0.0.0 wegetpaid.net +0.0.0.0 wegotmedia.co +0.0.0.0 welcome.faptitans.com +0.0.0.0 welcome.pussysaga.com +0.0.0.0 werkenbijliones.nl +0.0.0.0 widget.achetezfacile.com +0.0.0.0 widget.crowdignite.com +0.0.0.0 widget.nativly.com +0.0.0.0 widget.plugrush.com +0.0.0.0 widget3.linkwithin.com +0.0.0.0 widget5.linkwithin.com +0.0.0.0 widgets.outbrain.com +0.0.0.0 widgets.tcimg.com +0.0.0.0 wigetmedia.com +0.0.0.0 wikiforosh.ir +0.0.0.0 williamhill.es +0.0.0.0 windowserror7.tech +0.0.0.0 wineeniphone6.com-gen.online +0.0.0.0 winprizesapp.com +0.0.0.0 wm.baidu.com +0.0.0.0 wmedia.adk2x.com +0.0.0.0 wmedia.rotator.hadj7.adjuggler.net +0.0.0.0 worden.samenresultaat.nl +0.0.0.0 wordplaywhiz.com +0.0.0.0 work-offer.com +0.0.0.0 worry-free-savings.com +0.0.0.0 wowanalytics.co.uk +0.0.0.0 wppluginspro.com +0.0.0.0 ws.addthis.com +0.0.0.0 wtp101.com +0.0.0.0 ww690.smartadserver.com +0.0.0.0 wwbtads.com +0.0.0.0 www.123specialgifts.com +0.0.0.0 www.2-art-coliseum.com +0.0.0.0 www.2015rewardopportunities.com +0.0.0.0 www.247realmedia.com +0.0.0.0 www.321cba.com +0.0.0.0 www.360ads.com +0.0.0.0 www.3qqq.net +0.0.0.0 www.3turtles.com +0.0.0.0 www.404errorpage.com +0.0.0.0 www.5thavenue.com +0.0.0.0 www.7500.com +0.0.0.0 www.7bpeople.com +0.0.0.0 www.7cnbcnews.com +0.0.0.0 www.805m.com +0.0.0.0 www.888.com +0.0.0.0 www.888casino.com +0.0.0.0 www.888poker.com +0.0.0.0 www.961.com +0.0.0.0 www.a.websponsors.com +0.0.0.0 www.abrogatesdv.info +0.0.0.0 www.action.ientry.net +0.0.0.0 www.actiondesk.com +0.0.0.0 www.ad-up.com +0.0.0.0 www.ad-words.ru +0.0.0.0 www.ad.tgdaily.com +0.0.0.0 www.ad.tomshardware.com +0.0.0.0 www.ad.twitchguru.com +0.0.0.0 www.ad6media.fr +0.0.0.0 www.adbanner.gr +0.0.0.0 www.adbrite.com +0.0.0.0 www.adcanadian.com +0.0.0.0 www.adcash.com +0.0.0.0 www.addthis.com +0.0.0.0 www.addthiscdn.com +0.0.0.0 www.adengage.com +0.0.0.0 www.adexchangecloud.com +0.0.0.0 www.adfactor.nl +0.0.0.0 www.adfunkyserver.com +0.0.0.0 www.adfusion.com +0.0.0.0 www.adimages.beeb.com +0.0.0.0 www.adipics.com +0.0.0.0 www.adireland.com +0.0.0.0 www.adjmps.com +0.0.0.0 www.adjug.com +0.0.0.0 www.adloader.com +0.0.0.0 www.adlogix.com +0.0.0.0 www.admex.com +0.0.0.0 www.adnet.biz +0.0.0.0 www.adnet.com +0.0.0.0 www.adnet.de +0.0.0.0 www.adnxs.com +0.0.0.0 www.adobee.com +0.0.0.0 www.adobur.com +0.0.0.0 www.adocean.pl +0.0.0.0 www.adpepper.dk +0.0.0.0 www.adpowerzone.com +0.0.0.0 www.adquest3d.com +0.0.0.0 www.adreporting.com +0.0.0.0 www.ads.joetec.net +0.0.0.0 www.ads.revenue.net +0.0.0.0 www.ads2srv.com +0.0.0.0 www.adscience.nl +0.0.0.0 www.adsentnetwork.com +0.0.0.0 www.adserver-espnet.sportszone.net +0.0.0.0 www.adserver.co.il +0.0.0.0 www.adserver.com +0.0.0.0 www.adserver.com.my +0.0.0.0 www.adserver.com.pl +0.0.0.0 www.adserver.janes.net +0.0.0.0 www.adserver.janes.org +0.0.0.0 www.adserver.jolt.co.uk +0.0.0.0 www.adserver.net +0.0.0.0 www.adserver.ugo.nl +0.0.0.0 www.adservtech.com +0.0.0.0 www.adsinimages.com +0.0.0.0 www.adskeeper.co.uk +0.0.0.0 www.adsoftware.com +0.0.0.0 www.adspics.com +0.0.0.0 www.adsrvr.org +0.0.0.0 www.adstogo.com +0.0.0.0 www.adstreams.org +0.0.0.0 www.adsupplyads.com +0.0.0.0 www.adtaily.pl +0.0.0.0 www.adtechus.com +0.0.0.0 www.adtlgc.com +0.0.0.0 www.adtrader.com +0.0.0.0 www.adtrix.com +0.0.0.0 www.advaliant.com +0.0.0.0 www.advancedmaccleaner.com +0.0.0.0 www.advanpromo.com +0.0.0.0 www.advconversion.com +0.0.0.0 www.adverterenbijrtl.nl +0.0.0.0 www.adverterenbijsbs.nl +0.0.0.0 www.adverterenzeeland.nl +0.0.0.0 www.advertising-department.com +0.0.0.0 www.advertlets.com +0.0.0.0 www.advertpro.com +0.0.0.0 www.adverts.dcthomson.co.uk +0.0.0.0 www.advertyz.com +0.0.0.0 www.adview.cn +0.0.0.0 www.adzerk.net +0.0.0.0 www.afcyhf.com +0.0.0.0 www.affiliate-fr.com +0.0.0.0 www.affiliateclick.com +0.0.0.0 www.affiliation-france.com +0.0.0.0 www.afform.co.uk +0.0.0.0 www.affpartners.com +0.0.0.0 www.afterdownload.com +0.0.0.0 www.agkn.com +0.0.0.0 www.alexxe.com +0.0.0.0 www.algocashmaster.com +0.0.0.0 www.algocashmaster.net +0.0.0.0 www.allosponsor.com +0.0.0.0 www.amazing-opportunities.info +0.0.0.0 www.annuaire-autosurf.com +0.0.0.0 www.apparel-offer.com +0.0.0.0 www.apparelncs.com +0.0.0.0 www.applelounge.com +0.0.0.0 www.appleprotection.org +0.0.0.0 www.applicationwiki.com +0.0.0.0 www.appliedsemantics.com +0.0.0.0 www.appnexus.com +0.0.0.0 www.art-music-rewardpath.com +0.0.0.0 www.art-offer.com +0.0.0.0 www.art-offer.net +0.0.0.0 www.art-photo-music-premiumblvd.com +0.0.0.0 www.art-photo-music-rewardempire.com +0.0.0.0 www.art-photo-music-savingblvd.com +0.0.0.0 www.atpanel.com +0.0.0.0 www.auctionshare.net +0.0.0.0 www.aureate.com +0.0.0.0 www.aussiemoneymethod.com +0.0.0.0 www.autohipnose.com +0.0.0.0 www.automotive-offer.com +0.0.0.0 www.automotive-rewardpath.com +0.0.0.0 www.avcounter10.com +0.0.0.0 www.avsads.com +0.0.0.0 www.awesomevipoffers.com +0.0.0.0 www.awltovhc.com +0.0.0.0 www.backoffice.evobinary.com +0.0.0.0 www.baiduccdn.org +0.0.0.0 www.baiducdn.org +0.0.0.0 www.bananacashback.com +0.0.0.0 www.banner4all.dk +0.0.0.0 www.bannerads.de +0.0.0.0 www.bannerbackup.com +0.0.0.0 www.bannerconnect.net +0.0.0.0 www.banners.paramountzone.com +0.0.0.0 www.bannersurvey.biz +0.0.0.0 www.banstex.com +0.0.0.0 www.bargainbeautybuys.com +0.0.0.0 www.bbelements.com +0.0.0.0 www.best-games4you.top +0.0.0.0 www.best-iphone6s.com +0.0.0.0 www.bestshopperrewards.com +0.0.0.0 www.bet365.com +0.0.0.0 www.bhclicks.com +0.0.0.0 www.bidtraffic.com +0.0.0.0 www.bidvertiser.com +0.0.0.0 www.bigbangempire.com +0.0.0.0 www.bigbrandpromotions.com +0.0.0.0 www.bigbrandrewards.com +0.0.0.0 www.biggestgiftrewards.com +0.0.0.0 www.binarysystem4u.com +0.0.0.0 www.biz-offer.com +0.0.0.0 www.bizographics.com +0.0.0.0 www.bizopprewards.com +0.0.0.0 www.blasphemysfhs.info +0.0.0.0 www.blatant8jh.info +0.0.0.0 www.blazingtrader.biz +0.0.0.0 www.bluediamondoffers.com +0.0.0.0 www.bnnr.nl +0.0.0.0 www.bodog.eu +0.0.0.0 www.bonzi.com +0.0.0.0 www.bookclub-offer.com +0.0.0.0 www.books-media-edu-premiumblvd.com +0.0.0.0 www.books-media-edu-rewardempire.com +0.0.0.0 www.books-media-rewardpath.com +0.0.0.0 www.boonsolutions.com +0.0.0.0 www.bostonsubwayoffer.com +0.0.0.0 www.bostonwall.com +0.0.0.0 www.brandrewardcentral.com +0.0.0.0 www.brandsurveypanel.com +0.0.0.0 www.brightonclick.com +0.0.0.0 www.brokertraffic.com +0.0.0.0 www.budsinc.com +0.0.0.0 www.bugsbanner.it +0.0.0.0 www.bulkclicks.com +0.0.0.0 www.bulletads.com +0.0.0.0 www.burstnet.com +0.0.0.0 www.bus-offer.com +0.0.0.0 www.business-rewardpath.com +0.0.0.0 www.buttcandy.com +0.0.0.0 www.buwobarun.cn +0.0.0.0 www.buycheapadvertising.com +0.0.0.0 www.buyhitscheap.com +0.0.0.0 www.buzzonclick.com +0.0.0.0 www.cafecoquin.com +0.0.0.0 www.cam4.fr +0.0.0.0 www.canuckmethods.com +0.0.0.0 www.capath.com +0.0.0.0 www.car-truck-boat-bonuspath.com +0.0.0.0 www.car-truck-boat-premiumblvd.com +0.0.0.0 www.careers-rewardpath.com +0.0.0.0 www.cashback.co.uk +0.0.0.0 www.cashbackwow.co.uk +0.0.0.0 www.cashcount.com +0.0.0.0 www.casino770.com +0.0.0.0 www.catalinkcashback.com +0.0.0.0 www.cell-phone-giveaways.com +0.0.0.0 www.cellphoneincentives.com +0.0.0.0 www.chainsawoffer.com +0.0.0.0 www.chartbeat.com +0.0.0.0 www.choicedealz.com +0.0.0.0 www.choicesurveypanel.com +0.0.0.0 www.christianbusinessadvertising.com +0.0.0.0 www.ciqugasox.cn +0.0.0.0 www.claimfreerewards.com +0.0.0.0 www.clashmediausa.com +0.0.0.0 www.clevernt.com +0.0.0.0 www.click-find-save.com +0.0.0.0 www.click-see-save.com +0.0.0.0 www.click.alibaba.com +0.0.0.0 www.click10.com +0.0.0.0 www.click4click.com +0.0.0.0 www.clickbank.com +0.0.0.0 www.clickdensity.com +0.0.0.0 www.clicksgear.com +0.0.0.0 www.clicksor.com +0.0.0.0 www.clicksotrk.com +0.0.0.0 www.clicktale.com +0.0.0.0 www.clicktale.net +0.0.0.0 www.clickthrutraffic.com +0.0.0.0 www.clicktilluwin.com +0.0.0.0 www.clicktorrent.info +0.0.0.0 www.clickxchange.com +0.0.0.0 www.closeoutproductsreview.com +0.0.0.0 www.cm1359.com +0.0.0.0 www.come-see-it-all.com +0.0.0.0 www.commerce-offer.com +0.0.0.0 www.commerce-rewardpath.com +0.0.0.0 www.computer-offer.com +0.0.0.0 www.computer-offer.net +0.0.0.0 www.computers-electronics-rewardpath.com +0.0.0.0 www.computersncs.com +0.0.0.0 www.consumer-org.com +0.0.0.0 www.consumergiftcenter.com +0.0.0.0 www.consumerincentivenetwork.com +0.0.0.0 www.contaxe.com +0.0.0.0 www.contextuads.com +0.0.0.0 www.contextweb.com +0.0.0.0 www.conversantmedia.com +0.0.0.0 www.cookingtiprewards.com +0.0.0.0 www.cool-premiums-now.com +0.0.0.0 www.cool-premiums.com +0.0.0.0 www.coolconcepts.nl +0.0.0.0 www.coolpremiumsnow.com +0.0.0.0 www.coolsavings.com +0.0.0.0 www.coreglead.co.uk +0.0.0.0 www.cornomase.win +0.0.0.0 www.cosmeticscentre.uk.com +0.0.0.0 www.cpabank.com +0.0.0.0 www.cpmadvisors.com +0.0.0.0 www.crazypopups.com +0.0.0.0 www.crazywinnings.com +0.0.0.0 www.crediblegfj.info +0.0.0.0 www.crispads.com +0.0.0.0 www.crowdgravity.com +0.0.0.0 www.crowdignite.com +0.0.0.0 www.ctbdev.net +0.0.0.0 www.cyber-incentives.com +0.0.0.0 www.d03x2011.com +0.0.0.0 www.da-ads.com +0.0.0.0 www.daily-saver.com +0.0.0.0 www.datatech.es +0.0.0.0 www.datingadvertising.com +0.0.0.0 www.dctracking.com +0.0.0.0 www.depravedwhores.com +0.0.0.0 www.designbloxlive.com +0.0.0.0 www.destinationurl.com +0.0.0.0 www.dgmaustralia.com +0.0.0.0 www.dietoftoday.ca.pn +0.0.0.0 www.digimedia.com +0.0.0.0 www.directnetadvertising.net +0.0.0.0 www.directpowerrewards.com +0.0.0.0 www.dirtyrhino.com +0.0.0.0 www.discount-savings-more.com +0.0.0.0 www.djugoogs.com +0.0.0.0 www.dl-plugin.com +0.0.0.0 www.dllfilestab.com +0.0.0.0 www.drowle.com +0.0.0.0 www.dt1blog.com +0.0.0.0 www.dutchsales.org +0.0.0.0 www.e-bannerx.com +0.0.0.0 www.earnmygift.com +0.0.0.0 www.earnpointsandgifts.com +0.0.0.0 www.easy2date.net +0.0.0.0 www.easyadservice.com +0.0.0.0 www.ebayadvertising.com +0.0.0.0 www.ebaybanner.com +0.0.0.0 www.edu-offer.com +0.0.0.0 www.education-rewardpath.com +0.0.0.0 www.electronics-bonuspath.com +0.0.0.0 www.electronics-offer.net +0.0.0.0 www.electronics-rewardpath.com +0.0.0.0 www.electronicspresent.com +0.0.0.0 www.emailadvantagegroup.com +0.0.0.0 www.emailproductreview.com +0.0.0.0 www.emarketmakers.com +0.0.0.0 www.entertainment-rewardpath.com +0.0.0.0 www.entertainment-specials.com +0.0.0.0 www.eshopads2.com +0.0.0.0 www.euros4click.de +0.0.0.0 www.exasharetab.com +0.0.0.0 www.exclusive-games.website +0.0.0.0 www.exclusivegiftcards.com +0.0.0.0 www.eyeblaster-bs.com +0.0.0.0 www.eyewonder.com +0.0.0.0 www.falkag.de +0.0.0.0 www.family-offer.com +0.0.0.0 www.fast-adv.it +0.0.0.0 www.fastcash-ad.biz +0.0.0.0 www.fatcatrewards.com +0.0.0.0 www.feedjit.com +0.0.0.0 www.feedstermedia.com +0.0.0.0 www.fellent.eu +0.0.0.0 www.fif49.info +0.0.0.0 www.finance-offer.com +0.0.0.0 www.finder.cox.net +0.0.0.0 www.fineclicks.com +0.0.0.0 www.flagcounter.com +0.0.0.0 www.flowers-offer.com +0.0.0.0 www.flu23.com +0.0.0.0 www.focalex.com +0.0.0.0 www.folloyu.com +0.0.0.0 www.food-drink-bonuspath.com +0.0.0.0 www.food-drink-rewardpath.com +0.0.0.0 www.food-offer.com +0.0.0.0 www.foodmixeroffer.com +0.0.0.0 www.forboringbusinesses.com +0.0.0.0 www.fpctraffic2.com +0.0.0.0 www.free-gift-cards-now.com +0.0.0.0 www.free-gifts-comp.com +0.0.0.0 www.free-laptop-reward.com +0.0.0.0 www.freeadguru.com +0.0.0.0 www.freebiegb.co.uk +0.0.0.0 www.freecameraonus.com +0.0.0.0 www.freecameraprovider.com +0.0.0.0 www.freecamerasource.com +0.0.0.0 www.freecamerauk.co.uk +0.0.0.0 www.freecamsecrets.com +0.0.0.0 www.freecamsexposed.com +0.0.0.0 www.freecoolgift.com +0.0.0.0 www.freedesignerhandbagreviews.com +0.0.0.0 www.freedinnersource.com +0.0.0.0 www.freedvddept.com +0.0.0.0 www.freeelectronicscenter.com +0.0.0.0 www.freeelectronicsdepot.com +0.0.0.0 www.freeelectronicsonus.com +0.0.0.0 www.freeelectronicssource.com +0.0.0.0 www.freeentertainmentsource.com +0.0.0.0 www.freefoodprovider.com +0.0.0.0 www.freefoodsource.com +0.0.0.0 www.freefuelcard.com +0.0.0.0 www.freefuelcoupon.com +0.0.0.0 www.freegasonus.com +0.0.0.0 www.freegasprovider.com +0.0.0.0 www.freegiftcardsource.com +0.0.0.0 www.freegiftreward.com +0.0.0.0 www.freeipodnanouk.co.uk +0.0.0.0 www.freeipoduk.co.uk +0.0.0.0 www.freeipoduk.com +0.0.0.0 www.freelaptopgift.com +0.0.0.0 www.freelaptopnation.com +0.0.0.0 www.freelaptopreward.com +0.0.0.0 www.freelaptopwebsites.com +0.0.0.0 www.freemaintenancesysforpcandmac.top +0.0.0.0 www.freenation.com +0.0.0.0 www.freeoffers-toys.com +0.0.0.0 www.freepayasyougotopupuk.co.uk +0.0.0.0 www.freeplasmanation.com +0.0.0.0 www.freerestaurantprovider.com +0.0.0.0 www.freerestaurantsource.com +0.0.0.0 www.freeshoppingprovider.com +0.0.0.0 www.freeshoppingsource.com +0.0.0.0 www.freo-stats.nl +0.0.0.0 www.frontpagecash.com +0.0.0.0 www.ftjcfx.com +0.0.0.0 www.fusionbanners.com +0.0.0.0 www.gameconsolerewards.com +0.0.0.0 www.games-toys-bonuspath.com +0.0.0.0 www.games-toys-free.com +0.0.0.0 www.games-toys-rewardpath.com +0.0.0.0 www.gatoradvertisinginformationnetwork.com +0.0.0.0 www.getacool100.com +0.0.0.0 www.getacool500.com +0.0.0.0 www.getacoollaptop.com +0.0.0.0 www.getacooltv.com +0.0.0.0 www.getagiftonline.com +0.0.0.0 www.getfilemacgetdmg.com +0.0.0.0 www.getfilesmact.com +0.0.0.0 www.getloan.com +0.0.0.0 www.getmyads24.com +0.0.0.0 www.getmyfreebabystuff.com +0.0.0.0 www.getmyfreegear.com +0.0.0.0 www.getmyfreegiftcard.com +0.0.0.0 www.getmyfreelaptop.com +0.0.0.0 www.getmyfreelaptophere.com +0.0.0.0 www.getmyfreeplasma.com +0.0.0.0 www.getmylaptopfree.com +0.0.0.0 www.getmyplasmatv.com +0.0.0.0 www.getspecialgifts.com +0.0.0.0 www.getyourfreecomputer.com +0.0.0.0 www.getyourfreetv.com +0.0.0.0 www.giftcardchallenge.com +0.0.0.0 www.giftcardsurveys.us.com +0.0.0.0 www.giftrewardzone.com +0.0.0.0 www.gifts-flowers-rewardpath.com +0.0.0.0 www.gimmethatreward.com +0.0.0.0 www.gmads.net +0.0.0.0 www.go-free-gifts.com +0.0.0.0 www.gofreegifts.com +0.0.0.0 www.goody-garage.com +0.0.0.0 www.googleadservices.com +0.0.0.0 www.googlewordpad.info +0.0.0.0 www.gopopup.com +0.0.0.0 www.grabbit-rabbit.com +0.0.0.0 www.greasypalm.com +0.0.0.0 www.groupm.com +0.0.0.0 www.grz67.com +0.0.0.0 www.guesstheview.com +0.0.0.0 www.guptamedianetwork.com +0.0.0.0 www.happydiscountspecials.com +0.0.0.0 www.health-beauty-rewardpath.com +0.0.0.0 www.health-beauty-savingblvd.com +0.0.0.0 www.healthbeautyncs.com +0.0.0.0 www.healthclicks.co.uk +0.0.0.0 www.hebdotop.com +0.0.0.0 www.heusmarketing.nl +0.0.0.0 www.hightrafficads.com +0.0.0.0 www.histats.com +0.0.0.0 www.holiday-gift-offers.com +0.0.0.0 www.holidayproductpromo.com +0.0.0.0 www.holidayshoppingrewards.com +0.0.0.0 www.home-garden-premiumblvd.com +0.0.0.0 www.home-garden-rewardempire.com +0.0.0.0 www.home-garden-rewardpath.com +0.0.0.0 www.home4bizstart.ru +0.0.0.0 www.homeelectronicproducts.com +0.0.0.0 www.hooqy.com +0.0.0.0 www.hot-daily-deal.com +0.0.0.0 www.hot-product-hangout.com +0.0.0.0 www.hotchatdate.com +0.0.0.0 www.hotgiftzone.com +0.0.0.0 www.hotkeys.com +0.0.0.0 www.idealcasino.net +0.0.0.0 www.idirect.com +0.0.0.0 www.ifileyou.com +0.0.0.0 www.ihaberadserver.com +0.0.0.0 www.iicdn.com +0.0.0.0 www.ijacko.net +0.0.0.0 www.ilovemobi.com +0.0.0.0 www.impressionaffiliate.com +0.0.0.0 www.impressionaffiliate.mobi +0.0.0.0 www.impressionlead.com +0.0.0.0 www.impressionperformance.biz +0.0.0.0 www.incentive-scene.com +0.0.0.0 www.incentivegateway.com +0.0.0.0 www.incentiverewardcenter.com +0.0.0.0 www.inckamedia.com +0.0.0.0 www.indiads.com +0.0.0.0 www.infinite-ads.com +0.0.0.0 www.inpagevideo.nl +0.0.0.0 www.ins-offer.com +0.0.0.0 www.insurance-rewardpath.com +0.0.0.0 www.intela.com +0.0.0.0 www.interstitialzone.com +0.0.0.0 www.intnet-offer.com +0.0.0.0 www.invitefashion.com +0.0.0.0 www.is1.clixgalore.com +0.0.0.0 www.isfilebest.com +0.0.0.0 www.isoftibest.com +0.0.0.0 www.istats.nl +0.0.0.0 www.itrackerpro.com +0.0.0.0 www.itsfree123.com +0.0.0.0 www.iwantmy-freelaptop.com +0.0.0.0 www.iwantmyfree-laptop.com +0.0.0.0 www.iwantmyfreecash.com +0.0.0.0 www.iwantmyfreelaptop.com +0.0.0.0 www.iwantmygiftcard.com +0.0.0.0 www.jersey-offer.com +0.0.0.0 www.jetseeker.com +0.0.0.0 www.jivox.com +0.0.0.0 www.jl29jd25sm24mc29.com +0.0.0.0 www.joinfree.ro +0.0.0.0 www.jolic2.com +0.0.0.0 www.jxliu.com +0.0.0.0 www.kampanyatakip.net +0.0.0.0 www.keywordblocks.com +0.0.0.0 www.kitaramarketplace.com +0.0.0.0 www.kitaramedia.com +0.0.0.0 www.kitaratrk.com +0.0.0.0 www.kixer.com +0.0.0.0 www.klikdirect.com +0.0.0.0 www.kliksaya.com +0.0.0.0 www.kmdl101.com +0.0.0.0 www.kontera.com +0.0.0.0 www.konversation.com +0.0.0.0 www.kreaffiliation.com +0.0.0.0 www.kuhdi.com +0.0.0.0 www.ladyclicks.ru +0.0.0.0 www.laptopreportcard.com +0.0.0.0 www.laptoprewards.com +0.0.0.0 www.laptoprewardsgroup.com +0.0.0.0 www.laptoprewardszone.com +0.0.0.0 www.larivieracasino.com +0.0.0.0 www.lasthr.info +0.0.0.0 www.lduhtrp.net +0.0.0.0 www.le1er.net +0.0.0.0 www.leadgreed.com +0.0.0.0 www.learning-offer.com +0.0.0.0 www.legal-rewardpath.com +0.0.0.0 www.leisure-offer.com +0.0.0.0 www.lejournaldescarrieres.com +0.0.0.0 www.linkhut.com +0.0.0.0 www.linkpulse.com +0.0.0.0 www.linkredirect.biz +0.0.0.0 www.linkwithin.com +0.0.0.0 www.liones.nl +0.0.0.0 www.liveadexchanger.com +0.0.0.0 www.lldiettracker.com +0.0.0.0 www.lottoforever.com +0.0.0.0 www.lpcloudsvr302.com +0.0.0.0 www.lpmxp2014.com +0.0.0.0 www.lpmxp2015.com +0.0.0.0 www.lpmxp2016.com +0.0.0.0 www.lpmxp2017.com +0.0.0.0 www.lpmxp2018.com +0.0.0.0 www.lpmxp2019.com +0.0.0.0 www.lpmxp2020.com +0.0.0.0 www.lpmxp2021.com +0.0.0.0 www.lpmxp2022.com +0.0.0.0 www.lpmxp2023.com +0.0.0.0 www.lpmxp2024.com +0.0.0.0 www.lpmxp2025.com +0.0.0.0 www.lpmxp2026.com +0.0.0.0 www.lpmxp2027.com +0.0.0.0 www.lucky-day-uk.com +0.0.0.0 www.mac.com-w.net +0.0.0.0 www.macombdisplayads.com +0.0.0.0 www.market-buster.com +0.0.0.0 www.marketing-rewardpath.com +0.0.0.0 www.mastertracks.be +0.0.0.0 www.maxonclick.com +0.0.0.0 www.mb01.com +0.0.0.0 www.media-motor.com +0.0.0.0 www.media2.travelzoo.com +0.0.0.0 www.medical-offer.com +0.0.0.0 www.medical-rewardpath.com +0.0.0.0 www.merchantapp.com +0.0.0.0 www.merlin.co.il +0.0.0.0 www.methodcasino2015.com +0.0.0.0 www.methode-binaire.com +0.0.0.0 www.mgid.com +0.0.0.0 www.mightymagoo.com +0.0.0.0 www.mijnbladopdemat.nl +0.0.0.0 www.mktg-offer.com +0.0.0.0 www.mlntracker.com +0.0.0.0 www.mochibot.com +0.0.0.0 www.morefreecamsecrets.com +0.0.0.0 www.morevisits.info +0.0.0.0 www.mp3playersource.com +0.0.0.0 www.mpression.net +0.0.0.0 www.my-reward-channel.com +0.0.0.0 www.my-rewardsvault.com +0.0.0.0 www.my-stats.com +0.0.0.0 www.myadsl.co.za +0.0.0.0 www.myaffiliateprogram.com +0.0.0.0 www.myairbridge.com +0.0.0.0 www.mycashback.co.uk +0.0.0.0 www.mycelloffer.com +0.0.0.0 www.mychoicerewards.com +0.0.0.0 www.myexclusiverewards.com +0.0.0.0 www.myfreedinner.com +0.0.0.0 www.myfreegifts.co.uk +0.0.0.0 www.myfreemp3player.com +0.0.0.0 www.mygiftcardcenter.com +0.0.0.0 www.mygreatrewards.com +0.0.0.0 www.myoffertracking.com +0.0.0.0 www.myseostats.com +0.0.0.0 www.myuitm.com +0.0.0.0 www.myusersonline.com +0.0.0.0 www.na47.com +0.0.0.0 www.nakhit.com +0.0.0.0 www.nationalissuepanel.com +0.0.0.0 www.nationalsurveypanel.com +0.0.0.0 www.nctracking.com +0.0.0.0 www.nearbyad.com +0.0.0.0 www.needadvertising.com +0.0.0.0 www.neptuneads.com +0.0.0.0 www.netpalnow.com +0.0.0.0 www.netpaloffers.net +0.0.0.0 www.news6health.com +0.0.0.0 www.newssourceoftoday.com +0.0.0.0 www.nextlnk7.com +0.0.0.0 www.nospartenaires.com +0.0.0.0 www.nothing-but-value.com +0.0.0.0 www.nubijlage.nl +0.0.0.0 www.nutaku.com +0.0.0.0 www.nysubwayoffer.com +0.0.0.0 www.offerx.co.uk +0.0.0.0 www.oinadserve.com +0.0.0.0 www.onclicktop.com +0.0.0.0 www.onlinebestoffers.net +0.0.0.0 www.ontheweb.com +0.0.0.0 www.opendownload.de +0.0.0.0 www.openload.de +0.0.0.0 www.optiad.net +0.0.0.0 www.paperg.com +0.0.0.0 www.parsads.com +0.0.0.0 www.partner.googleadservices.com +0.0.0.0 www.partycasino.com +0.0.0.0 www.pathforpoints.com +0.0.0.0 www.paypopup.com +0.0.0.0 www.peachy18.com +0.0.0.0 www.people-choice-sites.com +0.0.0.0 www.persgroepadvertising.nl +0.0.0.0 www.personalcare-offer.com +0.0.0.0 www.personalcashbailout.com +0.0.0.0 www.pfhsystem.com +0.0.0.0 www.phoenixads.co.in +0.0.0.0 www.phorm.com +0.0.0.0 www.pick-savings.com +0.0.0.0 www.placelocal.com +0.0.0.0 www.plasmatv4free.com +0.0.0.0 www.plasmatvreward.com +0.0.0.0 www.politicalopinionsurvey.com +0.0.0.0 www.polskasupermarkecie.website +0.0.0.0 www.poponclick.com +0.0.0.0 www.popupad.net +0.0.0.0 www.popupdomination.com +0.0.0.0 www.popuptraffic.com +0.0.0.0 www.postmasterbannernet.com +0.0.0.0 www.postmasterdirect.com +0.0.0.0 www.postnewsads.com +0.0.0.0 www.predictivadnetwork.com +0.0.0.0 www.premium-reward-club.com +0.0.0.0 www.premiumholidayoffers.com +0.0.0.0 www.premiumproductsonline.com +0.0.0.0 www.prizes.co.uk +0.0.0.0 www.pro-partners.nl +0.0.0.0 www.probabilidades.net +0.0.0.0 www.productopinionpanel.com +0.0.0.0 www.productresearchpanel.com +0.0.0.0 www.producttestpanel.com +0.0.0.0 www.projectwonderful.com +0.0.0.0 www.psclicks.com +0.0.0.0 www.pubdirecte.com +0.0.0.0 www.pureadexchange.com +0.0.0.0 www.purredheanb.online +0.0.0.0 www.qitrck.com +0.0.0.0 www.quickbrowsersearch.com +0.0.0.0 www.quickcash-system.com +0.0.0.0 www.radiate.com +0.0.0.0 www.rankyou.com +0.0.0.0 www.ravel-rewardpath.com +0.0.0.0 www.recreation-leisure-rewardpath.com +0.0.0.0 www.redactiepartners.nl +0.0.0.0 www.regflow.com +0.0.0.0 www.registrarads.com +0.0.0.0 www.reklam3.net +0.0.0.0 www.reklamzadserver.com +0.0.0.0 www.resolvingserver.com +0.0.0.0 www.rewardblvd.com +0.0.0.0 www.rewardhotspot.com +0.0.0.0 www.rewardsflow.com +0.0.0.0 www.rhydel.site +0.0.0.0 www.ringtonepartner.com +0.0.0.0 www.romepartners.com +0.0.0.0 www.roulettebotplus.com +0.0.0.0 www.rovion.com +0.0.0.0 www.rscounter10.com +0.0.0.0 www.rtcode.com +0.0.0.0 www.rubyfortune.com +0.0.0.0 www.rwpads.net +0.0.0.0 www.sa44.net +0.0.0.0 www.safenetdir.com +0.0.0.0 www.safesoftware182.com +0.0.0.0 www.sagent.io +0.0.0.0 www.salesonline.ie +0.0.0.0 www.sanoma-adverteren.nl +0.0.0.0 www.save-plan.com +0.0.0.0 www.savings-specials.com +0.0.0.0 www.savings-time.com +0.0.0.0 www.sayfabulunamadi.com +0.0.0.0 www.scoremygift.com +0.0.0.0 www.screen-mates.com +0.0.0.0 www.searchwe.com +0.0.0.0 www.seasonalsamplerspecials.com +0.0.0.0 www.securecontactinfo.com +0.0.0.0 www.securerunner.com +0.0.0.0 www.servedby.advertising.com +0.0.0.0 www.sexadvertentiesite.nl +0.0.0.0 www.sexpartnerx.com +0.0.0.0 www.sexsponsors.com +0.0.0.0 www.share-server.com +0.0.0.0 www.shareasale.com +0.0.0.0 www.shc-rebates.com +0.0.0.0 www.shopperpromotions.com +0.0.0.0 www.shopping-offer.com +0.0.0.0 www.shoppingjobshere.com +0.0.0.0 www.shoppingminds.net +0.0.0.0 www.shoppingsiterewards.com +0.0.0.0 www.shops-malls-rewardpath.com +0.0.0.0 www.shoptosaveenergy.com +0.0.0.0 www.simpli.fi +0.0.0.0 www.sizzle-savings.com +0.0.0.0 www.smart-scripts.com +0.0.0.0 www.smarttargetting.com +0.0.0.0 www.smichovbike.cz +0.0.0.0 www.smokersopinionpoll.com +0.0.0.0 www.smspop.com +0.0.0.0 www.sochr.com +0.0.0.0 www.sociallypublish.com +0.0.0.0 www.soongu.info +0.0.0.0 www.specialgiftrewards.com +0.0.0.0 www.specialonlinegifts.com +0.0.0.0 www.specials-rewardpath.com +0.0.0.0 www.speedboink.com +0.0.0.0 www.speedyclick.com +0.0.0.0 www.spinbox.com +0.0.0.0 www.sponsorads.de +0.0.0.0 www.sponsoradulto.com +0.0.0.0 www.sports-bonuspath.com +0.0.0.0 www.sports-fitness-rewardpath.com +0.0.0.0 www.sports-offer.com +0.0.0.0 www.sports-offer.net +0.0.0.0 www.sports-premiumblvd.com +0.0.0.0 www.sq2trk2.com +0.0.0.0 www.star-advertising.com +0.0.0.0 www.startnewtab.com +0.0.0.0 www.subsitesadserver.co.uk +0.0.0.0 www.sudokuwhiz.com +0.0.0.0 www.superinterstitial.com +0.0.0.0 www.supremeadsonline.com +0.0.0.0 www.surplus-suppliers.com +0.0.0.0 www.sweetsforfree.com +0.0.0.0 www.symbiosting.com +0.0.0.0 www.syncaccess.net +0.0.0.0 www.system-live-media.cz +0.0.0.0 www.tao123.com +0.0.0.0 www.tcimg.com +0.0.0.0 www.terraclicks.com +0.0.0.0 www.text-link-ads.com +0.0.0.0 www.textbanners.net +0.0.0.0 www.textsrv.com +0.0.0.0 www.tgpmanager.com +0.0.0.0 www.thatrendsystem.com +0.0.0.0 www.the-binary-options-guide.com +0.0.0.0 www.the-binary-theorem.com +0.0.0.0 www.the-path-gateway.com +0.0.0.0 www.the-smart-stop.com +0.0.0.0 www.theprofitsmaker.net +0.0.0.0 www.thetraderinpajamas.com +0.0.0.0 www.theuseful.com +0.0.0.0 www.theuseful.net +0.0.0.0 www.thewaycloud.com +0.0.0.0 www.thinktarget.com +0.0.0.0 www.thinlaptoprewards.com +0.0.0.0 www.thoughtfully-free.com +0.0.0.0 www.thruport.com +0.0.0.0 www.tons-to-see.com +0.0.0.0 www.top20free.com +0.0.0.0 www.topbrandrewards.com +0.0.0.0 www.topconsumergifts.com +0.0.0.0 www.topdemaroc.com +0.0.0.0 www.toy-offer.com +0.0.0.0 www.toy-offer.net +0.0.0.0 www.tqlkg.com +0.0.0.0 www.track2cash.com +0.0.0.0 www.trackadvertising.net +0.0.0.0 www.tradeadexchange.com +0.0.0.0 www.tradem.com +0.0.0.0 www.trafficnetworkads24.com +0.0.0.0 www.trafficrevenue.net +0.0.0.0 www.traffictrader.net +0.0.0.0 www.traffictraders.com +0.0.0.0 www.trafsearchonline.com +0.0.0.0 www.traktrafficflow.com +0.0.0.0 www.traktum.com +0.0.0.0 www.travel-leisure-bonuspath.com +0.0.0.0 www.travel-leisure-premiumblvd.com +0.0.0.0 www.traveladvertising.com +0.0.0.0 www.traveller-offer.com +0.0.0.0 www.traveller-offer.net +0.0.0.0 www.travelncs.com +0.0.0.0 www.treeloot.com +0.0.0.0 www.trendnews.com +0.0.0.0 www.trendsonline.biz +0.0.0.0 www.trendsonline.me +0.0.0.0 www.trendsonline.mobi +0.0.0.0 www.trkfl.com +0.0.0.0 www.trndsys.mobi +0.0.0.0 www.ttnet.yandex.com.tr +0.0.0.0 www.turn.com +0.0.0.0 www.tutop.com +0.0.0.0 www.tuttosessogratis.org +0.0.0.0 www.ukbanners.com +0.0.0.0 www.uleadstrk.com +0.0.0.0 www.ultimatefashiongifts.com +0.0.0.0 www.uniqebrokeroffers.com +0.0.0.0 www.uproar.com +0.0.0.0 www.urdoot.win +0.0.0.0 www.us-choicevalue.com +0.0.0.0 www.us-topsites.com +0.0.0.0 www.usatravel-specials.com +0.0.0.0 www.usatravel-specials.net +0.0.0.0 www.usemax.de +0.0.0.0 www.utarget.co.uk +0.0.0.0 www.valueclick.com +0.0.0.0 www.via22.net +0.0.0.0 www.vibrantmedia.com +0.0.0.0 www.video-game-rewards-central.com +0.0.0.0 www.videogamerewardscentral.com +0.0.0.0 www.videohube.eu +0.0.0.0 www.videomediagroep.nl +0.0.0.0 www.view4cash.de +0.0.0.0 www.vipromoffers.com +0.0.0.0 www.virtumundo.com +0.0.0.0 www.vmcsatellite.com +0.0.0.0 www.voucher-for-you.online +0.0.0.0 www.w.nolimit-video.com +0.0.0.0 www.wdm29.com +0.0.0.0 www.webcashvideos.com +0.0.0.0 www.webcompteur.com +0.0.0.0 www.webservices-rewardpath.com +0.0.0.0 www.websitepromoten.be +0.0.0.0 www.websponsors.com +0.0.0.0 www.webtrekk.net +0.0.0.0 www.wegetpaid.net +0.0.0.0 www.werkenbijliones.nl +0.0.0.0 www.westreclameadvies.nl +0.0.0.0 www.whatuwhatuwhatuwant.com +0.0.0.0 www.widespace.com +0.0.0.0 www.widgetbucks.com +0.0.0.0 www.wigetmedia.com +0.0.0.0 www.williamhill.es +0.0.0.0 www.windaily.com +0.0.0.0 www.winnerschoiceservices.com +0.0.0.0 www.wordplaywhiz.com +0.0.0.0 www.work-offer.com +0.0.0.0 www.worry-free-savings.com +0.0.0.0 www.wppluginspro.com +0.0.0.0 www.wtp101.com +0.0.0.0 www.xaxis.com +0.0.0.0 www.xbn.ru +0.0.0.0 www.yceml.net +0.0.0.0 www.yibaruxet.cn +0.0.0.0 www.yieldmanager.net +0.0.0.0 www.yieldpartners.com +0.0.0.0 www.youf1le.com +0.0.0.0 www.youfck.com +0.0.0.0 www.youfileisoft.com +0.0.0.0 www.your-gift-zone.com +0.0.0.0 www.yourdvdplayer.com +0.0.0.0 www.yourfreegascard.com +0.0.0.0 www.yourgascards.com +0.0.0.0 www.yourgiftrewards.com +0.0.0.0 www.yourgiftzone.com +0.0.0.0 www.yourhandytips.com +0.0.0.0 www.yourhotgiftzone.com +0.0.0.0 www.youripad4free.com +0.0.0.0 www.yourrewardzone.com +0.0.0.0 www.yoursmartrewards.com +0.0.0.0 www.zbippirad.info +0.0.0.0 www.zemgo.com +0.0.0.0 www.zevents.com +0.0.0.0 www.zlothonline.info +0.0.0.0 www.zytpirwai.net +0.0.0.0 www1.ad.tomshardware.com +0.0.0.0 www1.adireland.com +0.0.0.0 www1.bannerspace.com +0.0.0.0 www1.belboon.de +0.0.0.0 www1.clicktorrent.info +0.0.0.0 www1.mpnrs.com +0.0.0.0 www1.popinads.com +0.0.0.0 www1.safenyplanet.in +0.0.0.0 www1.vip.sc9.admob.com +0.0.0.0 www1.xmediaserve.com +0.0.0.0 www1.zapadserver1.com +0.0.0.0 www10.ad.tomshardware.com +0.0.0.0 www10.glam.com +0.0.0.0 www10.indiads.com +0.0.0.0 www10.paypopup.com +0.0.0.0 www11.ad.tomshardware.com +0.0.0.0 www12.ad.tomshardware.com +0.0.0.0 www12.glam.com +0.0.0.0 www123.glam.com +0.0.0.0 www13.ad.tomshardware.com +0.0.0.0 www13.glam.com +0.0.0.0 www14.ad.tomshardware.com +0.0.0.0 www14.smartadserver.com +0.0.0.0 www15.ad.tomshardware.com +0.0.0.0 www17.glam.com +0.0.0.0 www18.glam.com +0.0.0.0 www2.ad.tomshardware.com +0.0.0.0 www2.adireland.com +0.0.0.0 www2.adserverpub.com +0.0.0.0 www2.bannerspace.com +0.0.0.0 www2.glam.com +0.0.0.0 www2.kampanyatakip.net +0.0.0.0 www2.pubdirecte.com +0.0.0.0 www2.zapadserver1.com +0.0.0.0 www210.paypopup.com +0.0.0.0 www211.paypopup.com +0.0.0.0 www212.paypopup.com +0.0.0.0 www213.paypopup.com +0.0.0.0 www24.glam.com +0.0.0.0 www24a.glam.com +0.0.0.0 www25.glam.com +0.0.0.0 www25a.glam.com +0.0.0.0 www3.ad.tomshardware.com +0.0.0.0 www3.addthis.com +0.0.0.0 www3.adireland.com +0.0.0.0 www3.bannerspace.com +0.0.0.0 www3.game-advertising-online.com +0.0.0.0 www3.haberturk.com +0.0.0.0 www3.ihaberadserver.com +0.0.0.0 www3.kampanyatakip.net +0.0.0.0 www3.oyunstar.com +0.0.0.0 www3.webhostingtalk.com +0.0.0.0 www3.zapadserver.com +0.0.0.0 www30.glam.com +0.0.0.0 www30a1-orig.glam.com +0.0.0.0 www30a1.glam.com +0.0.0.0 www30a2-orig.glam.com +0.0.0.0 www30a3-orig.glam.com +0.0.0.0 www30a3.glam.com +0.0.0.0 www30a7.glam.com +0.0.0.0 www30l2.glam.com +0.0.0.0 www30t1-orig.glam.com +0.0.0.0 www35f.glam.com +0.0.0.0 www35jm.glam.com +0.0.0.0 www35t.glam.com +0.0.0.0 www4.ad.tomshardware.com +0.0.0.0 www4.bannerspace.com +0.0.0.0 www4.glam.com +0.0.0.0 www4.kampanyatakip.net +0.0.0.0 www5.ad.tomshardware.com +0.0.0.0 www5.bannerspace.com +0.0.0.0 www5.kampanyatakip.net +0.0.0.0 www5.mackolik1.com +0.0.0.0 www6.ad.tomshardware.com +0.0.0.0 www6.bannerspace.com +0.0.0.0 www6.kampanyatakip.net +0.0.0.0 www7.ad.tomshardware.com +0.0.0.0 www7.bannerspace.com +0.0.0.0 www7.kampanyatakip.net +0.0.0.0 www74.valueclick.com +0.0.0.0 www8.ad.tomshardware.com +0.0.0.0 www8.bannerspace.com +0.0.0.0 www81.valueclick.com +0.0.0.0 www9.ad.tomshardware.com +0.0.0.0 www9.paypopup.com +0.0.0.0 wwww.8cr.purredheanb.online +0.0.0.0 x.admob.com +0.0.0.0 x.azjmp.com +0.0.0.0 x.iasrv.com +0.0.0.0 x.interia.pl +0.0.0.0 x.mochiads.com +0.0.0.0 x65zz.popularprizes.8981275.com +0.0.0.0 x86adserve006.adtech.de +0.0.0.0 xads.zedo.com +0.0.0.0 xaxis.com +0.0.0.0 xch.smrtgs.com +0.0.0.0 xkygmtrrjalx.com +0.0.0.0 xlivehost.com +0.0.0.0 xlonhcld.xlontech.net +0.0.0.0 xml.ad-maven.com +0.0.0.0 xml.adservme.com +0.0.0.0 xml.adtech.de +0.0.0.0 xml.adtech.fr +0.0.0.0 xml.adtech.us +0.0.0.0 xml.click9.com +0.0.0.0 xmlheads.com +0.0.0.0 xpantivirus.com +0.0.0.0 xpcs.ads.yahoo.com +0.0.0.0 xstatic.nk-net.pl +0.0.0.0 xsztfrlkphqy.com +0.0.0.0 y.admob.com +0.0.0.0 y.cdn.adblade.com +0.0.0.0 yepdigital.adk2x.com +0.0.0.0 yhit.press +0.0.0.0 yie4zooseif.info +0.0.0.0 yieldmanagement.adbooth.net +0.0.0.0 yllix.com +0.0.0.0 ym.adnxs.com +0.0.0.0 yodleeinc.tt.omtrdc.net +0.0.0.0 yotube.com +0.0.0.0 youcanoptin.com +0.0.0.0 youcanoptin.net +0.0.0.0 youcanoptin.org +0.0.0.0 youfck.com +0.0.0.0 your-free-iphone.com +0.0.0.0 your-gift-zone.com +0.0.0.0 your.dailytopdealz.com +0.0.0.0 yourdvdplayer.com +0.0.0.0 yourfreegascard.com +0.0.0.0 yourgascards.com +0.0.0.0 yourgiftrewards.com +0.0.0.0 yourgiftzone.com +0.0.0.0 yourhandytips.com +0.0.0.0 yourhotgiftzone.com +0.0.0.0 youripad4free.com +0.0.0.0 yourrewardzone.com +0.0.0.0 yoursmartrewards.com +0.0.0.0 ypn-js.overture.com +0.0.0.0 ysiu.freenation.com +0.0.0.0 ytaahg.vo.llnwd.net +0.0.0.0 yumenetworks.com +0.0.0.0 yx-in-f108.1e100.net +0.0.0.0 z.admob.com +0.0.0.0 z.blogads.com +0.0.0.0 z.ceotrk.com +0.0.0.0 z.moatads.com +0.0.0.0 z1.adserver.com +0.0.0.0 za1.sierra-fox.com +0.0.0.0 zads.zedo.com +0.0.0.0 zapadserver1.com +0.0.0.0 zc1.delta-boa.com +0.0.0.0 zc1.zeroredirect11.com +0.0.0.0 zdads.e-media.com +0.0.0.0 zeevex-online.com +0.0.0.0 zemgo.com +0.0.0.0 zeroredirect3.com +0.0.0.0 zeroredirect4.com +0.0.0.0 zevents.com +0.0.0.0 zhalehziba.com +0.0.0.0 zl1.bravo-deg.com +0.0.0.0 zlothonline.info +0.0.0.0 zu1.november-lax.com +0.0.0.0 zuzzer5.com +0.0.0.0 ct1.addthis.com +0.0.0.0 cya2.net +0.0.0.0 i.ligatus.com +0.0.0.0 images.revtrax.com +0.0.0.0 shorte.st +0.0.0.0 src.kitcode.net +0.0.0.0 stat.ringier.cz +0.0.0.0 ar.hao123.com +0.0.0.0 irs01.net +0.0.0.0 kiks.yandex.ru +0.0.0.0 simg.sinajs.cn +0.0.0.0 tv.sohu.com +0.0.0.0 y3.ifengimg.com +0.0.0.0 in.yimg.com +0.0.0.0 sg.yimg.com +0.0.0.0 uk.i1.yimg.com +0.0.0.0 us.b1.yimg.com +0.0.0.0 us.c1.yimg.com +0.0.0.0 us.d1.yimg.com +0.0.0.0 us.e1.yimg.com +0.0.0.0 us.f1.yimg.com +0.0.0.0 us.g1.yimg.com +0.0.0.0 us.h1.yimg.com +0.0.0.0 us.j1.yimg.com +0.0.0.0 us.k1.yimg.com +0.0.0.0 us.l1.yimg.com +0.0.0.0 us.m1.yimg.com +0.0.0.0 us.n1.yimg.com +0.0.0.0 us.o1.yimg.com +0.0.0.0 us.p1.yimg.com +0.0.0.0 us.q1.yimg.com +0.0.0.0 us.r1.yimg.com +0.0.0.0 us.s1.yimg.com +0.0.0.0 us.t1.yimg.com +0.0.0.0 us.u1.yimg.com +0.0.0.0 us.v1.yimg.com +0.0.0.0 us.w1.yimg.com +0.0.0.0 us.x1.yimg.com +0.0.0.0 us.y1.yimg.com +0.0.0.0 us.z1.yimg.com +0.0.0.0 1cgi.hitbox.com +0.0.0.0 2cgi.hitbox.com +0.0.0.0 adminec1.hitbox.com +0.0.0.0 ads.hitbox.com +0.0.0.0 ag1.hitbox.com +0.0.0.0 ahbn1.hitbox.com +0.0.0.0 ahbn2.hitbox.com +0.0.0.0 ahbn3.hitbox.com +0.0.0.0 ahbn4.hitbox.com +0.0.0.0 ai.hitbox.com +0.0.0.0 aibg.hitbox.com +0.0.0.0 aibl.hitbox.com +0.0.0.0 aics.hitbox.com +0.0.0.0 aiui.hitbox.com +0.0.0.0 bigip1.hitbox.com +0.0.0.0 bigip2.hitbox.com +0.0.0.0 blowfish.hitbox.com +0.0.0.0 cdb.hitbox.com +0.0.0.0 cgi.hitbox.com +0.0.0.0 counter.hitbox.com +0.0.0.0 counter2.hitbox.com +0.0.0.0 dev.hitbox.com +0.0.0.0 dev101.hitbox.com +0.0.0.0 dev102.hitbox.com +0.0.0.0 dev103.hitbox.com +0.0.0.0 download.hitbox.com +0.0.0.0 ec1.hitbox.com +0.0.0.0 ehg-247internet.hitbox.com +0.0.0.0 ehg-accuweather.hitbox.com +0.0.0.0 ehg-acdsystems.hitbox.com +0.0.0.0 ehg-adeptscience.hitbox.com +0.0.0.0 ehg-affinitynet.hitbox.com +0.0.0.0 ehg-aha.hitbox.com +0.0.0.0 ehg-amerix.hitbox.com +0.0.0.0 ehg-apcc.hitbox.com +0.0.0.0 ehg-associatenewmedia.hitbox.com +0.0.0.0 ehg-ati.hitbox.com +0.0.0.0 ehg-attenza.hitbox.com +0.0.0.0 ehg-autodesk.hitbox.com +0.0.0.0 ehg-baa.hitbox.com +0.0.0.0 ehg-backweb.hitbox.com +0.0.0.0 ehg-bestbuy.hitbox.com +0.0.0.0 ehg-bizjournals.hitbox.com +0.0.0.0 ehg-bmwna.hitbox.com +0.0.0.0 ehg-boschsiemens.hitbox.com +0.0.0.0 ehg-bskyb.hitbox.com +0.0.0.0 ehg-cafepress.hitbox.com +0.0.0.0 ehg-careerbuilder.hitbox.com +0.0.0.0 ehg-cbc.hitbox.com +0.0.0.0 ehg-cbs.hitbox.com +0.0.0.0 ehg-cbsradio.hitbox.com +0.0.0.0 ehg-cedarpoint.hitbox.com +0.0.0.0 ehg-clearchannel.hitbox.com +0.0.0.0 ehg-closetmaid.hitbox.com +0.0.0.0 ehg-commjun.hitbox.com +0.0.0.0 ehg-communityconnect.hitbox.com +0.0.0.0 ehg-communityconnet.hitbox.com +0.0.0.0 ehg-comscore.hitbox.com +0.0.0.0 ehg-corusentertainment.hitbox.com +0.0.0.0 ehg-coverityinc.hitbox.com +0.0.0.0 ehg-crain.hitbox.com +0.0.0.0 ehg-ctv.hitbox.com +0.0.0.0 ehg-cygnusbm.hitbox.com +0.0.0.0 ehg-datamonitor.hitbox.com +0.0.0.0 ehg-dig.hitbox.com +0.0.0.0 ehg-digg.hitbox.com +0.0.0.0 ehg-eckounlimited.hitbox.com +0.0.0.0 ehg-esa.hitbox.com +0.0.0.0 ehg-espn.hitbox.com +0.0.0.0 ehg-fifa.hitbox.com +0.0.0.0 ehg-findlaw.hitbox.com +0.0.0.0 ehg-foundation.hitbox.com +0.0.0.0 ehg-foxsports.hitbox.com +0.0.0.0 ehg-futurepub.hitbox.com +0.0.0.0 ehg-gamedaily.hitbox.com +0.0.0.0 ehg-gamespot.hitbox.com +0.0.0.0 ehg-gatehousemedia.hitbox.com +0.0.0.0 ehg-gatehoussmedia.hitbox.com +0.0.0.0 ehg-glam.hitbox.com +0.0.0.0 ehg-groceryworks.hitbox.com +0.0.0.0 ehg-groupernetworks.hitbox.com +0.0.0.0 ehg-guardian.hitbox.com +0.0.0.0 ehg-hasbro.hitbox.com +0.0.0.0 ehg-hellodirect.hitbox.com +0.0.0.0 ehg-himedia.hitbox.com +0.0.0.0 ehg-hitent.hitbox.com +0.0.0.0 ehg-hollywood.hitbox.com +0.0.0.0 ehg-idg.hitbox.com +0.0.0.0 ehg-idgentertainment.hitbox.com +0.0.0.0 ehg-ifilm.hitbox.com +0.0.0.0 ehg-ignitemedia.hitbox.com +0.0.0.0 ehg-intel.hitbox.com +0.0.0.0 ehg-ittoolbox.hitbox.com +0.0.0.0 ehg-itworldcanada.hitbox.com +0.0.0.0 ehg-kingstontechnology.hitbox.com +0.0.0.0 ehg-knightridder.hitbox.com +0.0.0.0 ehg-learningco.hitbox.com +0.0.0.0 ehg-legonewyorkinc.hitbox.com +0.0.0.0 ehg-liveperson.hitbox.com +0.0.0.0 ehg-macpublishingllc.hitbox.com +0.0.0.0 ehg-macromedia.hitbox.com +0.0.0.0 ehg-magicalia.hitbox.com +0.0.0.0 ehg-maplesoft.hitbox.com +0.0.0.0 ehg-mgnlimited.hitbox.com +0.0.0.0 ehg-mindshare.hitbox.com +0.0.0.0 ehg-mtv.hitbox.com +0.0.0.0 ehg-mybc.hitbox.com +0.0.0.0 ehg-newarkinone.hitbox.com.hitbox.com +0.0.0.0 ehg-newegg.hitbox.com +0.0.0.0 ehg-newscientist.hitbox.com +0.0.0.0 ehg-newsinternational.hitbox.com +0.0.0.0 ehg-nokiafin.hitbox.com +0.0.0.0 ehg-novell.hitbox.com +0.0.0.0 ehg-nvidia.hitbox.com +0.0.0.0 ehg-oreilley.hitbox.com +0.0.0.0 ehg-oreilly.hitbox.com +0.0.0.0 ehg-pacifictheatres.hitbox.com +0.0.0.0 ehg-pennwell.hitbox.com +0.0.0.0 ehg-peoplesoft.hitbox.com +0.0.0.0 ehg-philipsvheusen.hitbox.com +0.0.0.0 ehg-pizzahut.hitbox.com +0.0.0.0 ehg-playboy.hitbox.com +0.0.0.0 ehg-presentigsolutions.hitbox.com +0.0.0.0 ehg-qualcomm.hitbox.com +0.0.0.0 ehg-quantumcorp.hitbox.com +0.0.0.0 ehg-randomhouse.hitbox.com +0.0.0.0 ehg-redherring.hitbox.com +0.0.0.0 ehg-register.hitbox.com +0.0.0.0 ehg-researchinmotion.hitbox.com +0.0.0.0 ehg-rfa.hitbox.com +0.0.0.0 ehg-rodale.hitbox.com +0.0.0.0 ehg-salesforce.hitbox.com +0.0.0.0 ehg-salonmedia.hitbox.com +0.0.0.0 ehg-samsungusa.hitbox.com +0.0.0.0 ehg-seca.hitbox.com +0.0.0.0 ehg-shoppersdrugmart.hitbox.com +0.0.0.0 ehg-sonybssc.hitbox.com +0.0.0.0 ehg-sonycomputer.hitbox.com +0.0.0.0 ehg-sonyelec.hitbox.com +0.0.0.0 ehg-sonymusic.hitbox.com +0.0.0.0 ehg-sonyny.hitbox.com +0.0.0.0 ehg-space.hitbox.com +0.0.0.0 ehg-sportsline.hitbox.com +0.0.0.0 ehg-streamload.hitbox.com +0.0.0.0 ehg-superpages.hitbox.com +0.0.0.0 ehg-techtarget.hitbox.com +0.0.0.0 ehg-tfl.hitbox.com +0.0.0.0 ehg-thefirstchurchchrist.hitbox.com +0.0.0.0 ehg-tigerdirect.hitbox.com +0.0.0.0 ehg-tigerdirect2.hitbox.com +0.0.0.0 ehg-topps.hitbox.com +0.0.0.0 ehg-tribute.hitbox.com +0.0.0.0 ehg-tumbleweed.hitbox.com +0.0.0.0 ehg-ubisoft.hitbox.com +0.0.0.0 ehg-uniontrib.hitbox.com +0.0.0.0 ehg-usnewsworldreport.hitbox.com +0.0.0.0 ehg-verizoncommunications.hitbox.com +0.0.0.0 ehg-viacom.hitbox.com +0.0.0.0 ehg-vmware.hitbox.com +0.0.0.0 ehg-vonage.hitbox.com +0.0.0.0 ehg-wachovia.hitbox.com +0.0.0.0 ehg-wacomtechnology.hitbox.com +0.0.0.0 ehg-warner-brothers.hitbox.com +0.0.0.0 ehg-wizardsofthecoast.hitbox.com.hitbox.com +0.0.0.0 ehg-womanswallstreet.hitbox.com +0.0.0.0 ehg-wss.hitbox.com +0.0.0.0 ehg-xxolympicwintergames.hitbox.com +0.0.0.0 ehg-yellowpages.hitbox.com +0.0.0.0 ehg-youtube.hitbox.com +0.0.0.0 ehg.commjun.hitbox.com +0.0.0.0 ehg.hitbox.com +0.0.0.0 ehg.mindshare.hitbox.com +0.0.0.0 ejs.hitbox.com +0.0.0.0 enterprise-admin.hitbox.com +0.0.0.0 enterprise.hitbox.com +0.0.0.0 esg.hitbox.com +0.0.0.0 evwr.hitbox.com +0.0.0.0 get.hitbox.com +0.0.0.0 hg1.hitbox.com +0.0.0.0 hg10.hitbox.com +0.0.0.0 hg11.hitbox.com +0.0.0.0 hg12.hitbox.com +0.0.0.0 hg13.hitbox.com +0.0.0.0 hg14.hitbox.com +0.0.0.0 hg15.hitbox.com +0.0.0.0 hg16.hitbox.com +0.0.0.0 hg17.hitbox.com +0.0.0.0 hg2.hitbox.com +0.0.0.0 hg3.hitbox.com +0.0.0.0 hg4.hitbox.com +0.0.0.0 hg5.hitbox.com +0.0.0.0 hg6.hitbox.com +0.0.0.0 hg6a.hitbox.com +0.0.0.0 hg7.hitbox.com +0.0.0.0 hg8.hitbox.com +0.0.0.0 hg9.hitbox.com +0.0.0.0 hitboxbenchmarker.com +0.0.0.0 hitboxcentral.com +0.0.0.0 hitboxenterprise.com +0.0.0.0 hitboxwireless.com +0.0.0.0 host6.hitbox.com +0.0.0.0 ias.hitbox.com +0.0.0.0 ias2.hitbox.com +0.0.0.0 ibg.hitbox.com +0.0.0.0 ics.hitbox.com +0.0.0.0 idb.hitbox.com +0.0.0.0 js1.hitbox.com +0.0.0.0 lb.hitbox.com +0.0.0.0 lesbian-erotica.hitbox.com +0.0.0.0 lookup.hitbox.com +0.0.0.0 lookup2.hitbox.com +0.0.0.0 mrtg.hitbox.com +0.0.0.0 myhitbox.com +0.0.0.0 na.hitbox.com +0.0.0.0 narwhal.hitbox.com +0.0.0.0 nei.hitbox.com +0.0.0.0 noc-request.hitbox.com +0.0.0.0 noc.hitbox.com +0.0.0.0 nocboard.hitbox.com +0.0.0.0 ns1.hitbox.com +0.0.0.0 oas.hitbox.com +0.0.0.0 phg.hitbox.com +0.0.0.0 pure.hitbox.com +0.0.0.0 rainbowclub.hitbox.com +0.0.0.0 rd1.hitbox.com +0.0.0.0 reseller.hitbox.com +0.0.0.0 resources.hitbox.com +0.0.0.0 sitesearch.hitbox.com +0.0.0.0 specialtyclub.hitbox.com +0.0.0.0 ss.hitbox.com +0.0.0.0 stage.hitbox.com +0.0.0.0 stage101.hitbox.com +0.0.0.0 stage102.hitbox.com +0.0.0.0 stage103.hitbox.com +0.0.0.0 stage104.hitbox.com +0.0.0.0 stage105.hitbox.com +0.0.0.0 stats.hitbox.com +0.0.0.0 stats2.hitbox.com +0.0.0.0 stats3.hitbox.com +0.0.0.0 switch.hitbox.com +0.0.0.0 switch1.hitbox.com +0.0.0.0 switch10.hitbox.com +0.0.0.0 switch11.hitbox.com +0.0.0.0 switch5.hitbox.com +0.0.0.0 switch6.hitbox.com +0.0.0.0 switch8.hitbox.com +0.0.0.0 switch9.hitbox.com +0.0.0.0 tetra.hitbox.com +0.0.0.0 tools.hitbox.com +0.0.0.0 tools2.hitbox.com +0.0.0.0 toolsa.hitbox.com +0.0.0.0 ts1.hitbox.com +0.0.0.0 ts2.hitbox.com +0.0.0.0 vwr1.hitbox.com +0.0.0.0 vwr2.hitbox.com +0.0.0.0 vwr3.hitbox.com +0.0.0.0 w1.hitbox.com +0.0.0.0 w10.hitbox.com +0.0.0.0 w100.hitbox.com +0.0.0.0 w101.hitbox.com +0.0.0.0 w102.hitbox.com +0.0.0.0 w103.hitbox.com +0.0.0.0 w104.hitbox.com +0.0.0.0 w105.hitbox.com +0.0.0.0 w106.hitbox.com +0.0.0.0 w107.hitbox.com +0.0.0.0 w108.hitbox.com +0.0.0.0 w109.hitbox.com +0.0.0.0 w11.hitbox.com +0.0.0.0 w110.hitbox.com +0.0.0.0 w111.hitbox.com +0.0.0.0 w112.hitbox.com +0.0.0.0 w113.hitbox.com +0.0.0.0 w114.hitbox.com +0.0.0.0 w115.hitbox.com +0.0.0.0 w116.hitbox.com +0.0.0.0 w117.hitbox.com +0.0.0.0 w118.hitbox.com +0.0.0.0 w119.hitbox.com +0.0.0.0 w12.hitbox.com +0.0.0.0 w120.hitbox.com +0.0.0.0 w121.hitbox.com +0.0.0.0 w122.hitbox.com +0.0.0.0 w123.hitbox.com +0.0.0.0 w124.hitbox.com +0.0.0.0 w126.hitbox.com +0.0.0.0 w128.hitbox.com +0.0.0.0 w129.hitbox.com +0.0.0.0 w13.hitbox.com +0.0.0.0 w130.hitbox.com +0.0.0.0 w131.hitbox.com +0.0.0.0 w132.hitbox.com +0.0.0.0 w133.hitbox.com +0.0.0.0 w135.hitbox.com +0.0.0.0 w136.hitbox.com +0.0.0.0 w137.hitbox.com +0.0.0.0 w138.hitbox.com +0.0.0.0 w139.hitbox.com +0.0.0.0 w14.hitbox.com +0.0.0.0 w140.hitbox.com +0.0.0.0 w141.hitbox.com +0.0.0.0 w144.hitbox.com +0.0.0.0 w147.hitbox.com +0.0.0.0 w15.hitbox.com +0.0.0.0 w153.hitbox.com +0.0.0.0 w154.hitbox.com +0.0.0.0 w155.hitbox.com +0.0.0.0 w157.hitbox.com +0.0.0.0 w159.hitbox.com +0.0.0.0 w16.hitbox.com +0.0.0.0 w161.hitbox.com +0.0.0.0 w162.hitbox.com +0.0.0.0 w167.hitbox.com +0.0.0.0 w168.hitbox.com +0.0.0.0 w17.hitbox.com +0.0.0.0 w170.hitbox.com +0.0.0.0 w175.hitbox.com +0.0.0.0 w177.hitbox.com +0.0.0.0 w179.hitbox.com +0.0.0.0 w18.hitbox.com +0.0.0.0 w19.hitbox.com +0.0.0.0 w2.hitbox.com +0.0.0.0 w20.hitbox.com +0.0.0.0 w21.hitbox.com +0.0.0.0 w22.hitbox.com +0.0.0.0 w23.hitbox.com +0.0.0.0 w24.hitbox.com +0.0.0.0 w25.hitbox.com +0.0.0.0 w26.hitbox.com +0.0.0.0 w27.hitbox.com +0.0.0.0 w28.hitbox.com +0.0.0.0 w29.hitbox.com +0.0.0.0 w3.hitbox.com +0.0.0.0 w30.hitbox.com +0.0.0.0 w31.hitbox.com +0.0.0.0 w32.hitbox.com +0.0.0.0 w33.hitbox.com +0.0.0.0 w34.hitbox.com +0.0.0.0 w35.hitbox.com +0.0.0.0 w36.hitbox.com +0.0.0.0 w4.hitbox.com +0.0.0.0 w5.hitbox.com +0.0.0.0 w6.hitbox.com +0.0.0.0 w7.hitbox.com +0.0.0.0 w8.hitbox.com +0.0.0.0 w9.hitbox.com +0.0.0.0 webload101.hitbox.com +0.0.0.0 wss-gw-1.hitbox.com +0.0.0.0 wss-gw-3.hitbox.com +0.0.0.0 wvwr1.hitbox.com +0.0.0.0 ww1.hitbox.com +0.0.0.0 ww2.hitbox.com +0.0.0.0 ww3.hitbox.com +0.0.0.0 wwa.hitbox.com +0.0.0.0 wwb.hitbox.com +0.0.0.0 wwc.hitbox.com +0.0.0.0 wwd.hitbox.com +0.0.0.0 www.ehg-rr.hitbox.com +0.0.0.0 www.hitbox.com +0.0.0.0 www.hitboxwireless.com +0.0.0.0 y2k.hitbox.com +0.0.0.0 yang.hitbox.com +0.0.0.0 ying.hitbox.com +0.0.0.0 w2.extreme-dm.com +0.0.0.0 w3.extreme-dm.com +0.0.0.0 w4.extreme-dm.com +0.0.0.0 w5.extreme-dm.com +0.0.0.0 w6.extreme-dm.com +0.0.0.0 w7.extreme-dm.com +0.0.0.0 w8.extreme-dm.com +0.0.0.0 w9.extreme-dm.com +0.0.0.0 www.extreme-dm.com +0.0.0.0 ap.oasfile.aftenposten.no +0.0.0.0 imagenen1.247realmedia.com +0.0.0.0 oacentral.cepro.com +0.0.0.0 oas-central.east.realmedia.com +0.0.0.0 oas-central.realmedia.com +0.0.0.0 oas.adservingml.com +0.0.0.0 oas.adx.nu +0.0.0.0 oas.aurasports.com +0.0.0.0 oas.dispatch.com +0.0.0.0 oas.greensboro.com +0.0.0.0 oas.guardian.co.uk +0.0.0.0 oas.ibnlive.com +0.0.0.0 oas.lee.net +0.0.0.0 oas.nrjlink.fr +0.0.0.0 oas.nzz.ch +0.0.0.0 oas.portland.com +0.0.0.0 oas.publicitas.ch +0.0.0.0 oas.sciencemag.org +0.0.0.0 oas.signonsandiego.com +0.0.0.0 oas.startribune.com +0.0.0.0 oas.vtsgonline.com +0.0.0.0 oasc03012.247realmedia.com +0.0.0.0 oasc03049.247realmedia.com +0.0.0.0 oasc06006.247realmedia.com +0.0.0.0 oasc08008.247realmedia.com +0.0.0.0 oasc09.247realmedia.com +0.0.0.0 oascentral.123greetings.com +0.0.0.0 oascentral.abclocal.go.com +0.0.0.0 oascentral.adage.com +0.0.0.0 oascentral.adageglobal.com +0.0.0.0 oascentral.aircanada.com +0.0.0.0 oascentral.alanicnewsnet.ca +0.0.0.0 oascentral.alanticnewsnet.ca +0.0.0.0 oascentral.americanheritage.com +0.0.0.0 oascentral.artistdirect.com +0.0.0.0 oascentral.artistirect.com +0.0.0.0 oascentral.askmen.com +0.0.0.0 oascentral.aviationnow.com +0.0.0.0 oascentral.blackenterprises.com +0.0.0.0 oascentral.blogher.org +0.0.0.0 oascentral.bostonherald.com +0.0.0.0 oascentral.bostonphoenix.com +0.0.0.0 oascentral.businessinsider.com +0.0.0.0 oascentral.businessweeks.com +0.0.0.0 oascentral.buy.com +0.0.0.0 oascentral.canadaeast.com +0.0.0.0 oascentral.canadianliving.com +0.0.0.0 oascentral.charleston.net +0.0.0.0 oascentral.chron.com +0.0.0.0 oascentral.citypages.com +0.0.0.0 oascentral.clearchannel.com +0.0.0.0 oascentral.comcast.net +0.0.0.0 oascentral.comics.com +0.0.0.0 oascentral.construction.com +0.0.0.0 oascentral.consumerreports.org +0.0.0.0 oascentral.covers.com +0.0.0.0 oascentral.crainsdetroit.com +0.0.0.0 oascentral.crimelibrary.com +0.0.0.0 oascentral.cybereps.com +0.0.0.0 oascentral.dailybreeze.com +0.0.0.0 oascentral.dailyherald.com +0.0.0.0 oascentral.dilbert.com +0.0.0.0 oascentral.discovery.com +0.0.0.0 oascentral.drphil.com +0.0.0.0 oascentral.eastbayexpress.com +0.0.0.0 oascentral.encyclopedia.com +0.0.0.0 oascentral.fashionmagazine.com +0.0.0.0 oascentral.fayettevillenc.com +0.0.0.0 oascentral.feedroom.com +0.0.0.0 oascentral.forsythnews.com +0.0.0.0 oascentral.foxnews.com +0.0.0.0 oascentral.freedom.com +0.0.0.0 oascentral.g4techtv.com +0.0.0.0 oascentral.ggl.com +0.0.0.0 oascentral.gigex.com +0.0.0.0 oascentral.globalpost.com +0.0.0.0 oascentral.hamptonroads.com +0.0.0.0 oascentral.hamptoroads.com +0.0.0.0 oascentral.hamtoroads.com +0.0.0.0 oascentral.herenb.com +0.0.0.0 oascentral.hollywood.com +0.0.0.0 oascentral.houstonpress.com +0.0.0.0 oascentral.inq7.net +0.0.0.0 oascentral.investors.com +0.0.0.0 oascentral.investorwords.com +0.0.0.0 oascentral.itbusiness.ca +0.0.0.0 oascentral.killsometime.com +0.0.0.0 oascentral.laptopmag.com +0.0.0.0 oascentral.law.com +0.0.0.0 oascentral.laweekly.com +0.0.0.0 oascentral.looksmart.com +0.0.0.0 oascentral.lycos.com +0.0.0.0 oascentral.mailtribune.com +0.0.0.0 oascentral.mayoclinic.com +0.0.0.0 oascentral.medbroadcast.com +0.0.0.0 oascentral.metro.us +0.0.0.0 oascentral.minnpost.com +0.0.0.0 oascentral.mochila.com +0.0.0.0 oascentral.motherjones.com +0.0.0.0 oascentral.nerve.com +0.0.0.0 oascentral.newsmax.com +0.0.0.0 oascentral.nowtoronto.com +0.0.0.0 oascentral.onwisconsin.com +0.0.0.0 oascentral.phoenixnewtimes.com +0.0.0.0 oascentral.phoenixvillenews.com +0.0.0.0 oascentral.pitch.com +0.0.0.0 oascentral.poconorecord.com +0.0.0.0 oascentral.politico.com +0.0.0.0 oascentral.post-gazette.com +0.0.0.0 oascentral.pottsmerc.com +0.0.0.0 oascentral.princetonreview.com +0.0.0.0 oascentral.publicradio.org +0.0.0.0 oascentral.radaronline.com +0.0.0.0 oascentral.rcrnews.com +0.0.0.0 oascentral.redherring.com +0.0.0.0 oascentral.redorbit.com +0.0.0.0 oascentral.redstate.com +0.0.0.0 oascentral.reference.com +0.0.0.0 oascentral.regalinterative.com +0.0.0.0 oascentral.registerguard.com +0.0.0.0 oascentral.registguard.com +0.0.0.0 oascentral.riverfronttimes.com +0.0.0.0 oascentral.sacurrent.com +0.0.0.0 oascentral.salon.com +0.0.0.0 oascentral.santacruzsentinel.com +0.0.0.0 oascentral.sciam.com +0.0.0.0 oascentral.scientificamerican.com +0.0.0.0 oascentral.seacoastonline.com +0.0.0.0 oascentral.seattleweekly.com +0.0.0.0 oascentral.sfgate.com +0.0.0.0 oascentral.sfweekly.com +0.0.0.0 oascentral.sina.com +0.0.0.0 oascentral.sina.com.hk +0.0.0.0 oascentral.sparknotes.com +0.0.0.0 oascentral.sptimes.com +0.0.0.0 oascentral.starbulletin.com +0.0.0.0 oascentral.suntimes.com +0.0.0.0 oascentral.surfline.com +0.0.0.0 oascentral.thechronicleherald.ca +0.0.0.0 oascentral.thehockeynews.com +0.0.0.0 oascentral.thenation.com +0.0.0.0 oascentral.theonion.com +0.0.0.0 oascentral.theonionavclub.com +0.0.0.0 oascentral.thephoenix.com +0.0.0.0 oascentral.thesmokinggun.com +0.0.0.0 oascentral.thespark.com +0.0.0.0 oascentral.tmcnet.com +0.0.0.0 oascentral.tnr.com +0.0.0.0 oascentral.tourismvancouver.com +0.0.0.0 oascentral.townhall.com +0.0.0.0 oascentral.tribe.net +0.0.0.0 oascentral.trutv.com +0.0.0.0 oascentral.upi.com +0.0.0.0 oascentral.urbanspoon.com +0.0.0.0 oascentral.villagevoice.com +0.0.0.0 oascentral.virtualtourist.com +0.0.0.0 oascentral.warcry.com +0.0.0.0 oascentral.washtimes.com +0.0.0.0 oascentral.wciv.com +0.0.0.0 oascentral.westword.com +0.0.0.0 oascentral.where.ca +0.0.0.0 oascentral.wjla.com +0.0.0.0 oascentral.wkrn.com +0.0.0.0 oascentral.wwe.com +0.0.0.0 oascentral.yellowpages.com +0.0.0.0 oascentral.ywlloewpages.ca +0.0.0.0 oascentral.zwire.com +0.0.0.0 oascentralnx.comcast.net +0.0.0.0 oascentreal.adcritic.com +0.0.0.0 oascetral.laweekly.com +0.0.0.0 oasroanoke.com +0.0.0.0 media1.fastclick.net +0.0.0.0 media2.fastclick.net +0.0.0.0 media3.fastclick.net +0.0.0.0 media4.fastclick.net +0.0.0.0 media5.fastclick.net +0.0.0.0 media6.fastclick.net +0.0.0.0 media7.fastclick.net +0.0.0.0 media8.fastclick.net +0.0.0.0 media9.fastclick.net +0.0.0.0 media10.fastclick.net +0.0.0.0 media11.fastclick.net +0.0.0.0 media12.fastclick.net +0.0.0.0 media13.fastclick.net +0.0.0.0 media14.fastclick.net +0.0.0.0 media15.fastclick.net +0.0.0.0 media16.fastclick.net +0.0.0.0 media17.fastclick.net +0.0.0.0 media18.fastclick.net +0.0.0.0 media19.fastclick.net +0.0.0.0 media20.fastclick.net +0.0.0.0 media21.fastclick.net +0.0.0.0 media22.fastclick.net +0.0.0.0 media23.fastclick.net +0.0.0.0 media24.fastclick.net +0.0.0.0 media25.fastclick.net +0.0.0.0 media26.fastclick.net +0.0.0.0 media27.fastclick.net +0.0.0.0 media28.fastclick.net +0.0.0.0 media29.fastclick.net +0.0.0.0 media30.fastclick.net +0.0.0.0 media31.fastclick.net +0.0.0.0 media32.fastclick.net +0.0.0.0 media33.fastclick.net +0.0.0.0 media34.fastclick.net +0.0.0.0 media35.fastclick.net +0.0.0.0 media36.fastclick.net +0.0.0.0 media37.fastclick.net +0.0.0.0 media38.fastclick.net +0.0.0.0 media39.fastclick.net +0.0.0.0 media40.fastclick.net +0.0.0.0 media41.fastclick.net +0.0.0.0 media42.fastclick.net +0.0.0.0 media43.fastclick.net +0.0.0.0 media44.fastclick.net +0.0.0.0 media45.fastclick.net +0.0.0.0 media46.fastclick.net +0.0.0.0 media47.fastclick.net +0.0.0.0 media48.fastclick.net +0.0.0.0 media49.fastclick.net +0.0.0.0 media50.fastclick.net +0.0.0.0 media51.fastclick.net +0.0.0.0 media52.fastclick.net +0.0.0.0 media53.fastclick.net +0.0.0.0 media54.fastclick.net +0.0.0.0 media55.fastclick.net +0.0.0.0 media56.fastclick.net +0.0.0.0 media57.fastclick.net +0.0.0.0 media58.fastclick.net +0.0.0.0 media59.fastclick.net +0.0.0.0 media60.fastclick.net +0.0.0.0 media61.fastclick.net +0.0.0.0 media62.fastclick.net +0.0.0.0 media63.fastclick.net +0.0.0.0 media64.fastclick.net +0.0.0.0 media65.fastclick.net +0.0.0.0 media66.fastclick.net +0.0.0.0 media67.fastclick.net +0.0.0.0 media68.fastclick.net +0.0.0.0 media69.fastclick.net +0.0.0.0 media70.fastclick.net +0.0.0.0 media71.fastclick.net +0.0.0.0 media72.fastclick.net +0.0.0.0 media73.fastclick.net +0.0.0.0 media74.fastclick.net +0.0.0.0 media75.fastclick.net +0.0.0.0 media76.fastclick.net +0.0.0.0 media77.fastclick.net +0.0.0.0 media78.fastclick.net +0.0.0.0 media79.fastclick.net +0.0.0.0 media80.fastclick.net +0.0.0.0 media81.fastclick.net +0.0.0.0 media82.fastclick.net +0.0.0.0 media83.fastclick.net +0.0.0.0 media84.fastclick.net +0.0.0.0 media85.fastclick.net +0.0.0.0 media86.fastclick.net +0.0.0.0 media87.fastclick.net +0.0.0.0 media88.fastclick.net +0.0.0.0 media89.fastclick.net +0.0.0.0 media90.fastclick.net +0.0.0.0 media91.fastclick.net +0.0.0.0 media92.fastclick.net +0.0.0.0 media93.fastclick.net +0.0.0.0 media94.fastclick.net +0.0.0.0 media95.fastclick.net +0.0.0.0 media96.fastclick.net +0.0.0.0 media97.fastclick.net +0.0.0.0 media98.fastclick.net +0.0.0.0 media99.fastclick.net +0.0.0.0 te.about.com +0.0.0.0 te.adlandpro.com +0.0.0.0 te.advance.net +0.0.0.0 te.ap.org +0.0.0.0 te.astrology.com +0.0.0.0 te.audiencematch.net +0.0.0.0 te.belointeractive.com +0.0.0.0 te.boston.com +0.0.0.0 te.businessweek.com +0.0.0.0 te.chicagotribune.com +0.0.0.0 te.chron.com +0.0.0.0 te.cleveland.net +0.0.0.0 te.ctnow.com +0.0.0.0 te.dailycamera.com +0.0.0.0 te.dailypress.com +0.0.0.0 te.dentonrc.com +0.0.0.0 te.greenwichtime.com +0.0.0.0 te.idg.com +0.0.0.0 te.infoworld.com +0.0.0.0 te.ivillage.com +0.0.0.0 te.journalnow.com +0.0.0.0 te.latimes.com +0.0.0.0 te.mcall.com +0.0.0.0 te.mgnetwork.com +0.0.0.0 te.mysanantonio.com +0.0.0.0 te.newsday.com +0.0.0.0 te.nytdigital.com +0.0.0.0 te.orlandosentinel.com +0.0.0.0 te.scripps.com +0.0.0.0 te.scrippsnetworksprivacy.com +0.0.0.0 te.scrippsnewspapersprivacy.com +0.0.0.0 te.sfgate.com +0.0.0.0 te.signonsandiego.com +0.0.0.0 te.stamfordadvocate.com +0.0.0.0 te.sun-sentinel.com +0.0.0.0 te.sunspot.net +0.0.0.0 te.suntimes.com +0.0.0.0 te.tbo.com +0.0.0.0 te.thestar.ca +0.0.0.0 te.thestar.com +0.0.0.0 te.trb.com +0.0.0.0 te.versiontracker.com +0.0.0.0 te.wsls.com +0.0.0.0 24hwebsex.com +0.0.0.0 all-tgp.org +0.0.0.0 fioe.info +0.0.0.0 incestland.com +0.0.0.0 lesview.com +0.0.0.0 searchforit.com +0.0.0.0 www.asiansforu.com +0.0.0.0 www.bangbuddy.com +0.0.0.0 www.datanotary.com +0.0.0.0 www.entercasino.com +0.0.0.0 www.incestdot.com +0.0.0.0 www.incestgold.com +0.0.0.0 www.justhookup.com +0.0.0.0 www.mangayhentai.com +0.0.0.0 www.myluvcrush.ca +0.0.0.0 www.ourfuckbook.com +0.0.0.0 www.realincestvideos.com +0.0.0.0 www.searchforit.com +0.0.0.0 www.searchv.com +0.0.0.0 www.secretosx.com +0.0.0.0 www.seductiveamateurs.com +0.0.0.0 www.smsmovies.net +0.0.0.0 www.wowjs.1www.cn +0.0.0.0 www.xxxnations.com +0.0.0.0 www.xxxnightly.com +0.0.0.0 www.xxxtoolbar.com +0.0.0.0 www.yourfuckbook.com +0.0.0.0 123greetings.com +0.0.0.0 2000greetings.com +0.0.0.0 celebwelove.com +0.0.0.0 ecard4all.com +0.0.0.0 eforu.com +0.0.0.0 freewebcards.com +0.0.0.0 fukkad.com +0.0.0.0 fun-e-cards.com +0.0.0.0 funnyreign.com +0.0.0.0 funsilly.com +0.0.0.0 myfuncards.com +0.0.0.0 www.cool-downloads.com +0.0.0.0 www.cool-downloads.net +0.0.0.0 www.friend-card.com +0.0.0.0 www.friend-cards.com +0.0.0.0 www.friend-cards.net +0.0.0.0 www.friend-greeting.com +0.0.0.0 www.friend-greetings.com +0.0.0.0 www.friend-greetings.net +0.0.0.0 www.friendgreetings.com +0.0.0.0 www.friendgreetings.net +0.0.0.0 www.laugh-mail.com +0.0.0.0 www.laugh-mail.net +0.0.0.0 1und1.ivwbox.de +0.0.0.0 bild.ivwbox.de +0.0.0.0 faz.ivwbox.de +0.0.0.0 kicker.ivwbox.de +0.0.0.0 netzmarkt.ivwbox.de +0.0.0.0 ntv.ivwbox.de +0.0.0.0 onvis.ivwbox.de +0.0.0.0 spiegel.ivwbox.de +0.0.0.0 www.ivwbox.de +0.0.0.0 10pg.scl5fyd.info +0.0.0.0 21jewelry.com +0.0.0.0 24x7.soliday.org +0.0.0.0 2site.com +0.0.0.0 33b.b33r.net +0.0.0.0 48.2mydns.net +0.0.0.0 4allfree.com +0.0.0.0 55.2myip.com +0.0.0.0 6165.rapidforum.com +0.0.0.0 6pg.ryf3hgf.info +0.0.0.0 7x.cc +0.0.0.0 7x7.ruwe.net +0.0.0.0 911.x24hr.com +0.0.0.0 ab.5.p2l.info +0.0.0.0 aboutharrypotter.fasthost.tv +0.0.0.0 aciphex.about-tabs.com +0.0.0.0 actonel.about-tabs.com +0.0.0.0 actos.about-tabs.com +0.0.0.0 acyclovir.1.p2l.info +0.0.0.0 adderall.ourtablets.com +0.0.0.0 adderallxr.freespaces.com +0.0.0.0 adipex.1.p2l.info +0.0.0.0 adipex.24sws.ws +0.0.0.0 adipex.3.p2l.info +0.0.0.0 adipex.4.p2l.info +0.0.0.0 adipex.hut1.ru +0.0.0.0 adipex.ourtablets.com +0.0.0.0 adipex.shengen.ru +0.0.0.0 adipex.t-amo.net +0.0.0.0 adipexp.3xforum.ro +0.0.0.0 adsearch.www1.biz +0.0.0.0 adult.shengen.ru +0.0.0.0 aguileranude.1stok.com +0.0.0.0 ahh-teens.com +0.0.0.0 aid-golf-golfdust-training.tabrays.com +0.0.0.0 air-plane-ticket.beesearch.info +0.0.0.0 airline-ticket.gloses.net +0.0.0.0 ak.5.p2l.info +0.0.0.0 al.5.p2l.info +0.0.0.0 alcohol-treatment.gloses.net +0.0.0.0 all-sex.shengen.ru +0.0.0.0 allegra.1.p2l.info +0.0.0.0 allergy.1.p2l.info +0.0.0.0 alprazolam.ourtablets.com +0.0.0.0 alprazolamonline.findmenow.info +0.0.0.0 alyssamilano.1stok.com +0.0.0.0 alyssamilano.ca.tt +0.0.0.0 alyssamilano.home.sapo.pt +0.0.0.0 amateur-mature-sex.adaltabaza.net +0.0.0.0 ambien.1.p2l.info +0.0.0.0 ambien.3.p2l.info +0.0.0.0 ambien.4.p2l.info +0.0.0.0 ambien.ourtablets.com +0.0.0.0 amoxicillin.ourtablets.com +0.0.0.0 angelinajolie.1stok.com +0.0.0.0 angelinajolie.ca.tt +0.0.0.0 anklets.shengen.ru +0.0.0.0 annanicolesannanicolesmith.ca.tt +0.0.0.0 annanicolesmith.1stok.com +0.0.0.0 antidepressants.1.p2l.info +0.0.0.0 anxiety.1.p2l.info +0.0.0.0 aol.spb.su +0.0.0.0 ar.5.p2l.info +0.0.0.0 arcade.ya.com +0.0.0.0 armanix.white.prohosting.com +0.0.0.0 arthritis.atspace.com +0.0.0.0 as.5.p2l.info +0.0.0.0 aspirin.about-tabs.com +0.0.0.0 ativan.ourtablets.com +0.0.0.0 austria-car-rental.findworm.net +0.0.0.0 auto.allewagen.de +0.0.0.0 az.5.p2l.info +0.0.0.0 azz.badazz.org +0.0.0.0 balab.portx.net +0.0.0.0 balabass.peerserver.com +0.0.0.0 bbs.ws +0.0.0.0 bc.5.p2l.info +0.0.0.0 beauty.finaltips.com +0.0.0.0 berkleynude.ca.tt +0.0.0.0 bestlolaray.com +0.0.0.0 bet-online.petrovka.info +0.0.0.0 betting-online.petrovka.info +0.0.0.0 bextra-store.shengen.ru +0.0.0.0 bextra.ourtablets.com +0.0.0.0 bingo-online.petrovka.info +0.0.0.0 birth-control.1.p2l.info +0.0.0.0 bontril.1.p2l.info +0.0.0.0 bontril.ourtablets.com +0.0.0.0 br.rawcomm.net +0.0.0.0 britneyspears.1stok.com +0.0.0.0 britneyspears.ca.tt +0.0.0.0 bupropion-hcl.1.p2l.info +0.0.0.0 buspar.1.p2l.info +0.0.0.0 buspirone.1.p2l.info +0.0.0.0 butalbital-apap.1.p2l.info +0.0.0.0 buy-adipex-cheap-adipex-online.com +0.0.0.0 buy-adipex-online.md-online24.de +0.0.0.0 buy-adipex.aca.ru +0.0.0.0 buy-adipex.hut1.ru +0.0.0.0 buy-adipex.i-jogo.net +0.0.0.0 buy-adipex.petrovka.info +0.0.0.0 buy-carisoprodol.polybuild.ru +0.0.0.0 buy-cheap-phentermine.blogspot.com +0.0.0.0 buy-cheap-xanax.all.at +0.0.0.0 buy-cialis-cheap-cialis-online.info +0.0.0.0 buy-cialis-online.iscool.nl +0.0.0.0 buy-cialis-online.meperdoe.net +0.0.0.0 buy-cialis.freewebtools.com +0.0.0.0 buy-cialis.splinder.com +0.0.0.0 buy-diazepam.connect.to +0.0.0.0 buy-fioricet.hut1.ru +0.0.0.0 buy-flower.petrovka.info +0.0.0.0 buy-hydrocodone-cheap-hydrocodone-online.com +0.0.0.0 buy-hydrocodone-online.tche.com +0.0.0.0 buy-hydrocodone.aca.ru +0.0.0.0 buy-hydrocodone.este.ru +0.0.0.0 buy-hydrocodone.petrovka.info +0.0.0.0 buy-hydrocodone.polybuild.ru +0.0.0.0 buy-hydrocodone.quesaudade.net +0.0.0.0 buy-hydrocodone.scromble.com +0.0.0.0 buy-levitra-cheap-levitra-online.info +0.0.0.0 buy-lortab-cheap-lortab-online.com +0.0.0.0 buy-lortab-online.iscool.nl +0.0.0.0 buy-lortab.hut1.ru +0.0.0.0 buy-phentermine-cheap-phentermine-online.com +0.0.0.0 buy-phentermine-online.135.it +0.0.0.0 buy-phentermine-online.i-jogo.net +0.0.0.0 buy-phentermine-online.i-ltda.net +0.0.0.0 buy-phentermine.hautlynx.com +0.0.0.0 buy-phentermine.polybuild.ru +0.0.0.0 buy-phentermine.thepizza.net +0.0.0.0 buy-tamiflu.asian-flu-vaccine.com +0.0.0.0 buy-ultram-online.iscool.nl +0.0.0.0 buy-valium-cheap-valium-online.com +0.0.0.0 buy-valium.este.ru +0.0.0.0 buy-valium.hut1.ru +0.0.0.0 buy-valium.polybuild.ru +0.0.0.0 buy-viagra.aca.ru +0.0.0.0 buy-viagra.go.to +0.0.0.0 buy-viagra.polybuild.ru +0.0.0.0 buy-vicodin-cheap-vicodin-online.com +0.0.0.0 buy-vicodin-online.i-blog.net +0.0.0.0 buy-vicodin-online.seumala.net +0.0.0.0 buy-vicodin-online.supersite.fr +0.0.0.0 buy-vicodin.dd.vu +0.0.0.0 buy-vicodin.hut1.ru +0.0.0.0 buy-vicodin.iscool.nl +0.0.0.0 buy-xanax-cheap-xanax-online.com +0.0.0.0 buy-xanax-online.amovoce.net +0.0.0.0 buy-xanax.aztecaonline.net +0.0.0.0 buy-xanax.hut1.ru +0.0.0.0 buy-zyban.all.at +0.0.0.0 buycialisonline.7h.com +0.0.0.0 buycialisonline.bigsitecity.com +0.0.0.0 buyfioricet.findmenow.info +0.0.0.0 buyfioricetonline.7h.com +0.0.0.0 buyfioricetonline.bigsitecity.com +0.0.0.0 buyfioricetonline.freeservers.com +0.0.0.0 buyhydrocodone.all.at +0.0.0.0 buyhydrocodoneonline.findmenow.info +0.0.0.0 buylevitra.3xforum.ro +0.0.0.0 buylevitraonline.7h.com +0.0.0.0 buylevitraonline.bigsitecity.com +0.0.0.0 buylortabonline.7h.com +0.0.0.0 buylortabonline.bigsitecity.com +0.0.0.0 buypaxilonline.7h.com +0.0.0.0 buypaxilonline.bigsitecity.com +0.0.0.0 buyphentermineonline.7h.com +0.0.0.0 buyphentermineonline.bigsitecity.com +0.0.0.0 buyvalium.polybuild.ru +0.0.0.0 buyviagra.polybuild.ru +0.0.0.0 buyvicodinonline.veryweird.com +0.0.0.0 bx6.blrf.net +0.0.0.0 ca.5.p2l.info +0.0.0.0 camerondiaznude.1stok.com +0.0.0.0 camerondiaznude.ca.tt +0.0.0.0 car-donation.shengen.ru +0.0.0.0 car-insurance.inshurance-from.com +0.0.0.0 car-loan.shengen.ru +0.0.0.0 carisoprodol.1.p2l.info +0.0.0.0 carisoprodol.hut1.ru +0.0.0.0 carisoprodol.ourtablets.com +0.0.0.0 carisoprodol.polybuild.ru +0.0.0.0 carisoprodol.shengen.ru +0.0.0.0 carmenelectra.1stok.com +0.0.0.0 cash-advance.now-cash.com +0.0.0.0 casino-gambling-online.searchservice.info +0.0.0.0 casino-online.100gal.net +0.0.0.0 cat.onlinepeople.net +0.0.0.0 cc5f.dnyp.com +0.0.0.0 celebrex.1.p2l.info +0.0.0.0 celexa.1.p2l.info +0.0.0.0 celexa.3.p2l.info +0.0.0.0 celexa.4.p2l.info +0.0.0.0 cephalexin.ourtablets.com +0.0.0.0 charlizetheron.1stok.com +0.0.0.0 cheap-adipex.hut1.ru +0.0.0.0 cheap-carisoprodol.polybuild.ru +0.0.0.0 cheap-hydrocodone.go.to +0.0.0.0 cheap-hydrocodone.polybuild.ru +0.0.0.0 cheap-phentermine.polybuild.ru +0.0.0.0 cheap-valium.polybuild.ru +0.0.0.0 cheap-viagra.polybuild.ru +0.0.0.0 cheap-web-hosting-here.blogspot.com +0.0.0.0 cheap-xanax-here.blogspot.com +0.0.0.0 cheapxanax.hut1.ru +0.0.0.0 cialis-finder.com +0.0.0.0 cialis-levitra-viagra.com.cn +0.0.0.0 cialis-store.shengen.ru +0.0.0.0 cialis.1.p2l.info +0.0.0.0 cialis.3.p2l.info +0.0.0.0 cialis.4.p2l.info +0.0.0.0 cialis.ourtablets.com +0.0.0.0 co.5.p2l.info +0.0.0.0 co.dcclan.co.uk +0.0.0.0 codeine.ourtablets.com +0.0.0.0 creampie.afdss.info +0.0.0.0 credit-card-application.now-cash.com +0.0.0.0 credit-cards.shengen.ru +0.0.0.0 ct.5.p2l.info +0.0.0.0 cuiland.info +0.0.0.0 cyclobenzaprine.1.p2l.info +0.0.0.0 cyclobenzaprine.ourtablets.com +0.0.0.0 dal.d.la +0.0.0.0 danger-phentermine.allforyourlife.com +0.0.0.0 darvocet.ourtablets.com +0.0.0.0 dc.5.p2l.info +0.0.0.0 de.5.p2l.info +0.0.0.0 debt.shengen.ru +0.0.0.0 def.5.p2l.info +0.0.0.0 demimoorenude.1stok.com +0.0.0.0 deniserichards.1stok.com +0.0.0.0 detox-kit.com +0.0.0.0 detox.shengen.ru +0.0.0.0 diazepam.ourtablets.com +0.0.0.0 diazepam.razma.net +0.0.0.0 diazepam.shengen.ru +0.0.0.0 didrex.1.p2l.info +0.0.0.0 diet-pills.hut1.ru +0.0.0.0 digital-cable-descrambler.planet-high-heels.com +0.0.0.0 dir.opank.com +0.0.0.0 dos.velek.com +0.0.0.0 drewbarrymore.ca.tt +0.0.0.0 drug-online.petrovka.info +0.0.0.0 drug-testing.shengen.ru +0.0.0.0 drugdetox.shengen.ru +0.0.0.0 e-dot.hut1.ru +0.0.0.0 e-hosting.hut1.ru +0.0.0.0 eb.dd.bluelinecomputers.be +0.0.0.0 eb.prout.be +0.0.0.0 ed.at.is13.de +0.0.0.0 ed.at.thamaster.de +0.0.0.0 efam4.info +0.0.0.0 effexor-xr.1.p2l.info +0.0.0.0 ei.imbucurator-de-prost.com +0.0.0.0 eminemticket.freespaces.com +0.0.0.0 en.dd.blueline.be +0.0.0.0 en.ultrex.ru +0.0.0.0 enpresse.1.p2l.info +0.0.0.0 epson-printer-ink.beesearch.info +0.0.0.0 erectile.byethost33.com +0.0.0.0 esgic.1.p2l.info +0.0.0.0 fahrrad.bikesshop.de +0.0.0.0 famous-pics.com +0.0.0.0 famvir.1.p2l.info +0.0.0.0 farmius.org +0.0.0.0 fee-hydrocodone.bebto.com +0.0.0.0 female-v.1.p2l.info +0.0.0.0 femaleviagra.findmenow.info +0.0.0.0 fg.softguy.com +0.0.0.0 findmenow.info +0.0.0.0 fioricet-online.blogspot.com +0.0.0.0 fioricet.1.p2l.info +0.0.0.0 fioricet.3.p2l.info +0.0.0.0 fioricet.4.p2l.info +0.0.0.0 firstfinda.info +0.0.0.0 fl.5.p2l.info +0.0.0.0 flexeril.1.p2l.info +0.0.0.0 flextra.1.p2l.info +0.0.0.0 flonase.1.p2l.info +0.0.0.0 flonase.3.p2l.info +0.0.0.0 flonase.4.p2l.info +0.0.0.0 florineff.ql.st +0.0.0.0 flower-online.petrovka.info +0.0.0.0 fluoxetine.1.p2l.info +0.0.0.0 fo4n.com +0.0.0.0 forex-broker.hut1.ru +0.0.0.0 forex-chart.hut1.ru +0.0.0.0 forex-market.hut1.ru +0.0.0.0 forex-news.hut1.ru +0.0.0.0 forex-online.hut1.ru +0.0.0.0 forex-signal.hut1.ru +0.0.0.0 forex-trade.hut1.ru +0.0.0.0 forex-trading-benefits.blogspot.com +0.0.0.0 forextrading.hut1.ru +0.0.0.0 free-money.host.sk +0.0.0.0 free-viagra.polybuild.ru +0.0.0.0 free-virus-scan.100gal.net +0.0.0.0 free.hostdepartment.com +0.0.0.0 freechat.llil.de +0.0.0.0 ga.5.p2l.info +0.0.0.0 game-online-video.petrovka.info +0.0.0.0 gaming-online.petrovka.info +0.0.0.0 gastrointestinal.1.p2l.info +0.0.0.0 gen-hydrocodone.polybuild.ru +0.0.0.0 getcarisoprodol.polybuild.ru +0.0.0.0 gocarisoprodol.polybuild.ru +0.0.0.0 gsm-mobile-phone.beesearch.info +0.0.0.0 gu.5.p2l.info +0.0.0.0 guerria-skateboard-tommy.tabrays.com +0.0.0.0 gwynethpaltrow.ca.tt +0.0.0.0 h1.ripway.com +0.0.0.0 hair-dos.resourcesarchive.com +0.0.0.0 halleberrynude.ca.tt +0.0.0.0 heathergraham.ca.tt +0.0.0.0 herpes.1.p2l.info +0.0.0.0 herpes.3.p2l.info +0.0.0.0 herpes.4.p2l.info +0.0.0.0 hf.themafia.info +0.0.0.0 hi.5.p2l.info +0.0.0.0 hi.pacehillel.org +0.0.0.0 holobumo.info +0.0.0.0 homehre.bravehost.com +0.0.0.0 homehre.ifrance.com +0.0.0.0 homehre.tripod.com +0.0.0.0 hoodia.kogaryu.com +0.0.0.0 hotel-las-vegas.gloses.net +0.0.0.0 hydro.polybuild.ru +0.0.0.0 hydrocodone-buy-online.blogspot.com +0.0.0.0 hydrocodone.irondel.swisshost.by +0.0.0.0 hydrocodone.on.to +0.0.0.0 hydrocodone.shengen.ru +0.0.0.0 hydrocodone.t-amo.net +0.0.0.0 hydrocodone.visa-usa.ru +0.0.0.0 ia.5.p2l.info +0.0.0.0 ia.warnet-thunder.net +0.0.0.0 ibm-notebook-battery.wp-club.net +0.0.0.0 id.5.p2l.info +0.0.0.0 il.5.p2l.info +0.0.0.0 imitrex.1.p2l.info +0.0.0.0 imitrex.3.p2l.info +0.0.0.0 imitrex.4.p2l.info +0.0.0.0 in.5.p2l.info +0.0.0.0 ionamin.1.p2l.info +0.0.0.0 ionamin.t35.com +0.0.0.0 irondel.swisshost.by +0.0.0.0 japanese-girl-xxx.com +0.0.0.0 java-games.bestxs.de +0.0.0.0 jg.hack-inter.net +0.0.0.0 job-online.petrovka.info +0.0.0.0 jobs-online.petrovka.info +0.0.0.0 kitchen-island.mensk.us +0.0.0.0 konstantin.freespaces.com +0.0.0.0 ks.5.p2l.info +0.0.0.0 ky.5.p2l.info +0.0.0.0 la.5.p2l.info +0.0.0.0 lamictal.about-tabs.com +0.0.0.0 lamisil.about-tabs.com +0.0.0.0 levitra.1.p2l.info +0.0.0.0 levitra.3.p2l.info +0.0.0.0 levitra.4.p2l.info +0.0.0.0 lexapro.1.p2l.info +0.0.0.0 lexapro.3.p2l.info +0.0.0.0 lexapro.4.p2l.info +0.0.0.0 lo.ljkeefeco.com +0.0.0.0 loan.aol.msk.su +0.0.0.0 loan.maybachexelero.org +0.0.0.0 loestrin.1.p2l.info +0.0.0.0 lol.to +0.0.0.0 lortab-cod.hut1.ru +0.0.0.0 lortab.hut1.ru +0.0.0.0 ma.5.p2l.info +0.0.0.0 mailforfreedom.com +0.0.0.0 make-money.shengen.ru +0.0.0.0 maps-antivert58.eksuziv.net +0.0.0.0 maps-spyware251-300.eksuziv.net +0.0.0.0 marketing.beesearch.info +0.0.0.0 mb.5.p2l.info +0.0.0.0 mba-online.petrovka.info +0.0.0.0 md.5.p2l.info +0.0.0.0 me.5.p2l.info +0.0.0.0 medical.carway.net +0.0.0.0 mens.1.p2l.info +0.0.0.0 meridia.1.p2l.info +0.0.0.0 meridia.3.p2l.info +0.0.0.0 meridia.4.p2l.info +0.0.0.0 meridiameridia.3xforum.ro +0.0.0.0 mesotherapy.jino-net.ru +0.0.0.0 mi.5.p2l.info +0.0.0.0 micardiss.ql.st +0.0.0.0 microsoft-sql-server.wp-club.net +0.0.0.0 mn.5.p2l.info +0.0.0.0 mo.5.p2l.info +0.0.0.0 moc.silk.com +0.0.0.0 mortgage-memphis.hotmail.ru +0.0.0.0 mortgage-rates.now-cash.com +0.0.0.0 mp.5.p2l.info +0.0.0.0 mrjeweller.us +0.0.0.0 ms.5.p2l.info +0.0.0.0 mt.5.p2l.info +0.0.0.0 multimedia-projector.katrina.ru +0.0.0.0 muscle-relaxers.1.p2l.info +0.0.0.0 music102.awardspace.com +0.0.0.0 mydaddy.b0x.com +0.0.0.0 myphentermine.polybuild.ru +0.0.0.0 nasacort.1.p2l.info +0.0.0.0 nasonex.1.p2l.info +0.0.0.0 nb.5.p2l.info +0.0.0.0 nc.5.p2l.info +0.0.0.0 nd.5.p2l.info +0.0.0.0 ne.5.p2l.info +0.0.0.0 nellyticket.beast-space.com +0.0.0.0 nelsongod.ca +0.0.0.0 nexium.1.p2l.info +0.0.0.0 nextel-ringtone.komi.su +0.0.0.0 nextel-ringtone.spb.su +0.0.0.0 nf.5.p2l.info +0.0.0.0 nh.5.p2l.info +0.0.0.0 nj.5.p2l.info +0.0.0.0 nm.5.p2l.info +0.0.0.0 nordette.1.p2l.info +0.0.0.0 nordette.3.p2l.info +0.0.0.0 nordette.4.p2l.info +0.0.0.0 norton-antivirus-trial.searchservice.info +0.0.0.0 notebook-memory.searchservice.info +0.0.0.0 ns.5.p2l.info +0.0.0.0 nv.5.p2l.info +0.0.0.0 ny.5.p2l.info +0.0.0.0 o8.aus.cc +0.0.0.0 ofni.al0ne.info +0.0.0.0 oh.5.p2l.info +0.0.0.0 ok.5.p2l.info +0.0.0.0 on.5.p2l.info +0.0.0.0 online-auto-insurance.petrovka.info +0.0.0.0 online-bingo.petrovka.info +0.0.0.0 online-broker.petrovka.info +0.0.0.0 online-cash.petrovka.info +0.0.0.0 online-casino.shengen.ru +0.0.0.0 online-casino.webpark.pl +0.0.0.0 online-cigarettes.hitslog.net +0.0.0.0 online-college.petrovka.info +0.0.0.0 online-degree.petrovka.info +0.0.0.0 online-florist.petrovka.info +0.0.0.0 online-forex-trading-systems.blogspot.com +0.0.0.0 online-forex.hut1.ru +0.0.0.0 online-gaming.petrovka.info +0.0.0.0 online-job.petrovka.info +0.0.0.0 online-loan.petrovka.info +0.0.0.0 online-mortgage.petrovka.info +0.0.0.0 online-personal.petrovka.info +0.0.0.0 online-personals.petrovka.info +0.0.0.0 online-pharmacy-online.blogspot.com +0.0.0.0 online-pharmacy.petrovka.info +0.0.0.0 online-phentermine.petrovka.info +0.0.0.0 online-poker-gambling.petrovka.info +0.0.0.0 online-poker-game.petrovka.info +0.0.0.0 online-poker.shengen.ru +0.0.0.0 online-prescription.petrovka.info +0.0.0.0 online-school.petrovka.info +0.0.0.0 online-schools.petrovka.info +0.0.0.0 online-single.petrovka.info +0.0.0.0 online-tarot-reading.beesearch.info +0.0.0.0 online-travel.petrovka.info +0.0.0.0 online-university.petrovka.info +0.0.0.0 online-viagra.petrovka.info +0.0.0.0 online-xanax.petrovka.info +0.0.0.0 only-valium.go.to +0.0.0.0 only-valium.shengen.ru +0.0.0.0 onlypreteens.com +0.0.0.0 or.5.p2l.info +0.0.0.0 oranla.info +0.0.0.0 order-hydrocodone.polybuild.ru +0.0.0.0 order-phentermine.polybuild.ru +0.0.0.0 order-valium.polybuild.ru +0.0.0.0 orderadipex.findmenow.info +0.0.0.0 ortho-tri-cyclen.1.p2l.info +0.0.0.0 pa.5.p2l.info +0.0.0.0 pacific-poker.e-online-poker-4u.net +0.0.0.0 pain-relief.1.p2l.info +0.0.0.0 paintball-gun.tripod.com +0.0.0.0 patio-furniture.dreamhoster.com +0.0.0.0 paxil.1.p2l.info +0.0.0.0 pay-day-loans.beesearch.info +0.0.0.0 payday-loans.now-cash.com +0.0.0.0 pctuzing.php5.cz +0.0.0.0 pd1.funnyhost.com +0.0.0.0 pe.5.p2l.info +0.0.0.0 peter-north-cum-shot.blogspot.com +0.0.0.0 pets.finaltips.com +0.0.0.0 pharmacy-canada.forsearch.net +0.0.0.0 pharmacy-news.blogspot.com +0.0.0.0 pharmacy-online.petrovka.info +0.0.0.0 pharmacy.hut1.ru +0.0.0.0 phendimetrazine.1.p2l.info +0.0.0.0 phentermine-buy-online.hitslog.net +0.0.0.0 phentermine-buy.petrovka.info +0.0.0.0 phentermine-online.iscool.nl +0.0.0.0 phentermine-online.petrovka.info +0.0.0.0 phentermine.1.p2l.info +0.0.0.0 phentermine.3.p2l.info +0.0.0.0 phentermine.4.p2l.info +0.0.0.0 phentermine.aussie7.com +0.0.0.0 phentermine.petrovka.info +0.0.0.0 phentermine.polybuild.ru +0.0.0.0 phentermine.shengen.ru +0.0.0.0 phentermine.t-amo.net +0.0.0.0 phentermine.webpark.pl +0.0.0.0 phone-calling-card.exnet.su +0.0.0.0 plavix.shengen.ru +0.0.0.0 play-poker-free.forsearch.net +0.0.0.0 poker-games.e-online-poker-4u.net +0.0.0.0 pop.egi.biz +0.0.0.0 pr.5.p2l.info +0.0.0.0 prescription-drugs.easy-find.net +0.0.0.0 prescription-drugs.shengen.ru +0.0.0.0 preteenland.com +0.0.0.0 preteensite.com +0.0.0.0 prevacid.1.p2l.info +0.0.0.0 prevent-asian-flu.com +0.0.0.0 prilosec.1.p2l.info +0.0.0.0 propecia.1.p2l.info +0.0.0.0 protonix.shengen.ru +0.0.0.0 psorias.atspace.com +0.0.0.0 purchase.hut1.ru +0.0.0.0 qc.5.p2l.info +0.0.0.0 qz.informs.com +0.0.0.0 re.rutan.org +0.0.0.0 refinance.shengen.ru +0.0.0.0 relenza.asian-flu-vaccine.com +0.0.0.0 renova.1.p2l.info +0.0.0.0 replacement-windows.gloses.net +0.0.0.0 resanium.com +0.0.0.0 retin-a.1.p2l.info +0.0.0.0 ri.5.p2l.info +0.0.0.0 rise-media.ru +0.0.0.0 root.dns.bz +0.0.0.0 roulette-online.petrovka.info +0.0.0.0 router.googlecom.biz +0.0.0.0 s32.bilsay.com +0.0.0.0 samsclub33.pochta.ru +0.0.0.0 sc.5.p2l.info +0.0.0.0 sc10.net +0.0.0.0 sd.5.p2l.info +0.0.0.0 search-phentermine.hpage.net +0.0.0.0 search4you.50webs.com +0.0.0.0 searchpill.boom.ru +0.0.0.0 seasonale.1.p2l.info +0.0.0.0 shop.kauffes.de +0.0.0.0 single-online.petrovka.info +0.0.0.0 sk.5.p2l.info +0.0.0.0 skelaxin.1.p2l.info +0.0.0.0 skelaxin.3.p2l.info +0.0.0.0 skelaxin.4.p2l.info +0.0.0.0 skin-care.1.p2l.info +0.0.0.0 skocz.pl +0.0.0.0 sleep-aids.1.p2l.info +0.0.0.0 sleeper-sofa.dreamhoster.com +0.0.0.0 slf5cyd.info +0.0.0.0 sobolev.net.ru +0.0.0.0 soma-store.visa-usa.ru +0.0.0.0 soma.1.p2l.info +0.0.0.0 soma.3xforum.ro +0.0.0.0 sonata.1.p2l.info +0.0.0.0 sport-betting-online.hitslog.net +0.0.0.0 spyware-removers.shengen.ru +0.0.0.0 spyware-scan.100gal.net +0.0.0.0 spyware.usafreespace.com +0.0.0.0 sq7.co.uk +0.0.0.0 sql-server-driver.beesearch.info +0.0.0.0 starlix.ql.st +0.0.0.0 stop-smoking.1.p2l.info +0.0.0.0 supplements.1.p2l.info +0.0.0.0 sx.nazari.org +0.0.0.0 sx.z0rz.com +0.0.0.0 ta.at.ic5mp.net +0.0.0.0 ta.at.user-mode-linux.net +0.0.0.0 tamiflu-in-canada.asian-flu-vaccine.com +0.0.0.0 tamiflu-no-prescription.asian-flu-vaccine.com +0.0.0.0 tamiflu-purchase.asian-flu-vaccine.com +0.0.0.0 tamiflu-without-prescription.asian-flu-vaccine.com +0.0.0.0 tenuate.1.p2l.info +0.0.0.0 texas-hold-em.e-online-poker-4u.net +0.0.0.0 texas-holdem.shengen.ru +0.0.0.0 ticket20.tripod.com +0.0.0.0 tizanidine.1.p2l.info +0.0.0.0 tn.5.p2l.info +0.0.0.0 top.pcanywhere.net +0.0.0.0 topmeds10.com +0.0.0.0 toyota.cyberealhosting.com +0.0.0.0 tramadol.1.p2l.info +0.0.0.0 tramadol.3.p2l.info +0.0.0.0 tramadol.4.p2l.info +0.0.0.0 tramadol2006.3xforum.ro +0.0.0.0 travel-insurance-quotes.beesearch.info +0.0.0.0 triphasil.1.p2l.info +0.0.0.0 triphasil.3.p2l.info +0.0.0.0 triphasil.4.p2l.info +0.0.0.0 tx.5.p2l.info +0.0.0.0 uf2aasn.111adfueo.us +0.0.0.0 ultracet.1.p2l.info +0.0.0.0 ultram.1.p2l.info +0.0.0.0 united-airline-fare.100pantyhose.com +0.0.0.0 university-online.petrovka.info +0.0.0.0 urlcut.net +0.0.0.0 urshort.net +0.0.0.0 us.kopuz.com +0.0.0.0 ut.5.p2l.info +0.0.0.0 utairway.com +0.0.0.0 va.5.p2l.info +0.0.0.0 vacation.toppick.info +0.0.0.0 valium.este.ru +0.0.0.0 valium.hut1.ru +0.0.0.0 valium.ourtablets.com +0.0.0.0 valium.polybuild.ru +0.0.0.0 valiumvalium.3xforum.ro +0.0.0.0 valtrex.1.p2l.info +0.0.0.0 valtrex.3.p2l.info +0.0.0.0 valtrex.4.p2l.info +0.0.0.0 valtrex.7h.com +0.0.0.0 vaniqa.1.p2l.info +0.0.0.0 vi.5.p2l.info +0.0.0.0 viagra-online.petrovka.info +0.0.0.0 viagra-pill.blogspot.com +0.0.0.0 viagra-soft-tabs.1.p2l.info +0.0.0.0 viagra-store.shengen.ru +0.0.0.0 viagra.1.p2l.info +0.0.0.0 viagra.3.p2l.info +0.0.0.0 viagra.4.p2l.info +0.0.0.0 viagra.polybuild.ru +0.0.0.0 viagraviagra.3xforum.ro +0.0.0.0 vicodin-online.petrovka.info +0.0.0.0 vicodin-store.shengen.ru +0.0.0.0 vicodin.t-amo.net +0.0.0.0 viewtools.com +0.0.0.0 vioxx.1.p2l.info +0.0.0.0 vitalitymax.1.p2l.info +0.0.0.0 vt.5.p2l.info +0.0.0.0 vxv.phre.net +0.0.0.0 w0.drag0n.org +0.0.0.0 wa.5.p2l.info +0.0.0.0 water-bed.8p.org.uk +0.0.0.0 web-hosting.hitslog.net +0.0.0.0 webhosting.hut1.ru +0.0.0.0 weborg.hut1.ru +0.0.0.0 weight-loss.1.p2l.info +0.0.0.0 weight-loss.3.p2l.info +0.0.0.0 weight-loss.4.p2l.info +0.0.0.0 weight-loss.hut1.ru +0.0.0.0 wellbutrin.1.p2l.info +0.0.0.0 wellbutrin.3.p2l.info +0.0.0.0 wellbutrin.4.p2l.info +0.0.0.0 wellnessmonitor.bravehost.com +0.0.0.0 wi.5.p2l.info +0.0.0.0 world-trade-center.hawaiicity.com +0.0.0.0 wp-club.net +0.0.0.0 ws01.do.nu +0.0.0.0 ws02.do.nu +0.0.0.0 ws03.do.nu +0.0.0.0 ws03.home.sapo.pt +0.0.0.0 ws04.do.nu +0.0.0.0 ws04.home.sapo.pt +0.0.0.0 ws05.home.sapo.pt +0.0.0.0 ws06.home.sapo.pt +0.0.0.0 wv.5.p2l.info +0.0.0.0 www.31d.net +0.0.0.0 www.adspoll.com +0.0.0.0 www.adult-top-list.com +0.0.0.0 www.aektschen.de +0.0.0.0 www.aeqs.com +0.0.0.0 www.alladultdirectories.com +0.0.0.0 www.alladultdirectory.net +0.0.0.0 www.arbeitssuche-web.de +0.0.0.0 www.atlantis-asia.com +0.0.0.0 www.bestrxpills.com +0.0.0.0 www.bigsister-puff.cxa.de +0.0.0.0 www.bigsister.cxa.de +0.0.0.0 www.bitlocker.net +0.0.0.0 www.cheap-laptops-notebook-computers.info +0.0.0.0 www.cheap-online-stamp.cast.cc +0.0.0.0 www.codez-knacken.de +0.0.0.0 www.computerxchange.com +0.0.0.0 www.credit-dreams.com +0.0.0.0 www.edle-stuecke.de +0.0.0.0 www.exe-file.de +0.0.0.0 www.exttrem.de +0.0.0.0 www.fetisch-pornos.cxa.de +0.0.0.0 www.ficken-ficken-ficken.cxa.de +0.0.0.0 www.ficken-xxx.cxa.de +0.0.0.0 www.financial-advice-books.com +0.0.0.0 www.finanzmarkt2004.de +0.0.0.0 www.furnitureulimited.com +0.0.0.0 www.gewinnspiele-slotmachine.de +0.0.0.0 www.hardware4freaks.de +0.0.0.0 www.healthyaltprods.com +0.0.0.0 www.heimlich-gefilmt.cxa.de +0.0.0.0 www.huberts-kochseite.de +0.0.0.0 www.huren-verzeichnis.is4all.de +0.0.0.0 www.kaaza-legal.de +0.0.0.0 www.kajahdfssa.net +0.0.0.0 www.keyofhealth.com +0.0.0.0 www.kitchentablegang.org +0.0.0.0 www.km69.de +0.0.0.0 www.koch-backrezepte.de +0.0.0.0 www.kvr-systems.de +0.0.0.0 www.lesben-pornos.cxa.de +0.0.0.0 www.links-private-krankenversicherung.de +0.0.0.0 www.littledevildoubt.com +0.0.0.0 www.mailforfreedom.com +0.0.0.0 www.masterspace.biz +0.0.0.0 www.medical-research-books.com +0.0.0.0 www.microsoft2010.com +0.0.0.0 www.nelsongod.ca +0.0.0.0 www.nextstudent.com +0.0.0.0 www.ntdesk.de +0.0.0.0 www.nutten-verzeichnis.cxa.de +0.0.0.0 www.obesitycheck.com +0.0.0.0 www.pawnauctions.net +0.0.0.0 www.pills-home.com +0.0.0.0 www.poker-new.com +0.0.0.0 www.poker-unique.com +0.0.0.0 www.poker4spain.com +0.0.0.0 www.porno-lesben.cxa.de +0.0.0.0 www.prevent-asian-flu.com +0.0.0.0 www.randppro-cuts.com +0.0.0.0 www.romanticmaui.net +0.0.0.0 www.salldo.de +0.0.0.0 www.samsclub33.pochta.ru +0.0.0.0 www.schwarz-weisses.de +0.0.0.0 www.schwule-boys-nackt.cxa.de +0.0.0.0 www.shopping-artikel.de +0.0.0.0 www.showcaserealestate.net +0.0.0.0 www.skattabrain.com +0.0.0.0 www.softcha.com +0.0.0.0 www.striemline.de +0.0.0.0 www.talentbroker.net +0.0.0.0 www.the-discount-store.com +0.0.0.0 www.topmeds10.com +0.0.0.0 www.uniqueinternettexasholdempoker.com +0.0.0.0 www.viagra-home.com +0.0.0.0 www.vthought.com +0.0.0.0 www.vtoyshop.com +0.0.0.0 www.vulcannonibird.de +0.0.0.0 www.webabrufe.de +0.0.0.0 www.wilddreams.info +0.0.0.0 www.willcommen.de +0.0.0.0 www.xcr-286.com +0.0.0.0 www3.ddns.ms +0.0.0.0 www4.at.debianbase.de +0.0.0.0 www4.epac.to +0.0.0.0 www5.3-a.net +0.0.0.0 www6.ezua.com +0.0.0.0 www6.ns1.name +0.0.0.0 www69.bestdeals.at +0.0.0.0 www69.byinter.net +0.0.0.0 www69.dynu.com +0.0.0.0 www69.findhere.org +0.0.0.0 www69.fw.nu +0.0.0.0 www69.ugly.as +0.0.0.0 www7.ygto.com +0.0.0.0 www8.ns01.us +0.0.0.0 www9.compblue.com +0.0.0.0 www9.servequake.com +0.0.0.0 www9.trickip.org +0.0.0.0 www99.bounceme.net +0.0.0.0 www99.fdns.net +0.0.0.0 www99.zapto.org +0.0.0.0 wy.5.p2l.info +0.0.0.0 x-box.t35.com +0.0.0.0 x-hydrocodone.info +0.0.0.0 x-phentermine.info +0.0.0.0 x25.2mydns.com +0.0.0.0 x25.plorp.com +0.0.0.0 x4.lov3.net +0.0.0.0 x6x.a.la +0.0.0.0 x888x.myserver.org +0.0.0.0 x8x.dyndns.dk +0.0.0.0 x8x.trickip.net +0.0.0.0 xanax-online.dot.de +0.0.0.0 xanax-online.run.to +0.0.0.0 xanax-online.sms2.us +0.0.0.0 xanax-store.shengen.ru +0.0.0.0 xanax.ourtablets.com +0.0.0.0 xanax.t-amo.net +0.0.0.0 xanaxxanax.3xforum.ro +0.0.0.0 xcr-286.com +0.0.0.0 xenical.1.p2l.info +0.0.0.0 xenical.3.p2l.info +0.0.0.0 xenical.4.p2l.info +0.0.0.0 xr.h4ck.la +0.0.0.0 yasmin.1.p2l.info +0.0.0.0 yasmin.3.p2l.info +0.0.0.0 yasmin.4.p2l.info +0.0.0.0 yt.5.p2l.info +0.0.0.0 zanaflex.1.p2l.info +0.0.0.0 zebutal.1.p2l.info +0.0.0.0 zocor.about-tabs.com +0.0.0.0 zoloft.1.p2l.info +0.0.0.0 zoloft.3.p2l.info +0.0.0.0 zoloft.4.p2l.info +0.0.0.0 zoloft.about-tabs.com +0.0.0.0 zyban-store.shengen.ru +0.0.0.0 zyban.1.p2l.info +0.0.0.0 zyban.about-tabs.com +0.0.0.0 zyprexa.about-tabs.com +0.0.0.0 zyrtec.1.p2l.info +0.0.0.0 zyrtec.3.p2l.info +0.0.0.0 zyrtec.4.p2l.info +0.0.0.0 a-msedge.net +0.0.0.0 a.ads2.msads.net +0.0.0.0 adnexus.net +0.0.0.0 aidps.atdmt.com +0.0.0.0 az361816.vo.msecnd.net +0.0.0.0 az512334.vo.msecnd.net +0.0.0.0 b.ads1.msn.com +0.0.0.0 b.ads2.msads.net +0.0.0.0 c.atdmt.com +0.0.0.0 c.msn.com +0.0.0.0 cdn.atdmt.com +0.0.0.0 cds26.ams9.msecn.net +0.0.0.0 db3aqu.atdmt.com +0.0.0.0 ec.atdmt.com +0.0.0.0 feedback.microsoft-hohm.com +0.0.0.0 flex.msn.com +0.0.0.0 g.msn.com +0.0.0.0 h1.msn.com +0.0.0.0 lb1.www.ms.akadns.net +0.0.0.0 live.rads.msn.com +0.0.0.0 m.adnxs.com +0.0.0.0 msedge.net +0.0.0.0 msnbot-65-55-108-23.search.msn.com +0.0.0.0 msntest.serving-sys.com +0.0.0.0 preview.msn.com +0.0.0.0 reports.wes.df.telemetry.microsoft.com +0.0.0.0 so.2mdn.net +0.0.0.0 schemas.microsoft.akadns.net +0.0.0.0 secure.flashtalking.com +0.0.0.0 settings-win.data.microsoft.com +0.0.0.0 statsfe2.ws.microsoft.com +0.0.0.0 telemetry.appex.bing.net +0.0.0.0 wes.df.telemetry.microsoft.com +0.0.0.0 adobe-acrobat-reader-upgrade.com +0.0.0.0 adobe-update.org +0.0.0.0 adobe-updates.org +0.0.0.0 analytic-google.com +0.0.0.0 at1antis.com +0.0.0.0 avast-clean.com +0.0.0.0 avast-downloads.com +0.0.0.0 blacksnake.com +0.0.0.0 carrer-trade.com +0.0.0.0 clix2themax.net +0.0.0.0 disney-movie.org +0.0.0.0 europcareer.com +0.0.0.0 flashplayer-adobe.com +0.0.0.0 flashplayerindir.net +0.0.0.0 flashupdate.de +0.0.0.0 flvplayer-setup.com +0.0.0.0 ftpadobe.info +0.0.0.0 google-docs.info +0.0.0.0 google-tour.com +0.0.0.0 googleapps-espana.com +0.0.0.0 googleapps-jobs.com +0.0.0.0 googleapps-spain.com +0.0.0.0 googlechrome2013.com +0.0.0.0 gooqleapi.com +0.0.0.0 housecallsantivirus.com +0.0.0.0 iphonegames3g.com +0.0.0.0 keno-chance-game.com +0.0.0.0 linkrdin.ru +0.0.0.0 malwaredomainlists.com +0.0.0.0 medspfizer3.com +0.0.0.0 microsoft-update.name +0.0.0.0 microsoftmediaplayer.net +0.0.0.0 nacha-onlinereports.com +0.0.0.0 naughtywifepal.ru +0.0.0.0 ncaafacebook.com +0.0.0.0 neweurowork.com +0.0.0.0 online-skype-pro-download.com +0.0.0.0 online-skype-pro-upgrade.com +0.0.0.0 open-office-download.org +0.0.0.0 open-office-pro.com +0.0.0.0 open-office-software.com +0.0.0.0 paypai.org +0.0.0.0 paypal-servcies.com +0.0.0.0 skype-pro-upgrade.com +0.0.0.0 ssl-visa.net +0.0.0.0 sunonsunday.co.uk +0.0.0.0 sunonsunday.com +0.0.0.0 thesunonsunday.co.uk +0.0.0.0 thesunonsunday.com +0.0.0.0 verisigntrustedservice.com +0.0.0.0 vlcplayer-downloads.info +0.0.0.0 walgreenspharmacyrx.net +0.0.0.0 wikipediastore.ru +0.0.0.0 winmediaplayerplus.com +0.0.0.0 www.adobe-acrobat-reader-upgrade.com +0.0.0.0 www.adobe-update.org +0.0.0.0 www.adobe-updates.org +0.0.0.0 www.analytic-google.com +0.0.0.0 www.at1antis.com +0.0.0.0 www.avast-clean.com +0.0.0.0 www.avast-downloads.com +0.0.0.0 www.blacksnake.com +0.0.0.0 www.carrer-trade.com +0.0.0.0 www.clix2themax.net +0.0.0.0 www.disney-movie.org +0.0.0.0 www.europcareer.com +0.0.0.0 www.flashplayer-adobe.com +0.0.0.0 www.flashplayerindir.net +0.0.0.0 www.flashupdate.de +0.0.0.0 www.flvplayer-setup.com +0.0.0.0 www.ftpadobe.info +0.0.0.0 www.google-docs.info +0.0.0.0 www.google-tour.com +0.0.0.0 www.googleapps-espana.com +0.0.0.0 www.googleapps-jobs.com +0.0.0.0 www.googleapps-spain.com +0.0.0.0 www.googlechrome2013.com +0.0.0.0 www.gooqleapi.com +0.0.0.0 www.housecallsantivirus.com +0.0.0.0 www.iphonegames3g.com +0.0.0.0 www.keno-chance-game.com +0.0.0.0 www.linkrdin.ru +0.0.0.0 www.malwaredomainlists.com +0.0.0.0 www.medspfizer3.com +0.0.0.0 www.microsoft-update.name +0.0.0.0 www.microsoftmediaplayer.net +0.0.0.0 www.nacha-onlinereports.com +0.0.0.0 www.naughtywifepal.ru +0.0.0.0 www.ncaafacebook.com +0.0.0.0 www.neweurowork.com +0.0.0.0 www.online-skype-pro-download.com +0.0.0.0 www.online-skype-pro-upgrade.com +0.0.0.0 www.open-office-download.org +0.0.0.0 www.open-office-pro.com +0.0.0.0 www.open-office-software.com +0.0.0.0 www.paypai.org +0.0.0.0 www.paypal-servcies.com +0.0.0.0 www.skype-pro-upgrade.com +0.0.0.0 www.ssl-visa.net +0.0.0.0 www.sunonsunday.co.uk +0.0.0.0 www.thesunonsunday.co.uk +0.0.0.0 www.thesunonsunday.com +0.0.0.0 www.verisigntrustedservice.com +0.0.0.0 www.vlcplayer-downloads.info +0.0.0.0 www.walgreenspharmacyrx.net +0.0.0.0 www.wikipediastore.ru +0.0.0.0 www.winmediaplayerplus.com +0.0.0.0 www.wwwfacebook.com +0.0.0.0 wwwfacebook.com +0.0.0.0 mfr.a2dfp.net +0.0.0.0 asy.a8ww.net +0.0.0.0 static.a-ads.com +0.0.0.0 abcstats.com +0.0.0.0 a.abv.bg +0.0.0.0 adv.abv.bg +0.0.0.0 ca.abv.bg +0.0.0.0 track.acclaimnetwork.com +0.0.0.0 accuserveadsystem.com +0.0.0.0 www.accuserveadsystem.com +0.0.0.0 achmedia.com +0.0.0.0 ads.activepower.net +0.0.0.0 ad.activesolutions.cz +0.0.0.0 app.activetrail.com +0.0.0.0 traffic.acwebconnecting.com +0.0.0.0 office.ad1.ru +0.0.0.0 cms.ad2click.nl +0.0.0.0 content.ad20.net +0.0.0.0 core.ad20.net +0.0.0.0 tag1.adaptiveads.com +0.0.0.0 www.adbanner.ro +0.0.0.0 wad.adbasket.net +0.0.0.0 adbox.hu +0.0.0.0 b.adbox.lv +0.0.0.0 james.adbutler.de +0.0.0.0 www.adbutler.de +0.0.0.0 static.adclick.lt +0.0.0.0 engine.adclick.lv +0.0.0.0 show.adclick.lv +0.0.0.0 static.adclick.lv +0.0.0.0 www.adclick.lv +0.0.0.0 www.adcomplete.com +0.0.0.0 adcore.ru +0.0.0.0 pixel.adcrowd.com +0.0.0.0 static.uk.addynamo.com +0.0.0.0 www.adexit.com +0.0.0.0 s.adexpert.cz +0.0.0.0 222-33544_999.pub.adfirmative.com +0.0.0.0 c.adfirmative.com +0.0.0.0 www.adfirmative.com +0.0.0.0 adfocus.ru +0.0.0.0 dmp.adform.net +0.0.0.0 s1.adform.net +0.0.0.0 server.adform.net +0.0.0.0 server.adformdsp.net +0.0.0.0 adforce.ru +0.0.0.0 gazeta.adfox.ru +0.0.0.0 p.adframesrc.com +0.0.0.0 s.adframesrc.com +0.0.0.0 media.adfrontiers.com +0.0.0.0 www.adgitize.com +0.0.0.0 code.ad-gbn.com +0.0.0.0 findadvertise.engine.adglare.net +0.0.0.0 www.ad-groups.com +0.0.0.0 adhall.com +0.0.0.0 pool.adhese.be +0.0.0.0 ads.static.adhood.com +0.0.0.0 app.pubserver.adhood.com +0.0.0.0 app.winwords.adhood.com +0.0.0.0 ssl3.adhost.com +0.0.0.0 www2.adhost.com +0.0.0.0 aj.adjungle.com +0.0.0.0 rotator.hadj7.adjuggler.net +0.0.0.0 thewrap.rotator.hadj7.adjuggler.net +0.0.0.0 yorick.adjuggler.net +0.0.0.0 stat.adlabs.ru +0.0.0.0 www.adlantis.jp +0.0.0.0 publicidad.adlead.com +0.0.0.0 rc.de.adlink.net +0.0.0.0 tr.de.adlink.net +0.0.0.0 n.admagnet.net +0.0.0.0 gazzetta.adman.gr +0.0.0.0 talos.adman.gr +0.0.0.0 ads5.admatic.com.tr +0.0.0.0 cdn6.admatic.com.tr +0.0.0.0 admarket.cz +0.0.0.0 www.admarket.cz +0.0.0.0 bridge.ame.admarketplace.net +0.0.0.0 bridge.sf.admarketplace.net +0.0.0.0 bridge.sfo1.admarketplace.net +0.0.0.0 a1.admaster.net +0.0.0.0 img.admaster.net +0.0.0.0 w.admedia.com +0.0.0.0 admedien.com +0.0.0.0 www.admedien.com +0.0.0.0 apps.admission.net +0.0.0.0 appcache.admission.net +0.0.0.0 dt.admission.net +0.0.0.0 view.admission.net +0.0.0.0 ad.admitad.com +0.0.0.0 cdn.admitad.com +0.0.0.0 www.ad.admitad.com +0.0.0.0 cdn.admixer.net +0.0.0.0 ads.admodus.com +0.0.0.0 run.admost.com +0.0.0.0 assets3.admulti.com +0.0.0.0 ads.adnet.am +0.0.0.0 adnet.com.ua +0.0.0.0 delivery.adnetwork.vn +0.0.0.0 img.adnet.com.tr +0.0.0.0 www.ad-net.co.uk +0.0.0.0 adnext.fr +0.0.0.0 srv.adngin.com +0.0.0.0 ad.adnow.com +0.0.0.0 acdn.adnxs.com +0.0.0.0 speednetwork14.adk2.co +0.0.0.0 cdn.oas-c17.adnxs.com +0.0.0.0 tt11.adobe.com +0.0.0.0 ace.adoftheyear.com +0.0.0.0 ad02.adonspot.com +0.0.0.0 www.adperium.com +0.0.0.0 img.adplan-ds.com +0.0.0.0 res.adplus.co.id +0.0.0.0 e.adpower.bg +0.0.0.0 ab.adpro.com.ua +0.0.0.0 adpublimo.com +0.0.0.0 pop.adrent.net +0.0.0.0 rtt.adrolays.de +0.0.0.0 n.ads1-adnow.com +0.0.0.0 n.ads2-adnow.com +0.0.0.0 n.ads3-adnow.com +0.0.0.0 vu.adschoom.com +0.0.0.0 core1.adservingfactory.com +0.0.0.0 content.adservingfactory.com +0.0.0.0 track.adservingfactory.com +0.0.0.0 p78878.adskape.ru +0.0.0.0 mg.adskeeper.co.uk +0.0.0.0 map2.adsniper.ru +0.0.0.0 f-nod2.adsniper.ru +0.0.0.0 content.adspynet.com +0.0.0.0 engine.adspynet.com +0.0.0.0 ads.adsready.com +0.0.0.0 ads.adsurve.com +0.0.0.0 www.adsurve.com +0.0.0.0 cntr.adrime.com +0.0.0.0 images.adrime.com +0.0.0.0 content.adriver.ru +0.0.0.0 ssp.adriver.ru +0.0.0.0 r.adrolays.de +0.0.0.0 www.adrotate.net +0.0.0.0 delivery.ads-creativesyndicator.com +0.0.0.0 adsafiliados.com.br +0.0.0.0 v2.adsbookie.com +0.0.0.0 rh.adscale.de +0.0.0.0 api-cache.adsnative.com +0.0.0.0 assets.adtaily.com +0.0.0.0 adtgs.com +0.0.0.0 fusion.adtoma.com +0.0.0.0 engage2.advanstar.com +0.0.0.0 ddnk.advertur.ru +0.0.0.0 ds.advg.jp +0.0.0.0 m.adx.bg +0.0.0.0 www.adshost2.com +0.0.0.0 ih.adscale.de +0.0.0.0 adservicedomain.info +0.0.0.0 adserver-voice-online.co.uk +0.0.0.0 adsgangsta.com +0.0.0.0 ad.ad-srv.net +0.0.0.0 www.adshot.de +0.0.0.0 f-nod1.adsniper.ru +0.0.0.0 sync2.adsniper.ru +0.0.0.0 cdn6.adspirit.de +0.0.0.0 www.adspace.be +0.0.0.0 adsplius.lt +0.0.0.0 ads.adsponse.de +0.0.0.0 static.ads-twitter.com +0.0.0.0 openx.adtext.ro +0.0.0.0 au-01.adtomafusion.com +0.0.0.0 bn-01.adtomafusion.com +0.0.0.0 rek.adtotal.pl +0.0.0.0 www.adtrade.net +0.0.0.0 adtradr.com +0.0.0.0 ads.adtube.de +0.0.0.0 www.adultcommercial.net +0.0.0.0 adultmoneymakers.com +0.0.0.0 tracking.adultsense.com +0.0.0.0 www.adult-tracker.de +0.0.0.0 ad.aduserver.com +0.0.0.0 adv758968.ru +0.0.0.0 advaction.ru +0.0.0.0 euroad1.advantage.as +0.0.0.0 mf.advantage.as +0.0.0.0 mfad1.advantage.as +0.0.0.0 adve.net +0.0.0.0 ad.adver.com.tw +0.0.0.0 apps.advertlets.com +0.0.0.0 ads.advertise.net +0.0.0.0 img.adverticum.net +0.0.0.0 imgs.adverticum.net +0.0.0.0 www.advertising365.com +0.0.0.0 titan.advertserve.com +0.0.0.0 images.adviews.de +0.0.0.0 www.adviews.de +0.0.0.0 adp.adview.pl +0.0.0.0 bi.adview.pl +0.0.0.0 chart.advinion.com +0.0.0.0 advizi.ru +0.0.0.0 ads.adwitserver.com +0.0.0.0 serve.adworldmedia.com +0.0.0.0 ad.adworx.at +0.0.0.0 www.ad-z.de +0.0.0.0 show.adzpower.com +0.0.0.0 ads.afa.net +0.0.0.0 affbeat.com +0.0.0.0 affiliate.affdirect.com +0.0.0.0 sttc.affiliate.hu +0.0.0.0 tr.affiliate.hu +0.0.0.0 img.network.affiliando.com +0.0.0.0 view.network.affiliando.com +0.0.0.0 ads.affiliateclub.com +0.0.0.0 affiliategroove.com +0.0.0.0 media.affiliatelounge.com +0.0.0.0 js.affiliatelounge.com +0.0.0.0 record.affiliatelounge.com +0.0.0.0 web1.affiliatelounge.com +0.0.0.0 banners.affilimatch.de +0.0.0.0 adserwer.afilo.pl +0.0.0.0 ads.afraccess.com +0.0.0.0 stats.agent.co.il +0.0.0.0 stats.agentinteractive.com +0.0.0.0 ac.ajur.info +0.0.0.0 openx.ajur.info +0.0.0.0 adlik2.akavita.com +0.0.0.0 spotxchange-a.akamaihd.net +0.0.0.0 all2lnk.com +0.0.0.0 ads.allaccess.com.ph +0.0.0.0 adcontent2.allaccess.com.ph +0.0.0.0 adservice.aliexpress.com +0.0.0.0 bokee.allyes.com +0.0.0.0 eastmoney.allyes.com +0.0.0.0 sroomafp.allyes.com +0.0.0.0 tom.allyes.com +0.0.0.0 yeskyafp.allyes.com +0.0.0.0 pqwaker.altervista.org +0.0.0.0 adimg.alice.it +0.0.0.0 adv.alice.it +0.0.0.0 advloc.alice.it +0.0.0.0 altmedia101.com +0.0.0.0 adtools2.amakings.com +0.0.0.0 adserver.amna.gr +0.0.0.0 10394-127.ampxchange.com +0.0.0.0 10394-4254.ampxchange.com +0.0.0.0 10394-2468.ampxchange.com +0.0.0.0 vfdeprod.amobee.com +0.0.0.0 widgets.amung.us +0.0.0.0 analytics.analytics-egain.com +0.0.0.0 cloud-us.analytics-egain.com +0.0.0.0 www.anastasiasaffiliate.com +0.0.0.0 advert.ananzi.co.za +0.0.0.0 advert2.ananzi.co.za +0.0.0.0 rpt.anchorfree.net +0.0.0.0 a.androidandme.com +0.0.0.0 analytics.androidandme.com +0.0.0.0 antventure.com +0.0.0.0 webtracker.apicasystem.com +0.0.0.0 junior.apk.net +0.0.0.0 openx.apollo.lv +0.0.0.0 five.partner.archive-it.org +0.0.0.0 stats.asp24.pl +0.0.0.0 www.astalavista.us +0.0.0.0 logw349.ati-host.net +0.0.0.0 rules.atgsvcs.com +0.0.0.0 logw312.ati-host.net +0.0.0.0 d.audienceiq.com +0.0.0.0 ads.autoscout24.com +0.0.0.0 ads.autotrader.com +0.0.0.0 adserving.autotrader.com +0.0.0.0 profiling.avandor.com +0.0.0.0 avantlink.com +0.0.0.0 www.avantlink.com +0.0.0.0 rev.avsforum.com +0.0.0.0 ads.avusa.co.za +0.0.0.0 analytics.aweber.com +0.0.0.0 tracker.azet.sk +0.0.0.0 www.azmsoft.com +0.0.0.0 ads.badische-zeitung.de +0.0.0.0 ads.balkanec.bg +0.0.0.0 bambergerkennanchitinous.com.abbp2.pw +0.0.0.0 error.banan.cz +0.0.0.0 banerator.net +0.0.0.0 ads3.bangkokpost.co.th +0.0.0.0 www.banner.cz +0.0.0.0 www.banner-exchange.nl +0.0.0.0 www.bannerexchange.co.nz +0.0.0.0 banners.host.bannerflow.com +0.0.0.0 www.bannergratis.it +0.0.0.0 max.bannermanager.gr +0.0.0.0 www.bannermanagement.nl +0.0.0.0 www.banner-rotation.com +0.0.0.0 ad.batanga.com +0.0.0.0 ad.bauerverlag.de +0.0.0.0 ads.baz.ch +0.0.0.0 t.bbtrack.net +0.0.0.0 ad.beepworld.de +0.0.0.0 ads.be2hand.com +0.0.0.0 app.beanstalkdata.com +0.0.0.0 www.beead.co.uk +0.0.0.0 tracker.beezup.com +0.0.0.0 promo.begun.ru +0.0.0.0 referal.begun.ru +0.0.0.0 api.behavioralengine.com +0.0.0.0 cdn.behavioralengine.com +0.0.0.0 www.belstat.be +0.0.0.0 www.belstat.com +0.0.0.0 serving.bepolite.eu +0.0.0.0 webtrends.besite.be +0.0.0.0 www.best-top.ro +0.0.0.0 imstore.bet365affiliates.com +0.0.0.0 oddbanner.bet-at-home.com +0.0.0.0 ads1.beta.lt +0.0.0.0 banners.betcris.com +0.0.0.0 banner.betfred.com +0.0.0.0 ad.beritasatumedia.com +0.0.0.0 www.bettertextads.com +0.0.0.0 ads.bgfree.com +0.0.0.0 banners.bgmaps.com +0.0.0.0 bgtop100.com +0.0.0.0 ads.bgtop.net +0.0.0.0 bgwebads.com +0.0.0.0 counter.bigli.ru +0.0.0.0 api.bigmobileads.com +0.0.0.0 bpm.tags.bigpondmedia.com +0.0.0.0 intext.billboard.cz +0.0.0.0 code.intext.billboard.cz +0.0.0.0 bbcdn.code.intext.billboard.cz +0.0.0.0 ads.biscom.net +0.0.0.0 dc.bizjournals.com +0.0.0.0 ads2.blastro.com +0.0.0.0 ads3.blastro.com +0.0.0.0 blekko.com +0.0.0.0 trak-analytics.blic.rs +0.0.0.0 ads.blizzard.com +0.0.0.0 www.blogcatalog.com +0.0.0.0 blogcounter.com +0.0.0.0 track.blogcounter.de +0.0.0.0 www.blogcounter.de +0.0.0.0 ads.blogdrive.com +0.0.0.0 pixel.blog.hu +0.0.0.0 ads.blogtalkradio.com +0.0.0.0 ox-d.blogtalkradio.com +0.0.0.0 adserver.bloodhorse.com +0.0.0.0 stats.bluebillywig.com +0.0.0.0 watershed.bm23.com +0.0.0.0 t.bmmetrix.com +0.0.0.0 www.bmmetrix.com +0.0.0.0 bannermanager.bnr.bg +0.0.0.0 ads.boardtracker.com +0.0.0.0 ranks.boardtracker.com +0.0.0.0 ads.boerse-express.com +0.0.0.0 adv.bol.bg +0.0.0.0 adserver.borsaitaliana.it +0.0.0.0 adserver.borsonline.hu +0.0.0.0 reklama.botevgrad.com +0.0.0.0 www.box.bg +0.0.0.0 tracker.brainsins.com +0.0.0.0 ads.brandeins.de +0.0.0.0 dolce-sportro.count.brat-online.ro +0.0.0.0 cc.bridgetrack.com +0.0.0.0 citi.bridgetrack.com +0.0.0.0 goku.brightcove.com +0.0.0.0 www.browser-statistik.de +0.0.0.0 ads.bsplayer.com +0.0.0.0 ads.bta.bg +0.0.0.0 ads.btv.bg +0.0.0.0 ads.buljobs.bg +0.0.0.0 js.bunchofads.com +0.0.0.0 statistik.bundestag.de +0.0.0.0 ads.businessclick.pl +0.0.0.0 d.buyescorttraffic.com +0.0.0.0 buylicensekey.com +0.0.0.0 assets.buysellads.com +0.0.0.0 cdn.buysellads.com +0.0.0.0 traffic.buyservices.com +0.0.0.0 ads.buzzcity.net +0.0.0.0 txads.buzzcity.com +0.0.0.0 www.buzzclick.com +0.0.0.0 adnetwork.buzzlogic.com +0.0.0.0 tr.buzzlogic.com +0.0.0.0 byet.org +0.0.0.0 blog.byethost.com +0.0.0.0 145-ct.c3tag.com +0.0.0.0 298-ct.c3tag.com +0.0.0.0 687-ct.c3tag.com +0.0.0.0 755-ct.c3tag.com +0.0.0.0 ads.calgarystampede.com +0.0.0.0 www.cambodiaoutsourcing.com +0.0.0.0 openx.camelmedia.net +0.0.0.0 srv.carbonads.net +0.0.0.0 ads.cars.com +0.0.0.0 adv.casinopays.com +0.0.0.0 www.casinotropez.com +0.0.0.0 tracking.cdiscount.com +0.0.0.0 cn.ecritel.bench.cedexis.com +0.0.0.0 c.cfjump.com +0.0.0.0 t.cfjump.com +0.0.0.0 adsapi.chartbeat.com +0.0.0.0 code.checkstat.nl +0.0.0.0 www.checkstat.nl +0.0.0.0 err.chicappa.jp +0.0.0.0 ads.china.com +0.0.0.0 v5.chinoc.net +0.0.0.0 ads.city24.ee +0.0.0.0 ckstatic.com +0.0.0.0 cdn.clic2pub.com +0.0.0.0 crv.clickad.pl +0.0.0.0 publishers.clickbooth.com +0.0.0.0 adsense.clicking.com.tw +0.0.0.0 banners.clickon.co.il +0.0.0.0 track.clickon.co.il +0.0.0.0 static.clickpapa.com +0.0.0.0 www.clickpapa.com +0.0.0.0 tracktrue.clicktrue.biz +0.0.0.0 www.clickvalidator.net +0.0.0.0 www.clickhouse.com +0.0.0.0 banners.clips4sale.com +0.0.0.0 adserver.clubs1.bg +0.0.0.0 ads.clubz.bg +0.0.0.0 adserver.clix.pt +0.0.0.0 ad.cmfu.com +0.0.0.0 openx.cnews.ru +0.0.0.0 c.cnstats.ru +0.0.0.0 www.cnstats.com +0.0.0.0 www.co2stats.com +0.0.0.0 anchor.coadvertise.com +0.0.0.0 ad.coas2.co.kr +0.0.0.0 traffic.prod.cobaltgroup.com +0.0.0.0 vcu.collserve.com +0.0.0.0 adss.comeadvertisewithus.com +0.0.0.0 www.compactads.com +0.0.0.0 ads.comperia.pl +0.0.0.0 pixel.condenastdigital.com +0.0.0.0 ads.consumeraffairs.com +0.0.0.0 api.contentclick.co.uk +0.0.0.0 www.contextualadv.com +0.0.0.0 www.contextpanel.com +0.0.0.0 www.conversionruler.com +0.0.0.0 pings.conviva.com +0.0.0.0 banners.copyscape.com +0.0.0.0 data.de.coremetrics.com +0.0.0.0 www.count24.de +0.0.0.0 www.countit.ch +0.0.0.0 www.counter-gratis.com +0.0.0.0 www.counter4you.net +0.0.0.0 cdn.dmpcounter.com +0.0.0.0 www.counting4free.com +0.0.0.0 www.counter.cz +0.0.0.0 connectionzone.com +0.0.0.0 www.cpays.com +0.0.0.0 www.cpmterra.com +0.0.0.0 roitrack.cptgt.com +0.0.0.0 ads.cpxcenter.com +0.0.0.0 adserving.cpxadroit.com +0.0.0.0 cdn.cpxinteractive.com +0.0.0.0 panther1.cpxinteractive.com +0.0.0.0 static.crakbanner.com +0.0.0.0 sh.creativcdn.net +0.0.0.0 adverts.creativemark.co.uk +0.0.0.0 ads.crisppremium.com +0.0.0.0 ox-d.crisppremium.com +0.0.0.0 www.crm-metrix.fr +0.0.0.0 stg.widget.crowdignite.com +0.0.0.0 ads.crossworxs.eu +0.0.0.0 i.ctnsnet.com +0.0.0.0 ads.milliyet.cubecdn.net +0.0.0.0 cdn.cxense.com +0.0.0.0 www.cybereps.com +0.0.0.0 banner.cybertechdev.com +0.0.0.0 cybertown.ru +0.0.0.0 count.daem0n.com +0.0.0.0 t.dailymail.co.uk +0.0.0.0 rta.dailymail.co.uk +0.0.0.0 ted.dailymail.co.uk +0.0.0.0 ads.darikweb.com +0.0.0.0 sync.darikweb.com +0.0.0.0 www1.darikweb.com +0.0.0.0 www.dataforce.net +0.0.0.0 tag.datariver.ru +0.0.0.0 banner.date.com +0.0.0.0 banners.datecs.bg +0.0.0.0 mb.datingadzone.com +0.0.0.0 ox.dateland.co.il +0.0.0.0 count.dba.dk +0.0.0.0 daylogs.com +0.0.0.0 advertising.dclux.com +0.0.0.0 tracking.dc-storm.com +0.0.0.0 connect.decknetwork.net +0.0.0.0 adv.deltanews.bg +0.0.0.0 fast.gannett.demdex.net +0.0.0.0 piwik.denik.cz +0.0.0.0 www.dia-traffic.com +0.0.0.0 counter.dieit.de +0.0.0.0 openx.diena.lv +0.0.0.0 ads.digitalalchemy.tv +0.0.0.0 yield.audience.digitalmedia.bg +0.0.0.0 tag.digitaltarget.ru +0.0.0.0 vstats.digitaltrends.com +0.0.0.0 st.directadvert.ru +0.0.0.0 www.directadvert.ru +0.0.0.0 ai.direct-software.com +0.0.0.0 roitrack.directdisplayad.com +0.0.0.0 aserve.directorym.com +0.0.0.0 cache.directorym.com +0.0.0.0 www.direct-stats.com +0.0.0.0 glitter.services.disqus.com +0.0.0.0 disqusads.com +0.0.0.0 dltags.com +0.0.0.0 analyticsv2.dol.gr +0.0.0.0 banners.dol.gr +0.0.0.0 return.domainnamesales.com +0.0.0.0 ads.domainbg.com +0.0.0.0 publishers.domainadvertising.com +0.0.0.0 return.bs.domainnamesales.com +0.0.0.0 ad.donanimhaber.com +0.0.0.0 adv.dontcrack.com +0.0.0.0 script.dotmetrics.net +0.0.0.0 test-script.dotmetrics.net +0.0.0.0 ads.dotomi.com +0.0.0.0 iad-login.dotomi.com +0.0.0.0 ads.double.net +0.0.0.0 imp.double.net +0.0.0.0 track.double.net +0.0.0.0 ad03.doubleadx.com +0.0.0.0 marketing.doubleclickindustries.com +0.0.0.0 ads.draugas.lt +0.0.0.0 tracking.dsmmadvantage.com +0.0.0.0 tracking.dtiserv2.com +0.0.0.0 ad.dumedia.ru +0.0.0.0 track.dvdbox.com +0.0.0.0 www.dwin1.com +0.0.0.0 ads.dynamic-media.org +0.0.0.0 hits.e.cl +0.0.0.0 ad.eanalyzer.de +0.0.0.0 cdn.earnify.com +0.0.0.0 ay.eastmoney.com +0.0.0.0 cdn.easy-ads.com +0.0.0.0 top.easy.lv +0.0.0.0 web.easyresearch.se +0.0.0.0 web2.easyresearch.se +0.0.0.0 web3.easyresearch.se +0.0.0.0 www.ebannertraffic.com +0.0.0.0 ox.e-card.bg +0.0.0.0 ox-s.e-card.bg +0.0.0.0 prom.ecato.net +0.0.0.0 ads.eccentrix.com +0.0.0.0 c.ecliks.com +0.0.0.0 webstats.eco.de +0.0.0.0 ad.econet.hu +0.0.0.0 b.economedia.bg +0.0.0.0 ad.ecplaza.net +0.0.0.0 ads.ecrush.com +0.0.0.0 global.ecxtracking.com +0.0.0.0 ads.bridgetrack.com.edgesuite.net +0.0.0.0 ads.edipresse.pl +0.0.0.0 banners.e-dologic.co.il +0.0.0.0 pk-cdn.effectivemeasure.net +0.0.0.0 th-cdn.effectivemeasure.net +0.0.0.0 ads.e-go.gr +0.0.0.0 stats.e-go.gr +0.0.0.0 eisenstein.dk +0.0.0.0 global.ekmpinpoint.com +0.0.0.0 ads2.ekologia.pl +0.0.0.0 stat.ekologia.pl +0.0.0.0 ads.elmaz.com +0.0.0.0 www.ellads.com +0.0.0.0 s1415903351.t.eloqua.com +0.0.0.0 hits.eluniversal.com.mx +0.0.0.0 profitshare.emag.ro +0.0.0.0 email-reflex.com +0.0.0.0 cdn3.emediate.eu +0.0.0.0 cdn8.emediate.eu +0.0.0.0 eas5.emediate.eu +0.0.0.0 ism6.emediate.eu +0.0.0.0 dotnet.endai.com +0.0.0.0 trk.enecto.com +0.0.0.0 openx.engagedmediamags.com +0.0.0.0 adsrv.ads.eniro.com +0.0.0.0 cams.enjoy.be +0.0.0.0 publicidad.entelchile.net +0.0.0.0 sa.entireweb.com +0.0.0.0 entk.net +0.0.0.0 e-marketing.entelchile.net +0.0.0.0 adserving03.epi.es +0.0.0.0 code.etracker.com +0.0.0.0 www.etracker.de +0.0.0.0 top.er.cz +0.0.0.0 ads.ere.net +0.0.0.0 ads.ereklama.mk +0.0.0.0 ads.ersamedia.ch +0.0.0.0 tracking.euroads.dk +0.0.0.0 it.erosadv.com +0.0.0.0 ads.eurogamer.net +0.0.0.0 adserver.euronics.de +0.0.0.0 prm.europacash.com +0.0.0.0 geoads.eurorevenue.com +0.0.0.0 advert.eurotip.cz +0.0.0.0 pixel-user-1039.everesttech.net +0.0.0.0 venetian.evyy.net +0.0.0.0 ads2.evz.ro +0.0.0.0 advert.exaccess.ru +0.0.0.0 dynamic.exaccess.ru +0.0.0.0 static.exaccess.ru +0.0.0.0 www.exchangead.com +0.0.0.0 media.exchange.bg +0.0.0.0 www.exchange.bg +0.0.0.0 exclusiotv.be +0.0.0.0 www.experclick.com +0.0.0.0 expo-max.com +0.0.0.0 admedia.expedia.com +0.0.0.0 expired-targeted.com +0.0.0.0 ads.eyeonx.ch +0.0.0.0 resources.eyereturn.com +0.0.0.0 advertising.ezanga.com +0.0.0.0 1278725189.pub.ezanga.com +0.0.0.0 st.fanatics.com +0.0.0.0 a.farlex.com +0.0.0.0 fashion-tube.be +0.0.0.0 adsrv.fashion.bg +0.0.0.0 fastclick.co +0.0.0.0 fastclick.ir +0.0.0.0 fastonlineusers.com +0.0.0.0 counter1.fc2.com +0.0.0.0 error.fc2.com +0.0.0.0 as.featurelink.com +0.0.0.0 admega.feed.gr +0.0.0.0 banners.ffsbg.com +0.0.0.0 ads.fiat-bg.org +0.0.0.0 adboost.finalid.com +0.0.0.0 tracker.financialcontent.com +0.0.0.0 banner.finn.no +0.0.0.0 ecdn.firstimpression.io +0.0.0.0 s01.flagcounter.com +0.0.0.0 s02.flagcounter.com +0.0.0.0 s03.flagcounter.com +0.0.0.0 s04.flagcounter.com +0.0.0.0 s06.flagcounter.com +0.0.0.0 s07.flagcounter.com +0.0.0.0 s08.flagcounter.com +0.0.0.0 s09.flagcounter.com +0.0.0.0 s11.flagcounter.com +0.0.0.0 2.s09.flagcounter.com +0.0.0.0 s10.flagcounter.com +0.0.0.0 disco.flashbannernow.com +0.0.0.0 banners.flingguru.com +0.0.0.0 c.flx1.com +0.0.0.0 www.fncash.com +0.0.0.0 ads.focus-news.net +0.0.0.0 rnews.focus-news.net +0.0.0.0 controller.foreseeresults.com +0.0.0.0 forvideo.at +0.0.0.0 ads05.freecity.de +0.0.0.0 maurobb.freecounter.it +0.0.0.0 www.freecounter.it +0.0.0.0 freegeoip.net +0.0.0.0 a9.sc.freepornvs.com +0.0.0.0 www.free-toplisten.at +0.0.0.0 count.freett.com +0.0.0.0 counters.freewebs.com +0.0.0.0 error.freewebsites.com +0.0.0.0 www.freewebsites.com +0.0.0.0 nx.frosmo.com +0.0.0.0 tr1.frosmo.com +0.0.0.0 ads.fuelo.net +0.0.0.0 ads.fulltiltpoker.com +0.0.0.0 banners.fulltiltpoker.com +0.0.0.0 www.fusestats.com +0.0.0.0 fwbntw.com +0.0.0.0 fxyc0dwa.com +0.0.0.0 adserving.fyi-marketing.com +0.0.0.0 errdoc.gabia.net +0.0.0.0 adserver.gadu-gadu.pl +0.0.0.0 adsm.gameforge.de +0.0.0.0 tracking.gameforge.de +0.0.0.0 ingameads.gameloft.com +0.0.0.0 ads.gateway.bg +0.0.0.0 analytics.gazeta.pl +0.0.0.0 top.gde.ru +0.0.0.0 www.geoplugin.net +0.0.0.0 ads.geornmd.net +0.0.0.0 adv.gepime.com +0.0.0.0 cloud.getpopunder.com +0.0.0.0 getrank.net +0.0.0.0 www.getsmart.com +0.0.0.0 getstatistics.se +0.0.0.0 www.getstatistics.se +0.0.0.0 truehits.gits.net.th +0.0.0.0 truehits3.gits.net.th +0.0.0.0 www17-orig.glam.com +0.0.0.0 www30a6-orig.glam.com +0.0.0.0 insert.gloadmarket.com +0.0.0.0 promotools.globalmailer.com +0.0.0.0 promotools3.globalmailer.com +0.0.0.0 promotools4.globalmailer.com +0.0.0.0 ads.img.globo.com +0.0.0.0 at.gmads.net +0.0.0.0 dk.gmads.net +0.0.0.0 es.gmads.net +0.0.0.0 pl.gmads.net +0.0.0.0 c.gmtrack.com +0.0.0.0 affiliate.gmtracker.com +0.0.0.0 adserver2.goals365.com +0.0.0.0 counter.goingup.com +0.0.0.0 www.goldadvert.cz +0.0.0.0 js-at.goldbach.com +0.0.0.0 goldbach-targeting.ch +0.0.0.0 c.go-mpulse.net +0.0.0.0 engine.goodadvert.ru +0.0.0.0 files.goodadvert.ru +0.0.0.0 googlus.com +0.0.0.0 ads.gorillavid.in +0.0.0.0 adtools.gossipkings.com +0.0.0.0 www.gpr.hu +0.0.0.0 ad-incisive.grapeshot.co.uk +0.0.0.0 reed-cw.grapeshot.co.uk +0.0.0.0 adv.gratuito.st +0.0.0.0 rma-api.gravity.com +0.0.0.0 grmtech.net +0.0.0.0 de.grmtech.net +0.0.0.0 www.grmtech.net +0.0.0.0 tracker.gtarcade.com +0.0.0.0 fx.gtop.ro +0.0.0.0 static.gtop.ro +0.0.0.0 www.gtop.ro +0.0.0.0 fx.gtopstats.com +0.0.0.0 ads.gumgum.com +0.0.0.0 c.gumgum.com +0.0.0.0 cdn.gumgum.com +0.0.0.0 guruads.de +0.0.0.0 beacon.gutefrage.net +0.0.0.0 adhese.gva.be +0.0.0.0 tags.h12-media.com +0.0.0.0 cc12797.counter.hackers.lv +0.0.0.0 cc9905.counter.hackers.lv +0.0.0.0 hapjes-maken.eu +0.0.0.0 stats.berkman.harvard.edu +0.0.0.0 ads.haskovo.net +0.0.0.0 adhese.hbvl.be +0.0.0.0 helpingtrk.com +0.0.0.0 ads2.helpos.com +0.0.0.0 ads.hexun.com +0.0.0.0 hx.hexun.com +0.0.0.0 utrack.hexun.com +0.0.0.0 www.hey.lt +0.0.0.0 ads.highdefdigest.com +0.0.0.0 ad.hirekmedia.hu +0.0.0.0 adserver.hispanoclick.com +0.0.0.0 spravki-online.hit.bg +0.0.0.0 c.hit.ua +0.0.0.0 hit-now.com +0.0.0.0 hitslog.com +0.0.0.0 www.hittracker.org +0.0.0.0 hitwebcounter.com +0.0.0.0 images.hitwise.co.uk +0.0.0.0 hxtrack.holidayextras.co.uk +0.0.0.0 www.adserver.home.pl +0.0.0.0 homes.bg +0.0.0.0 cgi.honesty.com +0.0.0.0 e1.static.hoptopboy.com +0.0.0.0 ox.hoosiertimes.com +0.0.0.0 ad.hosting.pl +0.0.0.0 stats.hosting24.com +0.0.0.0 error.hostinger.eu +0.0.0.0 ads.hotarena.net +0.0.0.0 ad2.hotels.com +0.0.0.0 h06.hotrank.com.tw +0.0.0.0 www.hotranks.com +0.0.0.0 banner.hpmdnetwork.ru +0.0.0.0 click.html.it +0.0.0.0 js.hubspot.com +0.0.0.0 ads.hulu.com +0.0.0.0 ads.hurra.de +0.0.0.0 tracker.dev.hearst.nl +0.0.0.0 ads2000.hw.net +0.0.0.0 dserver.hw.net +0.0.0.0 www.hw-ad.de +0.0.0.0 www.hxtrack.com +0.0.0.0 www.hypertracker.com +0.0.0.0 ev.ib-ibi.com +0.0.0.0 r.ibg.bg +0.0.0.0 bbcdn-bbnaut.ibillboard.com +0.0.0.0 bbcdn-tag.ibillboard.com +0.0.0.0 www.ibis.cz +0.0.0.0 hits.icdirect.com +0.0.0.0 www.icentric.net +0.0.0.0 ado.icorp.ro +0.0.0.0 ads.icorp.ro +0.0.0.0 log.idg.no +0.0.0.0 adidm07.idmnet.pl +0.0.0.0 adsrv2.ihlassondakika.com +0.0.0.0 script.ioam.de +0.0.0.0 adserver.ilmessaggero.it +0.0.0.0 adv.ilsole24ore.it +0.0.0.0 ads.imarketservices.com +0.0.0.0 i.imedia.cz +0.0.0.0 ads.imeem.com +0.0.0.0 stats.immense.net +0.0.0.0 ads.imguol.com +0.0.0.0 tracking.immobilienscout24.de +0.0.0.0 affiliate.imperiaonline.org +0.0.0.0 secure-dcr.imrworldwide.com +0.0.0.0 x.imwx.com +0.0.0.0 adbox.inbox-online.com +0.0.0.0 aff.indirdik.com +0.0.0.0 ads.indexinfo.org +0.0.0.0 adcenter.in2.com +0.0.0.0 banners.inetfast.com +0.0.0.0 ads.inews.bg +0.0.0.0 servedby.informatm.com +0.0.0.0 stats.infomedia.net +0.0.0.0 stats.inist.fr +0.0.0.0 click.inn.co.il +0.0.0.0 bimonline.insites.be +0.0.0.0 ads.insmarket.bg +0.0.0.0 rs.instantservice.com +0.0.0.0 ads.inspirestudio.net +0.0.0.0 int.cdn.hw.installzone.info +0.0.0.0 counter.internet.ge +0.0.0.0 indiads.com +0.0.0.0 ads.inviziads.com +0.0.0.0 www.imiclk.com +0.0.0.0 avp.innity.com +0.0.0.0 www.innovateads.com +0.0.0.0 content.integral-marketing.com +0.0.0.0 media.intelia.it +0.0.0.0 www.intelli-tracker.com +0.0.0.0 geo.interia.pl +0.0.0.0 iwa.hit.interia.pl +0.0.0.0 cdn.interactivemedia.net +0.0.0.0 adserwer.intercon.pl +0.0.0.0 intermediads.com +0.0.0.0 www.interstats.nl +0.0.0.0 pl-engine.intextad.net +0.0.0.0 slo-engine.intextad.net +0.0.0.0 ox.invia.cz +0.0.0.0 ad.investor.bg +0.0.0.0 ad01.investor.bg +0.0.0.0 s1.inviziads.com +0.0.0.0 api.ipinfodb.com +0.0.0.0 ip-api.com +0.0.0.0 pro.ip-api.com +0.0.0.0 adserver.iprom.net +0.0.0.0 central.iprom.net +0.0.0.0 ipromsi.iprom.net +0.0.0.0 krater.iprom.net +0.0.0.0 tie.iprom.net +0.0.0.0 www.ipstat.com +0.0.0.0 delivery.ipvertising.com +0.0.0.0 www.iranwebads.com +0.0.0.0 ad2.ireklama.cz +0.0.0.0 clicktracker.iscan.nl +0.0.0.0 banman.isoftmarketing.com +0.0.0.0 isralink.net +0.0.0.0 ts.istrack.com +0.0.0.0 adshow.it168.com +0.0.0.0 stat.it168.com +0.0.0.0 itcompany.com +0.0.0.0 www.itcompany.com +0.0.0.0 stats.itweb.co.za +0.0.0.0 www.iws.ro +0.0.0.0 link.ixs1.net +0.0.0.0 raahenseutu.jainos.fi +0.0.0.0 ad.jamba.de +0.0.0.0 ad.janalta.com +0.0.0.0 adserver.janesguide.com +0.0.0.0 piwik.jccm.es +0.0.0.0 pagerank.jklir.net +0.0.0.0 ads.joemonster.org +0.0.0.0 site.johnlewis.com +0.0.0.0 www.jouwstats.nl +0.0.0.0 www.jscount.com +0.0.0.0 ck.juicyads.com +0.0.0.0 js.juicyads.com +0.0.0.0 ad.jugem.jp +0.0.0.0 a.jumptap.com +0.0.0.0 tracking.justpremium.com +0.0.0.0 ads.justpremium.nl +0.0.0.0 ads.justrelevant.com +0.0.0.0 ads.kaldata.com +0.0.0.0 events.kalooga.com +0.0.0.0 stats.kaltura.com +0.0.0.0 banner.kanald.com.tr +0.0.0.0 ads.kartu.lt +0.0.0.0 cache.ads.kartu.lt +0.0.0.0 scripts.kataweb.it +0.0.0.0 b.kavanga.ru +0.0.0.0 id.kbmg.cz +0.0.0.0 indianapolis.hosted.xms.keynote.com +0.0.0.0 webeffective.keynote.com +0.0.0.0 a.kickassunblock.net +0.0.0.0 adserve.kikizo.com +0.0.0.0 adserver.kissfm.ro +0.0.0.0 l.kavanga.ru +0.0.0.0 adsby.klikki.com +0.0.0.0 click.kmindex.ru +0.0.0.0 counter.kmindex.ru +0.0.0.0 counting.kmindex.ru +0.0.0.0 www.kmindex.ru +0.0.0.0 openx.kokoma.pl +0.0.0.0 images.kolmic.com +0.0.0.0 img.ads.kompas.com +0.0.0.0 ads3.kompasads.com +0.0.0.0 ads4.kompasads.com +0.0.0.0 ads5.kompasads.com +0.0.0.0 ads6.kompasads.com +0.0.0.0 ads.kozmetika-bg.com +0.0.0.0 sitestat.kpn-is.nl +0.0.0.0 beacon.krxd.net +0.0.0.0 recl.kulinar.bg +0.0.0.0 wa.kurier.at +0.0.0.0 ads.kurir-info.rs +0.0.0.0 cdn-analytics.ladmedia.fr +0.0.0.0 layer-ad.org +0.0.0.0 ads.layer-ad.org +0.0.0.0 banner.lbs.km.ru +0.0.0.0 lead-123.com +0.0.0.0 secure.leadforensics.com +0.0.0.0 vlog.leadformix.com +0.0.0.0 tracking.lengow.com +0.0.0.0 engine.letsstat.nl +0.0.0.0 pfa.levexis.com +0.0.0.0 res.levexis.com +0.0.0.0 visitors.lexus-europe.com +0.0.0.0 lib4.libstat.com +0.0.0.0 lib6.libstat.com +0.0.0.0 logos.libstat.com +0.0.0.0 d.ligatus.com +0.0.0.0 ms.ligatus.com +0.0.0.0 www.lifeforminc.com +0.0.0.0 adtrack.link.ch +0.0.0.0 link.ru +0.0.0.0 link.link.ru +0.0.0.0 ads.linki.nl +0.0.0.0 www.linkads.de +0.0.0.0 www.linkbuddies.com +0.0.0.0 www.linkconnector.com +0.0.0.0 content.linkoffers.net +0.0.0.0 track.linkoffers.net +0.0.0.0 linksexchange.net +0.0.0.0 www.linkworth.com +0.0.0.0 gr.linkwi.se +0.0.0.0 ad.lista.cz +0.0.0.0 ads.listingware.com +0.0.0.0 s1.listrakbi.com +0.0.0.0 livecams.nl +0.0.0.0 click.adv.livedoor.com +0.0.0.0 counter2.blog.livedoor.com +0.0.0.0 image.adv.livedoor.com +0.0.0.0 js.livehelper.com +0.0.0.0 newbrowse.livehelper.com +0.0.0.0 pixels.livingsocial.com +0.0.0.0 stats.livingsocial.com +0.0.0.0 a.livesportmedia.eu +0.0.0.0 advert.livesportmedia.eu +0.0.0.0 ads.livescore.com +0.0.0.0 ad.lkqd.net +0.0.0.0 omnituretrack.local.com +0.0.0.0 w10.localadbuy.com +0.0.0.0 err.lolipop.jp +0.0.0.0 adserver.lonuncavisto.com +0.0.0.0 r.looksmart.com +0.0.0.0 banners.lottoelite.com +0.0.0.0 partner.loveplanet.ru +0.0.0.0 gw003.lphbs.com +0.0.0.0 gwa.lphbs.com +0.0.0.0 gwb.lphbs.com +0.0.0.0 gwc.lphbs.com +0.0.0.0 gwd.lphbs.com +0.0.0.0 adsy.lsipack.com +0.0.0.0 is.luxup.ru +0.0.0.0 m2k.ru +0.0.0.0 images.m4n.nl +0.0.0.0 ad.m5prod.net +0.0.0.0 ad.m-adx.com +0.0.0.0 www3.macys.com +0.0.0.0 media.m-adx.com +0.0.0.0 ads.mail.bg +0.0.0.0 adsy.mail.bg +0.0.0.0 www.mainadv.com +0.0.0.0 ads.maleflixxx.tv +0.0.0.0 adv.mangoadv.com +0.0.0.0 ads.marica.bg +0.0.0.0 adv.marica.bg +0.0.0.0 pro.marinsm.com +0.0.0.0 t3.marinsm.com +0.0.0.0 tag.marinsm.com +0.0.0.0 internet.marsmediachannels.com +0.0.0.0 app.mashero.com +0.0.0.0 mass-traffic.com +0.0.0.0 mastertarget.ru +0.0.0.0 tags.mathtag.com +0.0.0.0 100.mbn.com.ua +0.0.0.0 120.mbn.com.ua +0.0.0.0 160.mbn.com.ua +0.0.0.0 classic.mbn.com.ua +0.0.0.0 vitals.tracking.mdxdata.com +0.0.0.0 mcmads.mediacapital.pt +0.0.0.0 piwik.medienhaus.com +0.0.0.0 ad.mediaprostor.cz +0.0.0.0 webtrekk.mediaset.net +0.0.0.0 advert.mediaswiss.rs +0.0.0.0 search.mediatarget.com +0.0.0.0 app.medyanetads.com +0.0.0.0 counter.megaindex.ru +0.0.0.0 banners.mellowads.com +0.0.0.0 openx.mercatormedia.com +0.0.0.0 www.mercuras.com +0.0.0.0 adserv2.meritdesigns.com +0.0.0.0 action.metaffiliation.com +0.0.0.0 tracking.metalyzer.com +0.0.0.0 www.metavertising.com +0.0.0.0 ads.mezimedia.com +0.0.0.0 mdctrail.com +0.0.0.0 pubs.mgn.net +0.0.0.0 beacon.mhtr.be +0.0.0.0 ads.miarroba.com +0.0.0.0 send.microad.jp +0.0.0.0 ssend.microad.jp +0.0.0.0 track.send.microad.jp +0.0.0.0 d-track.send.microad.jp +0.0.0.0 micosoft.com-web.support +0.0.0.0 mixmarket.biz +0.0.0.0 www.mktrack.com +0.0.0.0 www.mlclick.com +0.0.0.0 www.mmaaxx.com +0.0.0.0 mmgads.com +0.0.0.0 www.mmgads.com +0.0.0.0 mmptrack.com +0.0.0.0 ads.mnemosoft.com +0.0.0.0 tr.mobiadserv.com +0.0.0.0 ads.mobilemarketer.com +0.0.0.0 a.mobify.com +0.0.0.0 mola77.mobilenobo.com +0.0.0.0 a.moitepari.bg +0.0.0.0 adserver.moitepari.bg +0.0.0.0 ads.monetize-me.com +0.0.0.0 mein.monster.de +0.0.0.0 cookie.monster.com +0.0.0.0 www.mongoosemetrics.com +0.0.0.0 ib.mookie1.com +0.0.0.0 piwik.mortgageloan.com +0.0.0.0 webstats.motigo.com +0.0.0.0 m1.webstats.motigo.com +0.0.0.0 ads.mpm.com.mk +0.0.0.0 msgtag.com +0.0.0.0 img.msgtag.com +0.0.0.0 www.msgtag.com +0.0.0.0 bms.msk.bg +0.0.0.0 no.counter.mtgnewmedia.se +0.0.0.0 www.myclickbankads.com +0.0.0.0 get.mycounter.ua +0.0.0.0 scripts.mycounter.ua +0.0.0.0 get.mycounter.com.ua +0.0.0.0 scripts.mycounter.com.ua +0.0.0.0 ad.mylook.ee +0.0.0.0 www.mylottoadserv.com +0.0.0.0 affiliate.mymall.bg +0.0.0.0 banner.mymedia.bg +0.0.0.0 banners.mymedia.bg +0.0.0.0 rm.myoc.com +0.0.0.0 www.myreferer.com +0.0.0.0 stat.mystat.hu +0.0.0.0 www.mystats.nl +0.0.0.0 www2.mystats.nl +0.0.0.0 www.mytoplist.gen.tr +0.0.0.0 n180adserv.com +0.0.0.0 n251adserv.com +0.0.0.0 ads.naftemporiki.gr +0.0.0.0 www.nalook.com +0.0.0.0 sponsoredlinks.nationalgeographic.com +0.0.0.0 www3.nationalgeographic.com +0.0.0.0 ads.nationchannel.com +0.0.0.0 adssrv.nationmultimedia.com +0.0.0.0 labs.natpal.com +0.0.0.0 c1.navrcholu.cz +0.0.0.0 xml.nbcsearch.com +0.0.0.0 xml2.nbcsearch.com +0.0.0.0 www.ndparking.com +0.0.0.0 ads.neg.bg +0.0.0.0 reklama.neg.bg +0.0.0.0 adlev.neodatagroup.com +0.0.0.0 img.neogen.ro +0.0.0.0 openx.net.hr +0.0.0.0 www.netagent.cz +0.0.0.0 adserver.netcollex.co.uk +0.0.0.0 hits.netgeography.net +0.0.0.0 ad.netgoo.com +0.0.0.0 ads.netinfo.bg +0.0.0.0 adv.netinfo.bg +0.0.0.0 stat.netinfocompany.bg +0.0.0.0 ads.ads.netlog.com +0.0.0.0 pool.ads.netlog.com +0.0.0.0 script.netminers.dk +0.0.0.0 nl-moneyou.netmining.com +0.0.0.0 nl-saab.netmining.com +0.0.0.0 bkrntr.netmng.com +0.0.0.0 nan.netmng.com +0.0.0.0 com-quidco.netmng.com +0.0.0.0 rbk.netmng.com +0.0.0.0 www.netmaxx.com +0.0.0.0 ads.netrition.com +0.0.0.0 cl.netseer.com +0.0.0.0 evbeacon.networksolutions.com +0.0.0.0 ad.next2news.com +0.0.0.0 beacon-5.newrelic.com +0.0.0.0 delivery.ad.newsnow.net +0.0.0.0 b.nex.bg +0.0.0.0 e.nexac.com +0.0.0.0 f.nexac.com +0.0.0.0 r.nexac.com +0.0.0.0 turn.nexac.com +0.0.0.0 vte.nexteramedia.com +0.0.0.0 ngacm.com +0.0.0.0 ngastatic.com +0.0.0.0 www.nlbanner.nl +0.0.0.0 banner.nonstoppartner.de +0.0.0.0 ads.novinar.bg +0.0.0.0 adv.novinar.bg +0.0.0.0 ads.novsport.com +0.0.0.0 www.nowstat.com +0.0.0.0 bam.nr-data.net +0.0.0.0 imgcdn.nrelate.com +0.0.0.0 pp.nrelate.com +0.0.0.0 vt-1.nrelate.com +0.0.0.0 ntlligent.info +0.0.0.0 banner.nttnavi.co.jp +0.0.0.0 ntweb.org +0.0.0.0 i.nuseek.com +0.0.0.0 www1.nuseek.com +0.0.0.0 www2.nuseek.com +0.0.0.0 www3.nuseek.com +0.0.0.0 nxtck.com +0.0.0.0 p.nxtck.com +0.0.0.0 observare.de +0.0.0.0 banner-a.oddcast.com +0.0.0.0 banner-d.oddcast.com +0.0.0.0 tracking.oe24.at +0.0.0.0 www18.officedepot.com +0.0.0.0 reklama.offmedia.bg +0.0.0.0 r.offnews.bg +0.0.0.0 ads.ogdenpubs.com +0.0.0.0 counter.ok.ee +0.0.0.0 ads.olx.com +0.0.0.0 adserver.omroepflevoland.nl +0.0.0.0 logo.onlinewebstat.com +0.0.0.0 ads1.omdadget.com +0.0.0.0 track.omguk.com +0.0.0.0 www.on2url.com +0.0.0.0 emisjawidgeet.onet.pl +0.0.0.0 tracking.onefeed.co.uk +0.0.0.0 www.onestatfree.com +0.0.0.0 one.ru +0.0.0.0 stats0.one.ru +0.0.0.0 stats1.one.ru +0.0.0.0 stats2.one.ru +0.0.0.0 stats.media.onet.pl +0.0.0.0 ad.onlinechange.biz +0.0.0.0 404.online.net +0.0.0.0 aa.online-metrix.net +0.0.0.0 h.online-metrix.net +0.0.0.0 sayac.onlinewebstats.com +0.0.0.0 lifemediahouse1.onlinewelten.com +0.0.0.0 openstat.net +0.0.0.0 c1.openx.org +0.0.0.0 c3.openx.org +0.0.0.0 invitation.opinionbar.com +0.0.0.0 ad.orbitel.bg +0.0.0.0 servedby.orn-adserver.nl +0.0.0.0 otclick-adv.ru +0.0.0.0 otracking.com +0.0.0.0 odb.outbrain.com +0.0.0.0 pub.oxado.com +0.0.0.0 www.oxiads.fr +0.0.0.0 geoip.p24.hu +0.0.0.0 stat.p24.hu +0.0.0.0 www.pagerank10.co.uk +0.0.0.0 parkingcrew.net +0.0.0.0 paidstats.com +0.0.0.0 counter.paradise.net.nz +0.0.0.0 img.parked.ru +0.0.0.0 park.parkingpanel.com +0.0.0.0 www.partner-ads.com +0.0.0.0 stats.partypoker.com +0.0.0.0 ads.partystars.bg +0.0.0.0 ad.payclick.it +0.0.0.0 stat.pchome.net +0.0.0.0 catrg.peer39.net +0.0.0.0 trg.peer39.net +0.0.0.0 pt.peerius.com +0.0.0.0 counter.top100.penki.lt +0.0.0.0 tag.perfectaudience.com +0.0.0.0 b1.perfb.com +0.0.0.0 stats.persgroep.be +0.0.0.0 stats.persgroep.nl +0.0.0.0 count.pcpop.com +0.0.0.0 pixel.pcworld.com +0.0.0.0 viewer.peer39.com +0.0.0.0 ads.periodistadigital.com +0.0.0.0 utsdpp.persgroep.net +0.0.0.0 pgssl.com +0.0.0.0 pub.pgssl.com +0.0.0.0 pharmacyrxone.com +0.0.0.0 www.pheedo.com +0.0.0.0 ads.phillipsdata.us +0.0.0.0 ads.phillyadclub.com +0.0.0.0 ox.pigu.lt +0.0.0.0 ads.pimdesign.org +0.0.0.0 rum-collector.pingdom.net +0.0.0.0 rum-static.pingdom.net +0.0.0.0 ads.pinger.com +0.0.0.0 banners.pinnaclesports.com +0.0.0.0 www.pixazza.com +0.0.0.0 banner.play-asia.com +0.0.0.0 ads.playboy.bg +0.0.0.0 i.plug.it +0.0.0.0 adserver.playtv.fr +0.0.0.0 pu.plugrush.com +0.0.0.0 webstats.plus.net +0.0.0.0 pxl.pmsrvr.com +0.0.0.0 po.st +0.0.0.0 ads.po-zdravidnes.com +0.0.0.0 static.pochta.ru +0.0.0.0 cnt2.pocitadlo.cz +0.0.0.0 c.pocitadlo.sk +0.0.0.0 piwik.pokerlistings.com +0.0.0.0 www1.pollg.com +0.0.0.0 www.pollmonkey.com +0.0.0.0 c2.popads.net +0.0.0.0 www.popadvert.com +0.0.0.0 world.popadscdn.net +0.0.0.0 popcounter.com +0.0.0.0 partners.popmatters.com +0.0.0.0 chezh1.popmarker.com +0.0.0.0 ads.popularno.mk +0.0.0.0 popuptraf.ru +0.0.0.0 www.popuptraf.ru +0.0.0.0 cdn.popwin.net +0.0.0.0 ht.pornhub.com +0.0.0.0 porntraff.com +0.0.0.0 www2.portdetective.com +0.0.0.0 inapi.posst.co +0.0.0.0 prstats.postrelease.com +0.0.0.0 www.ppctracking.net +0.0.0.0 adtxt.prbn.ru +0.0.0.0 ad468.prbn.ru +0.0.0.0 www.predictad.com +0.0.0.0 a.press24.mk +0.0.0.0 www.pr-free.de +0.0.0.0 profitshare.bg +0.0.0.0 www.promobenef.com +0.0.0.0 track.promptfile.com +0.0.0.0 tr.prospecteye.com +0.0.0.0 profitshare.ro +0.0.0.0 www.profitzone.com +0.0.0.0 www.promo.com.au +0.0.0.0 ads-kurir.providus.rs +0.0.0.0 servedby.proxena-adserver.com +0.0.0.0 sdc.prudential.com +0.0.0.0 ptp4ever.net +0.0.0.0 www.ptp4ever.net +0.0.0.0 static.pubdirecte.com +0.0.0.0 bid.pubmatic.com +0.0.0.0 track.pubmatic.com +0.0.0.0 report-ads-to.pubnation.com +0.0.0.0 pubx.ch +0.0.0.0 pl11074444.puhtml.com +0.0.0.0 pl12258511.puhtml.com +0.0.0.0 u1.puls.lv +0.0.0.0 ads.puls24.mk +0.0.0.0 track.pulse360.com +0.0.0.0 ad.punto-informatico.it +0.0.0.0 www.qbop.com +0.0.0.0 e1.cdn.qnsr.com +0.0.0.0 l1.cdn.qnsr.com +0.0.0.0 qualityporn.biz +0.0.0.0 siteinterceptco1.qualtrics.com +0.0.0.0 reports.quisma.com +0.0.0.0 ads.racunalniske-novice.com +0.0.0.0 ads.radar.bg +0.0.0.0 ads.radioactive.se +0.0.0.0 stats2.radiocompanion.com +0.0.0.0 www.ranking-charts.de +0.0.0.0 srv1.rapidstats.de +0.0.0.0 www.random-logic.com +0.0.0.0 www.ranking-hits.de +0.0.0.0 counter.rapidcounter.com +0.0.0.0 www.rapidcounter.com +0.0.0.0 webstats.web.rcn.net +0.0.0.0 reactads.com +0.0.0.0 adserver.realhomesex.net +0.0.0.0 banners.realitycash.com +0.0.0.0 www.realist.gen.tr +0.0.0.0 go.realvu.net +0.0.0.0 noah.reddion.com +0.0.0.0 adworks.rediff.com +0.0.0.0 imadworks.rediff.com +0.0.0.0 redirectid.ru +0.0.0.0 redirectcpv.com +0.0.0.0 js.ua.redtram.com +0.0.0.0 n4p.ua.redtram.com +0.0.0.0 www.refer.ru +0.0.0.0 adserver.reklamstore.com +0.0.0.0 reklamanet.net +0.0.0.0 cdn.reporo.net +0.0.0.0 republer.com +0.0.0.0 custom-wrs.api.responsys.net +0.0.0.0 retaraga.ru +0.0.0.0 revcontent.com +0.0.0.0 cdn.revcontent.com +0.0.0.0 labs-cdn.revcontent.com +0.0.0.0 www.revcontent.com +0.0.0.0 ads.reviewcentre.com +0.0.0.0 rem.rezonmedia.eu +0.0.0.0 p.rfihub.com +0.0.0.0 richmedia247.com +0.0.0.0 ads.ripoffreport.com +0.0.0.0 db.riskwaters.com +0.0.0.0 mct.rkdms.com +0.0.0.0 ei.rlcdn.com +0.0.0.0 rd.rlcdn.com +0.0.0.0 sr.rlcdn.com +0.0.0.0 ads.rnmd.net +0.0.0.0 ro2.biz +0.0.0.0 www.rockingclicks.com +0.0.0.0 ads.rohea.com +0.0.0.0 ads.rol.ro +0.0.0.0 banners.romania-insider.com +0.0.0.0 adcode.rontar.com +0.0.0.0 laurel.rovicorp.com +0.0.0.0 gbjfc.rsvpgenius.com +0.0.0.0 analytics.rtbf.be +0.0.0.0 count.rtl.de +0.0.0.0 ad.rtl.hr +0.0.0.0 rtrgt2.com +0.0.0.0 ads.rtvslo.si +0.0.0.0 adserver.rtvutrechtreclame.nl +0.0.0.0 ads.rubiconproject.com +0.0.0.0 optimized-by.rubiconproject.com +0.0.0.0 pixel.rubiconproject.com +0.0.0.0 pixel-us-east.rubiconproject.com +0.0.0.0 advert.runescape.com +0.0.0.0 runslin.com +0.0.0.0 banners.rushcommerce.com +0.0.0.0 rutrk.org +0.0.0.0 rvpadvertisingnetwork.com +0.0.0.0 www.s2d6.com +0.0.0.0 s4le.net +0.0.0.0 ads.sagabg.net +0.0.0.0 sdc2.sakura.ad.jp +0.0.0.0 app2.salesmanago.pl +0.0.0.0 sacdcad01.salon.com +0.0.0.0 sacdcad03.salon.com +0.0.0.0 samtrack1.com +0.0.0.0 analytics.sanoma.fi +0.0.0.0 ads.sanomalehtimedia.fi +0.0.0.0 cdn-rtb.sape.ru +0.0.0.0 ads.sapo.pt +0.0.0.0 adserver.saxonsoft.hu +0.0.0.0 beacon.saymedia.com +0.0.0.0 dt.scanscout.com +0.0.0.0 media.scanscout.com +0.0.0.0 sat.scoutanalytics.com +0.0.0.0 scout.scoutanalytics.net +0.0.0.0 ads.search.bg +0.0.0.0 banner.search.bg +0.0.0.0 banex.search.bg +0.0.0.0 ad.searchhound.com +0.0.0.0 geoip.securitetotale.com +0.0.0.0 advertising.seenews.com +0.0.0.0 live.sekindo.com +0.0.0.0 www2.sellhealth.com +0.0.0.0 t.sellpoints.com +0.0.0.0 stir.semilo.com +0.0.0.0 ads.senddroid.com +0.0.0.0 sensic.net +0.0.0.0 www.seo-portal.ro +0.0.0.0 weblink.settrade.com +0.0.0.0 logs.sexy-parade.com +0.0.0.0 sdc.shawinc.com +0.0.0.0 aff.shopmania.bg +0.0.0.0 dc.sify.com +0.0.0.0 adimages.sina.com.hk +0.0.0.0 jsads.sina.com.hk +0.0.0.0 sinuatemedia.com +0.0.0.0 goska.siol.net +0.0.0.0 domainpark.sitelutions.com +0.0.0.0 www.sitestatslive.com +0.0.0.0 eon.tags.sitetagger.co.uk +0.0.0.0 www.sitetagger.co.uk +0.0.0.0 www.sixsigmatraffic.com +0.0.0.0 simplehitcounter.com +0.0.0.0 ads.sina.com +0.0.0.0 ads.skelbiu.lt +0.0.0.0 ads.sladur.com +0.0.0.0 ads.slava.bg +0.0.0.0 ad.smaclick.com +0.0.0.0 c.smartclick.net +0.0.0.0 ads.smartshoppingads.de +0.0.0.0 www.smartlog.ru +0.0.0.0 i.smartwebads.com +0.0.0.0 n2.smartyads.com +0.0.0.0 eu1.snoobi.com +0.0.0.0 l.socialsexnetwork.net +0.0.0.0 a.softconsultgroup.com +0.0.0.0 netsr.softonicads.com +0.0.0.0 web.softonic-analytics.net +0.0.0.0 pub.softonic.com +0.0.0.0 net.softonicads.com +0.0.0.0 proxy.softonicads.com +0.0.0.0 t1.softonicads.com +0.0.0.0 t2.softonicads.com +0.0.0.0 ads.sol.no +0.0.0.0 sacdcad02.salon.com +0.0.0.0 apex.go.sonobi.com +0.0.0.0 sync.go.sonobi.com +0.0.0.0 ivox.socratos.net +0.0.0.0 softonic-analytics.net +0.0.0.0 analytics.soup.io +0.0.0.0 analytic.spamfighter.com +0.0.0.0 tags.spider-mails.com +0.0.0.0 dp2.specificclick.net +0.0.0.0 www.speedcount.de +0.0.0.0 adv.speednet.bg +0.0.0.0 c.spiegel.de +0.0.0.0 count.spiegel.de +0.0.0.0 www.splem.net +0.0.0.0 analytics.spongecell.com +0.0.0.0 bms.sportal.ru +0.0.0.0 ads.sports.fr +0.0.0.0 js.spotx.tv +0.0.0.0 www.speedcounter.net +0.0.0.0 counter.spylog.com +0.0.0.0 js.stroeermediabrands.de +0.0.0.0 anchor.stailamedia.com +0.0.0.0 adn.static-files.com +0.0.0.0 pixel.staticworld.net +0.0.0.0 ads.stardoll.com +0.0.0.0 www.start-page.org +0.0.0.0 js.stats.de +0.0.0.0 tracker.stats.in.th +0.0.0.0 www.stats.in.th +0.0.0.0 www.statsector.hu +0.0.0.0 www.steamtraffic.com +0.0.0.0 ads001.stickam.com +0.0.0.0 js.stormiq.com +0.0.0.0 t1.stormiq.com +0.0.0.0 analytics.strangeloopnetworks.com +0.0.0.0 straightresults.com +0.0.0.0 go.straightresults.com +0.0.0.0 gsorder.berlin.strato.de +0.0.0.0 ads.strumarelax.com +0.0.0.0 adv.stznews.bg +0.0.0.0 webservices.sub2tech.com +0.0.0.0 cnt.sup.com +0.0.0.0 clix.superclix.de +0.0.0.0 www.superclix.de +0.0.0.0 www.surveynetworks.com +0.0.0.0 my.surveypopups.com +0.0.0.0 analytics.sutterhealth.org +0.0.0.0 adv.swzone.it +0.0.0.0 www.system4.nl +0.0.0.0 tracking.synthasite.net +0.0.0.0 c.t4ft.de +0.0.0.0 www.t5.ro +0.0.0.0 nr.taboola.com +0.0.0.0 www.t-analytics.com +0.0.0.0 www.tag4arm.com +0.0.0.0 files.tailsweep.com +0.0.0.0 script.tailsweep.com +0.0.0.0 b100.takru.com +0.0.0.0 b120.takru.com +0.0.0.0 b130.takru.com +0.0.0.0 b140.takru.com +0.0.0.0 b180.takru.com +0.0.0.0 banners.takru.com +0.0.0.0 talkaxis.com +0.0.0.0 tapestry.tapad.com +0.0.0.0 tarasoft.bg +0.0.0.0 dev.targetpoint.com +0.0.0.0 traffic.tcmagnet.com +0.0.0.0 adv.technews.bg +0.0.0.0 ads.tele.net +0.0.0.0 adserver.tele.net +0.0.0.0 sdc.tele.net +0.0.0.0 c2.tentaculos.net +0.0.0.0 t1.tentaculos.net +0.0.0.0 banner.terminal.hu +0.0.0.0 stf.terra.com.br +0.0.0.0 ad.terra.com.mx +0.0.0.0 dy.testnet.nl +0.0.0.0 textad.net +0.0.0.0 www.textads.biz +0.0.0.0 www.textlink.cz +0.0.0.0 ads.tdcanadatrust.com +0.0.0.0 adv.tgadvapps.it +0.0.0.0 market2.the-adult-company.com +0.0.0.0 media.the-adult-company.com +0.0.0.0 dmp.theadex.com +0.0.0.0 scripts.the-group.net +0.0.0.0 analytics.theknot.com +0.0.0.0 ads.themoneytizer.com +0.0.0.0 analytics.thenest.com +0.0.0.0 www.tjkckpytpnje.com +0.0.0.0 www.parkingcrew.net +0.0.0.0 www.thesocialsexnetwork.com +0.0.0.0 www.thickcash.com +0.0.0.0 ad.thinkmedia.cn +0.0.0.0 oas.tidningsnatet.se +0.0.0.0 www.tinbuadserv.com +0.0.0.0 www.tinka.ru +0.0.0.0 tns-counter.ru +0.0.0.0 kz.tns-counter.ru +0.0.0.0 www.tns-counter.ru +0.0.0.0 tns-gallup.dk +0.0.0.0 ad.tom.com +0.0.0.0 cachebanner.tonygpoker.com +0.0.0.0 hits.top.lv +0.0.0.0 ads.top.bg +0.0.0.0 counter.top.ge +0.0.0.0 www.top100.lt +0.0.0.0 www.topblogging.com +0.0.0.0 hit.topc.org +0.0.0.0 banners.topcities.com +0.0.0.0 topeuro.biz +0.0.0.0 www.toplist.sk +0.0.0.0 counter.topphoto.ru +0.0.0.0 www.top25.ro +0.0.0.0 www.top99.ro +0.0.0.0 www.top100.ro +0.0.0.0 www.top300.ro +0.0.0.0 www.topadult.ro +0.0.0.0 stats.topofblogs.com +0.0.0.0 www.top-rank.pl +0.0.0.0 www.topsites24.net +0.0.0.0 www.topsiteguide.com +0.0.0.0 www.topsiteuri.ro +0.0.0.0 ads.topwam.com +0.0.0.0 c.total-media.net +0.0.0.0 cdn.total-media.net +0.0.0.0 ams.toxity.biz +0.0.0.0 www.tr100.net +0.0.0.0 ad.track.us.org +0.0.0.0 trackad.cz +0.0.0.0 www.trackbacksecure.com +0.0.0.0 t.trackedlink.net +0.0.0.0 usage.trackjs.com +0.0.0.0 api.trackuity.com +0.0.0.0 ads.tradeads.eu +0.0.0.0 tm.tradetracker.net +0.0.0.0 cdn1ht.traffichaus.com +0.0.0.0 www.trafficresults.com +0.0.0.0 dm.travelocity.com +0.0.0.0 ad.triplemind.com +0.0.0.0 engine.trklnks.com +0.0.0.0 ad.touchnclick.co.kr +0.0.0.0 trackdiscovery.net +0.0.0.0 ads.trademe.co.nz +0.0.0.0 www.trafficcenter.de +0.0.0.0 s3.trafficmaxx.de +0.0.0.0 www.trafficbeamer.com +0.0.0.0 www.trafficbeamer.nl +0.0.0.0 delivery.trafficbroker.com +0.0.0.0 www.trafficzap.com +0.0.0.0 www.trafix.ro +0.0.0.0 media.travelzoo.com +0.0.0.0 advert.travlang.com +0.0.0.0 cdna.tremormedia.com +0.0.0.0 ads.triada.bg +0.0.0.0 ads.tripican.com +0.0.0.0 hits.truehits.in.th +0.0.0.0 lvs.truehits.in.th +0.0.0.0 tracker.truehits.in.th +0.0.0.0 hits3.truehits.net +0.0.0.0 tracker.truehits.net +0.0.0.0 origin-tracking.trulia.com +0.0.0.0 analytics.trutv.com +0.0.0.0 ht.tube8.com +0.0.0.0 google.tucows.com +0.0.0.0 stats.tunt.lv +0.0.0.0 d.turn.com +0.0.0.0 presentation-atl1.turn.com +0.0.0.0 adserver.tvcatchup.com +0.0.0.0 trax.tvguide.com +0.0.0.0 a.tvn.lv +0.0.0.0 ads.tvtv.bg +0.0.0.0 ads.twitter.com +0.0.0.0 twittercounter.com +0.0.0.0 srv2.twittercounter.com +0.0.0.0 et.twyn.com +0.0.0.0 tracknet.twyn.com +0.0.0.0 tx2.ru +0.0.0.0 cnt.tyxo.bg +0.0.0.0 adv.uauaclub.it +0.0.0.0 s212.ucoz.net +0.0.0.0 credity.ucoz.ru +0.0.0.0 shanding.ucoz.es +0.0.0.0 ucounter.ucoz.net +0.0.0.0 udmserve.net +0.0.0.0 creativos.ads.uigc.net +0.0.0.0 ukrbanner.net +0.0.0.0 tracking.ukwm.co.uk +0.0.0.0 www.ultimatetopsites.com +0.0.0.0 www.undertonenetworks.com +0.0.0.0 adserving.unibet.com +0.0.0.0 www.unicast.com +0.0.0.0 advertisment.unimatrix.si +0.0.0.0 ads.univision.com +0.0.0.0 web.unltd.info +0.0.0.0 adrequisitor-af.lp.uol.com.br +0.0.0.0 c.uarating.com +0.0.0.0 usabilitytesten.nl +0.0.0.0 usachoice.net +0.0.0.0 data.nal.usda.gov +0.0.0.0 analytics.usdm.net +0.0.0.0 tag.userreport.com +0.0.0.0 www.usenetjunction.com +0.0.0.0 ads.urlfan.com +0.0.0.0 ads.usercash.com +0.0.0.0 rotabanner.utro.ru +0.0.0.0 rotabanner234.utro.ru +0.0.0.0 openx.utv.bg +0.0.0.0 tracking.vacationsmadeeasy.com +0.0.0.0 ads.vador.com +0.0.0.0 feed.validclick.com +0.0.0.0 ad.jp.ap.valuecommerce.com +0.0.0.0 ads.vclick.vn +0.0.0.0 reklama.ve.lt +0.0.0.0 counters.vendio.com +0.0.0.0 cdsusa.veinteractive.com +0.0.0.0 config1.veinteractive.com +0.0.0.0 drs2.veinteractive.com +0.0.0.0 c.velaro.com +0.0.0.0 v.velaro.com +0.0.0.0 ab.vendemore.com +0.0.0.0 profiling.veoxa.com +0.0.0.0 ads32.vertamedia.com +0.0.0.0 ads33.vertamedia.com +0.0.0.0 ads34.vertamedia.com +0.0.0.0 www.vertadnet.com +0.0.0.0 ads31.vertamedia.com +0.0.0.0 p.vibrant.co +0.0.0.0 ads25.videe.tv +0.0.0.0 content.videoclick.ru +0.0.0.0 drive.videoclick.ru +0.0.0.0 chappel.videogamer.com +0.0.0.0 ads.videohub.tv +0.0.0.0 pilmedia.ads.visionweb.no +0.0.0.0 www.visits.lt +0.0.0.0 sniff.visistat.com +0.0.0.0 code.visitor-track.com +0.0.0.0 www.visitor-track.com +0.0.0.0 www.visitortracklog.com +0.0.0.0 optimized-by.vitalads.net +0.0.0.0 www.vjsoft.net +0.0.0.0 ads.vkushti.tv +0.0.0.0 ads.v-links.net +0.0.0.0 www.v-links.net +0.0.0.0 livetracker.voanews.eu +0.0.0.0 aa.voice2page.com +0.0.0.0 optimize-stats.voxmedia.com +0.0.0.0 ads.vporn.com +0.0.0.0 ads.vreme.bg +0.0.0.0 banner.vrs.cz +0.0.0.0 www.vstats.net +0.0.0.0 ads.w3hoster.de +0.0.0.0 fus.walla.co.il +0.0.0.0 beacon.walmart.com +0.0.0.0 beacon.affil.walmart.com +0.0.0.0 ad.wanderlist.com +0.0.0.0 btn.counter.weather.ca +0.0.0.0 pub.weatherbug.com +0.0.0.0 ads.web1tv.de +0.0.0.0 tr.webantenna.info +0.0.0.0 www.web-chart.de +0.0.0.0 webcounter.be +0.0.0.0 diapi.webgains.com +0.0.0.0 webgozar.com +0.0.0.0 www.webgozar.ir +0.0.0.0 ads.webground.bg +0.0.0.0 webhits.de +0.0.0.0 www.webhits.de +0.0.0.0 ads.webkinz.com +0.0.0.0 counter.web-marketolog.ru +0.0.0.0 ebayrelevancead.webmasterplan.com +0.0.0.0 astatic.weborama.fr +0.0.0.0 aerlingus2.solution.weborama.fr +0.0.0.0 aimfar.solution.weborama.fr +0.0.0.0 fnacmagasin.solution.weborama.fr +0.0.0.0 laredoute.solution.weborama.fr +0.0.0.0 counter.webservis.gen.tr +0.0.0.0 logo.webservis.gen.tr +0.0.0.0 dynad.website.bg +0.0.0.0 secure.webresint.com +0.0.0.0 www.website-hit-counters.com +0.0.0.0 www.webstat.se +0.0.0.0 www.webtistic.com +0.0.0.0 track.wesell.co.il +0.0.0.0 delivery.switch.whatculture.com +0.0.0.0 ads.whitelabelpros.com +0.0.0.0 whometrics.net +0.0.0.0 whosread.com +0.0.0.0 stats.widgadget.com +0.0.0.0 a.wikia-beacon.com +0.0.0.0 sdc8prod1.wiley.com +0.0.0.0 cacheserve.williamhill.com +0.0.0.0 serve.williamhill.com +0.0.0.0 banner-server.winecountry.com +0.0.0.0 api.wipmania.com +0.0.0.0 stats.wired.com +0.0.0.0 ctsde01.wiredminds.de +0.0.0.0 wba.wirtschaftsblatt.at +0.0.0.0 adv.wisdom.bg +0.0.0.0 f.wishabi.net +0.0.0.0 helper-stats.wondershare.com +0.0.0.0 clicktrack.wnu.com +0.0.0.0 tracker.wordstream.com +0.0.0.0 w00tpublishers.wootmedia.net +0.0.0.0 links.worldbannerexchange.com +0.0.0.0 analytics.worldnow.com +0.0.0.0 wtsdc.worldnow.com +0.0.0.0 ads.worthplaying.com +0.0.0.0 beacon.thred.woven.com +0.0.0.0 pixel.wp.com +0.0.0.0 stats.wp.com +0.0.0.0 badv.wp.pl +0.0.0.0 rek.www.wp.pl +0.0.0.0 wtvertnet.com +0.0.0.0 www.wysistat.com +0.0.0.0 www.wzueqhwf.com +0.0.0.0 engine.xclaimwords.net +0.0.0.0 hr-engine.xclaimwords.net +0.0.0.0 ad.xe.gr +0.0.0.0 148.xg4ken.com +0.0.0.0 506.xg4ken.com +0.0.0.0 531.xg4ken.com +0.0.0.0 www.xl-rank.com +0.0.0.0 xwell.ru +0.0.0.0 ads.xpg.com.br +0.0.0.0 ssl.xplosion.de +0.0.0.0 x-road.co.kr +0.0.0.0 nedstats.xs4all.nl +0.0.0.0 ad.xrea.com +0.0.0.0 xtainment.net +0.0.0.0 ht.xtube.com +0.0.0.0 track.xtrasize.nl +0.0.0.0 ads.xtargeting.com +0.0.0.0 www.xxxbannerswap.com +0.0.0.0 www.xyztraffic.com +0.0.0.0 quad.yadro.ru +0.0.0.0 ad2.yam.com +0.0.0.0 ads.yam.com +0.0.0.0 ybex.com +0.0.0.0 ads.yeshanews.com +0.0.0.0 ad.yieldlab.net +0.0.0.0 probe.yieldlab.net +0.0.0.0 counter.yesky.com +0.0.0.0 yieldbuild.com +0.0.0.0 hook.yieldbuild.com +0.0.0.0 payload.yieldbuild.com +0.0.0.0 yojxoefvnyrc.com +0.0.0.0 ad.yonhapnews.co.kr +0.0.0.0 go.youlamedia.com +0.0.0.0 cdn.static.youmiad.com +0.0.0.0 www.yourhitstats.com +0.0.0.0 pc2.yumenetworks.com +0.0.0.0 ads.zamunda.net +0.0.0.0 ads2.zamunda.net +0.0.0.0 static.zanox.com +0.0.0.0 www.zanox-affiliate.de +0.0.0.0 www.zapunited.com +0.0.0.0 analytics.zdbb.net +0.0.0.0 ea.zebestof.com +0.0.0.0 ads.zeusclicks.com +0.0.0.0 apibeta.zeti.com +0.0.0.0 in.zog.link +0.0.0.0 in3.zog.link +0.0.0.0 counter.zone.ee +0.0.0.0 a.zoot.ro +0.0.0.0 stattrack.0catch.com +0.0.0.0 www.1-1ads.com +0.0.0.0 1bg.net +0.0.0.0 100webads.com +0.0.0.0 www.123banners.com +0.0.0.0 ns1.123go.net +0.0.0.0 123stat.com +0.0.0.0 123-tracker.com +0.0.0.0 adclient.163.com +0.0.0.0 adgeo.163.com +0.0.0.0 20d625b48e.se +0.0.0.0 pr.20min.es +0.0.0.0 img.2leva.bg +0.0.0.0 event.2leva.bg +0.0.0.0 banners.2lipslive.com +0.0.0.0 ads.24.com +0.0.0.0 stats.24.com +0.0.0.0 counter.24log.es +0.0.0.0 counter.24log.it +0.0.0.0 counter.24log.ru +0.0.0.0 counter.24log.com +0.0.0.0 pixel.33across.com +0.0.0.0 imgad1.3conline.com +0.0.0.0 imgad2.3conline.com +0.0.0.0 imgad3.3conline.com +0.0.0.0 ads.3sfmedia.com +0.0.0.0 guannan.3322.net +0.0.0.0 cdn1.adspace.4tube.com +0.0.0.0 adserver.4clicks.org +0.0.0.0 r.4at1.com +0.0.0.0 static.4chan-ads.org +0.0.0.0 banners.4d5.net +0.0.0.0 ads.4rati.lv +0.0.0.0 ad.stat.4u.pl +0.0.0.0 softads.50webs.com +0.0.0.0 7-i.org +0.0.0.0 www.777tool.com +0.0.0.0 adfiles.o2.pl.sds.o2.pl +0.0.0.0 tools.ad-net.co.uk +0.0.0.0 am-display.com +0.0.0.0 statistik.polizei-beratung.de +0.0.0.0 advertising.ingame.de +0.0.0.0 uim.tifbs.net +0.0.0.0 fips.uimserv.net +0.0.0.0 uidbox.uimserv.net +0.0.0.0 xp.classifieds1000.com +0.0.0.0 www.elementnetwork.com +0.0.0.0 ads.emqus.com +0.0.0.0 server.siteamplifier.net +0.0.0.0 www.countok.de +0.0.0.0 collect.evisitanalyst.com +0.0.0.0 www.adranking.de +0.0.0.0 adsrv.advanced-television.tv +0.0.0.0 www.andyhoppe.com +0.0.0.0 www.free-counters.net +0.0.0.0 analytics.gameforge.de +0.0.0.0 delivery.ads.gfsrv.net +0.0.0.0 media.ads.gfsrv.net +0.0.0.0 www.gratis-counter-gratis.de +0.0.0.0 media.hauptbruch.de +0.0.0.0 www.ranking-counter.de +0.0.0.0 www.rankmaschine.de +0.0.0.0 a.trkme.net +0.0.0.0 s2.trafficmaxx.de +0.0.0.0 www.ineedhits.com +0.0.0.0 track.lativio.com +0.0.0.0 count3.51yes.com +0.0.0.0 count4.51yes.com +0.0.0.0 count5.51yes.com +0.0.0.0 count8.51yes.com +0.0.0.0 count10.51yes.com +0.0.0.0 count11.51yes.com +0.0.0.0 count12.51yes.com +0.0.0.0 count14.51yes.com +0.0.0.0 count15.51yes.com +0.0.0.0 count16.51yes.com +0.0.0.0 count17.51yes.com +0.0.0.0 count19.51yes.com +0.0.0.0 count20.51yes.com +0.0.0.0 count22.51yes.com +0.0.0.0 count24.51yes.com +0.0.0.0 count25.51yes.com +0.0.0.0 count27.51yes.com +0.0.0.0 count29.51yes.com +0.0.0.0 count30.51yes.com +0.0.0.0 count31.51yes.com +0.0.0.0 count32.51yes.com +0.0.0.0 count33.51yes.com +0.0.0.0 count35.51yes.com +0.0.0.0 count37.51yes.com +0.0.0.0 count38.51yes.com +0.0.0.0 count46.51yes.com +0.0.0.0 count47.51yes.com +0.0.0.0 count48.51yes.com +0.0.0.0 www.a1fax.com +0.0.0.0 advertisingagent.com +0.0.0.0 ajokeaday.com +0.0.0.0 bannersxchange.com +0.0.0.0 www.bannersxchange.com +0.0.0.0 www.buscamundo.com +0.0.0.0 internetsecurity.com +0.0.0.0 www.internetsecurity.com +0.0.0.0 www.payperranking.com +0.0.0.0 paypertext.com +0.0.0.0 seal.ranking.com +0.0.0.0 www.ranking.com +0.0.0.0 tracking.roispy.com +0.0.0.0 www.roispy.com +0.0.0.0 www.textadvertising.com +0.0.0.0 www.thetop10.com +0.0.0.0 trustgauge.com +0.0.0.0 www.trustgauge.com +0.0.0.0 seal.validatedsite.com +0.0.0.0 www.validatedsite.com +0.0.0.0 www.robsxxx.com +0.0.0.0 ztrack.net +0.0.0.0 phpadsnew.abac.com +0.0.0.0 www.obanner.net +0.0.0.0 hitslap.com +0.0.0.0 fast.cbsi.demdex.net +0.0.0.0 chewbacca.cybereps.com +0.0.0.0 ds.cybereps.com +0.0.0.0 yoda.cybereps.com +0.0.0.0 srv.bidvertiser.com +0.0.0.0 img.revcontent.com +0.0.0.0 cdn.adpacks.com +0.0.0.0 servedby.revcontent.com +0.0.0.0 clicks.about.com +0.0.0.0 f.about.com +0.0.0.0 home.about.com +0.0.0.0 images.about.com +0.0.0.0 2001positions.com +0.0.0.0 ifa.empflixlive.com +0.0.0.0 static.ifa.empflixlive.com +0.0.0.0 www.flyingcroc.com +0.0.0.0 ifa.hardsexmate.com +0.0.0.0 ifa.maxpornlive.com +0.0.0.0 clicktraq.mtree.com +0.0.0.0 dyntraq.mtree.com +0.0.0.0 mt1.mtree.com +0.0.0.0 mt2.mtree.com +0.0.0.0 mt4.mtree.com +0.0.0.0 mt10.mtree.com +0.0.0.0 mt11.mtree.com +0.0.0.0 mt12.mtree.com +0.0.0.0 mt15.mtree.com +0.0.0.0 mt32.mtree.com +0.0.0.0 mt34.mtree.com +0.0.0.0 mt35.mtree.com +0.0.0.0 mt37.mtree.com +0.0.0.0 mt55.mtree.com +0.0.0.0 mt83.mtree.com +0.0.0.0 mt94.mtree.com +0.0.0.0 mt103.mtree.com +0.0.0.0 mt113.mtree.com +0.0.0.0 mt124.mtree.com +0.0.0.0 mt127.mtree.com +0.0.0.0 porn.mtree.com +0.0.0.0 psy.mtree.com +0.0.0.0 ss.mtree.com +0.0.0.0 the.mtree.com +0.0.0.0 wm.mtree.com +0.0.0.0 xbs.mtree.com +0.0.0.0 xbs.pao.mtree.com +0.0.0.0 xbs.sea.mtree.com +0.0.0.0 www.mtree.com +0.0.0.0 dyn.naiadsystems.com +0.0.0.0 www.naiadsystems.com +0.0.0.0 banners.outster.com +0.0.0.0 c1.outster.com +0.0.0.0 c2.outster.com +0.0.0.0 c3.outster.com +0.0.0.0 clit50.outster.com +0.0.0.0 clit120.outster.com +0.0.0.0 links.outster.com +0.0.0.0 refer1.outster.com +0.0.0.0 refer20.outster.com +0.0.0.0 refer25.outster.com +0.0.0.0 refer46.outster.com +0.0.0.0 refer85.outster.com +0.0.0.0 refer100.outster.com +0.0.0.0 refer102.outster.com +0.0.0.0 rr1.outster.com +0.0.0.0 start.outster.com +0.0.0.0 stats.outster.com +0.0.0.0 cgi1.sexlist.com +0.0.0.0 enter.sexlist.com +0.0.0.0 links.sexlist.com +0.0.0.0 lobby.sexlist.com +0.0.0.0 vis5.sexlist.com +0.0.0.0 xit.sexlist.com +0.0.0.0 clit.sextracker.com +0.0.0.0 clit1.sextracker.com +0.0.0.0 clit3.sextracker.com +0.0.0.0 clit5.sextracker.com +0.0.0.0 clit11.sextracker.com +0.0.0.0 clit12.sextracker.com +0.0.0.0 clit14.sextracker.com +0.0.0.0 clit16.sextracker.com +0.0.0.0 elite.sextracker.com +0.0.0.0 graphics1.sextracker.com +0.0.0.0 graphics2.sextracker.com +0.0.0.0 hosting.sextracker.com +0.0.0.0 links.sextracker.com +0.0.0.0 mau.sextracker.com +0.0.0.0 moneytree.sextracker.com +0.0.0.0 ranks.sextracker.com +0.0.0.0 search.sextracker.com +0.0.0.0 start.sextracker.com +0.0.0.0 stats.sextracker.com +0.0.0.0 stx.sextracker.com +0.0.0.0 stx0.sextracker.com +0.0.0.0 stx1.sextracker.com +0.0.0.0 stx2.sextracker.com +0.0.0.0 stx3.sextracker.com +0.0.0.0 stx4.sextracker.com +0.0.0.0 stx5.sextracker.com +0.0.0.0 stx6.sextracker.com +0.0.0.0 stx7.sextracker.com +0.0.0.0 stx8.sextracker.com +0.0.0.0 stx9.sextracker.com +0.0.0.0 stx10.sextracker.com +0.0.0.0 stx11.sextracker.com +0.0.0.0 stx12.sextracker.com +0.0.0.0 stx13.sextracker.com +0.0.0.0 stx14.sextracker.com +0.0.0.0 stx15.sextracker.com +0.0.0.0 stxbans.sextracker.com +0.0.0.0 webmasters.sextracker.com +0.0.0.0 stx.banners.sextracker.com +0.0.0.0 wm.banners.sextracker.com +0.0.0.0 www.sextracker.com +0.0.0.0 ads.sexspaces.com +0.0.0.0 ifa.slutloadlive.com +0.0.0.0 static.gfx.streamen.com +0.0.0.0 www.streamen.com +0.0.0.0 static.gfx.streamate.com +0.0.0.0 teen.streamate.com +0.0.0.0 www.streamate.com +0.0.0.0 ifa.streamateaccess.com +0.0.0.0 www.streamatelive.com +0.0.0.0 www.thesexcinema.com +0.0.0.0 ifa.tnaflixlive.com +0.0.0.0 links.xxxcounter.com +0.0.0.0 start.xxxcounter.com +0.0.0.0 ifa.camads.net +0.0.0.0 ifa.keezlive.com +0.0.0.0 ifa.pornhublive.com +0.0.0.0 aphrodite.porntrack.com +0.0.0.0 stats1.porntrack.com +0.0.0.0 stats3.porntrack.com +0.0.0.0 www.seehits.com +0.0.0.0 adserver.spctl.com +0.0.0.0 asian.streamate.com +0.0.0.0 broadcaster.streamate.com +0.0.0.0 ebony.streamate.com +0.0.0.0 banners.weselltraffic.com +0.0.0.0 clicks.weselltraffic.com +0.0.0.0 webmaster.worldsex.com +0.0.0.0 ifa.xhamstercams.com +0.0.0.0 ifa.yobtcams.com +0.0.0.0 static.ifa.yobtcams.com +0.0.0.0 ifa.youjizzlive.com +0.0.0.0 ifa.youpornmate.com +0.0.0.0 secure-cert.imrworldwide.com +0.0.0.0 secure-drm.imrworldwide.com +0.0.0.0 secure-gl.imrworldwide.com +0.0.0.0 kissfmro.count.brat-online.ro +0.0.0.0 didacticro.count.brat-online.ro +0.0.0.0 ssl-vg03.met.vgwort.de +0.0.0.0 affinity.go2jump.org +0.0.0.0 mv.bidsystem.com +0.0.0.0 icon.cubics.com +0.0.0.0 bidsystem.adknowledge.com +0.0.0.0 bsclick.adknowledge.com +0.0.0.0 web.adknowledge.com +0.0.0.0 updates.desktop.ak-networks.com +0.0.0.0 vlogic.ak-networks.com +0.0.0.0 bspixel.bidsystem.com +0.0.0.0 adserver.digitalmedianet.com +0.0.0.0 metrics.impactengine.com +0.0.0.0 15minlt.adocean.pl +0.0.0.0 ad.adocean.pl +0.0.0.0 afilv.adocean.pl +0.0.0.0 aripaee.adocean.pl +0.0.0.0 b92rs.adocean.pl +0.0.0.0 bg.adocean.pl +0.0.0.0 bggde.adocean.pl +0.0.0.0 bggde-new.adocean.pl +0.0.0.0 blitzbg.adocean.pl +0.0.0.0 by.adocean.pl +0.0.0.0 cz.adocean.pl +0.0.0.0 delfiee.adocean.pl +0.0.0.0 delfilt.adocean.pl +0.0.0.0 delfilv.adocean.pl +0.0.0.0 diginet.adocean.pl +0.0.0.0 digital4ro.adocean.pl +0.0.0.0 edipresse.adocean.pl +0.0.0.0 ee.adocean.pl +0.0.0.0 eegde.adocean.pl +0.0.0.0 gspro.adocean.pl +0.0.0.0 hr.adocean.pl +0.0.0.0 hrgde.adocean.pl +0.0.0.0 hugde.adocean.pl +0.0.0.0 ilgde.adocean.pl +0.0.0.0 intactro.adocean.pl +0.0.0.0 investorbg.adocean.pl +0.0.0.0 keepaneyemk.adocean.pl +0.0.0.0 lrytaslt.adocean.pl +0.0.0.0 lt.adocean.pl +0.0.0.0 lv.adocean.pl +0.0.0.0 my.adocean.pl +0.0.0.0 ohtulehtee.adocean.pl +0.0.0.0 pracuj.adocean.pl +0.0.0.0 protvmd.adocean.pl +0.0.0.0 realitatero.adocean.pl +0.0.0.0 ringierro.adocean.pl +0.0.0.0 ringierrs.adocean.pl +0.0.0.0 ro.adocean.pl +0.0.0.0 ro1ro.adocean.pl +0.0.0.0 rogde.adocean.pl +0.0.0.0 rs.adocean.pl +0.0.0.0 rsgde.adocean.pl +0.0.0.0 s1.sk.adocean.pl +0.0.0.0 s1.czgde.adocean.pl +0.0.0.0 s1.delfilt.adocean.pl +0.0.0.0 s1.edipresse.adocean.pl +0.0.0.0 s1.gojobsru.adocean.pl +0.0.0.0 s1.my.adocean.pl +0.0.0.0 s1.myao.adocean.pl +0.0.0.0 s1.pracuj.adocean.pl +0.0.0.0 s1.skgde.adocean.pl +0.0.0.0 sk.adocean.pl +0.0.0.0 si.adocean.pl +0.0.0.0 sportalbg.adocean.pl +0.0.0.0 thinkdigitalro.adocean.pl +0.0.0.0 tvn.adocean.pl +0.0.0.0 tvn2.adocean.pl +0.0.0.0 ua.adocean.pl +0.0.0.0 vbbg.adocean.pl +0.0.0.0 webgroundbg.adocean.pl +0.0.0.0 www.adorigin.com +0.0.0.0 storage.adsolutions.nl +0.0.0.0 telgids.adsolutions.nl +0.0.0.0 adserver.webads.it +0.0.0.0 st-n.ads1-adnow.com +0.0.0.0 b.zog.link +0.0.0.0 st.adnow.com +0.0.0.0 st.ad.adnow.com +0.0.0.0 st.n.ads1-adnow.com +0.0.0.0 st.n.ads2-adnow.com +0.0.0.0 st.n.ads3-adnow.com +0.0.0.0 agevs.com +0.0.0.0 spots.ah-me.com +0.0.0.0 alfatraffic.com +0.0.0.0 www.antaraimedia.com +0.0.0.0 abc.doublegear.com +0.0.0.0 ads.fulldls.com +0.0.0.0 www.glxgroup.com +0.0.0.0 cdn.mirageads.net +0.0.0.0 st.ad.smaclick.com +0.0.0.0 teens24h.com +0.0.0.0 upads.info +0.0.0.0 cd-ads.com +0.0.0.0 delivery.hornyspots.com +0.0.0.0 pkpojhc.com +0.0.0.0 st-n.ads2-adnow.com +0.0.0.0 st.pc.adonweb.ru +0.0.0.0 st.pay-click.ru +0.0.0.0 rb-net.com +0.0.0.0 aalbc.advertserve.com +0.0.0.0 cdn.advertserve.com +0.0.0.0 circuit.advertserve.com +0.0.0.0 divavillage.advertserve.com +0.0.0.0 hometheaterreview.advertserve.com +0.0.0.0 imagevenue.advertserve.com +0.0.0.0 pridesource.advertserve.com +0.0.0.0 projectorreviews.advertserve.com +0.0.0.0 www.advertserve.com +0.0.0.0 adverserve.austriacomplus.at +0.0.0.0 squid.diepresse.com +0.0.0.0 werbung.diepresse.com +0.0.0.0 123.ichkoche.at +0.0.0.0 aus.laola1.tv +0.0.0.0 static.styria-digital.com +0.0.0.0 adstats.adviva.net +0.0.0.0 smp.adviva.net +0.0.0.0 de.ads.adviva.net +0.0.0.0 hippo.adultadworld.com +0.0.0.0 partners.adultadworld.com +0.0.0.0 textads.adultadworld.com +0.0.0.0 tigershark.adultadworld.com +0.0.0.0 cluster.adworldmedia.com +0.0.0.0 results.adworldmedia.com +0.0.0.0 www.adworldmedia.com +0.0.0.0 err.agava.ru +0.0.0.0 static.adtaily.com +0.0.0.0 ad.glossymedia.pl +0.0.0.0 bantam.ai.net +0.0.0.0 fiona.ai.net +0.0.0.0 ac2.valuead.com +0.0.0.0 adsignal.valuead.com +0.0.0.0 axxessads.valuead.com +0.0.0.0 hrads.valuead.com +0.0.0.0 moads.valuead.com +0.0.0.0 oin.valuead.com +0.0.0.0 pmads.valuead.com +0.0.0.0 redux.valuead.com +0.0.0.0 videodetectivenetwork.valuead.com +0.0.0.0 vdn.valuead.com +0.0.0.0 yahooads.valuead.com +0.0.0.0 tag.aticdn.net +0.0.0.0 a.bf-ad.net +0.0.0.0 ssum.casalemedia.com +0.0.0.0 ade.clmbtech.com +0.0.0.0 rainbow-de.mythings.com +0.0.0.0 rainbow-es.mythings.com +0.0.0.0 rainbow-fi.mythings.com +0.0.0.0 rainbow-mx.mythings.com +0.0.0.0 rainbow-no.mythings.com +0.0.0.0 rainbow-ru-ak.mythings.com +0.0.0.0 rainbow-ru.mythings.com +0.0.0.0 rainbow-sg.mythings.com +0.0.0.0 c.webtrends.com +0.0.0.0 tracking.admarketplace.net +0.0.0.0 static.ampxchange.com +0.0.0.0 p.bm23.com +0.0.0.0 ads.pictela.net +0.0.0.0 tag.researchnow.com +0.0.0.0 b.thanksearch.com +0.0.0.0 e.thanksearch.com +0.0.0.0 www.77tracking.com +0.0.0.0 ak1s.abmr.net +0.0.0.0 targeting.adwebster.com +0.0.0.0 cdn.betrad.com +0.0.0.0 c.betrad.com +0.0.0.0 ads.static.blip.tv +0.0.0.0 fast.ecs.demdex.net +0.0.0.0 fast.ford.demdex.net +0.0.0.0 fast.td.demdex.net +0.0.0.0 ma156-r.analytics.edgekey.net +0.0.0.0 79423.analytics.edgekey.net +0.0.0.0 my-cdn.effectivemeasure.net +0.0.0.0 m1.fwmrm.net +0.0.0.0 js.indexww.com +0.0.0.0 a01.korrelate.net +0.0.0.0 a02.korrelate.net +0.0.0.0 vastx.moatads.com +0.0.0.0 geo.nbcsports.com +0.0.0.0 sana.newsinc.com +0.0.0.0 cdn.optimatic.com +0.0.0.0 c1.rfihub.net +0.0.0.0 ad.sitemaji.com +0.0.0.0 ranker.springboardplatform.com +0.0.0.0 e1.zedo.com +0.0.0.0 e2.zedo.com +0.0.0.0 z1.zedo.com +0.0.0.0 redir.adap.tv +0.0.0.0 delivery-s3.adswizz.com +0.0.0.0 fast.fairfaxau.demdex.net +0.0.0.0 fast.philly.demdex.net +0.0.0.0 tiads.instyle.com +0.0.0.0 iocdn.coremetrics.com +0.0.0.0 update.hiconversion.com +0.0.0.0 by.essl.optimost.com +0.0.0.0 ak.quantcast.com +0.0.0.0 widget.quantcast.com +0.0.0.0 mediaserver.bwinpartypartners.com +0.0.0.0 www.everestjs.net +# 0.0.0.0 cdn.optimizely.com #[affects sigfig.com/ 2go.com] + +0.0.0.0 video.unrulymedia.com +0.0.0.0 cdn.static.zdbb.net +# [Akamai][AS20940][204.245.128.0 - 204.245.191.255] + +# [Akamai][AS7922][AS4436][AS7473][23.0.0.0 - 23.67.255.255] + +0.0.0.0 b.6sc.co +0.0.0.0 adsrvmedia.adk2.co +0.0.0.0 adtgs.adk2.co +0.0.0.0 cdn.adk2.co +0.0.0.0 ad-media.xe.gr +# 0.0.0.0 assets.adobedtm.com #[affects landsend.com] + +0.0.0.0 www.adobetag.com +0.0.0.0 www.adreadytractions.com +0.0.0.0 assets1.adroll.com +0.0.0.0 content.adtegrity.net +0.0.0.0 secure.uac.advertising.com +0.0.0.0 cdn2sitescout-a.akamaihd.net +0.0.0.0 static.adziff.com +0.0.0.0 rmd.atdmt.com +0.0.0.0 spd.atdmt.com +0.0.0.0 vid.atdmt.com +0.0.0.0 cdn.atomex.net +0.0.0.0 cdn.atwola.com +0.0.0.0 akamai.t.axf8.net +0.0.0.0 content.bannerconnect.net +0.0.0.0 cdn.bidvertiser.com +0.0.0.0 as-sec.casalemedia.com +0.0.0.0 ip.casalemedia.com +0.0.0.0 ads.cdnslate.com +0.0.0.0 cc.chango.com +0.0.0.0 ad-js.chip.de +0.0.0.0 cdn1.clkads.com +0.0.0.0 cdn1.clkmon.com +0.0.0.0 cdn1.clkrev.com +0.0.0.0 tiads.sportsillustrated.cnn.com +0.0.0.0 libs.de.coremetrics.com +0.0.0.0 mktgcdn.de.coremetrics.com +0.0.0.0 tmscdn.de.coremetrics.com +0.0.0.0 content.cpxinteractive.com +0.0.0.0 scdn.cxense.com +0.0.0.0 scomcluster.cxense.com +0.0.0.0 sp1cluster.cxense.com +0.0.0.0 fff.dailymail.co.uk +0.0.0.0 fast.adobe.demdex.net +0.0.0.0 fast.bet.demdex.net +0.0.0.0 fast.condenast.demdex.net +0.0.0.0 fast.de.demdex.net +0.0.0.0 fast.dm.demdex.net +0.0.0.0 fast.everydayhealth.demdex.net +0.0.0.0 fast.fedex.demdex.net +0.0.0.0 fast.gm.demdex.net +0.0.0.0 fast.iyogi.demdex.net +0.0.0.0 fast.marthastewart.demdex.net +0.0.0.0 fast.nfl.demdex.net +0.0.0.0 fast.postmedia.demdex.net +0.0.0.0 fast.sears.demdex.net +0.0.0.0 fast.swa.demdex.net +0.0.0.0 fast.telstra.demdex.net +0.0.0.0 fast.torontostar.demdex.net +0.0.0.0 fast.twc.demdex.net +0.0.0.0 analytics.disneyinternational.com +0.0.0.0 edge.aperture.displaymarketplace.com +0.0.0.0 ma74-r.analytics.edgesuite.net +0.0.0.0 ma76-c.analytics.edgesuite.net +0.0.0.0 ma204-r.analytics.edgesuite.net +0.0.0.0 img.en25.com +0.0.0.0 tiads.essence.com +0.0.0.0 tiads.ew.com +0.0.0.0 s.fl-ads.com +0.0.0.0 promo.freshdirect.com +0.0.0.0 www30a6.glam.com +0.0.0.0 b.grvcdn.com +0.0.0.0 tiads.health.com +0.0.0.0 ads-a-darwin.hulu.com +0.0.0.0 js-sec.indexww.com +0.0.0.0 cdn.innity.net +0.0.0.0 cdn.media.innity.net +0.0.0.0 s-static.innovid.com +0.0.0.0 secure.insightexpressai.com +# 0.0.0.0 s2.mdpcdn.com #[affects bhg.com] + +0.0.0.0 cdn.mediavoice.com +0.0.0.0 d-track.send.microadinc.com +0.0.0.0 mnet-ad.net +0.0.0.0 svastx.moatads.com +0.0.0.0 e.monetate.net +0.0.0.0 sb.monetate.net +0.0.0.0 se.monetate.net +0.0.0.0 ads2.msads.net +0.0.0.0 cdn.mxpnl.com +0.0.0.0 rainbow-nl.mythings.com +0.0.0.0 s.ntv.io +0.0.0.0 adcache.nymag.com +0.0.0.0 cdn3.optimizely.com +0.0.0.0 images.outbrain.com +0.0.0.0 storage.outbrain.com +0.0.0.0 cdn.polmontventures.com +0.0.0.0 a.postrelease.com +0.0.0.0 www.geolocation.performgroup.com +0.0.0.0 abo.prismamediadigital.com +0.0.0.0 aboutads.quantcast.com +0.0.0.0 adv.r7.com +0.0.0.0 p0.raasnet.com +0.0.0.0 imagec15.247realmedia.com +0.0.0.0 pr.realvu.net +0.0.0.0 c2.rfihub.net +0.0.0.0 b.rmgserving.com +0.0.0.0 c.rmgserving.com +0.0.0.0 d.rmgserving.com +0.0.0.0 content.rmxads.com +0.0.0.0 analytics.rogersmedia.com +0.0.0.0 m.servebom.com +0.0.0.0 secure-ds.serving-sys.com +0.0.0.0 wd-edge.sharethis.com +0.0.0.0 ws.sharethis.com +0.0.0.0 cms.springboardplatform.com +0.0.0.0 api.taboola.com +0.0.0.0 c2.taboola.com +0.0.0.0 netstorage.taboola.com +0.0.0.0 a.thanksearch.com +0.0.0.0 c.thanksearch.com +0.0.0.0 f.thanksearch.com +# 0.0.0.0 tiads.time.com #[affects Time.com] + +0.0.0.0 cdn.unityads.unity3d.com +# 0.0.0.0 cdn.vidible.tv #[affects Aol] + +0.0.0.0 sb.voicefive.com +0.0.0.0 content.womensforum.com +0.0.0.0 content.yieldmanager.com +0.0.0.0 content-ssl.yieldmanager.com +0.0.0.0 static.yieldmo.com +0.0.0.0 analytics.yolacdn.net +0.0.0.0 ss3.zedo.com +0.0.0.0 tt3.zedo.com +0.0.0.0 xp1.zedo.com +0.0.0.0 xp2.zedo.com +# [Akamai][AS16625][23.72.0.0 - 23.79.255.255] + +0.0.0.0 cdn.adstract.com +0.0.0.0 dsum-sec.casalemedia.com +# [Akamai][AS20940][69.192.0.0 - 69.192.255.255] + +0.0.0.0 s3.addthis.com +0.0.0.0 s9.addthis.com +0.0.0.0 ssltracking.esearchvision.com +# [Akamai][AS31377][72.246.0.0 - 72.247.255.255] + +0.0.0.0 aka.accortech.com +0.0.0.0 cdn.ad4game.com +0.0.0.0 c03.adsummos.net +0.0.0.0 supersonicads-a.akamaihd.net +0.0.0.0 e35fbf.t.axf8.net +0.0.0.0 www.bkrtx.com +0.0.0.0 i.l.cnn.net +0.0.0.0 dsa.csdata1.com +0.0.0.0 cdn.demdex.net +0.0.0.0 fast.bostonglobe.demdex.net +0.0.0.0 fast.nbcu.demdex.net +0.0.0.0 omnikool.discovery.com +0.0.0.0 aperture.displaymarketplace.com +0.0.0.0 cdn.doubleverify.com +0.0.0.0 79423.analytics.edgesuite.net +0.0.0.0 ma156-r.analytics.edgesuite.net +0.0.0.0 cdn.siteanalytics.evolvemediametrics.com +0.0.0.0 dl.futureus.com +0.0.0.0 a.giantrealm.com +0.0.0.0 www30a5.glam.com +0.0.0.0 hs.interpolls.com +0.0.0.0 ad.jamba.it +0.0.0.0 cdn.krxd.net +0.0.0.0 rt.liftdna.com +0.0.0.0 sr2.liveperson.net +0.0.0.0 contextual.media.net +0.0.0.0 traktr.news.com.au +0.0.0.0 dmeserv.newsinc.com +0.0.0.0 ad.policeone.com +# 0.0.0.0 media.richrelevance.com #[affects Walmart.ca] + +0.0.0.0 a.rmgserving.com +# 0.0.0.0 imagesak.secureserver.net #[affects GoDaddy] + +0.0.0.0 track.sitetag.us +0.0.0.0 as.specificmedia.com +0.0.0.0 anon.doubleclick.speedera.net +0.0.0.0 fms2.eyewonder.speedera.net +0.0.0.0 d.thanksearch.com +0.0.0.0 tribalfusion.speedera.net +0.0.0.0 ad2.turn.com +0.0.0.0 media-0.vpptechnologies.com +0.0.0.0 c14.zedo.com +# [Akamai][AS16625][95.101.240.0 - 95.101.255.255] + +0.0.0.0 static.atgsvcs.com +# [Akamai][AS20940][AS12989][96.16.0.0 - 96.17.255.255] + +0.0.0.0 content.budsinc.com +0.0.0.0 aa.connextra.com +0.0.0.0 bb.connextra.com +0.0.0.0 cc.connextra.com +0.0.0.0 dd.connextra.com +0.0.0.0 ee.connextra.com +0.0.0.0 ff.connextra.com +0.0.0.0 tmscdn.coremetrics.com +0.0.0.0 metrics.ctvdigital.net +0.0.0.0 adinterax.cnet.com.edgesuite.net +0.0.0.0 c6.edgesuite.net +0.0.0.0 citi.bridgetrack.com.edgesuite.net +0.0.0.0 akatracking.esearchvision.com +0.0.0.0 cdn.springboard.gorillanation.com +0.0.0.0 cdn.triggertag.gorillanation.com +0.0.0.0 static.inviziads.com +0.0.0.0 banner.missingkids.com +0.0.0.0 b.monetate.net +0.0.0.0 tracking.olx.com +0.0.0.0 i.cdn.openx.com +0.0.0.0 cdn.optmd.com +0.0.0.0 l1.qsstats.com +0.0.0.0 adimages.scrippsnetworks.com +0.0.0.0 ds-ll.serving-sys.com +0.0.0.0 cdn.turn.com +# [Akamai][AS20940][96.6.0.0 - 96.7.255.255] + +# [Akrino][AS44571][91.202.60.0 - 91.202.63.255] + +# [Alchemy / Vitalix][AS7296][205.144.160.0 - 205.144.175.255] + +0.0.0.0 www.nbcsearch.com +# [Alchemy / Tagworld][AS7296][208.76.216.0 - 208.76.219.255] + +0.0.0.0 t.flux.com +# [Alchemy][AS7296][209.132.192.0 - 209.132.255.255] + +0.0.0.0 zedoadservices.com +# [Alibaba][AS37963][115.124.16.0 - 115.124.31.255] + +0.0.0.0 cnzz.mmstat.com +# [Alibaba][AS37963][119.42.224.0 - 119.42.239.255] + +0.0.0.0 acookie.alimama.com +0.0.0.0 log.mmstat.com +0.0.0.0 pcookie.taobao.com +# [Alibaba][AS37963][140.205.248.253] + +0.0.0.0 ac.mmstat.com +# [Amazon.com][AS14618][107.20.0.0 - 107.23.255.255] + +0.0.0.0 fw.adsafeprotected.com +0.0.0.0 l.betrad.com +0.0.0.0 pixel.captora.com +0.0.0.0 statstracker.celebrity-gossip.net +0.0.0.0 tracking.clickmeter.com +0.0.0.0 www.clickmeter.com +0.0.0.0 tracking.conversionads.com +0.0.0.0 livingsocial.sp1.convertro.com +0.0.0.0 tag.crsspxl.com +0.0.0.0 cam.demdex.net +0.0.0.0 everydayhealth.demdex.net +0.0.0.0 fairfaxau.demdex.net +0.0.0.0 gm.demdex.net +0.0.0.0 nfl.demdex.net +0.0.0.0 philly.demdex.net +0.0.0.0 postmedia.demdex.net +0.0.0.0 swa.demdex.net +0.0.0.0 torontostar.demdex.net +0.0.0.0 toyota.demdex.net +0.0.0.0 ads.domainoptions.net +0.0.0.0 parkcloud.dynadot.com +0.0.0.0 st.dynamicyield.com +0.0.0.0 ads.ehealthcaresolutions.com +0.0.0.0 www.euroconcept.ro +0.0.0.0 track.eyeviewads.com +0.0.0.0 engine.fl-ads.com +0.0.0.0 click.gospect.com +0.0.0.0 a.idio.co +0.0.0.0 ads.incmd10.com +0.0.0.0 dts.innovid.com +0.0.0.0 bootstrap.livefyre.com +0.0.0.0 stream1.livefyre.com +0.0.0.0 flx367.lporirxe.com +0.0.0.0 stream1.marketwatch.fyre.co +0.0.0.0 heapanalytics.com +0.0.0.0 track.hubspot.com +0.0.0.0 c10048.ic-live.com +0.0.0.0 c10051.ic-live.com +0.0.0.0 c10054.ic-live.com +0.0.0.0 c10063.ic-live.com +0.0.0.0 c4.ic-live.com +0.0.0.0 c7.ic-live.com +0.0.0.0 geo.jetpackdigital.com +0.0.0.0 services.krxd.net +0.0.0.0 api.lanistaads.com +0.0.0.0 lc.livefyre.com +0.0.0.0 logs.loggly.com +0.0.0.0 cmi.netseer.com +0.0.0.0 h.nexac.com +0.0.0.0 tracking.optimatic.com +0.0.0.0 log3.optimizely.com +0.0.0.0 config.parsely.com +0.0.0.0 crm.pinion.gg +0.0.0.0 docs.pinion.gg +0.0.0.0 kermit.pinion.gg +0.0.0.0 log.pinion.gg +0.0.0.0 tix.pinion.gg +0.0.0.0 wiki.pinion.gg +0.0.0.0 www.pinion.gg +0.0.0.0 statdb.pressflex.com +0.0.0.0 ads1.qadabra.com +0.0.0.0 ads.qadserve.com +0.0.0.0 js4.ringrevenue.com +0.0.0.0 json4.ringrevenue.com +0.0.0.0 d.shareaholic.com +0.0.0.0 s.shopify.com +0.0.0.0 pix.silverpush.co +0.0.0.0 ads.skinected.com +0.0.0.0 l.springmetrics.com +# 0.0.0.0 analytics.supplyframe.com #[affects findchips.com] + +0.0.0.0 images.ads.supplyframe.com +0.0.0.0 b.t.tailtarget.com +0.0.0.0 ws.tapjoyads.com +0.0.0.0 beacon.tracelytics.com +0.0.0.0 ads.tracking202.com +0.0.0.0 rtd.tubemogul.com +0.0.0.0 ats.tumri.net +0.0.0.0 w.usabilla.com +0.0.0.0 geoservice.webengage.com +0.0.0.0 tracking.websitealive.com +0.0.0.0 pixel.yabidos.com +# [Amazon.com][AS14618][174.129.0.0 - 174.129.255.255] + +0.0.0.0 ad.adbull.com +0.0.0.0 ads20.adcolony.com +0.0.0.0 web-amz.adotube.com +0.0.0.0 insight.adsrvr.org +0.0.0.0 askads.ask.com +0.0.0.0 server1.beaconpush.com +0.0.0.0 static.brsrvr.com +0.0.0.0 www.caphyon-analytics.com +0.0.0.0 adunit.chango.ca +0.0.0.0 ads.chango.com +0.0.0.0 adunit.chango.com +0.0.0.0 sp1.convertro.com +0.0.0.0 nfl.sp1.convertro.com +0.0.0.0 b.ensighten.com +# 0.0.0.0 nexus.ensighten.com #[affects Subaru / Staples] + +0.0.0.0 cs.exitmonitor.com +0.0.0.0 stack9.collect.igodigital.com +0.0.0.0 wenner.collect.igodigital.com +0.0.0.0 clicks.izea.com +0.0.0.0 indium.openx.net +0.0.0.0 display.provenpixel.com +0.0.0.0 ads.reddit.com +0.0.0.0 www.reelcentric.com +0.0.0.0 tap.rubiconproject.com +0.0.0.0 l.sharethis.com +0.0.0.0 smaato.net +0.0.0.0 req.tidaltv.com +0.0.0.0 redirect.tracking202.com +0.0.0.0 static.tracking202.com +0.0.0.0 p1.tcr21.tynt.com +# 0.0.0.0 redirect.viglink.com #[affects disqus.com] + +0.0.0.0 www.w3counter.com +0.0.0.0 ots.optimize.webtrends.com +0.0.0.0 b.wishabi.com +0.0.0.0 track.yieldsoftware.com +0.0.0.0 stats.zmags.com +# [Amazon.com][AS38895][175.41.128.0 - 175.41.159.255] + +0.0.0.0 mi9.gscontxt.net +# [Amazon.com][AS16509][176.32.96.0 - 176.32.103.255] + +0.0.0.0 cdn.adbooth.net +0.0.0.0 rcm.amazon.com +0.0.0.0 fls-na.amazon-adsystem.com +0.0.0.0 rcm-eu.amazon-adsystem.com +0.0.0.0 ws-eu.amazon-adsystem.com +0.0.0.0 wms-eu.amazon-adsystem.com +0.0.0.0 wms-na.amazon-adsystem.com +0.0.0.0 ws-na.amazon-adsystem.com +# [Amazon.com][AS16509][176.34.184.0 - 176.34.191.255] + +0.0.0.0 tv4play-se.c.richmetrics.com +0.0.0.0 chuknu.sokrati.com +# [Amazon.com][AS16509][176.34.232.0 - 176.34.239.255] + +0.0.0.0 adsradios.adswizz.com +0.0.0.0 exchange.adswizz.com +0.0.0.0 synchrobox.adswizz.com +0.0.0.0 dni.agcdn.com +0.0.0.0 static-shareaholic.s3.amazonaws.com +0.0.0.0 pixelservice.apphb.com +0.0.0.0 tracker.leadenhancer.com +0.0.0.0 t13.intelliad.de +0.0.0.0 t23.intelliad.de +0.0.0.0 morehitserver.com +0.0.0.0 track.popmog.com +0.0.0.0 nationalpost-com.c.richmetrics.com +0.0.0.0 nj-com.c.richmetrics.com +0.0.0.0 track.shop2market.com +0.0.0.0 ad.sxp.smartclip.net +0.0.0.0 tracker.vinsight.de +0.0.0.0 r.yieldkit.com +0.0.0.0 srv.uk.znaptag.com +# [Amazon.com][AS16509][177.71.190.213] + +0.0.0.0 dm.demdex.net +# [Amazon.com][AS16509][178.236.0.0 - 178.236.7.255] + +0.0.0.0 ir-de.amazon-adsystem.com +0.0.0.0 ir-uk.amazon-adsystem.com +# [Amazon.com][AS16509][184.169.128.0 - 184.169.255.255] + +0.0.0.0 rainbow-us.mythings.com +0.0.0.0 rainbow-geo-p.mythings.com +0.0.0.0 abandonment.saas.seewhy.com +# [Amazon.com][AS14618][184.72.0.0 - 184.73.255.255] + +0.0.0.0 ads.adhub.co.nz +0.0.0.0 www.adtaily.com +0.0.0.0 aslads.ask.com +0.0.0.0 analytics.bleacherreport.com +0.0.0.0 s.btstatic.com +0.0.0.0 a.company-target.com +0.0.0.0 twc.demdex.net +0.0.0.0 marthastewart.demdex.net +0.0.0.0 hits.epochstats.com +0.0.0.0 js.geoads.com +0.0.0.0 a.goember.com +0.0.0.0 www.intellisuggest.com +0.0.0.0 ads.investingchannel.com +0.0.0.0 o1.inviziads.com +0.0.0.0 tracker.issuu.com +0.0.0.0 create.leadid.com +0.0.0.0 metrics-api.librato.com +0.0.0.0 media-match.com +0.0.0.0 pixel.newscred.com +0.0.0.0 r.openx.net +0.0.0.0 delivery.optimatic.com +0.0.0.0 u.optorb.com +0.0.0.0 clicks.pureleads.com +0.0.0.0 hitbox.realclearpolitics.com +0.0.0.0 pixel.realtor.com +0.0.0.0 howler.shareaholic.com +0.0.0.0 seg.sharethis.com +0.0.0.0 cdn.spectate.com +0.0.0.0 t.tellapart.com +0.0.0.0 track.securedvisit.com +0.0.0.0 api.stathat.com +# 0.0.0.0 id.trove.com #[prevents registration] + +0.0.0.0 general.visualdna-stats.com +0.0.0.0 www.webspectator.com +# [Amazon.com][AS14618][204.236.128.0 - 204.236.255.255] + +0.0.0.0 cdn.beaconpush.com +0.0.0.0 fedex.demdex.net +0.0.0.0 tags.deployads.com +0.0.0.0 track.keywordstrategy.org +0.0.0.0 a.klaviyo.com +0.0.0.0 cdn.segment.io +# [Amazon.com][AS38895][204.246.160.0 - 204.246.191.255] + +0.0.0.0 cdn.boomtrain.com +0.0.0.0 s.idio.co +0.0.0.0 cdn.yb0t.com +# [Amazon.com][AS16509][205.251.192.0 - 205.251.255.255] + +0.0.0.0 delivery-cdn-cf.adswizz.com +0.0.0.0 matchbin-assets.s3.amazonaws.com +0.0.0.0 springclick-ads.s3.amazonaws.com +0.0.0.0 d1zatounuylvwg.cloudfront.net +0.0.0.0 d26b395fwzu5fz.cloudfront.net +0.0.0.0 dc8xl0ndzn2cb.cloudfront.net +0.0.0.0 gernewt.info +0.0.0.0 ads.goodreads.com +0.0.0.0 cdn-gl.imrworldwide.com +0.0.0.0 lionstracking.com +0.0.0.0 t.mdn2015x3.com +0.0.0.0 asset.pagefair.net +# 0.0.0.0 widget-cdn.rpxnow.com #[affects amc.com] + +0.0.0.0 secureredirect101.com +0.0.0.0 static.springmetrics.com +0.0.0.0 trkmydomain.com +# [Amazon.com][AS16509][207.171.160.0 - 207.171.191.255] + +0.0.0.0 s.206solutions.com +0.0.0.0 aax.amazon-adsystem.com +0.0.0.0 htmlads.s3.amazonaws.com +0.0.0.0 mondoads.s3.amazonaws.com +0.0.0.0 vml1.s3.amazonaws.com +0.0.0.0 files.bannersnack.com +# [Amazon.com][AS16509][216.137.32.0 - 216.137.63.255] + +0.0.0.0 cache.adnet-media.net +0.0.0.0 ads.advertisespace.com +0.0.0.0 adflash.affairsclub.com +0.0.0.0 atrk.alexametrics.com +0.0.0.0 c.amazon-adsystem.com +0.0.0.0 cdn.brcdn.com +0.0.0.0 cdn.comparemetrics.com +0.0.0.0 beacon.jump-time.net +0.0.0.0 adimg.luminate.com +0.0.0.0 assets.luminate.com +0.0.0.0 static.luminate.com +0.0.0.0 content.mkt922.com +0.0.0.0 t.neodatagroup.com +0.0.0.0 track.netshelter.net +0.0.0.0 static.parsely.com +0.0.0.0 static.tellapart.com +0.0.0.0 ad01.tmgrup.com.tr +0.0.0.0 a1.vdna-assets.com +# [Amazon.com][AS14618][23.20.0.0 - 23.23.255.255] + +0.0.0.0 static.adk2.com +0.0.0.0 ad.adip.ly +0.0.0.0 rev.adip.ly +0.0.0.0 async01.admantx.com +0.0.0.0 data.adsrvr.org +0.0.0.0 avidtrak.com +0.0.0.0 recon.bleacherreport.com +0.0.0.0 metrics.brightcove.com +0.0.0.0 eue.collect-opnet.com +0.0.0.0 intuit.sp1.convertro.com +0.0.0.0 addshoppers.t.domdex.com +0.0.0.0 affinity-xml.t.domdex.com +0.0.0.0 magnetic.domdex.com +0.0.0.0 magnetic.t.domdex.com +0.0.0.0 theinternetworksltd-news.t.domdex.com +0.0.0.0 sourceforgemedia-computing.t.domdex.com +0.0.0.0 static.etracker.com +0.0.0.0 nova.collect.igodigital.com +0.0.0.0 papi.mynativeplatform.com +0.0.0.0 t.pswec.com +0.0.0.0 img.pulsemgr.com +0.0.0.0 siteintercept.qualtrics.com +0.0.0.0 adserv.roundrockmedia.com +0.0.0.0 load.scanscout.com +0.0.0.0 receive.inplay.scanscout.com +0.0.0.0 cm.shareaholic.com +0.0.0.0 affiliate.techstats.net +0.0.0.0 thelocalsearchnetwork.com +0.0.0.0 analytics.tout.com +0.0.0.0 stage.traffiliate.com +0.0.0.0 ads.tunein.com +0.0.0.0 services.webspectator.com +0.0.0.0 ads.yashi.com +# [Amazon.com][AS14618][34.192.0.0 - 34.255.255.255] + +0.0.0.0 mcafee-home.7eer.net +0.0.0.0 api.connatix.com +0.0.0.0 tracking.revimedia.com +0.0.0.0 trackcmp.net +# [Amazon.com][AS39111][35.152.0.0 - 35.183.255.255] + +0.0.0.0 ad.coupontime00.coupontime.co +0.0.0.0 www.currentupdateconcepts.com +0.0.0.0 api.segment.io +0.0.0.0 www.tagclearbits.com +0.0.0.0 ssp.videostat.com +# [Amazon.com][AS39111][46.137.0.0 - 46.137.127.255] + +0.0.0.0 c1926.ic-live.com +0.0.0.0 s248.meetrics.net +0.0.0.0 s282.meetrics.net +0.0.0.0 counter.personyze.com +0.0.0.0 dn.c.richmetrics.com +0.0.0.0 measure.richmetrics.com +0.0.0.0 sync.richmetrics.com +0.0.0.0 geo.sanoma.fi +0.0.0.0 abp.smartadcheck.de +0.0.0.0 collector.stats.webs.com +0.0.0.0 qa.stats.webs.com +0.0.0.0 prod-js.aws.y-track.com +# [Amazon.com][AS39111][46.51.128.0 - 46.51.191.255] + +0.0.0.0 go.affec.tv +0.0.0.0 stats.dailyrecord.co.uk +0.0.0.0 rainbow.mythings.com +# [Amazon.com][AS16509][50.112.0.0 - 50.112.255.255] + +0.0.0.0 www.collect.mentad.com +0.0.0.0 idsync.rlcdn.com +# [Amazon.com][AS14618][50.16.0.0 - 50.19.255.255] + +0.0.0.0 web-t.9gag.com +0.0.0.0 beta.f.adbull.com +0.0.0.0 ads.adual.net +0.0.0.0 vpc.altitude-arena.com +0.0.0.0 data.apn.co.nz +0.0.0.0 tracking.badgeville.com +0.0.0.0 barilliance.net +0.0.0.0 www.barilliance.net +0.0.0.0 alleyezonme-collection.buzzfeed.com +0.0.0.0 srv.clickfuse.com +0.0.0.0 baublebar.sp1.convertro.com +0.0.0.0 api.demandbase.com +0.0.0.0 adobe.demdex.net +0.0.0.0 condenast.demdex.net +0.0.0.0 fairfax.demdex.net +0.0.0.0 mtvn.demdex.net +0.0.0.0 a.dpmsrv.com +0.0.0.0 px.dynamicyield.com +0.0.0.0 beacon.examiner.com +0.0.0.0 gonzogrape.gumgum.com +0.0.0.0 ads.havenhomemedia.com +0.0.0.0 analytics.hgcdn.net +0.0.0.0 1168.ic-live.com +0.0.0.0 1687.ic-live.com +0.0.0.0 1839.ic-live.com +0.0.0.0 c1839.ic-live.com +0.0.0.0 c1921.ic-live.com +0.0.0.0 stack7.collect.igodigital.com +0.0.0.0 a.imonomy.com +0.0.0.0 www.jetpackdigital.com +0.0.0.0 c.jsrdn.com +0.0.0.0 a.komoona.com +0.0.0.0 ad.leadboltads.net +0.0.0.0 tags.mediaforge.com +0.0.0.0 engine.nectarads.com +0.0.0.0 d.neodatagroup.com +0.0.0.0 analytics.newsinc.com +0.0.0.0 ox-d.newstogram.com +0.0.0.0 script.opentracker.net +0.0.0.0 log.optimizely.com +0.0.0.0 ntracking.optimatic.com +0.0.0.0 stats.pagefair.com +0.0.0.0 ads.pe.com +0.0.0.0 adserve.postrelease.com +0.0.0.0 lt.retargeter.com +0.0.0.0 collect.rewardstyle.com +0.0.0.0 mrp.rubiconproject.com +0.0.0.0 zeroclick.sendori.com +0.0.0.0 reporting.singlefeed.com +0.0.0.0 go.sonobi.com +0.0.0.0 sync.search.spotxchange.com +0.0.0.0 cdn.targetfuel.com +0.0.0.0 e.targetfuel.com +0.0.0.0 sslt.tellapart.com +# 0.0.0.0 idvisitor.washingtonpost.com #[affects login] + +0.0.0.0 analytics.wishabi.ca +0.0.0.0 track.written.com +0.0.0.0 zdbb.net +# [Amazon.com][AS14618][52.0.0.0 - 52.31.255.255] + +0.0.0.0 ad.ad-arata.com +0.0.0.0 www.addwish.com +0.0.0.0 adsys.adk2x.com +0.0.0.0 www.adnigma.com +0.0.0.0 api.adrtx.net +0.0.0.0 cdn.adrtx.net +0.0.0.0 segments.adaptv.advertising.com +0.0.0.0 ac.eu.angsrvr.com +0.0.0.0 sy.eu.angsrvr.com +0.0.0.0 b-aws.aol.com +0.0.0.0 jump.aragontrack.com +0.0.0.0 ad.atdmt.com +0.0.0.0 track.atom-data.io +0.0.0.0 stats.bannersnack.com +0.0.0.0 api.boomtrain.com +0.0.0.0 events.boomtrain.com +0.0.0.0 promo.clicnscores.com +0.0.0.0 adserverc.cliipa.com +0.0.0.0 capture.condenastdigital.com +0.0.0.0 aexp.demdex.net +0.0.0.0 nbcu.demdex.net +0.0.0.0 inceptionads.go2cloud.org +0.0.0.0 track.happylifestylestoday.com +0.0.0.0 b-aws.huffingtonpost.com +0.0.0.0 k.intellitxt.com +0.0.0.0 fc.jouleadserver.com +0.0.0.0 us.ads.justpremium.com +0.0.0.0 us.tracking.justpremium.com +0.0.0.0 jwpltx.com +0.0.0.0 i.n.jwpltx.com +0.0.0.0 analytics.kaltura.com +0.0.0.0 ads.kiosked.com +0.0.0.0 beacon.livefyre.com +0.0.0.0 logs-01.loggly.com +0.0.0.0 js.matheranalytics.com +0.0.0.0 www.mftracking.com +0.0.0.0 c.newsinc.com +0.0.0.0 metrics-collector.onscroll.com +0.0.0.0 api.petametrics.com +0.0.0.0 widget.realo.be +0.0.0.0 r.remarketingpixel.com +0.0.0.0 pixel.mtrcs.samba.tv +0.0.0.0 tracker.samplicio.us +0.0.0.0 recommender.scarabresearch.com +0.0.0.0 track.scrillaspace.com +0.0.0.0 count-server.sharethis.com +0.0.0.0 init.supersonicads.com +0.0.0.0 rv-gateway.supersonicads.com +0.0.0.0 s.tagsrvcs.com +0.0.0.0 d.t.tailtarget.com +0.0.0.0 www.trackingclick.net +0.0.0.0 l54hx.ads.tremorhub.com +0.0.0.0 dsp07.ads.tremorhub.com +0.0.0.0 g8qxp.ads.tremorhub.com +0.0.0.0 trueclickads.net +0.0.0.0 onlgc.voluumtrk.com +0.0.0.0 dckappa.widespace.com +0.0.0.0 engine.widespace.com +0.0.0.0 inscreen.widespace.com +0.0.0.0 za2.zeroredirect8.com +0.0.0.0 t.zqtk.net +# [Amazon.com][AS14618][52.32.0.0 - 52.79.255.255] + +0.0.0.0 rudy.adsnative.com +0.0.0.0 sync.adaptv.advertising.com +0.0.0.0 www.apphostcapital.com +0.0.0.0 www.applicationsdeliveryupdate.com +0.0.0.0 www.bestfactorydelivery.com +0.0.0.0 ads.chargeads.com +0.0.0.0 www.chucklefunhead.com +0.0.0.0 www.conecptpackagecycle.com +0.0.0.0 www.conceptsbyteupdate.com +0.0.0.0 infinityid.condenastdigital.com +0.0.0.0 djibeacon.dowjoneson.com +0.0.0.0 c.f5mtrack.com +0.0.0.0 www.guardappsfarm.com +0.0.0.0 track.leadin.com +0.0.0.0 mantodea.mantisadnetwork.com +0.0.0.0 dk-gmtdmp.mookie1.com +0.0.0.0 us-gmtdmp.mookie1.com +0.0.0.0 us.pixel.newscgp.com +0.0.0.0 www.quickbitsdownloads.com +0.0.0.0 www.stockhostingvault.com +0.0.0.0 is-gateway.supersonicads.com +0.0.0.0 www.tagzone.site +0.0.0.0 go.tracksz.co +0.0.0.0 slckg-2p3vy.ads.tremorhub.com +0.0.0.0 dc.widespace.com +# [Amazon.com][AS14618][52.84.0.0 - 52.95.255.255] + +0.0.0.0 iau.adsiduous.com +0.0.0.0 fls-eu.amazon-adsystem.com +0.0.0.0 cdn.accelerator.arsdev.net +0.0.0.0 track.adthrive.com +0.0.0.0 cdn.cquotient.com +0.0.0.0 www.greatdownloadapps45.download +0.0.0.0 htl.bid +0.0.0.0 contentz.mkt61.net +0.0.0.0 cdn.my-pc-cleaner.org +0.0.0.0 cdn.permutive.com +0.0.0.0 dove.saymedia.com +0.0.0.0 static.site24x7rum.com +0.0.0.0 outcome.supersonicads.com +0.0.0.0 adserver.tappsgames.com +0.0.0.0 www.thedownloadpremiumfree36.com +0.0.0.0 rq.trackingadirect.com +# [Amazon.com][AS14618][54.144.0.0 - 54.159.255.255] + +0.0.0.0 t.adk2.com +0.0.0.0 adrzr.com +0.0.0.0 www.applicationsflashbinaries.com +0.0.0.0 www.bitsfarmclean.com +0.0.0.0 www.bitspresentdownload.com +0.0.0.0 www.bitstagcontent.com +0.0.0.0 www.bundlerepositorycontent.com +0.0.0.0 www.guardcyclequick.com +0.0.0.0 www.megagiftcity.com +0.0.0.0 collector-195.tvsquared.com +# [Amazon.com][AS14618][54.160.0.0 - 54.175.255.255] + +0.0.0.0 track.absoluteclickscom.com +0.0.0.0 t.acxiom-online.com +0.0.0.0 api.addnow.com +0.0.0.0 dy.adserve.io +0.0.0.0 tag.apxlv.com +0.0.0.0 rtb-px.content.ad +0.0.0.0 freecharge.demdex.net +0.0.0.0 iyogi.demdex.net +0.0.0.0 scripps.demdex.net +0.0.0.0 widgets.kiosked.com +0.0.0.0 tracking.listhub.net +0.0.0.0 stats.pckeeper.software +0.0.0.0 track.prizeglobal.net +0.0.0.0 trax.prostrax.com +0.0.0.0 p.pxl2015x1.com +0.0.0.0 beacon.sojern.com +0.0.0.0 srv.stackadapt.com +0.0.0.0 redirect.todayreward.net +0.0.0.0 track.todayreward.net +0.0.0.0 n9bcd.ads.tremorhub.com +0.0.0.0 partners.tremorhub.com +0.0.0.0 admediator.unityads.unity3d.com +# 0.0.0.0 wurfl.io #[affects Google] + +0.0.0.0 app.yieldify.com +# [Amazon.com][AS16509][54.176.0.0 - 54.191.255.255] + +0.0.0.0 tracker.freecharge.in +0.0.0.0 neo.go.sonobi.com +0.0.0.0 match.xg4ken.com +# [Amazon.com][AS16509][54.192.0.0 - 54.207.255.255] + +0.0.0.0 cdn.adpdx.com +0.0.0.0 admtpmp127.adsk2.co +0.0.0.0 adplexmedia.adk2.co +0.0.0.0 ad.adsrvr.org +0.0.0.0 ad.ad-stir.com +0.0.0.0 ads.adthrive.com +0.0.0.0 cdn.adtradr.com +0.0.0.0 cdn.appdynamics.com +0.0.0.0 promotions.betfred.com +0.0.0.0 cdn.blueconic.net +0.0.0.0 tag.bounceexchange.com +0.0.0.0 d1xfq2052q7thw.cloudfront.net +0.0.0.0 d1z2jf7jlzjs58.cloudfront.net +0.0.0.0 d2vg62nuq66wql.cloudfront.net +0.0.0.0 d2zah9y47r7bi2.cloudfront.net +0.0.0.0 d342r80tvdrdhm.cloudfront.net +0.0.0.0 d3qxwzhswv93jk.cloudfront.net +0.0.0.0 script.crazyegg.com +0.0.0.0 d.dc121677.com +0.0.0.0 cu.genesismedia.com +0.0.0.0 cucdn.genesismedia.com +0.0.0.0 php.genesismedia.com +0.0.0.0 gscounters.eu1.gigya.com +0.0.0.0 c1937.ic-live.com +0.0.0.0 seccdn-gl.imrworldwide.com +0.0.0.0 resources.kiosked.com +0.0.0.0 cdn.listrakbi.com +0.0.0.0 www.livefyre.com +0.0.0.0 cdn.matheranalytics.com +0.0.0.0 t.mdn2015x2.com +0.0.0.0 stag.mdotlabs.com +0.0.0.0 ads.mic.com +0.0.0.0 dbg52463.moatads.com +0.0.0.0 t.mtagmonetizationa.com +0.0.0.0 files.native.ad +0.0.0.0 ap.octopuspop.com +0.0.0.0 match.rundsp.com +0.0.0.0 tag.mtrcs.samba.tv +0.0.0.0 cdn.scarabresearch.com +0.0.0.0 code.adsales.snidigital.com +0.0.0.0 s5.spn.ee +0.0.0.0 ua.supersonicads.com +0.0.0.0 s.uadx.com +0.0.0.0 w.visualdna.com +0.0.0.0 wfpscripts.webspectator.com +0.0.0.0 cdn.yldbt.com +0.0.0.0 saxp.zedo.com +0.0.0.0 2664.tm.zedo.com +0.0.0.0 3211.tm.zedo.com +0.0.0.0 srv-us.znaptag.com +# [Amazon.com][AS16509][54.208.0.0 - 54.221.255.255] + +0.0.0.0 api.access-mc.com +0.0.0.0 ads.adaptv.advertising.com +0.0.0.0 video.adaptv.advertising.com +0.0.0.0 tracking.affiliates.de +0.0.0.0 arena.altitude-arena.com +0.0.0.0 ca.altitude-arena.com +0.0.0.0 pstats.blogworks.com +0.0.0.0 a.centrum.cz +0.0.0.0 stats.cloudwp.io +0.0.0.0 api.content-ad.net +0.0.0.0 bostonglobe.demdex.net +0.0.0.0 ford.demdex.net +0.0.0.0 swisscom.demdex.net +0.0.0.0 www.dntx.com +0.0.0.0 nz-ssl.effectivemeasure.net +0.0.0.0 s.effectivemeasure.net +0.0.0.0 cdn.firstimpression.io +0.0.0.0 j.flxpxl.com +0.0.0.0 c10060.ic-live.com +0.0.0.0 matcher.idtargeting.com +0.0.0.0 ccs.infospace.com +0.0.0.0 www.i.matheranalytics.com +0.0.0.0 banners.moreniche.com +0.0.0.0 analytics.cnd-motionmedia.de +0.0.0.0 odds.optimizely.com +0.0.0.0 c.pinkvisit.com +0.0.0.0 ad.pxlad.io +0.0.0.0 ad-us-east-1.pxlad.io +0.0.0.0 api.revcontent.com +0.0.0.0 bomcl.richmetrics.com +0.0.0.0 seb.scorecardresearch.com +0.0.0.0 d.tailtarget.com +0.0.0.0 j.traffichunt.com +0.0.0.0 eng.trkcnv.com +0.0.0.0 uadx.com +0.0.0.0 analytics.upworthy.com +0.0.0.0 rumds.wpdigital.net +0.0.0.0 i.yldbt.com +0.0.0.0 z2.zedo.com +0.0.0.0 segment-data.zqtk.net +# [Amazon.com][AS16509][54.224.0.0 - 54.239.255.255] + +0.0.0.0 s.206ads.com +0.0.0.0 ib.3lift.com +0.0.0.0 optimize.adpushup.com +0.0.0.0 ads-stream.com +0.0.0.0 js.apxlv.com +0.0.0.0 www.adbooth.com +0.0.0.0 cdn.adengage.com +0.0.0.0 code.adengage.com +0.0.0.0 srv.adengage.com +0.0.0.0 api.adip.ly +0.0.0.0 adbooth.adk2.co +0.0.0.0 files-www2.adsnative.com +0.0.0.0 static.adsnative.com +0.0.0.0 files.adspdbl.com +0.0.0.0 data.alexa.com +0.0.0.0 advice-ads.s3.amazonaws.com +0.0.0.0 ps-eu.amazon-adsystem.com +0.0.0.0 ps-us.amazon-adsystem.com +0.0.0.0 z-na.amazon-adsystem.com +0.0.0.0 cdn.installationsafe.net.s3.amazonaws.com +0.0.0.0 slate-ad-scripts.s3.amazonaws.com +0.0.0.0 znaptag-us.s3.amazonaws.com +0.0.0.0 as.eu.angsrvr.com +0.0.0.0 cdn.avmws.com +0.0.0.0 beachfrontio.com +0.0.0.0 t.beanstalkdata.com +0.0.0.0 ad.broadstreetads.com +0.0.0.0 cdn.broadstreetads.com +0.0.0.0 pageurl.btrll.com +0.0.0.0 pageurl-brx.btrll.com +0.0.0.0 pix.btrll.com +0.0.0.0 shim.btrll.com +0.0.0.0 vw.btrll.com +0.0.0.0 cdn.bttrack.com +0.0.0.0 adg.bzgint.com +0.0.0.0 dynamic.cannedbanners.com +0.0.0.0 data.captifymedia.com +0.0.0.0 t.channeladvisor.com +0.0.0.0 tracking2.channeladvisor.com +0.0.0.0 www.clicktripz.com +0.0.0.0 images1.cliqueclack.com +0.0.0.0 d1fc8wv8zag5ca.cloudfront.net +0.0.0.0 d1l6p2sc9645hc.cloudfront.net +0.0.0.0 d1piupybsgr6dr.cloudfront.net +0.0.0.0 d13dhn7ldhrcf6.cloudfront.net +0.0.0.0 d2nq0f8d9ofdwv.cloudfront.net +0.0.0.0 d2oh4tlt9mrke9.cloudfront.net +0.0.0.0 d31qbv1cthcecs.cloudfront.net +0.0.0.0 d3c3cq33003psk.cloudfront.net +0.0.0.0 d3dcugpvnepf41.cloudfront.net +0.0.0.0 d3ujids68p6xmq.cloudfront.net +0.0.0.0 d33f10u0pfpplc.cloudfront.net +0.0.0.0 d5nxst8fruw4z.cloudfront.net +0.0.0.0 d8rk54i4mohrb.cloudfront.net +0.0.0.0 dl1d2m8ri9v3j.cloudfront.net +0.0.0.0 dff7tx5c2qbxc.cloudfront.net +0.0.0.0 rec.convertale.com +0.0.0.0 cdn-1.convertexperiments.com +0.0.0.0 use.convertglobal.com +0.0.0.0 casper.sp1.convertro.com +0.0.0.0 livenation.sp1.convertro.com +0.0.0.0 magazines.sp1.convertro.com +0.0.0.0 p.cpx.to +0.0.0.0 admp-tc.delfi.lv +0.0.0.0 scripts.demandbase.com +0.0.0.0 bet.demdex.net +0.0.0.0 cbsi.demdex.net +0.0.0.0 de.demdex.net +0.0.0.0 foxnews.demdex.net +0.0.0.0 sears.demdex.net +0.0.0.0 intbrands.t.domdex.com +0.0.0.0 td.demdex.net +0.0.0.0 tags-cdn.deployads.com +0.0.0.0 pds.directrev.com +0.0.0.0 xch.directrev.com +0.0.0.0 tiscali.js.ad.dotandad.com +0.0.0.0 cdn.elasticad.net +0.0.0.0 col.eum-appdynamics.com +0.0.0.0 banner.euroads.no +0.0.0.0 imp.euroads.no +0.0.0.0 pool.euroads.no +0.0.0.0 tracking1.euroads.no +0.0.0.0 cdn.evergage.com +0.0.0.0 hj.flxpxl.com +0.0.0.0 beacon.guim.co.uk +0.0.0.0 cdn.heapanalytics.com +0.0.0.0 bundle-geoip.herokuapp.com +0.0.0.0 powr-counter.herokuapp.com +0.0.0.0 beam.hlserve.com +0.0.0.0 cdn.iasrv.com +0.0.0.0 c1349.ic-live.com +0.0.0.0 c1935.ic-live.com +0.0.0.0 c10050.ic-live.com +0.0.0.0 c10064.ic-live.com +0.0.0.0 1703.ic-live.com +0.0.0.0 cdn.idtargeting.com +0.0.0.0 cdn.ip.inpwrd.com +0.0.0.0 cdn.libraries.inpwrd.com +0.0.0.0 load.instinctiveads.com +0.0.0.0 a.cdn.intentmedia.net +0.0.0.0 prod-services.interactiveone.com +0.0.0.0 cdn.investingchannel.com +0.0.0.0 admp-tc.iltalehti.fi +0.0.0.0 beacon.jumptime.com +0.0.0.0 timeseg.modules.jumptime.com +0.0.0.0 cdn.kixer.com +0.0.0.0 stat.komoona.com +0.0.0.0 adserver.kontextua.com +0.0.0.0 cf.ads.kontextua.com +0.0.0.0 collector.leaddyno.com +0.0.0.0 d.liadm.com +0.0.0.0 p.liadm.com +0.0.0.0 d.lumatag.co.uk +0.0.0.0 bc.marfeel.com +0.0.0.0 tags.mdotlabs.com +0.0.0.0 js.ad.mediamond.it +0.0.0.0 edge.metroleads.com +0.0.0.0 contentz.mkt51.net +0.0.0.0 contentz.mkt912.com +0.0.0.0 content.mkt931.com +0.0.0.0 content.mkt932.com +0.0.0.0 contentz.mkt932.com +0.0.0.0 contentz.mkt941.com +0.0.0.0 w.mlv-cdn.com +0.0.0.0 track.moreniche.com +0.0.0.0 t.mtagmonetizationc.com +0.0.0.0 c.mtro.co +0.0.0.0 zdbb.netshelter.net +0.0.0.0 mix-test.uts.ngdata.com +0.0.0.0 eu.npario-inc.net +0.0.0.0 ninja.onap.io +0.0.0.0 cdn.onscroll.com +0.0.0.0 vast.optimatic.com +0.0.0.0 c.pebblemedia.be +0.0.0.0 analytics.dev.popdust.com +0.0.0.0 jadserve.postrelease.com +0.0.0.0 static.proximic.com +0.0.0.0 i.pxlad.io +0.0.0.0 static.pxlad.io +0.0.0.0 embed-stats.rbl.ms +0.0.0.0 frontpage-stats.rbl.ms +0.0.0.0 site-stats.rbl.ms +0.0.0.0 di.rlcdn.com +0.0.0.0 tap-secure.rubiconproject.com +0.0.0.0 savvyads.com +0.0.0.0 collector.savvyads.com +0.0.0.0 mtrx.go.sonobi.com +0.0.0.0 analytics.revee.com +0.0.0.0 di-se.c.richmetrics.com +0.0.0.0 di-banner-se.c.richmetrics.com +0.0.0.0 vancouversun-com.c.richmetrics.com +0.0.0.0 cdn.sail-horizon.com +0.0.0.0 cdn.siftscience.com +0.0.0.0 gsf-cf.softonic.com +0.0.0.0 pixel.sojern.com +0.0.0.0 eventlogger.soundcloud.com +0.0.0.0 a.teads.tv +0.0.0.0 cdn.teads.tv +0.0.0.0 t.teads.tv +0.0.0.0 static.tellaparts.com +0.0.0.0 swrap.tradedoubler.com +0.0.0.0 ads.traffichunt.com +0.0.0.0 cdn.traffichunt.com +0.0.0.0 assets.tapad.com +0.0.0.0 analytics.userreport.com +0.0.0.0 cdn.userreport.com +0.0.0.0 sdscdn.userreport.com +0.0.0.0 tracking.rce.veeseo.com +# 0.0.0.0 delivery.vidible.tv #[affects aol.com] + +0.0.0.0 wsc1.webspectator.com +0.0.0.0 zafiti01.webtrekk-us.net +0.0.0.0 sdk-controller.widespace.com +0.0.0.0 mb.zam.com +0.0.0.0 3165.tm.zedo.com +0.0.0.0 www.zergnet.com +# [Amazon.com][AS16509][54.240.0.0 - 54.255.255.255] + +0.0.0.0 d.254a.com +0.0.0.0 kwserver.adhispanic.com +0.0.0.0 ads.adiply.com +0.0.0.0 srv.admailtiser.com +0.0.0.0 app.adsbrook.com +0.0.0.0 cdn.adual.net +0.0.0.0 cdn.adquantix.com +0.0.0.0 p.adsymptotic.com +0.0.0.0 adactive-ads.aimatch.com +0.0.0.0 crtl.aimatch.com +0.0.0.0 tr-1.agilone.com +# 0.0.0.0 as.eu.angsrvr.com #[affects videos] + +0.0.0.0 cdn.appendad.com +0.0.0.0 www.badassjv.com +0.0.0.0 blockmetrics.com +0.0.0.0 cache.btrll.com +0.0.0.0 d12tr1cdjbyzav.cloudfront.net +0.0.0.0 d2vig74li2resi.cloudfront.net +0.0.0.0 desv383oqqc0.cloudfront.net +0.0.0.0 js.convertale.com +0.0.0.0 tc-s.convertro.com +0.0.0.0 track.customer.io +0.0.0.0 s.cxt.ms +0.0.0.0 dailymotion.demdex.net +0.0.0.0 error.demdex.net +0.0.0.0 gannett.demdex.net +0.0.0.0 links.services.disqus.com +0.0.0.0 hutchmedia.t.domdex.com +0.0.0.0 cdn5.js.ad.dotandad.com +0.0.0.0 filecdn2.dotandad.com +0.0.0.0 s.dpmsrv.com +0.0.0.0 cf.effectivemeasure.net +0.0.0.0 us-cdn.effectivemeasure.net +0.0.0.0 ps.eyeota.net +0.0.0.0 analytics.fairfax.com.au +0.0.0.0 fmsads.com +0.0.0.0 data.gosquared.com +0.0.0.0 data2.gosquared.com +0.0.0.0 ads.groupcommerce.com +0.0.0.0 c10013.ic-live.com +0.0.0.0 c1947.ic-live.com +0.0.0.0 c1950.ic-live.com +0.0.0.0 p1937.ic-live.com +0.0.0.0 ad.ipredictive.com +0.0.0.0 adserv.impactengine.com +0.0.0.0 adn.impactradius.com +0.0.0.0 scripts.kissmetrics.com +0.0.0.0 ads.lanistaads.com +0.0.0.0 napi.lanistaads.com +0.0.0.0 rev.lanistaads.com +0.0.0.0 content.mkt51.net +0.0.0.0 content.mkt941.com +0.0.0.0 f.monetate.net +0.0.0.0 tracker.mozo.com.au +0.0.0.0 papi.mynativeads.com +0.0.0.0 web-clients.mynativeads.com +0.0.0.0 static.nectarads.com +0.0.0.0 cl-c.netseer.com +0.0.0.0 js-agent.newrelic.com +0.0.0.0 pages-stats.rbl.ms +0.0.0.0 load.passionfruitads.com +0.0.0.0 traffic.pubexchange.com +0.0.0.0 ads.qadservice.com +0.0.0.0 orca.qubitproducts.com +0.0.0.0 ortc-ws2-useast1-s0005.realtime.co +0.0.0.0 a.remarketstats.com +0.0.0.0 vg-no.c.richmetrics.com +0.0.0.0 partner.shareaholic.com +0.0.0.0 traffic.shareaholic.com +0.0.0.0 cc.simplereach.com +0.0.0.0 edge.simplereach.com +0.0.0.0 analytics.sitewit.com +0.0.0.0 tracking.sokrati.com +0.0.0.0 traffic-offers.com +0.0.0.0 konnect.videoplaza.tv +0.0.0.0 trk.vidible.tv +# 0.0.0.0 id.washingtonpost.com #[affects login] + +0.0.0.0 scripts.webspectator.com +0.0.0.0 osc.optimize.webtrends.com +0.0.0.0 a.wishabi.com +0.0.0.0 track.youniversalmedia.com +0.0.0.0 geo.ziffdavis.com +# [Amazon.com][AS16509][54.64.0.0 - 54.71.255.255] + +0.0.0.0 api.proofpositivemedia.com +0.0.0.0 s.pubmine.com +# [Amazon.com][AS14618][54.72.0.0 - 54.95.255.255] + +0.0.0.0 t.254a.com +0.0.0.0 r.254a.com +0.0.0.0 yieldmanager.adbooth.com +0.0.0.0 admaven.adk2x.com +0.0.0.0 adstrac.adk2x.com +0.0.0.0 snwmedia.adk2x.com +0.0.0.0 synchroscript.adswizz.com +0.0.0.0 synchroscript.deliveryengine.adswizz.com +0.0.0.0 secure.adwebster.com +0.0.0.0 pixiedust.buzzfeed.com +0.0.0.0 tracking.crobo.com +0.0.0.0 comcast.demdex.net +0.0.0.0 ecs.demdex.net +0.0.0.0 collector.githubapp.com +0.0.0.0 geobeacon.ign.com +0.0.0.0 hlok.qertewrt.com +0.0.0.0 mmtrkpy.com +0.0.0.0 tracking.olx-st.com +0.0.0.0 api.optinmonster.com +0.0.0.0 t01.proximic.com +0.0.0.0 go.redirectingat.com +0.0.0.0 track.rtb-media.ru +0.0.0.0 a.rvttrack.com +0.0.0.0 b.siftscience.com +0.0.0.0 ardrone.swoop.com +0.0.0.0 collector-184.tvsquared.com +0.0.0.0 collector-428.tvsquared.com +0.0.0.0 a3.websitealive.com +0.0.0.0 zd1.zeroredirect6.com +0.0.0.0 zh1.zeroredirect11.com +# [Amazon.com][AS16509][67.202.0.0 - 67.202.63.255] + +# [Amazon.com][AS16509][72.21.192.0 - 72.21.223.255] + +0.0.0.0 adserver.advertisespace.com +0.0.0.0 aax-us-east-rtb.amazon-adsystem.com +0.0.0.0 rcm-na.amazon-adsystem.com +0.0.0.0 adtago.s3.amazonaws.com +0.0.0.0 sync.cmedia.s3.amazonaws.com +0.0.0.0 ecommstats.s3.amazonaws.com +0.0.0.0 exitsplash.s3.amazonaws.com +0.0.0.0 load.s3.amazonaws.com +0.0.0.0 ncads.s3.amazonaws.com +0.0.0.0 viewerstats.docstoc.com.s3.amazonaws.com +0.0.0.0 www.assoc-amazon.com +0.0.0.0 new.cetrk.com +0.0.0.0 trk.cetrk.com +0.0.0.0 dl.keywordstrategy.org +0.0.0.0 asset.pagefair.com +0.0.0.0 beacon.tunecore.com +# [Amazon.com][AS14618][72.44.32.0 - 72.44.63.255] + +0.0.0.0 adaptv.pixel.invitemedia.com +0.0.0.0 g-pixel.invitemedia.com +0.0.0.0 segment-pixel.invitemedia.com +0.0.0.0 t.invitemedia.com +# [Amazon.com][75.101.128.0 - 75.101.255.255] + +0.0.0.0 certify.alexametrics.com +0.0.0.0 analytics.brightedge.com +0.0.0.0 edge.analytics.brightedge.com +0.0.0.0 fhg.digitaldesire.com +0.0.0.0 tags.extole.com +0.0.0.0 clicks11.geoads.com +0.0.0.0 tracking.hubspot.com +0.0.0.0 of.inviziads.com +0.0.0.0 preview.leadmediapartners.com +0.0.0.0 ads.livepromotools.com +0.0.0.0 a.monetate.net +0.0.0.0 click.searchnation.net +0.0.0.0 ariel1.spaceprogram.com +0.0.0.0 revelations.trovus.co.uk +0.0.0.0 ev.yieldbuild.com +# [Amazon.com][AS39111][79.125.0.0 - 79.125.63.255] + +0.0.0.0 adv.ilsecoloxix.it +0.0.0.0 s32.research.de.com +0.0.0.0 d.skimresources.com +0.0.0.0 t.skimresources.com +0.0.0.0 app.ubertags.com +0.0.0.0 stats3.unrulymedia.com +# [Amazon.com][AS39111][87.238.82.0 - 87.238.83.255] + +# [Andriy Yuriyovich][AS50369][109.95.112.0 - 109.95.119.255] + +# [Anexia][AS42473][193.33.114.0 - 193.33.115.255] + +# [Anexia][AS42473][37.252.228.0 - 37.252.228.255] + +0.0.0.0 cdn.qbaka.net +# [America Online][AS1668][149.174.0.0 - 149.174.255.255] + +0.0.0.0 pixel.advertising.com +0.0.0.0 secure.ace.advertising.com +0.0.0.0 ads-us.pictela.net +0.0.0.0 pix.pulsemgr.com +# [America Online][AS1668][152.163.0.0 - 152.163.255.255] + +0.0.0.0 adserver-us.adtech.advertising.com +0.0.0.0 li.pxl.ace.advertising.com +# [AOL CNN / Turner][AS5662][157.166.0.0 - 157.166.255.255] + +0.0.0.0 cnn.dyn.cnn.com +0.0.0.0 gdyn.cnn.com +0.0.0.0 gdyn.nascar.com +0.0.0.0 gdyn.nba.com +0.0.0.0 www.ugdturner.com +0.0.0.0 gdyn.veryfunnyads.com +# [AOL / Advertising.com][209.225.0.0 - 209.225.0.127] + +0.0.0.0 dbs.advertising.com +0.0.0.0 opera1-servedby.advertising.com +0.0.0.0 rd.advertising.com +# [AOL / Advertising.com][209.225.4.64 - 209.225.5.95] + +0.0.0.0 bf.mocda1.com +# [AOL / Advertising.com][209.225.6.64 - 209.225.6.95] + +0.0.0.0 adserve.advertising.com +# [AOL / Advertising.com][209.225.11.224 - 209.225.34.255] + +0.0.0.0 wap.advertising.com +0.0.0.0 www.contextualclicks.com +# [AOL / AD TECH][194.117.224.0 - 194.117.225.255] + +0.0.0.0 img-dc2.adtech.de +0.0.0.0 img.bet-at-home.com +0.0.0.0 adsby.webtraffic.se +# [AOL / AD TECH][AS8939][194.126.131.0 - 194.126.132.255] + +0.0.0.0 ad-dc2.adtech.de +0.0.0.0 adserver.eyeonx.ch +0.0.0.0 hiq.fotolog.com +0.0.0.0 at.ontargetjobs.com +# [AOL / AD TECH][AS1668][195.93.64.0 - 195.93.127.255] + +0.0.0.0 adsrv.adplus.co.id +0.0.0.0 adssl-dc2.adtech.de +0.0.0.0 adserver-eu.adtech.advertising.com +0.0.0.0 adv.aftonbladet.se +0.0.0.0 ol.uk.at.atwola.com +0.0.0.0 ads.immobilienscout24.de +0.0.0.0 jt.india.com +0.0.0.0 adv.svd.se +# [AOL / Quigo][AS39988][208.68.56.0 - 208.68.59.255] + +0.0.0.0 newsletter.adsonar.com +0.0.0.0 redir.adsonar.com +# [America Online][AS1668][205.188.0.0 - 205.188.255.255] + +0.0.0.0 origin2.adsdk.com +0.0.0.0 free.aol.com +0.0.0.0 ar.atwola.com +0.0.0.0 ar7.atwola.com +0.0.0.0 tacoda.at.atwola.com +# [America Online][AS1668][207.200.64.0 - 207.200.127.255] + +0.0.0.0 ums.adtechus.com +0.0.0.0 adnet.affinity.com +# [America Online][AS1668][64.12.0.0 - 64.12.255.255] + +0.0.0.0 sl-retargeting.adsonar.com +0.0.0.0 demo.advertising.com +0.0.0.0 secure.leadback.advertising.com +0.0.0.0 smrtpxl.advertising.com +0.0.0.0 dynamic.aol.com +0.0.0.0 ar1.atwola.com +0.0.0.0 ar9.atwola.com +0.0.0.0 pixel.ingest.at.atwola.com +0.0.0.0 pr.atwola.com +0.0.0.0 uts-api.at.atwola.com +0.0.0.0 adserver.fixionmedia.com +0.0.0.0 ads.patch.com +# [America Online][AS1668][64.236.0.0 - 64.236.255.255] + +0.0.0.0 ssl-sl-retargeting.adsonar.com +0.0.0.0 glb.adtechus.com +0.0.0.0 ace-lb.advertising.com +0.0.0.0 ace-tag.advertising.com +0.0.0.0 p.ace.advertising.com +0.0.0.0 r1.ace.advertising.com +0.0.0.0 www.advertising.com +0.0.0.0 at.atwola.com +0.0.0.0 uk.at.atwola.com +0.0.0.0 helios.fvn.no +0.0.0.0 v.landingzone.se +# [Apa-it][AS5403][194.232.105.0 - 194.232.105.255] + +0.0.0.0 tracking.kurier.at +0.0.0.0 qs.oewabox.at +# [Applied Innovations][AS14519][216.167.192.0 - 216.167.207.255] + +# [Applied Technologies Internet] + +0.0.0.0 loga.hit-parade.com +0.0.0.0 logp.hit-parade.com +0.0.0.0 logc2.xiti.com +0.0.0.0 logc3.xiti.com +0.0.0.0 logc7.xiti.com +0.0.0.0 logc8.xiti.com +0.0.0.0 logc11.xiti.com +0.0.0.0 logc13.xiti.com +0.0.0.0 logc14.xiti.com +0.0.0.0 logc15.xiti.com +0.0.0.0 logc16.xiti.com +0.0.0.0 logc19.xiti.com +0.0.0.0 logc26.xiti.com +0.0.0.0 logc32.xiti.com +0.0.0.0 logc35.xiti.com +0.0.0.0 logc89.xiti.com +0.0.0.0 logc111.xiti.com +0.0.0.0 logc138.xiti.com +0.0.0.0 logc142.xiti.com +0.0.0.0 logc149.xiti.com +0.0.0.0 logc169.xiti.com +0.0.0.0 logc173.xiti.com +0.0.0.0 logc175.xiti.com +0.0.0.0 logc180.xiti.com +0.0.0.0 logc189.xiti.com +0.0.0.0 logc181.xiti.com +0.0.0.0 logc202.xiti.com +0.0.0.0 logc205.xiti.com +0.0.0.0 logc206.xiti.com +0.0.0.0 logc209.xiti.com +0.0.0.0 logc210.xiti.com +0.0.0.0 logc218.xiti.com +0.0.0.0 logc238.xiti.com +0.0.0.0 logc253.xiti.com +0.0.0.0 logc279.xiti.com +0.0.0.0 logc400.xiti.com +0.0.0.0 logc407.xiti.com +0.0.0.0 logi4.xiti.com +0.0.0.0 logi5.xiti.com +0.0.0.0 logi9.xiti.com +0.0.0.0 logi10.xiti.com +0.0.0.0 logi11.xiti.com +0.0.0.0 logi12.xiti.com +0.0.0.0 logi13.xiti.com +0.0.0.0 logi103.xiti.com +0.0.0.0 logi104.xiti.com +0.0.0.0 logi118.xiti.com +0.0.0.0 logi125.xiti.com +0.0.0.0 logc135.xiti.com +0.0.0.0 logi141.xiti.com +0.0.0.0 logi150.xiti.com +0.0.0.0 logi151.xiti.com +0.0.0.0 logi162.xiti.com +0.0.0.0 logi163.xiti.com +0.0.0.0 logi242.xiti.com +0.0.0.0 logliberation.xiti.com +0.0.0.0 logp.xiti.com +0.0.0.0 logp2.xiti.com +0.0.0.0 logs1125.xiti.com +0.0.0.0 logs1204.xiti.com +0.0.0.0 logs1242.xiti.com +0.0.0.0 logs1285.xiti.com +0.0.0.0 logv1.xiti.com +0.0.0.0 logv2.xiti.com +0.0.0.0 logv3.xiti.com +0.0.0.0 logv5.xiti.com +0.0.0.0 logv6.xiti.com +0.0.0.0 logv7.xiti.com +0.0.0.0 logv8.xiti.com +0.0.0.0 logv9.xiti.com +0.0.0.0 logv10.xiti.com +0.0.0.0 logv11.xiti.com +0.0.0.0 logv12.xiti.com +0.0.0.0 logv13.xiti.com +0.0.0.0 logv15.xiti.com +0.0.0.0 logv16.xiti.com +0.0.0.0 logv19.xiti.com +0.0.0.0 logv20.xiti.com +0.0.0.0 logv22.xiti.com +0.0.0.0 logv23.xiti.com +0.0.0.0 logv24.xiti.com +0.0.0.0 logv26.xiti.com +0.0.0.0 logv28.xiti.com +0.0.0.0 logv30.xiti.com +0.0.0.0 logv31.xiti.com +0.0.0.0 logv143.xiti.com +0.0.0.0 logv144.xiti.com +0.0.0.0 logv145.xiti.com +0.0.0.0 www.xiti.com +# [AppNexus][AS29990][185.33.222.0 - 185.33.223.255] + +0.0.0.0 secure-ams.adnxs.com +# [AppNexus][AS29990][204.13.192.0 - 204.13.199.255] + +0.0.0.0 rb.adnxs.com +0.0.0.0 oascentral.healthletter.mayoclinic.com +0.0.0.0 ib.reachjunction.com +# [AppNexus / Bandcon][AS29990][8.12.224.0 - 8.12.239.255] + +# 0.0.0.0 ib.adnxs.com #[affects Microsoft site] + +0.0.0.0 ads.dedicatedmedia.com +0.0.0.0 ag.yieldoptimizer.com +# [AppNexus / Bandcon][AS29990][8.19.16.0 - 8.19.31.255] + +0.0.0.0 px.admonkey.dapper.net +0.0.0.0 ad.himediadx.com +0.0.0.0 secure.media6degrees.com +# [AppNexus][AS29990][64.208.0.0 - 64.209.127.255] + +0.0.0.0 b.adnxs.com +0.0.0.0 nym1.b.adnxs.com +0.0.0.0 ads.bttbgroup.com +0.0.0.0 ad.dedicatedmedia.com +0.0.0.0 ads.matiro.com +0.0.0.0 ads.q1media.com +0.0.0.0 ads.reduxmediagroup.com +0.0.0.0 ad.retargeter.com +0.0.0.0 adan.xtendmedia.com +# [AppNexus][AS29990][68.67.128.0 - 68.67.191.255] + +0.0.0.0 go.accmgr.com +0.0.0.0 advs.adgorithms.com +0.0.0.0 ad2.adnetwork.net +0.0.0.0 float.2299.bm-impbus.prod.nym2.adnexus.net +0.0.0.0 mob.adnxs.com +0.0.0.0 nym1.ib.adnxs.com +0.0.0.0 sin1.g.adnxs.com +0.0.0.0 go.adversal.com +0.0.0.0 rtb-ads.avazu.net +0.0.0.0 tag.beanstock.co +0.0.0.0 servedby.bigfineads.com +0.0.0.0 optimizedby.brealtime.com +0.0.0.0 ads.captifymedia.com +0.0.0.0 x.clickcertain.com +0.0.0.0 ads.clovenetwork.com +0.0.0.0 ads.cpxinteractive.com +0.0.0.0 ads.deliads.com +0.0.0.0 ads.digitalthrottle.com +0.0.0.0 ads.fidelity-media.com +0.0.0.0 ads.gamned.com +0.0.0.0 tag.gayadnetwork.com +0.0.0.0 ad.imediaaudiences.com +0.0.0.0 secure-id.impressiondesk.com +0.0.0.0 tk.ads.mmondi.com +0.0.0.0 ad.netcommunities.com +0.0.0.0 ads.networkhm.com +0.0.0.0 ads.pubsqrd.com +0.0.0.0 ads.sonital.com +0.0.0.0 ads.sonobi.com +0.0.0.0 ads.suite6ixty6ix.com +0.0.0.0 ex.banner.t-online.de +0.0.0.0 ads.up-value.de +0.0.0.0 ads.vntsm.com +0.0.0.0 an.z5x.net +# [Appserve][AS23376][64.241.102.160 - 64.241.102.191] + +# [Argeweb][AS8315][193.34.150.0 - 193.34.151.255] + +0.0.0.0 b.ds1.nl +0.0.0.0 k1s.nl +# [Argeweb][AS8315][91.200.48.0 - 91.200.51.255] + +# [Aruba][AS31034][62.149.128.0 - 62.149.159.255] + +0.0.0.0 www.infotelsrl.com +0.0.0.0 www.juiceadv.com +0.0.0.0 www.prdirectory.biz +0.0.0.0 ads.vjaffiliates.com +# [Aruba][AS31034][95.110.200.0 - 95.110.207.255] + +# [Aruba][AS31034][95.110.200.0 - 95.110.207.255] + +0.0.0.0 advdl.ammadv.it +0.0.0.0 adv.arubamediamarketing.it +0.0.0.0 feed.hype-ads.com +# [Asp Ltd][AS35480][193.192.48.0 - 193.192.49.255] + +0.0.0.0 espresso-reklam.eu +0.0.0.0 openx.imoti.net +0.0.0.0 rot2.imoti.net +0.0.0.0 ads1.legalworld.bg +0.0.0.0 pagead.topobiavi.com +0.0.0.0 uppyads.com +0.0.0.0 ads.zajenata.bg +# [Aspect Networks][AS34848][195.190.31.0 - 195.190.31.255] + +0.0.0.0 media01.adservinghost.com +# [Aspectra-net][AS9100][212.47.170.0 - 212.47.173.255] + +0.0.0.0 bielertb.wemfbox.ch +0.0.0.0 blickonl.wemfbox.ch +0.0.0.0 bluewin.wemfbox.ch +0.0.0.0 bolero.wemfbox.ch +0.0.0.0 immosct.wemfbox.ch +0.0.0.0 moneyh.wemfbox.ch +0.0.0.0 nzz.wemfbox.ch +0.0.0.0 qs.wemfbox.ch +0.0.0.0 scout24.wemfbox.ch +0.0.0.0 si.wemfbox.ch +0.0.0.0 sport1.wemfbox.ch +0.0.0.0 swissinf.wemfbox.ch +0.0.0.0 wetter.wemfbox.ch +# [Atomz.com][AS19041][66.117.16.0 - 66.117.31.255] + +# [Aufeminin.com][AS39894][185.86.136.0 - 185.86.139.255] + +0.0.0.0 ww651.smartadserver.com +# [Aufeminin.com][AS39894][91.103.136.0 - 91.103.140.255] + +0.0.0.0 securite.01net.com +0.0.0.0 ads.20minutes.fr +0.0.0.0 smart.hola.com +0.0.0.0 www.meetic-partners.com +0.0.0.0 ad.prismamediadigital.com +0.0.0.0 ads.publicidad.net +0.0.0.0 addie.verticalnetwork.de +# [Autonomous][AS43489][193.232.159.0 - 193.232.159.255] + +# [Awknet Communications][AS17048][69.42.208.0 - 69.42.223.255] + +# [Axill][72.3.140.224 - 72.3.140.231] + +0.0.0.0 www.axill.com +# [Axill Europe][84.45.70.0 - 84.45.70.255] + +0.0.0.0 www.globe7.com +# [Axill Europe][AS41813][84.45.63.0 - 84.45.63.255] + +# [Axxa Commerce][AS3491][207.226.176.128 - 207.226.176.191] + +# [Aznet][AS44976][194.150.236.0 - 194.150.237.255] + +0.0.0.0 www.cashtrafic.com +# [Bahnhof][AS21503][AS8473][5.150.195.160 - 5.150.195.191] + +0.0.0.0 rotator.adxite.com +# [Baltic Center][AS49017][194.60.205.0 - 194.60.205.255] + +# [Bayan][AS6648][125.212.0.0 - 125.212.127.255] + +# [Bay Area / Visistat][AS7151][209.128.64.0 - 209.128.127.255] + +0.0.0.0 stats.sa-as.com +0.0.0.0 stats.visistat.com +# [Bay Area / Veruta][AS7151][72.172.176.0 - 72.172.191.255] + +0.0.0.0 adserver.veruta.com +# [Bay Area / Tumri][AS7151][72.20.120.0 - 72.20.120.255] + +0.0.0.0 images.tumri.net +0.0.0.0 www.tumri.net +# [Beanfield][AS21949][206.223.160.0 - 206.223.191.255] + +0.0.0.0 ard.sexplaycam.com +0.0.0.0 flashbanners.static.ard.sexplaycam.com +0.0.0.0 flashbanners.static.ard.xxxblackbook.com +0.0.0.0 geo.xxxblackbook.com +0.0.0.0 static.ard.xxxblackbook.com +# [Beanfield][AS21949][76.9.192.0 - 76.9.223.255] + +0.0.0.0 ard.sweetdiscreet.com +# [Bell Canada][AS6539][209.139.192.0 - 209.139.255.255] + +# [Bell Canada][AS6539][216.18.0.0 - 216.18.127.255] + +0.0.0.0 api.nrelate.com +# [Bell Globemedia Interactive][AS10808][199.246.60.0 - 199.246.71.255] + +0.0.0.0 adrates.theglobeandmail.com +0.0.0.0 ece5stats1.theglobeandmail.com +0.0.0.0 www1.theglobeandmail.com +# [Bellona][AS3.343][193.107.164.0 - 193.107.167.255] + +0.0.0.0 active.hit.stat24.com +0.0.0.0 home.hit.stat24.com +0.0.0.0 lt3.hit.stat24.com +0.0.0.0 nl4.hit.stat24.com +0.0.0.0 pro.hit.stat24.com +0.0.0.0 redefine.hit.stat24.com +0.0.0.0 redefine2.hit.stat24.com +0.0.0.0 ru2.hit.stat24.com +0.0.0.0 s1.hit.stat24.com +0.0.0.0 s2.hit.stat24.com +0.0.0.0 s3.hit.stat24.com +0.0.0.0 s4.hit.stat24.com +0.0.0.0 ua1.hit.stat24.com +0.0.0.0 ua2.hit.stat24.com +0.0.0.0 ua3.hit.stat24.com +0.0.0.0 ua4.hit.stat24.com +0.0.0.0 ua5.hit.stat24.com +0.0.0.0 uk4.hit.stat24.com +0.0.0.0 www.stat24.com +# [Beyond The Network][AS3491][205.177.0.0 - 205.177.255.255] + +# [Beyond The Network][AS3491][205.252.0.0 - 205.252.255.255] + +0.0.0.0 mirageads.net +0.0.0.0 protect-x.com +# [Beyond The Network][206.161.0.0 - 206.161.255.255] + +# [Beyond The Network][AS3491][207.176.0.0 - 207.176.127.255] + +0.0.0.0 www.homeoffun.com +# [Beyond The Network][AS3491][207.226.0.0 - 207.226.255.255] + +0.0.0.0 1directory.ru +0.0.0.0 1se.org +0.0.0.0 img.royal-cash.com +0.0.0.0 adds1.trafflow.com +0.0.0.0 tds.trafflow.com +0.0.0.0 ads.ynot.com +# [Beyond The Network][209.8.0.0 - 209.9.255.255] + +0.0.0.0 ads.svnt.com +# [Beyond The Network][63.216.0.0 - 63.223.255.255] + +0.0.0.0 bannersgomlm.buildreferrals.com +0.0.0.0 adds.trafflow.com +0.0.0.0 feed.trafflow.com +0.0.0.0 freeimghost.trafflow.com +# [Bezeq][AS8551][212.179.42.0 - 212.179.42.63] + +0.0.0.0 ds.keshet-i.com +0.0.0.0 adserv.mako.co.il +0.0.0.0 sdc.mako.co.il +0.0.0.0 stats.mako.co.il +0.0.0.0 banners.news1.co.il +# [Bezeq][AS8551][212.25.64.0 - 212.25.127.255] + +0.0.0.0 becl23.b2.gns.co.il +# [Bezeq][AS8551][62.219.0.0 - 62.219.21.255] + +0.0.0.0 adserver1.adbrands.co.il +0.0.0.0 ads.doctors.co.il +0.0.0.0 ads.metatron.co.il +0.0.0.0 service1.predictad.com +0.0.0.0 service2.predictad.com +# [Bezeq][AS8551][81.218.31.128 - 81.218.31.255] + +0.0.0.0 creative.xtendmedia.com +# [Bezeq][AS8551][82.80.204.0 - 82.80.239.255] + +0.0.0.0 ads.one.co.il +0.0.0.0 bandoc.d-group.co.il +0.0.0.0 geo.widdit.com +# [Bigmir][AS39468][193.239.68.0 - 193.239.71.255] + +0.0.0.0 ad1.bigmir.net +0.0.0.0 ad4.bigmir.net +0.0.0.0 ad5.bigmir.net +0.0.0.0 ad6.bigmir.net +0.0.0.0 ad7.bigmir.net +0.0.0.0 adi.bigmir.net +0.0.0.0 i.bigmir.net +# [Bigness Group][AS49093][195.88.190.0 - 195.88.191.255] + +# [Big Pipe][AS6327][74.3.128.0 - 74.3.191.255] + +0.0.0.0 t.nrelate.com +# [Bitgravity][AS40009][208.67.232.0 - 208.67.239.255] + +0.0.0.0 bitcast-a.v1.iad1.bitgravity.com +0.0.0.0 ads.devicebondage.com +0.0.0.0 ads.hogtied.com +0.0.0.0 ads.publicdisgrace.com +0.0.0.0 ads.sexandsubmission.com +0.0.0.0 ads.thetrainingofo.com +0.0.0.0 ads.whippedass.com +# [Blinkx][AS14743][69.25.102.0 - 69.25.102.255] + +0.0.0.0 bbtv.blinkx.com +# [BlueConnex][213.229.71.128 - 213.229.71.191] + +# [BlueConnex / Eukhost-ltd][AS29550][91.186.31.0 - 91.186.31.255] + +# [BlueConnex][92.48.64.0 - 92.48.127.255] + +# [BlueConnex][AS29550][94.76.208.0 - 94.76.208.63] + +# [Blue Gravity][AS15171][64.255.0.0 - 64.255.63.255] + +0.0.0.0 stats.ozwebsites.biz +# [Bluehost][AS11798][66.147.240.0 - 66.147.255.255] + +# [Bluehost][AS11798][69.89.16.0 - 69.89.31.255] + +# [Bluehost][74.220.192.0 - 74.220.223.255] + +# [Bluepark Solutions][AS29131][78.129.199.0 - 78.129.199.255] + +# [BraveNet][Tracking Service] + +0.0.0.0 bravenet.com +0.0.0.0 images.bravenet.com +0.0.0.0 pub2.bravenet.com +0.0.0.0 pub7.bravenet.com +0.0.0.0 pub9.bravenet.com +0.0.0.0 pub12.bravenet.com +0.0.0.0 pub13.bravenet.com +0.0.0.0 pub16.bravenet.com +0.0.0.0 pub23.bravenet.com +0.0.0.0 pub26.bravenet.com +0.0.0.0 pub27.bravenet.com +0.0.0.0 pub28.bravenet.com +0.0.0.0 pub29.bravenet.com +0.0.0.0 pub30.bravenet.com +0.0.0.0 pub31.bravenet.com +0.0.0.0 pub34.bravenet.com +0.0.0.0 pub39.bravenet.com +0.0.0.0 pub40.bravenet.com +0.0.0.0 pub42.bravenet.com +0.0.0.0 pub43.bravenet.com +0.0.0.0 pub45.bravenet.com +0.0.0.0 pub47.bravenet.com +0.0.0.0 pub49.bravenet.com +0.0.0.0 pub50.bravenet.com +0.0.0.0 xml.bravenet.com +# [BrightRoll][AS39995][162.208.20.0 - 162.208.23.255] + +0.0.0.0 geo-um.btrll.com +0.0.0.0 segs.btrll.com +0.0.0.0 vast.bp3855098.btrll.com +0.0.0.0 vast.bp3855099.btrll.com +0.0.0.0 vast.bp3854536.btrll.com +0.0.0.0 vast.bp3855984.btrll.com +0.0.0.0 vast.bp3855987.btrll.com +0.0.0.0 vast.bp3855989.btrll.com +0.0.0.0 vast.bp3855991.btrll.com +0.0.0.0 vast.bp3855992.btrll.com +0.0.0.0 yrtas.btrll.com +# [BrightRoll][AS39995][165.254.0.0 - 165.254.255.255] + +0.0.0.0 brxserv-21.btrll.com +0.0.0.0 geo-errserv.btrll.com +# [Broadband Enterprises][AS3561][64.15.238.64 - 64.15.238.127] + +0.0.0.0 addirector.vindicosuite.com +0.0.0.0 web.vindicosuite.com +# [Broadbandone][AS13645][64.135.0.0 - 64.135.127.255] + +0.0.0.0 ads.crawler.com +0.0.0.0 ads.websearch.com +# [Broadbandone][AS13645][75.119.128.0 - 75.119.191.255] + +0.0.0.0 tracking.godatafeed.com +# [BroadRiver][AS13703][208.52.128.0 - 208.52.191.255] + +0.0.0.0 www.cbeckads.com +0.0.0.0 atrd.netmng.com +0.0.0.0 brnys.netmng.com +0.0.0.0 com-kia.netmng.com +0.0.0.0 com-kodak.netmng.com +0.0.0.0 com-mitsubishi.netmng.com +0.0.0.0 com-morningstar.netmng.com +0.0.0.0 com-vw.netmng.com +0.0.0.0 dms.netmng.com +0.0.0.0 nbcustr.netmng.com +0.0.0.0 vw.netmng.com +# [BroadRiver][AS13703][63.135.160.0 - 63.135.175.255] + +0.0.0.0 a.netmng.com +0.0.0.0 display.digitalriver.com +# [Bso Network][AS31216][89.30.126.0 - 89.30.126.255] + +0.0.0.0 tracking.tomsguide.com +0.0.0.0 tracking.tomshardware.com +# [Bulgarian Teleco][AS8866][46.10.0.0 - 46.10.255.255] + +0.0.0.0 ads.bl-consulting.net +# [Bulgarian Teleco][AS8866][95.43.230.192 - 95.43.230.255] + +0.0.0.0 ads.gladen.bg +0.0.0.0 ads10.gladen.bg +0.0.0.0 ads.ibox.bg +0.0.0.0 ads.money.bg +# [Businessnet][AS13093][192.118.72.0 - 192.118.75.255] + +0.0.0.0 dclk.haaretz.com +# [Casalemedia][AS27381][192.40.32.0 - 192.40.39.255] + +0.0.0.0 a1589.casalemedia.com +0.0.0.0 a1653.casalemedia.com +0.0.0.0 a1664.casalemedia.com +0.0.0.0 a1681.casalemedia.com +# [Cash4Downloads][CidHelp Group][67.15.107.168] + +0.0.0.0 c4dl.com +0.0.0.0 www.c4dl.com +0.0.0.0 www.cash4downloads.com +# [C4L][AS25577][109.104.96.0 - 109.104.127.255] + +0.0.0.0 adserver.merciless.localstars.com +# [C4L][AS25577][82.197.70.0 - 82.197.70.127] + +0.0.0.0 statto.plus8.net +# [C4L / Globalcharge-net][AS25577][84.45.71.0 - 84.45.71.255] + +# [California Regional][AS10439][209.126.128.0 - 209.126.255.255] + +# [California Regional / i-Serve][AS10439][71.6.128.0 - 71.6.255.255] + +0.0.0.0 pluto.adcycle.com +0.0.0.0 www.adcycle.com +0.0.0.0 www.exchange-it.com +0.0.0.0 media.exchange-it.com +0.0.0.0 metacount.com +0.0.0.0 stats.metacount.com +0.0.0.0 www.metacount.com +0.0.0.0 popunder.com +0.0.0.0 media.popunder.com +0.0.0.0 www.popunder.com +0.0.0.0 www.rkdms.com +# [Calpop.com / Airlinereservations.com][206.125.40.0 - 206.125.47.255] + +0.0.0.0 cdn.engine.phn.doublepimp.com +0.0.0.0 rts.revfusion.net +# [Calpop.com / Airlinereservations.com][AS7796][208.70.72.0 - 208.70.79.255] + +0.0.0.0 qjex.net +# [Calpop.com / Atmlink][AS7796][216.240.128.0 - 216.240.159.255] + +0.0.0.0 ads.fuzzster.com +# [Calpop.com][AS7796][64.27.0.0 - 64.27.31.255] + +0.0.0.0 www.adsupply.com +0.0.0.0 ad1.doublepimp.com +0.0.0.0 ad2.doublepimp.com +0.0.0.0 dev.doublepimp.com +0.0.0.0 rts.doublepimp.com +0.0.0.0 gk.rts.sparkstudios.com +# [Camea Ltd][AS48180][91.209.48.0 - 91.209.48.255] + +# [Capital Communication][AS49829][89.114.97.0 - 89.114.97.255] + +# [Caravan][AS15756][212.24.47.224 - 212.24.47.255] + +# [Caravan / Lanways-net][AS15756][217.23.132.248 - 217.23.132.255] + +0.0.0.0 spytrack.tic.ru +# [Caravan / Mediadome][AS15756][62.213.100.0 - 62.213.100.255] + +# [Carmen Media][66.212.235.192 - 66.212.235.255] + +# [Caronet][AS13618][174.34.224.0 - 174.34.255.255] + +# [Caronet][AS13618][209.59.224.0 - 209.59.255.255] + +# [Caronet][AS13618][69.59.16.0 - 69.59.31.255] + +# [Caronet][AS13618][74.81.168.0 - 74.81.169.255] + +# [Caronet / Aebn][74.81.184.0 - 74.81.185.255] + +0.0.0.0 hostedbannerads.aebn.net +0.0.0.0 realtouchbannerwidget.aebn.net +0.0.0.0 ox.tossoffads.com +# [Caronet][74.81.187.56 - 74.81.187.63] + +0.0.0.0 affiliate.blucigs.com +0.0.0.0 bluhostedbanners.blucigs.com +# [Caronet][76.76.4.0 - 76.76.5.255] + +# [Caronet][76.76.8.0 - 76.76.9.255] + +0.0.0.0 ads.bnmedia.com +0.0.0.0 ads.iwangmedia.com +0.0.0.0 banners.rexmag.com +# [Caronet][91.213.157.0 - 91.213.157.255] + +# [Carpathia Hosting][AS29748][209.222.128.0 - 209.222.159.255] + +0.0.0.0 piwik.redtube.com +# [Carpathia Hosting][AS15226][66.197.0.0 - 66.197.127.255] + +0.0.0.0 webstats.oanda.com +# [Carpathia Hosting][AS29748][66.197.0.0 - 66.197.127.255] + +# [Casablanca][AS15685][109.123.202.0 - 109.123.202.255] + +0.0.0.0 static.ad.libimseti.cz +# [Casablanca / Inteso-it][AS15685][217.11.237.96 - 217.11.237.111] + +# [Casablanca / Hakenadam][AS15685][77.78.109.64 - 77.78.109.95] + +0.0.0.0 h.waudit.cz +0.0.0.0 hitx.waudit.cz +# [Casablanca][AS15685][82.208.46.0 - 82.208.46.255] + +0.0.0.0 intext.lookit.cz +0.0.0.0 ads.monogram.sk +# [Casale Media][Comspec Communications] + +0.0.0.0 a407.casalemedia.com +0.0.0.0 b.casalemedia.com +0.0.0.0 img.casalemedia.com +0.0.0.0 js.casalemedia.com +0.0.0.0 r.casalemedia.com +0.0.0.0 ssum-sec.casalemedia.com +0.0.0.0 www.casalemedia.com +0.0.0.0 www.oofun.com +0.0.0.0 00fun.com +0.0.0.0 www.00fun.com +# [Cassava Enterprises] + +0.0.0.0 chat.888.com +0.0.0.0 images.888.com +0.0.0.0 setupspcp1.888.com +0.0.0.0 casino-on-net.com +0.0.0.0 demogwa.casino-on-net.com +0.0.0.0 images.casino-on-net.com +0.0.0.0 java2.casino-on-net.com +0.0.0.0 www.casino-on-net.com +0.0.0.0 www.casinoonnet.com +0.0.0.0 download1.pacificpoker.com +0.0.0.0 images.pacificpoker.com +0.0.0.0 playersclub.reefclubcasino.com +0.0.0.0 www.pacificpoker.com +0.0.0.0 www.reefclubcasino.com +# [Castle Access][AS22489][69.43.160.0 - 69.43.160.255] + +0.0.0.0 park.above.com +0.0.0.0 www.needmorehits.com +0.0.0.0 www.res-x.com +0.0.0.0 openx.trellian.com +# [Cat Idc2][AS9931][122.155.160.0 - 122.155.191.255] + +0.0.0.0 banner.synergy-e.com +0.0.0.0 smart.synergy-e.com +0.0.0.0 stat.synergy-e.com +0.0.0.0 unitus.synergy-e.com +# [Cb3rob][AS34109][84.22.104.120 - 84.22.104.127] + +# [CBS Interactive / CNET Networks] + +0.0.0.0 stat.fengniao.com +0.0.0.0 ads.webshots.com +# [CBS Interactive / CNET Networks][AS6623][216.239.112.0 - 216.239.127.255] + +0.0.0.0 adimg.bnet.com +0.0.0.0 mads.bnet.com +0.0.0.0 ocp.bnet.com +0.0.0.0 adlog.cbsi.com +# 0.0.0.0 dw.cbsi.com #[affects CNET downloads] + +0.0.0.0 mads.cbs.com +0.0.0.0 track.cbs.com +0.0.0.0 mads.cbsnews.com +0.0.0.0 ocp.cbsnews.com +0.0.0.0 adimg.chow.com +0.0.0.0 mads.chow.com +0.0.0.0 remotead-internal.cnet.com +0.0.0.0 mads.cnettv.com +0.0.0.0 adimg.download.com +0.0.0.0 mads.download.com +0.0.0.0 adimg.gamefaqs.com +0.0.0.0 mads.gamefaqs.com +0.0.0.0 adimg.theinsider.com +0.0.0.0 mads.theinsider.com +0.0.0.0 adimg.mp3.com +0.0.0.0 bwp.mp3.com +0.0.0.0 mads.mp3.com +0.0.0.0 adimg.news.com +0.0.0.0 adimg.tv.com +0.0.0.0 mads.tv.com +0.0.0.0 adimg.zdnet.com +0.0.0.0 mads.zdnet.com +# [CBS Interactive / CNET Networks][AS6623][64.30.224.0 - 64.30.239.255] + +# [Ccbill][AS32161][64.38.212.0 - 64.38.213.255] + +0.0.0.0 bill.ccbill.com +0.0.0.0 images.ccbill.com +0.0.0.0 refer.ccbill.com +0.0.0.0 www.ccbill.com +# [Ccbill][AS32164][64.38.240.0 - 64.38.240.255] + +# [Cdnetworks][AS36408][14.0.32.0 - 14.0.63.255] + +0.0.0.0 widget.perfectmarket.com +# [Cdnetworks][AS36408][103.4.200.0 - 103.4.203.255] + +0.0.0.0 d-cache.microad.jp +# [Cdnetworks][AS36408][119.31.248.0 - 119.31.255.255] + +# [Cdnetworks][AS36408][151.249.93.0 - 151.249.93.255] + +# [Cdnetworks][AS36408][174.35.0.0 - 174.35.127.255] + +0.0.0.0 cdn.clicktale.net +0.0.0.0 d-cache.microadinc.com +0.0.0.0 media.netrefer.com +0.0.0.0 media2.netrefer.com +# [Cdnetworks][AS36408][61.110.192.0 - 61.110.255.255] + +0.0.0.0 js.octopuspop.com +# [Cdnetworks][AS36408][66.114.48.0 - 66.114.63.255] + +0.0.0.0 d.unanimis.co.uk +# [Centralux][AS43816][91.199.112.0 - 91.199.112.255] + +# [Cerfnet][AS4269][63.240.0.0 - 63.242.255.255] + +0.0.0.0 vs.forbes.com +0.0.0.0 datacapture.serving-sys.com +# [China Communication][AS37957][202.165.176.0 - 202.165.191.255] + +# [China Mobile][AS9808][221.176.0.0 - 221.183.255.255] + +# [China Telecom][AS4134][113.96.0.0 - 113.121.255.255] + +0.0.0.0 pop.dnparking.com +# [China Telecom / Chinanet][AS4812][124.74.0.0 - 124.75.255.255] + +0.0.0.0 a.ads99.cn +# [China Telecom / Chinanet][AS4812][180.152.0.0 - 180.159.255.255] + +0.0.0.0 dwtracking.sdo.com +# [China Telecom][AS4134][58.208.0.0 - 58.223.255.255] + +# [China Telecom / Qunying][AS4134][59.34.148.0 - 59.34.148.255] + +0.0.0.0 wwv.onetad.com +# [China Telecom / Chinanet][219.128.0.0 - 219.137.255.255] + +0.0.0.0 stats.dnparking.com +# [China Telecom][AS4134][220.163.0.0 - 220.165.255.255] + +# [China Telecom / Chinanet][222.64.0.0 - 222.79.255.255] + +0.0.0.0 stat1.vipstat.com +# [China Telecom / Chinanet][59.52.0.0 - 61.152.255.255] + +# [Choopa][AS20473][107.191.48.0/22] + +# [Choopa][AS20473][108.61.3.160 - 108.61.3.167] + +0.0.0.0 cdn.epicgameads.com +# [Choopa][AS20473][173.199.64.0 - 173.199.127.255] + +# [Choopa][AS11508][206.221.176.0/20] + +0.0.0.0 mfas.safesslredirect.com +# [Choopa][AS11508][208.167.224.0 - 208.167.255.255] + +0.0.0.0 www.aptrafficnetwork.com +0.0.0.0 ads.gameservers.com +0.0.0.0 as.pmates.com +# [Choopa][AS20473][209.222.0.0 - 209.222.31.255] + +0.0.0.0 ab.goodsblock.dt07.net +0.0.0.0 jsg.dt07.net +0.0.0.0 imgg.dt07.net +# [Choopa][216.155.128.0 - 216.155.159.255] + +0.0.0.0 www.epicgameads.com +0.0.0.0 www.freepornsubmits.com +0.0.0.0 adserver.weakgame.com +0.0.0.0 xfuckbook.com +0.0.0.0 delivery.yourfuckbook.com +# [Choopa][AS20473][45.63.0.0 - 45.63.127.255] + +# [Choopa][64.237.32.0 - 64.237.63.255] + +0.0.0.0 v2.adgoto.com +# [Choopa][AS20473][66.55.128.0 - 66.55.159.255] + +0.0.0.0 www.18access.com +0.0.0.0 adv.sexcounter.com +0.0.0.0 support.sextronix.com +0.0.0.0 www.sextronix.com +# [Choopa][66.55.139.0 - 66.55.139.255] + +0.0.0.0 ads.asredas.com +# [Choopa][68.232.160.0 - 68.232.191.255] + +# [Chunghwa Telecom][AS3462][210.242.128.0 - 210.242.255.255] + +0.0.0.0 secure-yt.imrworldwide.com +# [ClaraNET][AS8426][213.221.106.192 - 213.221.106.223] + +0.0.0.0 www.econda-monitor.de +# [ClaraNET][AS8426][62.80.0.0 - 62.80.63.255] + +0.0.0.0 piwik.n24.de +0.0.0.0 ads.planet49.com +# [ClaraNET][AS8426][78.40.37.128 - 78.40.37.135] + +# [ClaraNET][AS8426][95.0.0.0 - 95.255.255.255] + +0.0.0.0 ads.adnet-media.net +0.0.0.0 3amcouk.skimlinks.com +0.0.0.0 bikeforumsnet.skimlinks.com +0.0.0.0 complexcom.skimlinks.com +0.0.0.0 dirtytalk101com.skimlinks.com +0.0.0.0 freeforumsorg.skimlinks.com +0.0.0.0 handbagcom.skimlinks.com +0.0.0.0 hothardwarecom.skimlinks.com +0.0.0.0 mirrorcoukcelebs.skimlinks.com +0.0.0.0 projectw.skimlinks.com +0.0.0.0 reviewcentrecom.skimlinks.com +0.0.0.0 skimlinkscom.skimlinks.com +0.0.0.0 static.skimlinks.com +0.0.0.0 techradarcom.skimlinks.com +0.0.0.0 techspotcom.skimlinks.com +0.0.0.0 telegraphcouk.skimlinks.com +0.0.0.0 tidbitscom.skimlinks.com +0.0.0.0 toplessrobotcom.skimlinks.com +0.0.0.0 wirelessforumsorg.skimlinks.com +0.0.0.0 wordpresscom.skimlinks.com +0.0.0.0 wwwchipchickcom.skimlinks.com +0.0.0.0 wwwcultofmaccom.skimlinks.com +0.0.0.0 xmarkscom.skimlinks.com +# [ClearBlue / Connors Communications][AS5067][168.75.0.0 - 168.75.255.255] + +0.0.0.0 bh.contextweb.com +0.0.0.0 cdslog.contextweb.com +# [ClearBlue][AS5067][AS5061][204.168.0.0 - 204.168.255.255] + +# [Clickability][AS14393][208.80.56.0 - 208.80.59.255] + +0.0.0.0 btn.clickability.com +0.0.0.0 button.clickability.com +0.0.0.0 ri.clickability.com +0.0.0.0 sftp.clickability.com +# [Cloudflare][AS13335][104.16.0.0 - 104.31.255.255] + +0.0.0.0 click.adpremium.org +0.0.0.0 hts2.adpremium.org +0.0.0.0 hts4.adpremium.org +0.0.0.0 js.adpremium.org +0.0.0.0 ms.adpremium.org +0.0.0.0 run.adrizer.com +0.0.0.0 analytics.amilliamilli.com +0.0.0.0 antiscan.online +0.0.0.0 www.appfindr.org +0.0.0.0 tracker.bang.com +0.0.0.0 srv.bebi.com +0.0.0.0 banners.bghelp.co.uk +0.0.0.0 cdnmedia.xyz +0.0.0.0 wp1.cor-natty.com +0.0.0.0 count.im +0.0.0.0 datattro.xyz +0.0.0.0 cdn.districtm.ca +0.0.0.0 cdn.exoticads.com +0.0.0.0 content.exoticads.com +0.0.0.0 ox.furaffinity.net +0.0.0.0 rv.furaffinity.net +0.0.0.0 www.game-clicks.com +0.0.0.0 serve.getpopunder.com +0.0.0.0 grabtrk.com +0.0.0.0 www.hostadserver.com +0.0.0.0 tag.imonomy.com +0.0.0.0 us-tracker.inside-graph.com +0.0.0.0 embed.insticator.com +0.0.0.0 ju2g8tzj.com +0.0.0.0 ads.kickasstorrents.video +0.0.0.0 ads.mmediatags.com +0.0.0.0 ssl.mousestats.com +0.0.0.0 multioptik.com +0.0.0.0 myfukbuddy.com +0.0.0.0 oneopenclose.click +0.0.0.0 www.os-downloads.com +0.0.0.0 mh.pip-pip-pop.com +0.0.0.0 cdn.www1.pip-pip-pop.com +0.0.0.0 www1.pip-pip-pop.com +0.0.0.0 code.poptm.com +0.0.0.0 ads.proboards.com +0.0.0.0 promable.com +0.0.0.0 proudclick.com +0.0.0.0 cdn.pubexchange.com +0.0.0.0 qikdownloads.com +0.0.0.0 ads.reembed.com +0.0.0.0 a10.reflexcash.com +0.0.0.0 ads.reflexcash.com +0.0.0.0 retracker.com +0.0.0.0 www.searchapps.me +0.0.0.0 counter.snackly.co +0.0.0.0 cdn.spoutable.com +0.0.0.0 engine.spoutable.com +0.0.0.0 code.theads.me +0.0.0.0 cdn.tynt.com +0.0.0.0 cnt.tyxo.com +0.0.0.0 s.tyxo.com +0.0.0.0 xclusive.ly +0.0.0.0 pixel.yola.com +0.0.0.0 s.zkcdn.net +0.0.0.0 in4.zog.link +0.0.0.0 cdn1.zopiny.com +# [Cloudflare][AS13335][108.162.192.0 - 108.162.255.255] + +0.0.0.0 adfoc.us +0.0.0.0 api.adquality.ch +0.0.0.0 ads.akademika.bg +0.0.0.0 img.avatraffic.com +0.0.0.0 ads.casumoaffiliates.com +0.0.0.0 cmtrading.ck-cdn.com +0.0.0.0 mh.ogercron.com +0.0.0.0 ozertesa.com +0.0.0.0 pinion.gg +0.0.0.0 bin.pinion.gg +0.0.0.0 cdn.pinion.gg +0.0.0.0 www.pstats.com +0.0.0.0 www.xyfex.com +# [Cloudflare][AS13335][141.101.112.0 - 141.101.119.255] + +0.0.0.0 7vws1j1j.com +0.0.0.0 adsbookie.com +0.0.0.0 t.cqq5id8n.com +# 0.0.0.0 js.maxmind.com #[affects marchon.com / directvnow.com] + +0.0.0.0 ads.mylikes.com +0.0.0.0 www.mystat.pl +0.0.0.0 odzb5nkp.com +0.0.0.0 serials.ws +0.0.0.0 www.serials.ws +0.0.0.0 trafficg.com +0.0.0.0 www.trafficg.com +0.0.0.0 trw12.com +0.0.0.0 ad.zompmedia.com +0.0.0.0 pop.zompmedia.com +0.0.0.0 clicks.zwaar.org +# [Cloudflare][AS13335][162.158.0.0 - 162.159.255.255] + +0.0.0.0 25643e662a2.com +0.0.0.0 www.adworld.com.tr +0.0.0.0 ads.ayads.co +0.0.0.0 click.bounceads.net +0.0.0.0 errorception.com +0.0.0.0 beacon.errorception.com +0.0.0.0 www.fulltraffic.net +0.0.0.0 static.kameleoon.com +0.0.0.0 lognormal.net +0.0.0.0 cdn.luckyorange.com +0.0.0.0 w1.luckyorange.com +0.0.0.0 www2.mousestats.com +# [Cloudflare][AS13335][173.245.48.0 - 173.245.63.255] + +0.0.0.0 bokotraffic.com +0.0.0.0 bororango.com +# [Cloudflare][AS13335][190.93.240/20] + +0.0.0.0 www.adhexa.com +0.0.0.0 geoservice.curse.com +0.0.0.0 ems2bmen.com +0.0.0.0 pixxur.com +# [Cloudflare][AS13335][198.41.128.0 - 198.41.255.255] + +0.0.0.0 analytics.codigo.se +0.0.0.0 cdn.directtrk.com +0.0.0.0 i.isohunt.to +0.0.0.0 popmyads.com +0.0.0.0 cdn.popmyads.com +0.0.0.0 assets.popmarker.com +# [Cnzz] + +0.0.0.0 c.cnzz.com +0.0.0.0 hos1.cnzz.com +0.0.0.0 hzs1.cnzz.com +0.0.0.0 hzs2.cnzz.com +0.0.0.0 hzs4.cnzz.com +0.0.0.0 hzs8.cnzz.com +0.0.0.0 hzs10.cnzz.com +0.0.0.0 hzs13.cnzz.com +0.0.0.0 hzs15.cnzz.com +0.0.0.0 hzs22.cnzz.com +0.0.0.0 icon.cnzz.com +0.0.0.0 pcookie.cnzz.com +0.0.0.0 pw.cnzz.com +0.0.0.0 s1.cnzz.com +0.0.0.0 s3.cnzz.com +0.0.0.0 s4.cnzz.com +0.0.0.0 s5.cnzz.com +0.0.0.0 s7.cnzz.com +0.0.0.0 s8.cnzz.com +0.0.0.0 s9.cnzz.com +0.0.0.0 s10.cnzz.com +0.0.0.0 s11.cnzz.com +0.0.0.0 s12.cnzz.com +0.0.0.0 s13.cnzz.com +0.0.0.0 s14.cnzz.com +0.0.0.0 s15.cnzz.com +0.0.0.0 s16.cnzz.com +0.0.0.0 s18.cnzz.com +0.0.0.0 s19.cnzz.com +0.0.0.0 s20.cnzz.com +0.0.0.0 s22.cnzz.com +0.0.0.0 s23.cnzz.com +0.0.0.0 s24.cnzz.com +0.0.0.0 s26.cnzz.com +0.0.0.0 s28.cnzz.com +0.0.0.0 s29.cnzz.com +0.0.0.0 s30.cnzz.com +0.0.0.0 s33.cnzz.com +0.0.0.0 s34.cnzz.com +0.0.0.0 s37.cnzz.com +0.0.0.0 s38.cnzz.com +0.0.0.0 s47.cnzz.com +0.0.0.0 s48.cnzz.com +0.0.0.0 s50.cnzz.com +0.0.0.0 s51.cnzz.com +0.0.0.0 s54.cnzz.com +0.0.0.0 s55.cnzz.com +0.0.0.0 s61.cnzz.com +0.0.0.0 s62.cnzz.com +0.0.0.0 s63.cnzz.com +0.0.0.0 s65.cnzz.com +0.0.0.0 s66.cnzz.com +0.0.0.0 s68.cnzz.com +0.0.0.0 s69.cnzz.com +0.0.0.0 s70.cnzz.com +0.0.0.0 s76.cnzz.com +0.0.0.0 s80.cnzz.com +0.0.0.0 s83.cnzz.com +0.0.0.0 s84.cnzz.com +0.0.0.0 s85.cnzz.com +0.0.0.0 s88.cnzz.com +0.0.0.0 s89.cnzz.com +0.0.0.0 s92.cnzz.com +0.0.0.0 s94.cnzz.com +0.0.0.0 s95.cnzz.com +0.0.0.0 s99.cnzz.com +0.0.0.0 s101.cnzz.com +0.0.0.0 s102.cnzz.com +0.0.0.0 s103.cnzz.com +0.0.0.0 s105.cnzz.com +0.0.0.0 s106.cnzz.com +0.0.0.0 s108.cnzz.com +0.0.0.0 s109.cnzz.com +0.0.0.0 s110.cnzz.com +0.0.0.0 s111.cnzz.com +0.0.0.0 s112.cnzz.com +0.0.0.0 s113.cnzz.com +0.0.0.0 s115.cnzz.com +0.0.0.0 s116.cnzz.com +0.0.0.0 s118.cnzz.com +0.0.0.0 s120.cnzz.com +0.0.0.0 s130.cnzz.com +0.0.0.0 s131.cnzz.com +0.0.0.0 s132.cnzz.com +0.0.0.0 s137.cnzz.com +0.0.0.0 s142.cnzz.com +0.0.0.0 v3.cnzz.com +0.0.0.0 v4.cnzz.com +0.0.0.0 v5.cnzz.com +0.0.0.0 v7.cnzz.com +0.0.0.0 v9.cnzz.com +0.0.0.0 w.cnzz.com +0.0.0.0 zs11.cnzz.com +0.0.0.0 zs16.cnzz.com +# [Cogent / Psinet][AS174][149.13.0.0 - 149.13.255.255] + +# [Cogent][AS174][208.72.36.0 - 208.72.39.255] + +# [Cogent / Psinet][AS174][38.0.0.0 - 38.255.255.255] + +0.0.0.0 3xtraffic.com +0.0.0.0 33video.33universal.com +0.0.0.0 acuityplatform.com +0.0.0.0 click-west.acuityplatform.com +0.0.0.0 serve-east.acuityplatform.com +0.0.0.0 c1.adform.net +0.0.0.0 a2.adform.net +0.0.0.0 v.bsvideos.com +0.0.0.0 hfm.checkm8.com +0.0.0.0 qlipso.checkm8.com +0.0.0.0 sagedigital.checkm8.com +0.0.0.0 creative.clicksor.com +0.0.0.0 stat.designntrend.com +0.0.0.0 ppc-parked.domainsite.com +0.0.0.0 vcontent.e-messenger.net +0.0.0.0 partner.finditquick.com +0.0.0.0 fwdbreuse.xyz +0.0.0.0 ad.internetradioinc.com +0.0.0.0 click.linkstattrack.com +0.0.0.0 marirtr1.com +0.0.0.0 www.ngads.com +0.0.0.0 adimg.ngfiles.com +0.0.0.0 ads.onemodelplace.com +0.0.0.0 www.pythonpays.com +0.0.0.0 tor.redlightcenter.com +0.0.0.0 ad.trident.net +# [Cogent][AS174][50.7.0.0 - 50.7.255.255] + +0.0.0.0 cache.betweendigital.com +0.0.0.0 dispenser-rtb.sape.ru +# [Cogent / Psinet][AS174][66.28.0.0 - 66.28.255.255] + +0.0.0.0 static.hatid.com +0.0.0.0 piwik.ientry.com +0.0.0.0 images.indiads.com +0.0.0.0 servedby.indiads.com +# [Colo4dallas][AS30496][206.123.64.0 - 206.123.127.255] + +# [Colo4dallas][AS30496][65.99.192.0 - 65.99.255.255] + +0.0.0.0 e.nspmotion.com +# [Colo4dallas][AS30496][67.222.133.86 - 67.222.133.93] + +0.0.0.0 imgc.psychcentral.com +# [Coloc8][AS33536][64.128.87.0 - 64.128.87.255] + +# [Colocall][AS15497][31.28.161.16 - 31.28.161.31] + +0.0.0.0 ua.adriver.ru +0.0.0.0 ua-content.adriver.ru +# [Colocall][AS15497][62.149.28.0 - 62.149.28.255] + +0.0.0.0 e2.molbuk.ua +# [Colocation Clients][85.14.38.16 - 85.14.38.255] + +0.0.0.0 ads.premiership.bg +# [Colocation Clients][AS8262][85.14.6.0 - 85.14.6.255] + +0.0.0.0 bms.xenium.bg +# [Colocation Hosting][AS2588][79.135.152.0 - 79.135.152.255] + +# [Colocation Subnet][AS30968][92.243.64.0 - 92.243.67.0] + +0.0.0.0 adfun.ru +0.0.0.0 ad1.adfun.ru +# [Co-location Customers][AS44997][91.203.93.1 - 91.203.93.128] + +# [Colo-cation][AS11110][66.244.144.0 - 66.244.159.255] + +0.0.0.0 redir.juicyads.com +0.0.0.0 xapi.juicyads.com +0.0.0.0 www.juicyads.com +# [Colosseum Online][AS19842][209.47.169.0 - 209.47.169.255] + +0.0.0.0 textad.eroticmatch.com +0.0.0.0 pod.manplay.com +0.0.0.0 textad.manplay.com +0.0.0.0 openx.sexsearchcom.com +0.0.0.0 wt.sexsearch.com +0.0.0.0 textad.sexsearchcom.com +0.0.0.0 wt.sexsearchcom.com +0.0.0.0 textad.xpress.com +0.0.0.0 textad.xxxcupid.com +0.0.0.0 textad.xxxmatch.com +# [Colosseum Online][209.47.244.144 - 209.47.244.151] + +# [Colosseum Online][216.105.94.64 - 216.105.94.95] + +0.0.0.0 www.clickedyclick.com +0.0.0.0 pod.infinitypersonals.com +0.0.0.0 textad.socialsex.com +# [Colt][AS8220][195.234.154.0 - 195.234.154.255] + +# [Colt][AS8220][213.215.228.0 - 213.215.228.255] + +# [Coltengine-net][AS8220][213.215.208.48 - 213.215.208.63] + +0.0.0.0 adv.domino.it +# [Colt / Eurologon-net][AS8220][213.215.228.0 - 213.215.228.255] + +0.0.0.0 count.vivistats.com +# [Colt-hqs][AS8220][217.110.73.160 - 217.110.73.167] + +0.0.0.0 www.ranking-links.de +0.0.0.0 api.zanox.com +# [Columbus Network Access][AS10297][173.45.111.112 - 173.45.111.127] + +0.0.0.0 ads.all-free-download.com +0.0.0.0 us1.siteimprove.com +0.0.0.0 us2.siteimprove.com +# [Columbus Network Access][AS10297][207.182.128.0 - 207.182.159.255] + +# [Columbus Network Access][AS10297][209.190.0.0 - 209.190.127.255] + +0.0.0.0 www.top100lists.ca +# [Comscore / Relevant Knowledge] + +0.0.0.0 siterecruit.comscore.com +0.0.0.0 oss-content.securestudies.com +0.0.0.0 sb.scorecardresearch.com +0.0.0.0 www2.survey-poll.com +# [Comscore Network][AS3561][165.193.78.128 - 165.193.78.255] + +0.0.0.0 www.premieropinion.com +0.0.0.0 a.scorecardresearch.com +0.0.0.0 c.scorecardresearch.com +0.0.0.0 post.securestudies.com +0.0.0.0 www.voicefive.com +# [Comscore Network][AS3561][205.218.0.0 - 205.219.255.255] + +0.0.0.0 udm.ia8.scorecardresearch.com +0.0.0.0 udm.ia9.scorecardresearch.com +# [Comscore Network][AS3561][66.119.33.128 - 66.119.33.191] + +0.0.0.0 beacon.securestudies.com +0.0.0.0 ar.voicefive.com +# [Comscore Network][66.119.34.32 - 66.119.34.63] + +0.0.0.0 rules.securestudies.com +# [Comscore Network][66.119.41.0 - 66.119.41.127] + +0.0.0.0 www.permissionresearch.com +0.0.0.0 relevantknowledge.com +0.0.0.0 www.relevantknowledge.com +0.0.0.0 web.survey-poll.com +0.0.0.0 www.surveysite.com +0.0.0.0 survey2.voicefive.com +# [Coreexpress][AS7796][64.69.32.0 - 64.69.47.255] + +# [Coremetrics][AS46589][74.121.132.0 - 74.121.135.255] + +0.0.0.0 data.abebooks.com +0.0.0.0 www25.bathandbodyworks.com +0.0.0.0 testdata.coremetrics.com +# [Core Technology][AS23421][64.29.176.0 - 64.29.191.255] + +0.0.0.0 www.linkshare.com +# [Cotendo][AS46281][184.169.64.0 - 184.169.127.255] + +0.0.0.0 rainbow-uk.mythings.com +# [Cotendo][AS46281][208.93.136.0 - 208.93.143.255] + +0.0.0.0 www.ad4mat.ch +0.0.0.0 t.p.mybuys.com +0.0.0.0 w.p.mybuys.com +# [Cotendo][AS46281][98.142.96.0 - 98.142.111.255] + +0.0.0.0 cdn.dsultra.com +# [Coulomb][AS16238][217.73.64.0 - 217.73.64.255] + +# [Coulomb][AS16238][217.73.66.0 - 217.73.67.255] + +# [Criteo][AS44788][178.250.0.0 - 178.250.3.255] + +# [Criteo][AS55569][182.161.73.0 - 182.161.73.255] + +0.0.0.0 sslwidget.criteo.com +# [Criteo][AS19750][74.119.116.0 - 74.119.119.255] + +0.0.0.0 dis.criteo.com +0.0.0.0 dis.eu.criteo.com +0.0.0.0 dis.ny.us.criteo.com +0.0.0.0 dis.sv.us.criteo.com +0.0.0.0 dis.us.criteo.com +0.0.0.0 rtax.criteo.com +0.0.0.0 sapatoru.widget.criteo.com +0.0.0.0 widget.criteo.com +0.0.0.0 www.criteo.com +# [Cable & Wireless][AS1273][63.130.0.0 - 63.130.255.255] + +0.0.0.0 search.ipromote.com +# [Cybercon / Ratchaga][AS7393][216.15.223.224 - 216.15.223.255] + +# [Cybercon][AS7393][64.37.82.96 - 64.37.82.127] + +0.0.0.0 api.wundercounter.com +0.0.0.0 www.wundercounter.com +# [Cyber Technology][82.98.193.0 - 82.98.193.255] + +0.0.0.0 www.traficmax.fr +# [Cyberwebhosting][AS8893][212.72.183.0 - 212.72.183.255] + +0.0.0.0 www.deltahost.de +0.0.0.0 www.gratis-toplist.de +# [Cybernet Quest] + +0.0.0.0 img.cqcounter.com +0.0.0.0 nl.cqcounter.com +0.0.0.0 no.2.cqcounter.com +0.0.0.0 se.cqcounter.com +0.0.0.0 xxx.cqcounter.com +0.0.0.0 ar.2.cqcounter.com +0.0.0.0 au.2.cqcounter.com +0.0.0.0 bg.2.cqcounter.com +0.0.0.0 ca.2.cqcounter.com +0.0.0.0 de.2.cqcounter.com +0.0.0.0 fr.2.cqcounter.com +0.0.0.0 nz.2.cqcounter.com +0.0.0.0 si.2.cqcounter.com +0.0.0.0 th.2.cqcounter.com +0.0.0.0 tr.2.cqcounter.com +0.0.0.0 uk.2.cqcounter.com +0.0.0.0 1au.cqcounter.com +0.0.0.0 1bm.cqcounter.com +0.0.0.0 1de.cqcounter.com +0.0.0.0 1es.cqcounter.com +0.0.0.0 1fr.cqcounter.com +0.0.0.0 1in.cqcounter.com +0.0.0.0 1it.cqcounter.com +0.0.0.0 1jo.cqcounter.com +0.0.0.0 1nl.cqcounter.com +0.0.0.0 1pt.cqcounter.com +0.0.0.0 1se.cqcounter.com +0.0.0.0 1si.cqcounter.com +0.0.0.0 1th.cqcounter.com +0.0.0.0 1tr.cqcounter.com +0.0.0.0 1ua.cqcounter.com +0.0.0.0 www2.cqcounter.com +0.0.0.0 www.cqcounter.com +0.0.0.0 ns2.w3open.com +# [Dacom / Korea Network][AS3786][117.52.0.0 - 117.52.255.255] + +0.0.0.0 ad.koreadaily.com +# [Dacom / Korea Network][AS3786][211.234.96.0 - 211.234.127.255] + +0.0.0.0 gtb5.acecounter.com +0.0.0.0 gtb19.acecounter.com +0.0.0.0 gtp1.acecounter.com +0.0.0.0 gtp16.acecounter.com +0.0.0.0 wgc1.acecounter.com +# [Dacom / Korea Network][AS3786][222.231.0.0 - 222.231.63.255] + +0.0.0.0 ads.fooyoh.com +# [Dako Systems][AS40824][193.169.40.0 - 193.169.41.255] + +# [Data Centers / AdOn Network][AS12025][69.71.57.0 - 69.71.57.255] + +0.0.0.0 tags.adcde.com +0.0.0.0 rmedia.adonnetwork.com +0.0.0.0 tags.bannercde.com +# [Data Centers / Dark Castle][AS12025][72.44.193.0 - 72.44.193.255] + +0.0.0.0 banners.camdough.com +# [Datacenter D.o.o][AS41427][193.164.137.0 - 193.164.141.255] + +0.0.0.0 aurelius.httpool.com +0.0.0.0 trajan.httpool.com +# [Datagroup][AS21219][80.91.176.128 - 80.91.176.255] + +# [Datapipe][AS24043][122.200.132.0 - 122.200.135.255] + +0.0.0.0 ads.atomex.net +0.0.0.0 sync.atomex.net +0.0.0.0 trk.atomex.net +# [DataPipe][AS22205][206.188.0.0 - 206.188.31.255] + +# [DataPipe][AS14492][63.131.128.0 - 63.131.159.255] + +0.0.0.0 www.xg4ken.com +# [DataPipe][AS14492][64.106.128.0 - 64.106.255.255] + +0.0.0.0 www.admarketplace.net +0.0.0.0 beacon.searchlinks.com +# [DataPipe][AS14492]64.27.64.0 - 64.27.127.255] + +0.0.0.0 pixel.adblade.com +0.0.0.0 pixel.industrybrains.com +0.0.0.0 web.industrybrains.com +# [DataPipe / STANDARD INTERNET][65.17.198.120 - 65.17.198.129] + +0.0.0.0 adserv.net +# [DataPipe][66.70.0.0 - 66.70.127.255] + +0.0.0.0 www.adwarespy.com +0.0.0.0 affiliates.bhphotovideo.com +0.0.0.0 www.buildtraffic.com +0.0.0.0 www.buildtrafficx.com +0.0.0.0 www.eliteconcepts.com +0.0.0.0 www.loggerx.com +0.0.0.0 tracking.validclick.com +# [DataPipe][AS22576][69.170.128.0 - 69.170.143.255] + +# [Data-xata][AS8870][91.197.128.0 - 91.197.131.255] + +# [Dedicated Server Range][AS5413][212.241.250.0 - 212.241.251.255] + +0.0.0.0 www.almondnetworks.com +# [Defender Technologies][AS14383][74.200.64.0 - 74.200.95.255] + +0.0.0.0 ads.cdrinfo.com +# [Delta][AS3.608][195.189.80.0 - 195.189.83.255] + +# [DemandMedia][AS21740][8.5.0.0 - 8.5.3.255] + +# [DemandMedia / Enom][AS21740][64.74.223.0 - 64.74.223.255] + +0.0.0.0 bluehparking.com +# [DemandMedia / Enom][AS21740][69.64.144.0 - 69.64.159.255] + +0.0.0.0 extended.dmtracker.com +0.0.0.0 video.dmtracker.com +0.0.0.0 beacon.ehow.com +# [DemandMedia / Enom Incorporated][98.124.192.0 - 98.124.255.255] + +0.0.0.0 beacon.cracked.com +0.0.0.0 external.dmtracker.com +0.0.0.0 parking.dmtracker.com +0.0.0.0 search.dmtracker.com +0.0.0.0 rte-img.nuseek.com +# [Denit / Cust-denit-id][AS25542][81.93.57.128 - 81.93.57.255] + +0.0.0.0 rotator.tradetracker.net +0.0.0.0 ti.tradetracker.net +0.0.0.0 rotator.tradetracker.nl +0.0.0.0 ti.tradetracker.nl +# [Desync / Affinity][AS30217][66.230.192.0 - 66.230.239.255] + +0.0.0.0 banneradvertising.adclickmedia.com +# [Desync / Neucom][AS30217][66.230.192.0 - 66.230.239.255] + +0.0.0.0 www.linkreferral.com +0.0.0.0 mmm.vindy.com +# [Detik][AS24211][203.190.240.0 - 203.190.247.255] + +0.0.0.0 adsbox.detik.com +0.0.0.0 analytic.detik.com +0.0.0.0 imagescroll.detik.com +0.0.0.0 beta.newopenx.detik.com +0.0.0.0 o.detik.com +0.0.0.0 detik.serving-sys.com +# [Deutsche Telekom][AS3320][80.156.84.0 - 80.156.87.255] + +0.0.0.0 geolocation.t-online.de +# [Digital Network/ Cjsc][AS12695][213.248.36.0 - 213.248.36.255] + +0.0.0.0 hit32.hotlog.ru +0.0.0.0 hit33.hotlog.ru +0.0.0.0 hit35.hotlog.ru +0.0.0.0 hit38.hotlog.ru +# [Digital Network/ Hosting and Colocation][AS12695][89.208.144.0 - 89.208.159.255] + +0.0.0.0 lycosu.com +0.0.0.0 go.oneund.ru +# [Digital Network/ Cjsc][AS12695][95.163.0.0 - 95.163.255.255] + +0.0.0.0 hit39.hotlog.ru +0.0.0.0 hit41.hotlog.ru +0.0.0.0 js.hotlog.ru +# [Digital River][AS32081][174.46.0.0 - 174.47.255.255] + +# [Digital River][AS8182][207.250.205.0 - 207.250.205.255] + +0.0.0.0 partners.mysavings.com +# [Digital River][Direct Response Technologies][AS8182][207.67.0.0 - 207.67.0.255] + +0.0.0.0 network.advplace.com +0.0.0.0 cashcownetworks.com +0.0.0.0 media.cashcownetworks.com +0.0.0.0 adultadworld.directtrack.com +0.0.0.0 affiliace.directtrack.com +0.0.0.0 ampedmedia.directtrack.com +0.0.0.0 asseenonpc.directtrack.com +0.0.0.0 battleon.directtrack.com +0.0.0.0 bingorevenue.directtrack.com +0.0.0.0 cpacampaigns.directtrack.com +0.0.0.0 dcsmarketing.directtrack.com +0.0.0.0 doubleyourdating.directtrack.com +0.0.0.0 imagecache.directtrack.com +0.0.0.0 ino.directtrack.com +0.0.0.0 latin3.directtrack.com +0.0.0.0 maxxaffiliate.directtrack.com +0.0.0.0 mysavings.directtrack.com +0.0.0.0 niteflirt.directtrack.com +0.0.0.0 nitropayouts.directtrack.com +0.0.0.0 offersquest.directtrack.com +0.0.0.0 rapidresponse.directtrack.com +0.0.0.0 revenuegateway.directtrack.com +0.0.0.0 secure.directtrack.com +0.0.0.0 trafficneeds.directtrack.com +0.0.0.0 varsityads.directtrack.com +0.0.0.0 www.directtrack.com +0.0.0.0 tracking.fathomseo.com +0.0.0.0 keywordmax.com +0.0.0.0 www.keywordmax.com +0.0.0.0 login.tracking101.com +# [DIR.BG AD][AS8860][194.145.63.0 - 194.145.63.255] + +0.0.0.0 ads.dir.bg +0.0.0.0 banners.dir.bg +0.0.0.0 r.dir.bg +0.0.0.0 r5.dir.bg +# [Direct Information Group][Parking Service] + +0.0.0.0 images.bmnq.com +0.0.0.0 images.cnomy.com +0.0.0.0 images.skenzo.com +0.0.0.0 img.skenzo.com +0.0.0.0 pics.skenzo.com +# [Disney Company][ABC News][INFOSEEK] + +# 127.0.0.1 hb.disney.go.com #[disabled affects links] + +0.0.0.0 seavideo-ak.espn.go.com +0.0.0.0 adsatt.disney.starwave.com +0.0.0.0 adsatt.familyfun.starwave.com +0.0.0.0 adsatt.movies.starwave.com +0.0.0.0 espn-ak.starwave.com +0.0.0.0 odc.starwave.com +# [Disney Online][AS8137][198.105.192.0 - 198.105.199.255] + +0.0.0.0 dcapps.disney.go.com +# [Disney Worldwide][199.181.129.0 - 199.181.135.255] + +0.0.0.0 ngads.go.com +# [Disney Online][68.71.208.0 - 68.71.223.255] + +0.0.0.0 ad.go.com +0.0.0.0 ctologger01.analytics.go.com +# [Dotster Inc][AS14744][66.11.230.0 - 66.11.230.255] + +# [Doubleverify][AS36062][204.154.110.0 - 204.154.111.255] + +0.0.0.0 rtb3.doubleverify.com +# [DreamHost][208.113.128.0 - 208.113.255.255] + +# [DreamHost][AS26347][64.111.96.0 - 64.111.127.255] + +# [DreamHost][66.33.192.0 - 66.33.223.255] + +# [DreamHost][AS26347][69.163.128.0 - 69.163.191.255] + +0.0.0.0 ads.dkelseymedia.com +0.0.0.0 www.superbanner.org +0.0.0.0 traffk.info +# [Dwd Technologies][AS46173][208.92.160.0 - 208.92.167.255] + +# [e Machines / Quinstreet][AS25878][70.42.22.0 - 70.42.23.255] + +0.0.0.0 didtal.com +0.0.0.0 hartim.com +0.0.0.0 www.qsstats.com +# [Eastgate / Tm Net Sdn Bhd][AS17971][210.48.144.0 - 210.48.159.255] + +0.0.0.0 synad.nuffnang.com.my +0.0.0.0 synad2.nuffnang.com.my +# [Eastnet-ua-net / Limited Corp][AS40965][195.95.151.0 - 195.95.151.255] + +# [Easyspeedy][82.103.128.0 - 82.103.143.255] + +0.0.0.0 www.livewebstats.dk +# [E-Commerce][AS26505][200.124.128/20] + +# [EdgeCast][AS15133][117.18.232.0 - 117.18.239.255] + +# [EdgeCast Networks][AS15133][192.229.128.0 - 192.229.255.255] + +0.0.0.0 vlibs.advertising.com +0.0.0.0 cdata.carambo.la +0.0.0.0 static-bp.kameleoon.com +0.0.0.0 secure-ads.pictela.net +# [EdgeCast][AS15133][68.232.32.0 - 68.232.47.255] + +0.0.0.0 cdn.engine.4dsply.com +0.0.0.0 pxl.ibpxl.com +0.0.0.0 cdn.tagcommander.com +0.0.0.0 cdn.tradelab.fr +# [EdgeCast][AS15133][72.21.80.0 - 72.21.95.255] + +0.0.0.0 adv.0tub.com +0.0.0.0 cdn1.adadvisor.net +0.0.0.0 cdn.adgear.com +0.0.0.0 www.ad4mat.at +0.0.0.0 www.ad4mat.de +0.0.0.0 cdn.engine.adsupply.com +0.0.0.0 media.adxpansion.com +0.0.0.0 edge.ayboll.com +0.0.0.0 hat.bmanpn.com +0.0.0.0 static.clicktripz.com +0.0.0.0 stats.complex.com +0.0.0.0 cdn.complexmedianetwork.com +0.0.0.0 cdn.crowdtwist.com +0.0.0.0 media.go2speed.org +0.0.0.0 e.invodo.com +0.0.0.0 sec.levexis.com +0.0.0.0 mproxy.banner.linksynergy.com +0.0.0.0 media.livepromotools.com +0.0.0.0 graphics.medleyads.com +0.0.0.0 ads.millionairemate.com +0.0.0.0 cdn.orbengine.com +0.0.0.0 cdn.pardot.com +0.0.0.0 content.pop6.com +0.0.0.0 media.pussycash.com +0.0.0.0 tdn.r42tag.com +0.0.0.0 include.reinvigorate.net +0.0.0.0 cdna.runadtag.com +0.0.0.0 img.ads.sanomamobileads.nl +0.0.0.0 cdn1.skinected.com +0.0.0.0 rome.specificclick.net +0.0.0.0 cdn1.steelhousemedia.com +0.0.0.0 cdn4s.steelhousemedia.com +0.0.0.0 www.synovite-scripts.com +0.0.0.0 loader.topadvert.ru +0.0.0.0 cts.w55c.net +0.0.0.0 images.webads.it +0.0.0.0 images.webads.nl +0.0.0.0 images.webads.co.uk +0.0.0.0 static.woopra.com +# [EdgeCast][AS15133][93.184.216.0 - 93.184.223.255] + +0.0.0.0 g.3gl.net +0.0.0.0 adcdn.33universal.com +0.0.0.0 static.cdn.adblade.com +0.0.0.0 adunit.cdn.auditude.com +0.0.0.0 ndn.cdn.auditude.com +0.0.0.0 m.burt.io +0.0.0.0 cv.bsvideos.com +# 0.0.0.0 livepassdl.conviva.com #[affects videos] + +0.0.0.0 banners.crakcash.com +0.0.0.0 pixel.indieclick.com +0.0.0.0 staticd.cdn.industrybrains.com +0.0.0.0 electosake.com +0.0.0.0 c.supert.ag +# 0.0.0.0 tags.tiqcdn.com #[affects Intel.com/Shaw] + +0.0.0.0 tororango.com +0.0.0.0 cdn.engine.trklnks.com +0.0.0.0 ads.w55c.net +0.0.0.0 img1.zergnet.com +0.0.0.0 img2.zergnet.com +0.0.0.0 img3.zergnet.com +0.0.0.0 img4.zergnet.com +# [Elite Internet][AS36643][208.65.200.0 - 208.65.203.255] + +0.0.0.0 dynamic1.anandtech.com +0.0.0.0 dynamic2.anandtech.com +0.0.0.0 dynamic1.dailytech.com +# [Eloqua / Oracle][AS54253][209.167.0.0 - 209.167.255.255] + +0.0.0.0 now.eloqua.com +0.0.0.0 s323.t.eloqua.com +0.0.0.0 s1184.t.eloqua.com +0.0.0.0 s1471.t.eloqua.com +0.0.0.0 s1481.t.eloqua.com +0.0.0.0 s2150.t.eloqua.com +0.0.0.0 s3015.t.eloqua.com +# [Endurance / Spry Com][AS29873][64.79.192.0 - 64.79.223.255] + +# [Endurance International][65.254.224.0 - 65.254.255.255] + +0.0.0.0 www.trafficflame.com +# [Endurance International][AS29873][66.96.128.0 - 66.96.191.255] + +0.0.0.0 hitpro.us +0.0.0.0 www.hitpro.us +0.0.0.0 iframes.us +0.0.0.0 www.iframes.us +0.0.0.0 www.targeted-banners.com +# [ePlanet / Nettaddiction][AS28716][80.94.114.128 - 80.94.114.191] + +0.0.0.0 www.adventertainment.it +# [Equinoxe Media][AS35070][80.89.112.0 - 80.89.118.127] + +# [Equinoxe Media / EdenCast BV] + +0.0.0.0 599.stats.misstrends.com +0.0.0.0 602.stats.misstrends.com +0.0.0.0 604.stats.misstrends.com +0.0.0.0 606.stats.misstrends.com +0.0.0.0 654.stats.misstrends.com +0.0.0.0 671.stats.misstrends.com +0.0.0.0 680.stats.misstrends.com +0.0.0.0 699.stats.misstrends.com +0.0.0.0 726.stats.misstrends.com +0.0.0.0 750.stats.misstrends.com +0.0.0.0 803.stats.misstrends.com +0.0.0.0 879.stats.misstrends.com +0.0.0.0 986.stats.misstrends.com +0.0.0.0 1559.stats.misstrends.com +0.0.0.0 1800.stats.misstrends.com +0.0.0.0 1867.stats.misstrends.com +0.0.0.0 2278.stats.misstrends.com +0.0.0.0 4184.stats.misstrends.com +# [Eserver][AS42244][178.218.208.0 - 178.218.223.255] + +0.0.0.0 cm.marketgid.com +0.0.0.0 jsc.marketgid.com +0.0.0.0 videoclick.ru +# [Ethernext][AS10607][205.237.192.0 - 205.237.207.255] + +# [Ethernetix / LivePerson][AS11054][208.89.12.0 - 208.89.15.255] + +0.0.0.0 www.humanclick.com +# 0.0.0.0 wizard.liveperson.com + +# 0.0.0.0 www.liveperson.com #[affects citi.com] + +# 0.0.0.0 liveperson.net + +# 0.0.0.0 lptag.liveperson.net + +# 0.0.0.0 sales.liveperson.net #[affects Live Chat] + +# 0.0.0.0 sec1.liveperson.net + +# 0.0.0.0 server.iad.liveperson.net + +# [Euroaccess][AS34305][193.138.220.0 - 193.138.231.255] + +0.0.0.0 www.hostedbanners.com +0.0.0.0 landingpages.sunnytoolz.com +# [Euroaccess][AS34305][85.12.0.0 - 85.12.63.255] + +# [Eurocolo][AS35230][83.143.168.0 - 83.143.175.255] + +# [Eurohost][AS48841][91.212.65.0 - 91.212.65.255] + +# [Euro Web][AS35393][91.191.144.0 - 91.191.144.255] + +0.0.0.0 banner.adserverpub.com +# [Eveloz][AS27716][200.63.46.128/29] + +# [Everydns][AS15135][208.76.56.0 - 208.76.63.255] + +# [eXact Advertising LLC][Innovation Interactive][360i LLC] + +0.0.0.0 results.cafefind.net +0.0.0.0 leadgenetwork.com +0.0.0.0 www.leadgenetwork.com +# [Express Technologies][AS4378][216.74.0.0 - 216.74.63.255] + +0.0.0.0 gamevance.com +0.0.0.0 www.gamevance.com +# [Extended Host][AS42598][194.110.160.0 - 194.110.163.255] + +# [Ezzi.net][AS15149][216.150.64.0 - 216.150.95.255] + +0.0.0.0 ad7.literotica.com +0.0.0.0 r1.literotica.com +# [Facebook][AS32934][31.13.71.0 - 31.13.71.255] + +0.0.0.0 cx.atdmt.com +0.0.0.0 pixel.facebook.com +# [Fasthosts][AS15418][77.68.32.0 - 77.68.63.255] + +0.0.0.0 ads.skupe.net +# [Fasthosts][AS15418][88.208.228.0 - 88.208.251.255] + +0.0.0.0 005.free-counter.co.uk +0.0.0.0 008.free-counter.co.uk +0.0.0.0 008.free-counters.co.uk +# [Fastighetsinvest][AS12552][82.99.53.128 - 82.99.53.191] + +# [Fastit-de-dus1-ADITION][AS24961][217.79.188.0 - 217.79.188.63] + +0.0.0.0 ad1.adfarm1.adition.com +0.0.0.0 ad2.adfarm1.adition.com +0.0.0.0 static.adfarm1.adition.com +# [Fast It Colocation][AS24961][85.114.140.0 - 85.114.143.255] + +0.0.0.0 ad11.adfarm1.adition.com +0.0.0.0 dsp.adfarm1.adition.com +0.0.0.0 rtb.metrigo.com +0.0.0.0 ad.traffique.net +# [Fast It Colocation][AS24961][89.163.128.0 - 89.163.255.255] + +0.0.0.0 xpl.theadex.com +# [Fdcservers.net][AS30058][208.53.128.0 - 208.53.191.255] + +# [Fdcservers.net / Acceas Partners][66.90.64.0 - 66.90.127.255] + +0.0.0.0 www.tostadomedia.com +# [Fdcservers.net][67.159.0.0 - 67.159.63.255] + +# [Fdcservers.net][74.63.64.0 - 74.63.95.255] + +0.0.0.0 www.1freecounter.com +# [Fdcservers.net][76.73.0.0 - 76.73.127.255] + +0.0.0.0 jizzads.com +0.0.0.0 www.jizzads.com +# [Fiber Hosting][AS46176][207.126.166.0 - 207.126.166.255] + +# [Fibernet][AS5048][216.83.128.0 - 216.83.159.255] + +0.0.0.0 dce.nextstat.com +0.0.0.0 hv3.webstat.com +# [Firstlook][AS40634][208.87.148.0 - 208.87.151.255] + +# [Fluent Ltd][AS39779][195.78.94.0 - 195.78.95.255] + +0.0.0.0 uk.ads.hexus.net +0.0.0.0 adserver4.fluent.ltd.uk +# [Fortune Science][AS47434][195.242.161.0 - 195.242.161.255] + +# [Fox Interactive Media / News Corp] + +0.0.0.0 nb.myspace.com +0.0.0.0 t.snowball.com +# [Fox Interactive / MySpace][216.178.32.0 - 216.178.47.255] + +0.0.0.0 fimserve.askmen.com +0.0.0.0 fimserve.ign.com +0.0.0.0 delb.myspace.com +0.0.0.0 delb2.myspace.com +0.0.0.0 demr.myspace.com +0.0.0.0 fimserve.myspace.com +# [Fox Interactive / MySpace][AS33739][63.135.80.0 - 63.135.95.255] + +0.0.0.0 mpp.specificclick.net +0.0.0.0 mpp.vindicosuite.com +# [Fox Interactive / Ign Entertainment][207.38.8.0 - 207.38.15.255] + +# [Fox Interactive / Ign Entertainment][216.35.19.128 - 216.35.19.191] + +# [Fox Interactive / Ign Entertainment][69.10.16.0 - 69.10.31.255] + +0.0.0.0 atax.askmen.com +0.0.0.0 wrapper.askmen.com +0.0.0.0 wrapper.fileplanet.com +0.0.0.0 atax.gamermetrics.com +0.0.0.0 wrapper.gamespyid.com +0.0.0.0 wrapper.giga.de +0.0.0.0 atax.ign.com +0.0.0.0 wrapper.ign.com +0.0.0.0 atax.teamxbox.com +0.0.0.0 wrapper.teamxbox.com +# [France Telecom][AS24600][193.252.121.0 - 193.252.121.255] + +0.0.0.0 aujourdhui.refr.adgtw.orangeads.fr +# [Freenet Ag][AS5430][194.97.45.0 - 194.97.45.127] + +# [Freenet Ag][AS5430][62.104.23.64 - 62.104.23.127] + +0.0.0.0 ad.cashdorado.de +0.0.0.0 cdn.stroeerdigitalmedia.de +# [Freewheel Media][AS26558][217.156.128.0 - 217.156.255.255] + +0.0.0.0 5d406.v.fwmrm.net +0.0.0.0 5d427.v.fwmrm.net +# [Freewheel Media][AS26558][63.251.0.0 - 63.251.255.255] + +0.0.0.0 2822.v.fwmrm.net +0.0.0.0 2945.v.fwmrm.net +0.0.0.0 5be16.v.fwmrm.net +0.0.0.0 5d0dd.v.fwmrm.net +0.0.0.0 5d4a1.v.fwmrm.net +0.0.0.0 bd0dc.v.fwmrm.net +0.0.0.0 g1.v.fwmrm.net +# [Freewheel Media][AS26558][74.217.66.0 - 74.217.66.255] + +0.0.0.0 1c6e2.v.fwmrm.net +0.0.0.0 2a86.v.fwmrm.net +0.0.0.0 2df7e.v.fwmrm.net +0.0.0.0 5bde1.v.fwmrm.net +# 0.0.0.0 140cc.v.fwmrm.net #[affects videos] + +0.0.0.0 165a7.v.fwmrm.net +0.0.0.0 2915d.v.fwmrm.net +0.0.0.0 2915dc.v.fwmrm.net +0.0.0.0 2912a.v.fwmrm.net +0.0.0.0 2975c.v.fwmrm.net +0.0.0.0 29773.v.fwmrm.net +0.0.0.0 bea4.v.fwmrm.net +0.0.0.0 m.v.fwmrm.net +# [Freewheel Media][AS26558][75.98.70.0 - 75.98.70.255] + +0.0.0.0 2ab7f.v.fwmrm.net +0.0.0.0 9cf9.v.fwmrm.net +# [Friendfinder Networks][AS25875][AS32527][208.88.176.0 - 208.88.183.255] + +0.0.0.0 cover9.adultfriendfinder.com +0.0.0.0 guest.adultfriendfinder.com +0.0.0.0 iframe.adultfriendfinder.com +0.0.0.0 option9.adultfriendfinder.com +0.0.0.0 pop6.adultfriendfinder.com +0.0.0.0 tgp.adultfriendfinder.com +0.0.0.0 www.adultfriendfinder.com +0.0.0.0 banners.alt.com +0.0.0.0 adserver.asiafriendfinder.com +0.0.0.0 banners.bigchurch.com +0.0.0.0 ads.bondage.com +0.0.0.0 adserver.bondage.com +0.0.0.0 geobanner.friendfinder.com +0.0.0.0 banners.fuckbookhookups.com +0.0.0.0 banners.gayfriendfinder.com +0.0.0.0 banners.germanfriendfinder.com +0.0.0.0 banners.icams.com +0.0.0.0 banners.jewishfriendfinder.com +0.0.0.0 www.medleyads.com +0.0.0.0 adserver.millionairemate.com +0.0.0.0 banners.millionairemate.com +0.0.0.0 adserver.outpersonals.com +0.0.0.0 banner.passion.com +0.0.0.0 geobanner.passion.com +0.0.0.0 banners.penthouse.com +0.0.0.0 glean.pop6.com +0.0.0.0 adserver.seniorfriendfinder.com +0.0.0.0 banners.seniorfriendfinder.com +0.0.0.0 geobanner.seniorfriendfinder.com +0.0.0.0 banners.swapfinder.com +# [Friendfinder][AS25875][69.165.96.0 - 69.165.111.255] + +0.0.0.0 secure.medleyads.com +# [Fusepoint][AS16941][216.176.48.0 - 216.176.63.255] + +# [Fusepoint][AS16941][72.35.0.0 - 72.35.31.255] + +0.0.0.0 media.foundry42.com +# [Gamma / Ifuzion][AS14720][38.80.66.0/24] + +0.0.0.0 ads.pornerbros.com +# [Gamma Networking][AS14720][66.152.64.0 - 66.152.95.255] + +0.0.0.0 cs1.adxpansion.com +0.0.0.0 dev.media.adxpansion.com +0.0.0.0 www.adxpansion.com +0.0.0.0 internalads.gammae.com +0.0.0.0 ads.givemegay.com +0.0.0.0 www.linkfame.com +0.0.0.0 1274.mediatraffic.com +0.0.0.0 www.mediatraffic.com +0.0.0.0 www.surfaccuracy.com +0.0.0.0 ads.sxx.com +0.0.0.0 ads.vipcams.com +# [GeMius] + +0.0.0.0 15minadlt.hit.gemius.pl +0.0.0.0 hit.gemius.pl +0.0.0.0 activeby.hit.gemius.pl +0.0.0.0 ad.hit.gemius.pl +0.0.0.0 adactiongapl.hit.gemius.pl +0.0.0.0 adafi.hit.gemius.pl +0.0.0.0 adcz.hit.gemius.pl +0.0.0.0 adee.hit.gemius.pl +0.0.0.0 adhr.hit.gemius.pl +0.0.0.0 adlt.hit.gemius.pl +0.0.0.0 adlv.hit.gemius.pl +0.0.0.0 adnet.hit.gemius.pl +0.0.0.0 adnetgalt.hit.gemius.pl +0.0.0.0 adocean-by.hit.gemius.pl +0.0.0.0 adocean-cz.hit.gemius.pl +0.0.0.0 adocean-ee.hit.gemius.pl +0.0.0.0 adocean-hr.hit.gemius.pl +0.0.0.0 adocean-lt.hit.gemius.pl +0.0.0.0 adocean-lv.hit.gemius.pl +0.0.0.0 adocean-pl.hit.gemius.pl +0.0.0.0 adocean-ro.hit.gemius.pl +0.0.0.0 adocean-si.hit.gemius.pl +0.0.0.0 adocean-ua.hit.gemius.pl +0.0.0.0 adro.hit.gemius.pl +0.0.0.0 adrs.hit.gemius.pl +0.0.0.0 advice.hit.gemius.pl +0.0.0.0 advicead.hit.gemius.pl +0.0.0.0 aolt.hit.gemius.pl +0.0.0.0 aolv.hit.gemius.pl +0.0.0.0 apolloadlv.hit.gemius.pl +0.0.0.0 aripaadee.hit.gemius.pl +0.0.0.0 avt.hit.gemius.pl +0.0.0.0 allegro.hit.gemius.pl +0.0.0.0 axel.hit.gemius.pl +0.0.0.0 b92adrs.hit.gemius.pl +0.0.0.0 bestjobs.hit.gemius.pl +0.0.0.0 bg.hit.gemius.pl +0.0.0.0 blitzadbg.hit.gemius.pl +0.0.0.0 ghm_bulgaria.hit.gemius.pl +0.0.0.0 centrumcz.hit.gemius.pl +0.0.0.0 ua.cnt.gemius.pl +0.0.0.0 corm.hit.gemius.pl +0.0.0.0 counter.gemius.pl +0.0.0.0 cz.hit.gemius.pl +0.0.0.0 darikspaceadbg.hit.gemius.pl +0.0.0.0 delfiadlt.hit.gemius.pl +0.0.0.0 delfiadlv.hit.gemius.pl +0.0.0.0 delfiadee.hit.gemius.pl +0.0.0.0 delfilv.hit.gemius.pl +0.0.0.0 diginetlt.hit.gemius.pl +0.0.0.0 digital4adro.hit.gemius.pl +0.0.0.0 dirbg.hit.gemius.pl +0.0.0.0 edipresse.hit.gemius.pl +0.0.0.0 ee.hit.gemius.pl +0.0.0.0 eega.hit.gemius.pl +0.0.0.0 eniro.hit.gemius.pl +0.0.0.0 gaae.hit.gemius.pl +0.0.0.0 gaat.hit.gemius.pl +0.0.0.0 gaba.hit.gemius.pl +0.0.0.0 gabe.hit.gemius.pl +0.0.0.0 gabg.hit.gemius.pl +0.0.0.0 gaby.hit.gemius.pl +0.0.0.0 gacz.hit.gemius.pl +0.0.0.0 gadk.hit.gemius.pl +0.0.0.0 gaee.hit.gemius.pl +0.0.0.0 gadnet.hit.gemius.pl +0.0.0.0 gahu.hit.gemius.pl +0.0.0.0 gajo.hit.gemius.pl +0.0.0.0 gail.hit.gemius.pl +0.0.0.0 gakz.hit.gemius.pl +0.0.0.0 galb.hit.gemius.pl +0.0.0.0 galindia.hit.gemius.pl +0.0.0.0 galt.hit.gemius.pl +0.0.0.0 galv.hit.gemius.pl +0.0.0.0 gamd.hit.gemius.pl +0.0.0.0 gamk.hit.gemius.pl +0.0.0.0 gars.hit.gemius.pl +0.0.0.0 garo.hit.gemius.pl +0.0.0.0 garu.hit.gemius.pl +0.0.0.0 gask.hit.gemius.pl +0.0.0.0 gatr.hit.gemius.pl +0.0.0.0 gaua.hit.gemius.pl +0.0.0.0 gdebg.hit.gemius.pl +0.0.0.0 gdeil.hit.gemius.pl +0.0.0.0 gdecz.hit.gemius.pl +0.0.0.0 gdesk.hit.gemius.pl +0.0.0.0 gders.hit.gemius.pl +0.0.0.0 gdetr.hit.gemius.pl +0.0.0.0 gemadhu.hit.gemius.pl +0.0.0.0 generalmediaadhu.hit.gemius.pl +0.0.0.0 gg.hit.gemius.pl +0.0.0.0 gde-default.hit.gemius.pl +0.0.0.0 ghmme.hit.gemius.pl +0.0.0.0 ghmbg.hit.gemius.pl +0.0.0.0 ghmpl.hit.gemius.pl +0.0.0.0 ghmrs.hit.gemius.pl +0.0.0.0 gtlt.hit.gemius.pl +0.0.0.0 gtlv.hit.gemius.pl +0.0.0.0 idg.hit.gemius.pl +0.0.0.0 hr.hit.gemius.pl +0.0.0.0 hu.hit.gemius.pl +0.0.0.0 huadn.hit.gemius.pl +0.0.0.0 icorpadro.hit.gemius.pl +0.0.0.0 interia.hit.gemius.pl +0.0.0.0 investoradbg.hit.gemius.pl +0.0.0.0 keepaneyeadmk.hit.gemius.pl +0.0.0.0 kon.hit.gemius.pl +0.0.0.0 lrytasadlt.hit.gemius.pl +0.0.0.0 lt.hit.gemius.pl +0.0.0.0 lv.hit.gemius.pl +0.0.0.0 mbank.hit.gemius.pl +0.0.0.0 mediaregad.hit.gemius.pl +0.0.0.0 metagaua.hit.gemius.pl +0.0.0.0 mreg.hit.gemius.pl +0.0.0.0 negadbg.hit.gemius.pl +0.0.0.0 netsprint.hit.gemius.pl +0.0.0.0 neogenadro.hit.gemius.pl +0.0.0.0 o2.hit.gemius.pl +0.0.0.0 o2adpl.hit.gemius.pl +0.0.0.0 oglasnikadhr.hit.gemius.pl +0.0.0.0 ohtulehtadee.hit.gemius.pl +0.0.0.0 olx.hit.gemius.pl +0.0.0.0 onet.hit.gemius.pl +0.0.0.0 opt.hit.gemius.pl +0.0.0.0 prefix.hit.gemius.pl +0.0.0.0 pracuj.hit.gemius.pl +0.0.0.0 pro.hit.gemius.pl +0.0.0.0 protvadmd.hit.gemius.pl +0.0.0.0 rbcgaru.hit.gemius.pl +0.0.0.0 realitateadro.hit.gemius.pl +0.0.0.0 ringieradrs.hit.gemius.pl +0.0.0.0 ringieradro.hit.gemius.pl +0.0.0.0 ro.hit.gemius.pl +0.0.0.0 ro1adro.hit.gemius.pl +0.0.0.0 scz.hit.gemius.pl +0.0.0.0 see.hit.gemius.pl +0.0.0.0 sk.hit.gemius.pl +0.0.0.0 slovakia.hit.gemius.pl +0.0.0.0 spir.hit.gemius.pl +0.0.0.0 spl.hit.gemius.pl +0.0.0.0 sportaladbg.hit.gemius.pl +0.0.0.0 st.hit.gemius.pl +0.0.0.0 std1.hit.gemius.pl +0.0.0.0 str.hit.gemius.pl +0.0.0.0 stua.hit.gemius.pl +0.0.0.0 thinkdigitaladro.hit.gemius.pl +0.0.0.0 tr.hit.gemius.pl +0.0.0.0 tvn.hit.gemius.pl +0.0.0.0 ua.hit.gemius.pl +0.0.0.0 vbadbg.hit.gemius.pl +0.0.0.0 webgroundadbg.hit.gemius.pl +0.0.0.0 wp.hit.gemius.pl +0.0.0.0 wykop.hit.gemius.pl +0.0.0.0 home.hit.stat.pl +0.0.0.0 onet.hit.stat.pl +0.0.0.0 s1.hit.stat.pl +0.0.0.0 s2.hit.stat.pl +0.0.0.0 s4.hit.stat.pl +0.0.0.0 sisco.hit.stat.pl +0.0.0.0 www.stat.pl +# [Ghnet][AS34275][91.150.192.0 - 91.150.223.255] + +# [Gigacodes][AS44949][195.160.200.0 - 195.160.203.255] + +# [Giga-hosting][AS51167][178.238.233.0 - 178.238.233.255] + +0.0.0.0 baner.energy-torrent.com +# [Gigenet][AS32181][209.212.144.0 - 209.212.159.255] + +0.0.0.0 contentwidgets.net +# [Gigenet][AS32181][216.38.0.0 - 216.38.31.255] + +# [Gigenet / Cloud][AS32181][66.55.80.0 - 66.55.95.255] + +0.0.0.0 ads-by.madadsmedia.com +0.0.0.0 ads-by.yieldselect.com +# [Gigenet][AS32181][69.39.224.0 - 69.39.239.255] + +0.0.0.0 intermediaceli.com +# [Gigenet][AS32181][69.65.0.0 - 69.65.63.255] + +0.0.0.0 adtrade.ro +0.0.0.0 www.adtrade.ro +0.0.0.0 c0.amazingcounters.com +0.0.0.0 c1.amazingcounters.com +0.0.0.0 c2.amazingcounters.com +0.0.0.0 c3.amazingcounters.com +0.0.0.0 c4.amazingcounters.com +0.0.0.0 c5.amazingcounters.com +0.0.0.0 c6.amazingcounters.com +0.0.0.0 c7.amazingcounters.com +0.0.0.0 c8.amazingcounters.com +0.0.0.0 c9.amazingcounters.com +0.0.0.0 cb.amazingcounters.com +0.0.0.0 www.amazingcounters.com +0.0.0.0 m.usersonline.com +# [Gigya][AS44399][74.120.148.0 - 74.120.151.255] + +0.0.0.0 gscounters.gigya.com +0.0.0.0 gscounters.us1.gigya.com +# [Global Compass / Cyber Wurx][AS22653][66.154.0.0 - 66.154.95.255] + +0.0.0.0 www.adultadbroker.com +0.0.0.0 www.buy404s.com +0.0.0.0 domainplayersclub.com +0.0.0.0 ebtmarketing.com +0.0.0.0 www.ebtmarketing.com +0.0.0.0 www.exitforcash.com +0.0.0.0 www.fpctraffic.com +0.0.0.0 www.freeezinebucks.com +0.0.0.0 frontpagecash.com +0.0.0.0 www.toppornblogs.com +# [Global Compass][AS22653][69.61.0.0 - 69.61.127.255] + +0.0.0.0 hitexchange.net +0.0.0.0 gif.hitexchange.net +0.0.0.0 img.hitexchange.net +0.0.0.0 www.hitexchange.net +0.0.0.0 hitx.net +0.0.0.0 gif.hitx.net +0.0.0.0 www.hitx.net +# [Global Crossing][AS29973][206.165.0.0 - 206.165.255.255] + +0.0.0.0 www.clickaction.net +0.0.0.0 server2.discountclick.com +# 0.0.0.0 link.p0.com #[Affects email newsletters] + +# [Global Crossing][AS3549][208.48.224.0 - 208.51.255.255] + +0.0.0.0 a.hspvst.com +# [Global Crossing][AS3549][64.211.0.0 - 64.214.223.255] + +# 0.0.0.0 secure.footprint.net #[affects nfl.com] + +# [Global Crossing][AS3549][64.208.42.0 - 64.208.43.255] + +0.0.0.0 van.redlightcenter.com +0.0.0.0 webmaster.utherverse.com +# [Global Net Access][207.210.64.0 - 207.210.127.255] + +# [Global Net Access][216.180.224.0 - 216.180.255.255] + +0.0.0.0 www.cpx24.com +0.0.0.0 ourbesthits.com +# [Global Net Access][AS3595][63.247.64.0 - 63.247.95.255] + +0.0.0.0 www.edomz.com +# [Global Net Access][AS3595][64.22.64.0 - 64.22.127.255] + +0.0.0.0 secure.gaug.es +# [Global Net Access][65.254.32.0 - 65.254.63.255] + +# [Global Net Access][72.9.224.0 - 72.9.255.255] + +0.0.0.0 flagcounter.com +0.0.0.0 spads.yamx.com +# [Global Net Access][AS3595][74.207.224.0 - 74.207.255.255] + +# [Global Net Access][AS27413][74.81.64.0 - 74.81.95.255] + +0.0.0.0 dft.cl.dynad.net +# [Global Net Access][75.127.64.0 - 75.127.127.255] + +# [Global Netoptex][AS26914][69.80.192.0 - 69.80.223.255] + +0.0.0.0 stat001.mylivepage.com +0.0.0.0 stat002.mylivepage.com +0.0.0.0 stat003.mylivepage.com +0.0.0.0 stat004.mylivepage.com +0.0.0.0 stat005.mylivepage.com +0.0.0.0 stat006.mylivepage.com +0.0.0.0 stat007.mylivepage.com +0.0.0.0 stat008.mylivepage.com +0.0.0.0 stat009.mylivepage.com +0.0.0.0 stat010.mylivepage.com +# [GloboTech][AS36666][67.215.0.0 - 67.215.15.255] + +# [Global Virtual][AS46549][12.204.164.0 - 12.204.164.255] + +# [Global Virtual][AS46549][12.68.140.0 - 12.68.140.255] + +# [Go2online][AS7796][216.240.134.128 - 216.240.134.255] + +# [Godaddy.com][AS26496][118.0.0.0 - 118.255.255.255] + +# [Godaddy.com][AS26496][162.209.0.0 - 162.209.127.255] + +0.0.0.0 bounceexchange.com +# [Godaddy.com][AS26496][173.201.0.0 - 173.204.255.255] + +# [Godaddy.com][AS26496][184.168.0.0 - 184.168.255.255] + +0.0.0.0 ads.admnx.com +# [Godaddy.com Netherlands][AS26496][188.121.32.0 - 188.121.63.255] + +0.0.0.0 wms-tools.com +# [Godaddy.com][208.109.0.0 - 208.109.255.255] + +0.0.0.0 www.affordablewebsitetraffic.com +0.0.0.0 codeads.com +0.0.0.0 www.codeads.com +0.0.0.0 14.ca.enwebsearch.com +0.0.0.0 www.freehitwebcounters.com +0.0.0.0 www.milesdebanners.com +0.0.0.0 redemptionengine.com +0.0.0.0 www.redemptionengine.com +# [Godaddy.com][50.62.0.0 - 50.63.255.255] + +# [Godaddy.com][64.202.160.0 - 64.202.191.255] + +0.0.0.0 images.secureserver.net +# [Godaddy.com][68.178.128.0 - 68.178.255.255] + +0.0.0.0 www.standardinternet.com +# [Godaddy.com][AS26496][72.167.0.0 - 72.167.255.255] + +0.0.0.0 max.gunggo.com +0.0.0.0 g.p.mybuys.com +# [Godaddy.com][97.74.0.0 - 97.74.255.255] + +0.0.0.0 errorkillers.net +0.0.0.0 highpro1.com +# [Google][AS15169][104.154.0.0 - 104.199.255.255] + +0.0.0.0 adsrvmedia.adk2x.com +0.0.0.0 clic2pub.adk2x.com +0.0.0.0 gotagy.adk2x.com +0.0.0.0 hlamedia.adk2x.com +0.0.0.0 static-trackers.adtarget.me +0.0.0.0 www.buzzadnetwork.com +0.0.0.0 b.codeonclick.com +0.0.0.0 c.codeonclick.com +0.0.0.0 pixel.meteora.us +0.0.0.0 www.nanoadexchange.com +0.0.0.0 pureadexchange.com +0.0.0.0 pwrfcia.com +# [Google][AS15169][107.178.192.0 - 107.178.255.255] + +0.0.0.0 trackers.adtarget.me +0.0.0.0 ado.pro-market.net +# [Google][AS15169][108.170.192.0 - 108.170.255.255] + +# [Google][AS15169][130.211.0.0 - 130.211.255.255] + +0.0.0.0 mottnow.adk2x.com +0.0.0.0 tracker.departapp.com +0.0.0.0 e100.yt.srs.doubleverify.com +0.0.0.0 e101.yt.srs.doubleverify.com +0.0.0.0 e102.yt.srs.doubleverify.com +0.0.0.0 e103.yt.srs.doubleverify.com +0.0.0.0 e104.yt.srs.doubleverify.com +0.0.0.0 e105.yt.srs.doubleverify.com +0.0.0.0 e106.yt.srs.doubleverify.com +0.0.0.0 e107.yt.srs.doubleverify.com +0.0.0.0 e108.yt.srs.doubleverify.com +0.0.0.0 e109.yt.srs.doubleverify.com +0.0.0.0 e110.yt.srs.doubleverify.com +0.0.0.0 e111.yt.srs.doubleverify.com +0.0.0.0 e112.yt.srs.doubleverify.com +0.0.0.0 s.ktxtr.com +0.0.0.0 www.totaladperformance.com +# [Google][AS15169][146.148.0.0 - 146.148.127.255] + +0.0.0.0 www.buzzadexchange.com +# [Google][AS22577][165.193.245.0 - 165.193.245.255] + +0.0.0.0 jp.admob.com +# [Google][AS15169][172.217.0.0 - 172.217.255.255] + +0.0.0.0 geoapi123.appspot.com +0.0.0.0 3642305.fls.doubleclick.net +0.0.0.0 3765329.fls.doubleclick.net +0.0.0.0 4514783.fls.doubleclick.net +0.0.0.0 googleads4.g.doubleclick.net +0.0.0.0 pagead46.l.doubleclick.net +0.0.0.0 partnerad.l.doubleclick.net +0.0.0.0 pagead-googlehosted.l.google.com +# [Google][AS15169][173.194.0.0 - 173.194.255.255] + +0.0.0.0 5362399.fls.doubleclick.net +0.0.0.0 video-ad-stats.googlesyndication.com +# 0.0.0.0 redirector.googlevideo.com #[affects video playback] + +# [Google / DoubleClick][AS15169][173.194.0.0 - 173.194.255.255] + +0.0.0.0 dp.g.doubleclick.net +# [Google][AS15169][173.255.112.0 - 173.255.127.255] + +# [Google / DoubleClick][AS15169][209.85.128.0 - 209.85.255.255] + +0.0.0.0 analytics-api-samples.googlecode.com +# [Google][AS15169][216.58.192.0 - 216.58.223.255] + +0.0.0.0 www.adsensecustomsearchads.com +0.0.0.0 1435575.fls.doubleclick.net +0.0.0.0 2542116.fls.doubleclick.net +0.0.0.0 4053494.fls.doubleclick.net +0.0.0.0 4236808.fls.doubleclick.net +0.0.0.0 www.googletagmanager.com +# [Google / DoubleClick][AS6432][216.73.80.0 - 216.73.95.255] + +# [Google][AS15169][23.251.128.0 - 23.251.159.255] + +0.0.0.0 adplexmedia.adk2x.com +0.0.0.0 trafficedge.adk2x.com +0.0.0.0 lesechos.ezakus.net +# [Google][AS15169][35.184.0.0 - 35.191.255.255] + +# [Google / DoubleClick][AS15169][64.233.160.0 - 64.233.191.255] + +0.0.0.0 ad.ar.doubleclick.net +0.0.0.0 ad.at.doubleclick.net +0.0.0.0 ad.au.doubleclick.net +0.0.0.0 ad.ca.doubleclick.net +0.0.0.0 ad.ch.doubleclick.net +0.0.0.0 ad.cl.doubleclick.net +0.0.0.0 ad.cn.doubleclick.net +0.0.0.0 ad.hk.doubleclick.net +0.0.0.0 ad.hr.doubleclick.net +0.0.0.0 ad.hu.doubleclick.net +0.0.0.0 ad.ie.doubleclick.net +0.0.0.0 ad.in.doubleclick.net +0.0.0.0 ad.kr.doubleclick.net +0.0.0.0 ad.pt.doubleclick.net +0.0.0.0 ad.ro.doubleclick.net +0.0.0.0 ad.si.doubleclick.net +0.0.0.0 ad.terra.doubleclick.net +0.0.0.0 ad.th.doubleclick.net +0.0.0.0 ad.tw.doubleclick.net +0.0.0.0 ad.us.doubleclick.net +0.0.0.0 creatives.doubleclick.net +0.0.0.0 dfp.doubleclick.net +0.0.0.0 fls.uk.doubleclick.net +0.0.0.0 ir.doubleclick.net +0.0.0.0 motifcdn.doubleclick.net +0.0.0.0 motifcdn2.doubleclick.net +0.0.0.0 n4052ad.doubleclick.net +0.0.0.0 paypalssl.doubleclick.net +0.0.0.0 s2.video.doubleclick.net +0.0.0.0 survey.g.doubleclick.net +0.0.0.0 doubleclick.ne.jp +0.0.0.0 www3.doubleclick.net +0.0.0.0 www.doubleclick.net +0.0.0.0 www2.doubleclick.com +0.0.0.0 www3.doubleclick.com +0.0.0.0 www.doubleclick.com +0.0.0.0 www.bt.emsecure.net +# 0.0.0.0 www.youtube-nocookie.com #[affects various videos] + +# [Google / DoubleClick][AS15169][66.249.64.0 - 66.249.95.255] + +0.0.0.0 ad.rs.doubleclick.net +# [Google][AS22577][70.32.128.0 - 70.32.159.255] + +# [Google / DoubleClick][AS15169][72.14.192.0 - 72.14.255.255] + +# 0.0.0.0 s0.2mdn.net #[affects video stream] + +# 0.0.0.0 static.2mdn.net #[affects Youtube] + +0.0.0.0 ad-apac.doubleclick.net +0.0.0.0 gan.doubleclick.net +0.0.0.0 googleads2.g.doubleclick.net +0.0.0.0 n4061ad.hk.doubleclick.net +# [Google / DoubleClick][AS15169][74.125.0.0 - 74.125.255.255] + +0.0.0.0 ip-geo.appspot.com +0.0.0.0 nojsstats.appspot.com +0.0.0.0 gae.caspion.com +0.0.0.0 ad-ace.doubleclick.net +0.0.0.0 ad.bg.doubleclick.net +0.0.0.0 bid.g.doubleclick.net +0.0.0.0 cm.g.doubleclick.net +0.0.0.0 4360661.fls.doubleclick.net +0.0.0.0 4488352.fls.doubleclick.net +0.0.0.0 4684100.fls.doubleclick.net +0.0.0.0 fls.au.doubleclick.net +0.0.0.0 www.doubleclickbygoogle.com +0.0.0.0 ssl.google-analytics.com +0.0.0.0 www.google-analytics.com +0.0.0.0 4.afs.googleadservices.com +0.0.0.0 pagead2.googleadservices.com +0.0.0.0 partner.googleadservices.com +0.0.0.0 domains.googlesyndication.com +0.0.0.0 www.linksalpha.com +# [Gossamer][AS36483][208.70.244.0 - 208.70.247.255] + +0.0.0.0 web.acumenpi.com +0.0.0.0 ads.bloodhorse.com +0.0.0.0 st.magnify.net +0.0.0.0 ads.thehorse.com +# [Grafix Internet][AS16131][84.243.192.0 - 84.243.255.255] + +# [GTS Nextra / Etargetsh-ba][AS5578][195.168.10.128 - 195.168.10.255] + +0.0.0.0 search.etargetnet.com +0.0.0.0 bg.search.etargetnet.com +0.0.0.0 cz.search.etargetnet.com +0.0.0.0 hr.search.etargetnet.com +0.0.0.0 hu.search.etargetnet.com +0.0.0.0 pl.search.etargetnet.com +0.0.0.0 ro.search.etargetnet.com +0.0.0.0 rs.search.etargetnet.com +0.0.0.0 sk.search.etargetnet.com +0.0.0.0 bg.static.etargetnet.com +0.0.0.0 cz.static.etargetnet.com +0.0.0.0 hr.static.etargetnet.com +0.0.0.0 hu.static.etargetnet.com +0.0.0.0 rs.static.etargetnet.com +# [GTS Nextra / PrimeInteractive][AS5578][85.248.229.0 - 85.248.229.255] + +0.0.0.0 ad.sitelement.sk +# [Hanaro Telecom][AS9318][114.200.0.0 - 114.207.255.255] + +# [Hetzner][AS24940][144.76.0.0 - 144.76.255.255] + +0.0.0.0 www.adylalahb.ru +0.0.0.0 c.am11.ru +0.0.0.0 ads.gadget.ro +0.0.0.0 cdn.iqcontentplatform.de +0.0.0.0 l.lp4.io +0.0.0.0 p.lp4.io +0.0.0.0 rtbproxy.mgid.com +0.0.0.0 switch.rtbsystem.com +0.0.0.0 s62.research.de.com +0.0.0.0 show.smartcontext.pl +0.0.0.0 level.turboads.de +0.0.0.0 piwik.wsws.org +# [Hetzner][AS24940][148.251.64.162 - 148.251.64.162] + +0.0.0.0 t.goadservices.com +0.0.0.0 e.maxtraffic.com +0.0.0.0 track.recreativ.ru +# [Hetzner][AS24940][176.9.0.0 - 176.9.255.255] + +0.0.0.0 adsfeed3.brabys.co.za +0.0.0.0 advertising.fussball-liveticker.eu +0.0.0.0 adv.medicine.bg +0.0.0.0 delivery1.topad.mobi +0.0.0.0 ads.people-group.net +0.0.0.0 mp.pianomedia.eu +0.0.0.0 click.plista.com +0.0.0.0 app3.rutarget.ru +0.0.0.0 us-sonar.sociomantic.com +0.0.0.0 adserver.spritmonitor.de +0.0.0.0 xblasterads1.com +# [Hetzner][AS24940][178.63.0.0 - 178.63.255.255] + +0.0.0.0 scambiobanner.altervista.org +0.0.0.0 avazudsp.net +0.0.0.0 test.wiredminds.de +0.0.0.0 wm.wiredminds.de +# [Hetzner][AS24940][188.40.0.0 - 188.40.255.255] + +0.0.0.0 eps-analyzer.de +0.0.0.0 openx.itsmassive.com +0.0.0.0 openads.motorrad-net.at +0.0.0.0 static.openads.motorrad-net.at +0.0.0.0 ads.sysmesh.com +# [Hetzner][213.133.96.0 - 213.133.111.255] + +0.0.0.0 mmotraffic.com +0.0.0.0 sonar.sociomantic.com +# [Hetzner][213.239.202.128 - 213.239.202.255] + +0.0.0.0 api.7segments.com +0.0.0.0 a.mobile.toboads.com +0.0.0.0 relay.mobile.toboads.com +0.0.0.0 count.yandeg.ru +# [Hetzner][AS24940][46.4.23.192 - 46.4.69.95] + +0.0.0.0 adbuka.com +0.0.0.0 www.adbuka.com +0.0.0.0 www.blogads.de +0.0.0.0 ads.energy-torrent.com +0.0.0.0 ads.moitesdelki.bg +0.0.0.0 ads3.moitepari.bg +0.0.0.0 ads.newsgeek.co.il +0.0.0.0 stats.warenform.de +# [Hetzner][AS24940][5.9.144.56 - 5.9.90.95] + +0.0.0.0 media.adcarousel.pl +0.0.0.0 www.adcarousel.pl +0.0.0.0 www.adtraff.ru +0.0.0.0 advombat.ru +0.0.0.0 ads.betweendigital.com +0.0.0.0 cdn.contentspread.net +0.0.0.0 ads.finzoom.com.tr +0.0.0.0 js.e-generator.com +0.0.0.0 target.e-generator.com +0.0.0.0 target.net.finam.ru +0.0.0.0 track.idtargeting.com +0.0.0.0 jadcenter.com +0.0.0.0 s300.meetrics.net +0.0.0.0 wh.motorpresse-statistik.de +0.0.0.0 target.smi2.net +0.0.0.0 stats.virtuemart.net +# [Hetzner][78.46.0.0 - 78.47.255.255] + +0.0.0.0 park.beenetworks.net +0.0.0.0 lb.fruitflan.com +0.0.0.0 adcentre.it-advanced.com +0.0.0.0 dc61.s290.meetrics.net +0.0.0.0 partnerearning.com +0.0.0.0 www2.stats4free.de +0.0.0.0 www.stats4free.de +0.0.0.0 ads.videofen.com +0.0.0.0 wmapp.wiredminds.de +# [Hetzner-rz-nbg-net][78.46.32.0 - 78.46.95.255] + +0.0.0.0 dc56.s290.meetrics.net +0.0.0.0 ad10.play3.de +# [Hetzner][AS24940][85.10.192.0 - 85.10.207.255] + +0.0.0.0 scripts.conversionattribution.com +0.0.0.0 banner.finzoom.ro +# [Hetzner][AS24940][88.198.0.0 - 88.198.255.255] + +0.0.0.0 cpm.adspine.com +0.0.0.0 de1.frosmo.com +0.0.0.0 ireklama.mk +0.0.0.0 tt.onthe.io +0.0.0.0 www.sitecounter.be +0.0.0.0 www.weitclick.de +0.0.0.0 wm-goldenclick.ru +# [Hi-media][AS45050][195.158.240.0 - 195.158.241.255] + +0.0.0.0 br.comclick.com +0.0.0.0 bdx.comclick.com +0.0.0.0 ct2.comclick.com +0.0.0.0 ihm01.ct2.comclick.com +0.0.0.0 www.comclick.com +# [Hi-media][AS45050][46.182.41.0 - 46.182.41.255] + +# [Hiskyhost][AS43355][78.108.177.0 - 78.108.177.255] + +# [Hivelocity / Noc4hosts][AS29802][68.233.224.0 - 68.233.255.255] + +0.0.0.0 c.adforgeinc.com +0.0.0.0 www.adshost3.com +# [Hivelocity][AS29802][69.46.0.0 - 69.46.31.255] + +# [Hivelocity / Noc4hosts][AS29802][68.233.224.0 - 68.233.255.255] + +0.0.0.0 c7.adforgeinc.com +# [Hivelocity / Noc4hosts][AS29802][74.50.96.0 - 74.50.127.255] + +0.0.0.0 c6.adforgeinc.com +# [Hizmetleri][77.92.131.0 - 77.92.131.255] + +# [Hknet Company][AS4645][203.169.160.0 - 203.169.191.255] + +# [Hong Kong Limited][202.83.192.0 - 202.83.223.255] + +# [Hopone][AS14361][209.160.0.0 - 209.160.79.255] + +0.0.0.0 ad.db3nf.com +0.0.0.0 go.jetswap.com +0.0.0.0 tracksy.com +# [Hopone][209.61.192.0 - 209.61.255.255] + +# [Hopone][66.148.64.0 - 66.148.127.255] + +0.0.0.0 findfavour.com +# [Hopone][66.235.160.0 - 66.235.191.255] + +# [Hopone][AS14361][66.36.224.0 - 66.36.255.255] + +# [Hosteurope][AS20773][176.28.24.0 - 176.28.27.255] + +0.0.0.0 get.mirando.de +# [Hosteurope][AS20773][178.77.88.0 - 178.77.91.255] + +0.0.0.0 r.refinedads.com +# [Hosteurope / Centron Gmbh][AS20773][212.223.168.0 - 212.223.168.255] + +0.0.0.0 limg.adspirit.de +# [Hosteurope][AS20773][46.163.120.0 - 46.163.123.255] + +0.0.0.0 taz.adspirit.de +# [Hosteurope][AS20773][80.237.180.0 - 80.237.180.127] + +0.0.0.0 admention.adspirit.de +0.0.0.0 adx.adspirit.de +0.0.0.0 lidlretargeting.adspirit.de +0.0.0.0 ruemedia.adspirit.net +0.0.0.0 sgmedia.adspirit.net +0.0.0.0 ja.revolvermaps.com +0.0.0.0 jb.revolvermaps.com +0.0.0.0 jc.revolvermaps.com +0.0.0.0 jd.revolvermaps.com +0.0.0.0 je.revolvermaps.com +0.0.0.0 jf.revolvermaps.com +0.0.0.0 jg.revolvermaps.com +0.0.0.0 ji.revolvermaps.com +0.0.0.0 jk.revolvermaps.com +0.0.0.0 rb.revolvermaps.com +0.0.0.0 rc.revolvermaps.com +0.0.0.0 rd.revolvermaps.com +0.0.0.0 re.revolvermaps.com +0.0.0.0 rg.revolvermaps.com +0.0.0.0 ri.revolvermaps.com +0.0.0.0 rk.revolvermaps.com +# [Hosteurope][AS20773][83.169.0.0 - 83.169.7.255] + +0.0.0.0 folkd.put.omnimon.de +0.0.0.0 openx.omniton.net +# [Hosteurope][AS20773][87.230.55.0 - 87.230.55.255] + +0.0.0.0 cdn.adspirit.de +# [Hosteurope][AS20773][92.51.184.0 - 92.51.187.255] + +0.0.0.0 ad4mat.de +# [Hosting Consulting][AS30502][199.88.56.0 - 199.88.63.255] + +0.0.0.0 serve.oxcluster.com +0.0.0.0 seekbang.com +0.0.0.0 www.seekbang.com +# [Hosting Consulting / RK Netmedia][AS40539][208.78.92.0 - 208.78.95.255] + +0.0.0.0 adc.brandreachsys.com +0.0.0.0 fe.brandreachsys.com +0.0.0.0 lg1.brandreachsys.com +0.0.0.0 media.brandreachsys.com +0.0.0.0 br.fling.com +0.0.0.0 track.fling.com +0.0.0.0 www.freecamdollars.com +0.0.0.0 kaizentraffic.com +0.0.0.0 br.meetlocals.com +0.0.0.0 clicks.nastydollars.com +0.0.0.0 graphics.nastydollars.com +0.0.0.0 webmasters.nastydollars.com +0.0.0.0 www-old.nastydollars.com +0.0.0.0 br.realitykings.com +0.0.0.0 track.realitykings.com +0.0.0.0 br.rk.com +# [Hosting Consulting / Global Personals][208.91.207.0 - 208.91.207.255] + +0.0.0.0 www.camsoda1.com +0.0.0.0 promos.meetlocals.com +0.0.0.0 gallysorig.nastydollars.com +0.0.0.0 grab.nastydollars.com +0.0.0.0 promos.wealthymen.com +# [Hosting Consulting][AS30502][64.7.203.0 - 64.7.203.255] + +# [Hosting Consulting][AS30502][66.165.186.0 - 66.165.186.255] + +# [Hosting Centre][AS41126][89.111.176.0 - 89.111.176.31] + +# [Hosting Ltd][AS13147][87.120.40.0 - 87.120.41.255] + +0.0.0.0 ads.blitz.bg +0.0.0.0 ads.hobyto.com +0.0.0.0 ads.popfolkstars.com +0.0.0.0 ad.sbb.bg +0.0.0.0 reklama.wisdom.bg +# [HostDime.com][AS33182][198.49.64.0 - 198.49.79.255] + +0.0.0.0 www.totalfax.net +# [HostDime.com][AS33182][66.7.192.0 - 66.7.223.255] + +0.0.0.0 s2.tracemyip.org +0.0.0.0 www.tracemyip.org +# [HostDime.com][AS33182][67.23.224.0 - 67.23.255.255] + +# [Hostoffice][AS47885][195.228.74.0 - 195.228.74.255] + +# [Hosting Solutions][AS30083][209.239.112.0 - 209.239.127.255] + +# [Hosting Solutions][AS30083][50.30.32.0 - 50.30.47.255] + +0.0.0.0 px.adhigh.net +# [Hosting Solutions][69.64.32.0 - 69.64.63.255] + +0.0.0.0 tracker.databrain.com +0.0.0.0 www.iperbanner.com +0.0.0.0 ads.iwannawatch.to +# [Hostit][AS9166][212.113.80.0 - 212.113.95.255] + +0.0.0.0 abs.beweb.com +0.0.0.0 bps.beweb.com +0.0.0.0 abs.proxistore.com +0.0.0.0 bps.tesial-tech.be +# [Hostpro Hosting][AS15497][62.149.18.0 - 62.149.19.255] + +# [Host-system-net][AS43355][78.108.185.0 - 78.108.185.255] + +# [HostVentures.com][AS15189][199.85.208.0 - 199.85.215.255] + +# [Hostway / Affinity/ SouthWeb Ventures][AS32400][207.150.192.0 - 207.150.199.255] + +0.0.0.0 www.adroz.com +0.0.0.0 axsrv.com +0.0.0.0 tracker.u-link.me +# [Hostway][AS7097][216.139.208.0 - 216.139.255.255] + +0.0.0.0 hits.convergetrack.com +# [Hostway][AS20401][216.36.192.0 - 216.36.255.255] + +0.0.0.0 ads.worddictionary.co.uk +# [Hostworks][AS9667][202.58.32.0 - 202.58.63.255] + +# [HOTLOG] + +0.0.0.0 click.hotlog.ru +0.0.0.0 hit.hotlog.ru +0.0.0.0 hit1.hotlog.ru +0.0.0.0 hit3.hotlog.ru +0.0.0.0 hit6.hotlog.ru +0.0.0.0 hit7.hotlog.ru +0.0.0.0 hit9.hotlog.ru +0.0.0.0 hit13.hotlog.ru +0.0.0.0 hit14.hotlog.ru +0.0.0.0 hit15.hotlog.ru +0.0.0.0 hit16.hotlog.ru +0.0.0.0 hit17.hotlog.ru +0.0.0.0 hit18.hotlog.ru +0.0.0.0 hit19.hotlog.ru +0.0.0.0 hit20.hotlog.ru +0.0.0.0 hit21.hotlog.ru +0.0.0.0 hit22.hotlog.ru +0.0.0.0 hit23.hotlog.ru +0.0.0.0 hit24.hotlog.ru +0.0.0.0 hit25.hotlog.ru +0.0.0.0 hit26.hotlog.ru +0.0.0.0 hit27.hotlog.ru +0.0.0.0 hit28.hotlog.ru +0.0.0.0 hit29.hotlog.ru +0.0.0.0 hit30.hotlog.ru +0.0.0.0 hit40.hotlog.ru +0.0.0.0 www.hotlog.ru +# [HTTPool][AS8558][91.209.18.0 - 91.209.18.255] + +0.0.0.0 relay-ba.ads.httpool.com +0.0.0.0 relay-bg.ads.httpool.com +0.0.0.0 relay-cz.ads.httpool.com +0.0.0.0 relay-ks.ads.httpool.com +0.0.0.0 relay-mk.ads.httpool.com +0.0.0.0 relay-rs.ads.httpool.com +0.0.0.0 static.httpool.com.mk +0.0.0.0 adtier.toboads.com +0.0.0.0 relay-ba.toboads.com +0.0.0.0 relay-bg.toboads.com +0.0.0.0 relay-si.toboads.com +0.0.0.0 tas2.toboads.si +0.0.0.0 tas-ba.toboads.com +0.0.0.0 tas-bg.toboads.com +0.0.0.0 tas-cz.toboads.com +0.0.0.0 tas-hr.toboads.com +0.0.0.0 tas-ks.toboads.com +0.0.0.0 tas-mk.toboads.com +0.0.0.0 tas-rs.toboads.com +0.0.0.0 tas-si.toboads.com +# [Hungarian Telecom / Invitel][AS12301][195.184.19.0 - 195.184.19.255] + +0.0.0.0 stat.axelspringer.hu +# [Hungarian Telecom / T-online][AS12301][195.228.75.0 - 195.228.75.255] + +0.0.0.0 www.best-top.hu +# [Hungarian Telecom / T-online][217.6.164.0 - 217.6.167.255] + +0.0.0.0 bw.ads.t-online.de +0.0.0.0 data.ads.t-online.de +0.0.0.0 red.ads.t-online.de +# [Hungarian Telecom / T-online][62.153.158.0 - 62.153.159.255] + +0.0.0.0 a.ads.t-online.de +0.0.0.0 admin.ads.t-online.de +0.0.0.0 s.ads.t-online.de +# [Hungarian Telecom / T-online][80.150.6.0 - 80.150.7.255] + +0.0.0.0 homepage.t-online.de +# [Hunt Brothers / Parked.com][AS32592][69.46.224.0 - 69.46.239.255] + +0.0.0.0 www.directnicparking.com +0.0.0.0 images.parked.com +# [Hunt Brothers / Parked.com][AS32592][74.117.112.0 - 74.117.119.255] + +# [Hurricane Electric][AS6939][173.255.192.0 - 173.255.255.255] + +0.0.0.0 stats.pusher.com +# [Hurricane Electric][AS6939][184.104.0.0 - 184.105.255.255] + +# [Hurricane Electric][AS6939][198.74.48.0 - 198.74.63.255] + +0.0.0.0 revenue.com +# [Hurricane Electric / 800 Pound][216.218.206.32 - 216.218.206.63] + +0.0.0.0 ads.artsopolis.com +0.0.0.0 www.logging.to +# [Hurricane Electric][AS32911][216.66.0.0 - 216.66.95.255] + +0.0.0.0 configusa.veinteractive.com +# [Hurricane Electric][AS6939][50.116.0.0 - 50.116.63.255] + +0.0.0.0 cdn.mercent.com +# [Hurricane Electric][AS6939][64.62.128.0 - 64.62.255.255] + +0.0.0.0 ox-d.beforeitsnews.com +0.0.0.0 ad.epochtimes.com +0.0.0.0 www.e-traffic.com +0.0.0.0 www.etraffic.com +0.0.0.0 ads.footballmedia.com +# [Hurricane Electric][AS6939][64.71.142.0 - 64.71.142.127] + +0.0.0.0 o-oe.com +# [Hurricane Electric / Clickman][64.89.16.0 - 64.89.31.255] + +0.0.0.0 feeds.global-intermedia.com +0.0.0.0 error.pimproll.com +0.0.0.0 promo.pimproll.com +# [Hurricane Electric][AS6939][66.220.0.0 - 66.220.31.255] + +# [Hurricane Electric][AS6939][74.82.51.0 - 74.82.51.255] + +# [Icdsoft][AS8739][195.8.222.0 - 195.8.223.255] + +0.0.0.0 ads.burgasinfo.com +0.0.0.0 ads.manager.bg +# [ICN][AS49699][130.185.253.0 - 130.185.253.255] + +0.0.0.0 ads.sport1.bg +0.0.0.0 ads.trafficnews.bg +# [ICN][AS49699][77.77.150.87] + +0.0.0.0 ads.football24.bg +# [ICN][AS49699][91.215.216.0 - 91.215.219.255] + +0.0.0.0 bgbaner.com +0.0.0.0 www.bgbaner.com +0.0.0.0 ads.icn.bg +0.0.0.0 ads.laptop.bg +0.0.0.0 ads.mixbg.net +0.0.0.0 ads.petvet.bg +0.0.0.0 advert.technews.bg +0.0.0.0 ad.thesimplecomplex.bg +0.0.0.0 revive.vkushti.tv +# [ICN][AS49699][91.230.192.0 - 91.230.195.255] + +0.0.0.0 advertisement.bg +0.0.0.0 adverts.novatv.bg +0.0.0.0 ad.petel.bg +# [Icon Innovations][AS16617][67.211.161.42 - 67.211.161.49] + +# [IDG][AS13797][66.186.112.0 - 66.186.127.255] + +0.0.0.0 ads.idgworldexpo.com +# [Ieurop Sas Network][AS29629][82.196.5.0 - 82.196.5.255] + +# [Ih Networks][AS33494][72.34.32.0 - 72.34.63.255] + +# [IMR Worldwide][Nielsen/NetRatings] + +0.0.0.0 nt-es.imrworldwide.com +0.0.0.0 safe-es.imrworldwide.com +0.0.0.0 secure-asia.imrworldwide.com +0.0.0.0 secure-au.imrworldwide.com +0.0.0.0 secure-dk.imrworldwide.com +0.0.0.0 secure-it.imrworldwide.com +0.0.0.0 secure-sg.imrworldwide.com +# [In2net][AS26753][64.151.225.0 - 64.151.225.255] + +# [In2net / Doteasy Technology][AS26753][65.61.192.0 - 65.61.255.255] + +0.0.0.0 adserve.doteasy.com +0.0.0.0 pbg2cs01.doteasy.com +0.0.0.0 hitcounter01.xspp.com +# [Ines][AS12310][80.86.106.0 - 80.86.106.255] + +0.0.0.0 9am.count.brat-online.ro +0.0.0.0 24fun.count.brat-online.ro +0.0.0.0 onefm.count.brat-online.ro +0.0.0.0 bestjobs.count.brat-online.ro +0.0.0.0 capital.count.brat-online.ro +0.0.0.0 cotidianul.count.brat-online.ro +0.0.0.0 g-f5fun.count.brat-online.ro +0.0.0.0 g-f5news.count.brat-online.ro +0.0.0.0 g-protv.count.brat-online.ro +0.0.0.0 gsp.count.brat-online.ro +0.0.0.0 hotnews.count.brat-online.ro +0.0.0.0 profm.count.brat-online.ro +0.0.0.0 mtv.count.brat-online.ro +0.0.0.0 myvideo.count.brat-online.ro +0.0.0.0 qds.count.brat-online.ro +0.0.0.0 realitatea.count.brat-online.ro +0.0.0.0 sport.count.brat-online.ro +0.0.0.0 viva.count.brat-online.ro +0.0.0.0 wall-streetro.count.brat-online.ro +0.0.0.0 error.intuitext.ro +0.0.0.0 promo.intuitext.ro +# [Ines][AS12310][83.166.201.160 - 83.166.201.175] + +0.0.0.0 admon1.count.brat-online.ro +# [INET / Securenetz-de][212.162.12.0 - 212.162.15.255] + +0.0.0.0 link4link.com +0.0.0.0 plus.link4link.com +0.0.0.0 ad.sexcount.de +# [INET / Securenetz][212.162.52.0 - 212.162.53.255] + +0.0.0.0 www.sexcount.de +# [INET / Secure Netz][AS25074][212.162.12.0 - 212.162.15.255] + +# [INET / Fliks Gmbh][AS25074][213.203.216.0 - 213.203.216.127] + +0.0.0.0 show.communiad.com +0.0.0.0 adserver.trojaner-info.de +# [Inet][AS3313][213.92.16.0 - 213.92.19.255] + +0.0.0.0 data.kataweb.it +0.0.0.0 oasjs.kataweb.it +0.0.0.0 adagiof3.repubblica.it +# [INET][AS25074][78.138.104.0 - 78.138.119.255] + +0.0.0.0 m.exactag.com +0.0.0.0 pxc.otto.de +# [Inflow / myGeek.com][AS19292][12.47.196.39 - 12.47.196.56] + +# [Inflow / myGeek.com][66.179.234.160 - 66.179.234.191] + +0.0.0.0 banner.adtrgt.com +0.0.0.0 popunder.adtrgt.com +0.0.0.0 transition.adtrgt.com +0.0.0.0 url.adtrgt.com +# [Inflow / Coremetrics][AS19296][66.179.5.0 - 66.179.5.127] + +0.0.0.0 jsfp.coremetrics.com +0.0.0.0 test.coremetrics.com +0.0.0.0 twci.coremetrics.com +# [Inflow / myGeek.com][AS19292][66.45.56.96 - 66.45.56.127] + +0.0.0.0 redirect.ad-feeds.net +0.0.0.0 roitrack.adtrgt.com +0.0.0.0 redirect.ad-feeds.com +0.0.0.0 113693url.displayadfeed.com +0.0.0.0 redirect.xmladfeed.com +# [Inflow][AS19292][67.217.224.0 - 67.217.255.255] + +0.0.0.0 c1024.ic-live.com +0.0.0.0 c10014.ic-live.com +# [Infonline][AS43407][193.46.63.0 - 193.46.63.255] + +0.0.0.0 spiegel.met.vgwort.de +# [Infonline][AS43407][91.215.100.0 - 91.215.103.255] + +0.0.0.0 de.ioam.de +0.0.0.0 bm.met.vgwort.de +0.0.0.0 focus.met.vgwort.de +0.0.0.0 handelsblatt.met.vgwort.de +0.0.0.0 n-tv.met.vgwort.de +0.0.0.0 rp-online.met.vgwort.de +0.0.0.0 sz.met.vgwort.de +0.0.0.0 zeit.met.vgwort.de +# [Infolink / Serverpronto][AS15083][ - 64.251.25.182] + +0.0.0.0 static.dynad.net +# [Infolink / Serverpronto][AS15083][69.60.114.0 - 69.60.125.255] + +0.0.0.0 www.freestats.tv +# [Info-media][AS3.196][91.213.29.0 - 91.213.29.255] + +# [InfoSpace][AS22293][67.63.48.0 - 67.63.63.255] + +0.0.0.0 om.metacrawler.com +0.0.0.0 om.webcrawler.com +# [Intelenet][AS5693][207.38.96.0 - 207.38.127.255] + +0.0.0.0 dp.specificclick.net +0.0.0.0 smp.specificmedia.com +0.0.0.0 specificmedia.com +0.0.0.0 www.specificmedia.com +# [Intelenet][AS5693][216.23.160.0 - 216.23.191.255] + +0.0.0.0 clients.bluecava.com +# [InterActiveCorp / Focus Interactive] + +0.0.0.0 c4.iwon.com +0.0.0.0 cc.iwon.com +0.0.0.0 docs1.iwon.com +0.0.0.0 my.iwon.com +0.0.0.0 plus.iwon.com +0.0.0.0 prizemachine.games.iwon.com +0.0.0.0 search.iwon.com +0.0.0.0 searchassistant.iwon.com +0.0.0.0 www1.iwon.com +# [IAC Search Media][AS16798][66.235.112.0 - 66.235.127.255] + +0.0.0.0 utm.cursormania.com +0.0.0.0 utm.trk.cursormania.com +0.0.0.0 utm.excite.co.uk +0.0.0.0 utm.trk.excite.com +0.0.0.0 utm.excite.it +0.0.0.0 utm.myfuncards.com +0.0.0.0 utm.trk.myfuncards.com +0.0.0.0 utm.popswatter.com +0.0.0.0 utm.trk.popswatter.com +0.0.0.0 utm.smileycentral.com +0.0.0.0 utm2.smileycentral.com +0.0.0.0 utm.trk.smileycentral.com +0.0.0.0 utmtrk2.smileycentral.com +0.0.0.0 utm.webfetti.com +0.0.0.0 utm.trk.webfetti.com +0.0.0.0 utm.zwinky.com +0.0.0.0 utm.trk.zwinky.com +0.0.0.0 www.funbuddyicons.com +# 0.0.0.0 wzus1.reference.com #[affects Dictonary.com] + +# [InterConnect / Viper][AS9150][213.207.92.0 - 213.207.97.255] + +0.0.0.0 www.erodynamics.nl +0.0.0.0 ads.happyidiots.nl +# [Interdata][AS42657][193.105.146.0 - 193.105.146.255] + +0.0.0.0 ads3.ipon.lt +0.0.0.0 v2.ads3.ipon.lt +0.0.0.0 sa1.ipon.lt +0.0.0.0 sa2.ipon.lt +# [Interdata][AS42657][193.200.124.0 - 193.200.125.255] + +0.0.0.0 keytarget.adnet.lt +# [Interforum][AS47867][91.212.132.0 - 91.212.132.255] + +# [Interland / Web.com][AS36476][209.237.128.0 - 209.237.191.255] + +# [Internap][AS12180][199.34.124.96 - 199.34.124.103] + +0.0.0.0 keisu02.eproof.com +# [Internap / Customer Acquisition][AS12180][216.52.167.64 - 216.52.167.95] + +0.0.0.0 control.adap.tv +# [Internap][AS10912][216.52.234.128 - 216.52.234.255] + +0.0.0.0 elv3-tslogging.touchcommerce.com +# [Internap][AS10913][23.92.176.0 - 23.92.191.255] + +0.0.0.0 s-adserver.cxad.cxense.com +# [Internap][AS13789][63.251.0.0 - 63.251.255.255] + +0.0.0.0 ad.batanga.net +0.0.0.0 tracking.batanga.com +0.0.0.0 tracking.batanga.net +0.0.0.0 horizon.mashable.com +0.0.0.0 s.webtrends.com +# [Internap / Gomez][AS14742][63.251.134.0 - 63.251.134.255] + +0.0.0.0 0532a9.r.axf8.net +0.0.0.0 064bdf.r.axf8.net +0.0.0.0 0d7292.r.axf8.net +0.0.0.0 0f36f3.r.axf8.net +0.0.0.0 1bb261.r.axf8.net +0.0.0.0 247590.r.axf8.net +0.0.0.0 276bf6.r.axf8.net +0.0.0.0 332645.r.axf8.net +0.0.0.0 3bb4f0.r.axf8.net +0.0.0.0 51af72.r.axf8.net +0.0.0.0 5b008e.r.axf8.net +0.0.0.0 5ebec5.r.axf8.net +0.0.0.0 72d329.r.axf8.net +0.0.0.0 8b3439.r.axf8.net +0.0.0.0 8cb8a3.r.axf8.net +0.0.0.0 8d6274.r.axf8.net +0.0.0.0 8d6274.t.axf8.net +0.0.0.0 9dacbd.r.axf8.net +0.0.0.0 9d060c.r.axf8.net +0.0.0.0 994119.r.axf8.net +0.0.0.0 1018d7.r.axf8.net +0.0.0.0 ab44aa.r.axf8.net +0.0.0.0 ac9d98.r.axf8.net +0.0.0.0 b3a70b.t.axf8.net +0.0.0.0 b5057c.r.axf8.net +0.0.0.0 c2c738.r.axf8.net +0.0.0.0 caea4e.r.axf8.net +0.0.0.0 caea4e.t.axf8.net +0.0.0.0 c6530e.r.axf8.net +0.0.0.0 d077aa.r.axf8.net +0.0.0.0 d3fd89.r.axf8.net +0.0.0.0 d9d0e0.r.axf8.net +0.0.0.0 e3f364.r.axf8.net +0.0.0.0 fdff44.r.axf8.net +0.0.0.0 fdff44.t.axf8.net +# [Internap / ClickSpring][AS14742][63.251.135.0 - 63.251.135.63] + +# [Internap][AS12180][64.187.110.8 - 64.187.110.15] + +# [Internap][AS12182][64.7.192.0 - 64.7.223.255] + +# [Internap][AS10912][64.74.0.0 - 64.74.255.255] + +0.0.0.0 pixel.admedia.com +# [Internap / Sk Intertainment][AS19024][64.74.108.64 - 64.74.108.127] + +0.0.0.0 ads.mrskin.com +# [Internap][AS14742][64.94.0.0 - 64.95.255.255] + +0.0.0.0 p.chango.com +0.0.0.0 bannerads.mantecabulletin.com +# [Internap / Namemedia][AS14742][64.95.64.0 - 64.95.64.255] + +0.0.0.0 adserver.sitesense.com +# [Internap][AS10913][66.150.0.0 - 66.151.255.255] + +0.0.0.0 ebdr2.com +0.0.0.0 p.ebdr2.com +0.0.0.0 cdn.visiblemeasures.com +# [Internap / Webhosting][AS12180][67.215.160.0 - 67.215.191.255] + +# [Internap / VPP Technologies][AS19024][69.25.152.0 - 69.25.152.255] + +# [Internap / IntegraClick][AS19024][69.25.190.0 - 69.25.190.255] + +0.0.0.0 www.clickboothlnk.com +# [Internap / Visible Measures][AS14742][69.25.201.0 - 69.25.201.127] + +# [Internap / Rich Relevance][AS10913][69.25.31.240 - 69.25.31.255] + +0.0.0.0 recs.richrelevance.com +# [Internap / Adap.tv][AS12182][69.25.60.128 - 69.25.60.255] + +# [Internap / Trueffect][AS14745][69.25.86.0 - 69.25.86.31] + +0.0.0.0 log.adap.tv +0.0.0.0 qlog.adap.tv +0.0.0.0 media.adlegend.com +# [Internap][AS14743][70.42.0.0 - 70.42.255.255] + +0.0.0.0 b.admedia.com +0.0.0.0 footerroll.admedia.com +0.0.0.0 g.admedia.com +0.0.0.0 inline.admedia.com +0.0.0.0 m.admedia.com +0.0.0.0 v.admedia.com +0.0.0.0 vslider.admedia.com +0.0.0.0 pixel.adadvisor.net +0.0.0.0 www.adadvisor.net +0.0.0.0 click.cheapstuff.com +0.0.0.0 delivery.first-impression.com +0.0.0.0 sftrack.searchforce.net +0.0.0.0 click.top10sites.com +0.0.0.0 usadserver.com +0.0.0.0 www.usadserver.com +0.0.0.0 analytics.vast.com +# [Internap / Howstuffworks][AS10913][70.42.150.0 - 70.42.150.255] + +# [Internap / Turn][AS12182][70.42.138.0 - 70.42.138.255] + +# [Internap][AS19024][72.44.88.83] + +0.0.0.0 adsharenetwork.com +# [Internap / Gwallet][AS12182]AS14745[72.5.64.0 - 72.5.92.127] + +0.0.0.0 rs.gwallet.com +0.0.0.0 www.ojrq.net +# [Internap / Atrinsic][AS14743][72.5.175.0 - 72.5.175.63] + +# [Internap / Adify][AS12182][74.201.118.0 - 74.201.118.255] + +0.0.0.0 feed.afy11.net +# [Internap / Outbrain][AS13789][74.201.198.64 - 74.201.198.95] + +0.0.0.0 hpr.outbrain.com +0.0.0.0 log.outbrain.com +# [Internap / Gather][AS12182][74.201.33.0 - 74.201.33.255] + +0.0.0.0 tracking.skyword.com +# [Internap / Adap.tv][AS12182][74.201.86.224 - 74.201.86.255] + +# [Internap][AS19024][74.217.0.0 - 74.217.255.255] + +0.0.0.0 media1.ancestry.com +0.0.0.0 media.gsimedia.net +0.0.0.0 jsl.revsci.net +0.0.0.0 revsci.tvguide.com +# [Internap / Adify][74.217.212.0 - 74.217.212.255] + +0.0.0.0 beacon.afy11.net +# [Internap / Jolokia][74.217.67.0 - 74.217.67.255] + +0.0.0.0 ads.yankscash.com +# [Internap][AS13789][75.98.0.0 - 75.98.95.255] + +0.0.0.0 ads.healthline.com +0.0.0.0 a.rfihub.com +0.0.0.0 ads.p.veruta.com +# [Internap][AS48910][95.172.69.0 - 95.172.69.63] + +0.0.0.0 pq-direct.revsci.net +# [Internet4you][AS29014][93.92.128.0 - 93.92.135.255] + +0.0.0.0 containertags.belboon.de +# [Internet Billboard][AS5588][194.213.62.32 - 194.213.62.47] + +0.0.0.0 go.goldbachpoland.bbelements.com +# [Internet Billboard][AS2819][62.168.44.112 - 62.168.44.127] + +0.0.0.0 bbcdn.go.adevolution.bbelements.com +0.0.0.0 go.adevolution.bbelements.com +0.0.0.0 bbcdn.go.adlv.bbelements.com +0.0.0.0 bbcdn.go.evolutionmedia.bbelements.com +0.0.0.0 bbcdn.go.idmnet.bbelements.com +0.0.0.0 go.gba.bbelements.com +# [Internet Billboard][AS2819][62.209.227.208 - 62.209.227.223] + +# [Internet Initiative Japan][AS2497][58.138.128.0 - 58.138.191.255] + +0.0.0.0 as.yl.impact-ad.jp +# [Internet Media][AS12008][204.69.234.0 - 204.69.234.255] + +0.0.0.0 cdn.brsrvr.com +# [Internet Media][AS12008][204.74.64.0 - 204.74.127.255] + +# [Interserver][AS19318][209.159.144.0 - 209.159.159.255] + +0.0.0.0 launch.zugo.com +# [Interserver][AS19318][64.20.32.0 - 64.20.63.255] + +0.0.0.0 gamersad.com +0.0.0.0 i.zugo.com +0.0.0.0 zoek.zugo.com +0.0.0.0 www.zugo.com +# [Interserver][66.45.224.0 - 66.45.255.255] + +0.0.0.0 rotor6.newzfind.com +0.0.0.0 sutra.newzfind.com +0.0.0.0 outwar.com +0.0.0.0 fabar.outwar.com +0.0.0.0 sigil.outwar.com +0.0.0.0 torax.outwar.com +0.0.0.0 www.outwar.com +0.0.0.0 ads.rampidads.com +0.0.0.0 main.rampidads.com +0.0.0.0 www.rampidads.com +0.0.0.0 track.zugo.com +# [Interserver][AS19318][69.10.32.0 - 69.10.63.255] + +0.0.0.0 www.classifieds1000.com +0.0.0.0 ads.meredithads.com +# [InterWeb Media][AS21793][76.76.96.0 - 76.76.127.255] + +# [InterWebvertising][AS9150][213.206.254.64 - 213.206.254.127] + +0.0.0.0 ads.ero-advertising.com +0.0.0.0 api.ero-advertising.com +0.0.0.0 apo.ero-advertising.com +0.0.0.0 banners.ero-advertising.com +0.0.0.0 invideo.ero-advertising.com +0.0.0.0 layerads.ero-advertising.com +0.0.0.0 redirects.ero-advertising.com +0.0.0.0 thumbs.ero-advertising.com +# [Iomart][AS20860][95.154.251.0 - 95.154.251.255] + +0.0.0.0 delivery.platform.switchads.com +0.0.0.0 delivery.a.switchadhub.com +0.0.0.0 delivery.d.switchadhub.com +0.0.0.0 delivery.e.switchadhub.com +0.0.0.0 delivery.g.switchadhub.com +# [IP Exchange / Udusegbe][AS15598][62.146.117.0 - 62.146.117.127] + +0.0.0.0 adc-serv.net +0.0.0.0 ad.adc-serv.net +0.0.0.0 r.adc-serv.net +0.0.0.0 ad.adserver01.de +0.0.0.0 r.adserver01.de +# [IP Exchange / Bigpoint-net][AS15598][62.146.190.0 - 62.146.191.255] + +# [IP Exchange / Leo Gmbh][AS15598][62.146.26.32 - 62.146.26.63] + +0.0.0.0 advert.leo.org +# [IP Exchange / Pepper Media][AS15598][62.146.88.96 - 62.146.88.127] + +0.0.0.0 www.webstats4u.com +# [IP Exchange / Webtrekk][AS15598][80.190.151.0 - 80.190.151.127] + +0.0.0.0 adx.chip.de +0.0.0.0 douglas01.webtrekk.net +0.0.0.0 handelsblatt01.webtrekk.net +0.0.0.0 jade01.webtrekk.net +0.0.0.0 lastampa01.webtrekk.net +0.0.0.0 prosieben01.webtrekk.net +0.0.0.0 sapato01.webtrekk.net +0.0.0.0 sofa01.webtrekk.net +0.0.0.0 tiscaliadv01.webtrekk.net +0.0.0.0 track.webtrekk.de +0.0.0.0 trendmicroeuropa01.webtrekk.net +0.0.0.0 triboo01.webtrekk.net +0.0.0.0 vnumedia01.webtrekk.net +0.0.0.0 weltonline01.webtrekk.net +0.0.0.0 zeit01.webtrekk.net +# [Ipx Server][AS24900][80.190.246.0 - 80.190.246.255] + +0.0.0.0 www.counti.de +0.0.0.0 statistiq.com +0.0.0.0 www.topsites24.de +0.0.0.0 ads.webtools24.net +0.0.0.0 banner.webtools24.net +# [Ironpath Networks][AS36217][67.209.176.0 - 67.209.191.255] + +# [ISP UATelecom][AS44997][91.203.92.0 - 91.203.95.255] + +# [Isprime][AS23393][104.37.176.0 - 104.37.183.255] + +0.0.0.0 ads.exdynsrv.com +# [Isprime][AS23393][64.111.192.0 - 64.111.223.255] + +0.0.0.0 www.gbcash.com +0.0.0.0 syndication.jsadapi.com +0.0.0.0 peakclick.com +0.0.0.0 feed.peakclick.com +0.0.0.0 www.peakclick.com +0.0.0.0 www.stats.net +0.0.0.0 t2lgo.com +# [Isprime][AS23393][64.188.48.0 - 64.188.63.255] + +0.0.0.0 g.promosrv.com +0.0.0.0 www.singlesadnetwork.com +0.0.0.0 vom.sitescout.com +0.0.0.0 wam-ads.sitescout.com +0.0.0.0 monk.sitescoutadserver.com +# [Isprime][66.230.128.0 - 66.230.191.255] + +0.0.0.0 www.ads180.com +0.0.0.0 www.exitmoney.com +0.0.0.0 track.oainternetservices.com +0.0.0.0 clicks2.oxcash.com +0.0.0.0 popup.oxcash.com +0.0.0.0 track.oxcash.com +0.0.0.0 exit.oxcash2.com +0.0.0.0 realbannerads.com +0.0.0.0 www.realtextads.com +0.0.0.0 banners.thiswillshockyou.com +# [ISPrime / Reality Check][64.111.206.0 - 64.111.208.255] + +# [ISPrime / Reality Check][64.111.216.0 - 64.111.217.255] + +0.0.0.0 banners.amfibi.com +# [ISPrime / Reality Check][AS23393][66.230.161.0 - 66.230.161.255] + +# [ISPrime][68.169.64.0 - 68.169.95.255] + +0.0.0.0 adsgen.bangbros.com +0.0.0.0 adsrv.bangbros.com +0.0.0.0 tck.bangbros.com +0.0.0.0 www.fuckbookdating.com +0.0.0.0 webmasters.h2porn.com +0.0.0.0 ads.nudereviews.com +0.0.0.0 www.oainternet.com +0.0.0.0 stepnation.com +0.0.0.0 images.ads.whaleads.com +# [ISPrime / Reality Check][AS46652][141.0.172.0 - 141.0.175.255] + +0.0.0.0 banners.advidi.com +0.0.0.0 20996-1061.link.iwanttodeliver.com +0.0.0.0 243029-18685.link.iwanttodeliver.com +0.0.0.0 244657-12903.link.iwanttodeliver.com +0.0.0.0 38707-223419.link.iwanttodeliver.com +0.0.0.0 4902-145639.link.iwanttodeliver.com +0.0.0.0 www.loading-delivery1.com +0.0.0.0 www.loading-delivery2.com +0.0.0.0 banners.meccahoo.com +0.0.0.0 banners.swingers-match.com +0.0.0.0 www.targetingnow.com +# [ISPrime / Reality Check / Serverstack][AS23393][AS46652][69.55.48.0 - 69.55.63.255] + +0.0.0.0 banners.askmecca.com +0.0.0.0 avenfeld.com +0.0.0.0 d.plugrush.com +0.0.0.0 mobile.plugrush.com +0.0.0.0 w.plugrush.com +0.0.0.0 widget.supercounters.com +# [Isprime][76.9.0.0 - 76.9.31.255] + +0.0.0.0 vip.adstatic.com +0.0.0.0 corporate.crakmedia.com +0.0.0.0 www.crakmedia.com +0.0.0.0 ftvcash.com +0.0.0.0 404.fuckyoucash.com +0.0.0.0 bloggers.fuckyoucash.com +0.0.0.0 internal.fuckyoucash.com +0.0.0.0 affiliates.lifeselector.com +0.0.0.0 media.lead.program3.com +0.0.0.0 www.program3.com +0.0.0.0 moo.sitescout.com +0.0.0.0 ads2.vasmg.com +# [Ispsystem][AS29182][188.120.232.0 - 188.120.239.255] + +# [Ispsystem][AS29182][37.230.114.0 - 37.230.115.255] + +0.0.0.0 flash4promo.ru +# [Ispsystem At Nac][AS8001][66.228.32.0 - 66.228.63.255] + +0.0.0.0 dev.visualwebsiteoptimizer.com +# [ISWest / Trade News][AS5033][207.178.151.0 - 207.178.151.255] + +0.0.0.0 actvtrack.com +0.0.0.0 coolwebstats.com +0.0.0.0 www.coolwebstats.com +0.0.0.0 flashmediaportal.com +0.0.0.0 flttracksecure.com +0.0.0.0 ads.ibtracking.com +0.0.0.0 sascentral.com +# [It S Ltd][AS48772][195.88.32.0 - 195.88.33.255] + +# [Iweb Technologies][AS32613][174.142.0.0 - 174.142.255.255] + +0.0.0.0 community.adlandpro.com +0.0.0.0 ads.affbuzzads.com +0.0.0.0 www.affbuzzads.com +0.0.0.0 www.yourdedicatedhost.com +# [Iweb][AS32613][184.107.0.0 - 184.107.255.255] + +# [Iweb Technologies][AS32613][198.72.96.0 - 198.72.127.255] + +# [Iweb / Innovastreams][209.172.45.0 - 209.172.45.255] + +0.0.0.0 ads.iawsnetwork.com +0.0.0.0 oreo.iawsnetwork.com +# [iWeb Dedicated HD][209.172.51.96 - 209.172.51.127] + +# [iWeb Dedicated HD][64.15.136.96 - 64.15.136.127] + +0.0.0.0 stats.parstools.com +# [Iweb Dedicated Cl][AS32613][67.205.64.0 - 67.205.127.255] + +# [Iweb Technologies][67.205.101.32 - 67.205.75.15] + +0.0.0.0 revotrack.revotas.com +# [Iweb][70.38.0.0 - 70.38.127.255] + +0.0.0.0 ads2.iweb.cortica.com +0.0.0.0 adserver-static1.iweb.cortica.com +0.0.0.0 ads.mondogames.com +# [iWeb Dedicated CL2][70.38.78.96 - 70.38.78.127] + +0.0.0.0 bannerco-op.com +# [Iweb Dedicated][209.172.32.0 - 209.172.63.255] + +# [Iweb Dedicated][72.55.128.0 - 72.55.191.255] + +0.0.0.0 www.bannersgomlm.com +0.0.0.0 ads.cinemaden.com +# [Iweb Dedicated Cl][AS32613][72.55.153.128 - 72.55.153.159] + +# [Iweb Dedicated Cl][AS32613][72.55.165.64 - 72.55.165.95] + +0.0.0.0 www.freestat.ws +0.0.0.0 www.hiperstat.com +0.0.0.0 www.specialstat.com +# [Iweb Dedicated Cl][72.55.174.192 - 72.55.174.223] + +# [Iweb / Panelbox][72.55.186.0 - 72.55.187.255] + +# [Jasmin Media Group][AS34655][80.77.113.0 - 80.77.113.255] + +0.0.0.0 counter.awempire.com +0.0.0.0 counter.jasmin.hu +# [Jasmin Media Group / Lalib Lda][AS34655][93.93.53.0 - 93.93.53.255] + +# [Joint Multimedia / Isp Imc][AS34187][195.245.118.0 - 195.245.119.255] + +# [Joint Multimedia][AS34187][78.26.161.0 - 78.26.191.255] + +# [Junik][AS8206][213.182.197.0 - 213.182.197.15] + +# [Jupiter Hosting / ICS Entertainment][AS29814][64.255.160.0 - 64.255.191.255] + +0.0.0.0 ads.gofuckyourself.com +# [Keyweb Ag][AS31103][217.114.208.0 - 217.114.208.255] + +0.0.0.0 static.unister-adservices.com +# [Keyweb Ag][AS31103][84.19.176.0 - 84.19.191.255] + +# [Keyweb Ag][87.118.82.0 - 87.118.95.255] + +0.0.0.0 exchangecash.de +# [Keyweb Ag][87.118.96.0 - 87.118.127.255] + +0.0.0.0 pr-cy.ru +# [Keyweb][95.169.186.0 - 95.169.187.255] + +0.0.0.0 s1.rotaban.ru +# [Korea Telecom][218.144.0.0 - 218.159.255.255] + +0.0.0.0 cad.chosun.com +0.0.0.0 hitlog2.chosun.com +0.0.0.0 counter.joins.com +0.0.0.0 adplus.yonhapnews.co.kr +# [Korea Telecom][222.96.0.0 - 222.122.255.255] + +# [Kvantel][AS41572][77.88.106.96 - 77.88.106.127] + +0.0.0.0 allerinternett.tns-cs.net +0.0.0.0 amedia.tns-cs.net +0.0.0.0 api.tns-cs.net +0.0.0.0 e24dp.tns-cs.net +0.0.0.0 eddamedia.tns-cs.net +0.0.0.0 eniro.tns-cs.net +0.0.0.0 hmortensen.tns-cs.net +0.0.0.0 idg.tns-cs.net +0.0.0.0 med-tek.tns-cs.net +0.0.0.0 na.tns-cs.net +0.0.0.0 mno.tns-cs.net +0.0.0.0 mtg.tns-cs.net +0.0.0.0 nrk.tns-cs.net +0.0.0.0 polaris.tns-cs.net +0.0.0.0 test.tns-cs.net +0.0.0.0 tunmedia.tns-cs.net +0.0.0.0 vg.tns-cs.net +# [LambdaNet / Ipilum.com][AS13237][80.86.167.128 - 80.86.167.255] + +# [Layer42.net][AS8121][64.13.128.0 - 64.13.191.255] + +# 0.0.0.0 www.luminate.com #[affects login] + +# [Layer42.net][AS8121][69.36.224.0 - 69.36.255.255] + +# [Layered Technologies][AS22576][72.232.0.0 - 72.233.127.255] + +0.0.0.0 openx.4shared.com +0.0.0.0 www.fastusersonline.com +0.0.0.0 adsnew.gsmarena.com +0.0.0.0 pingomatic.com +0.0.0.0 ads.phonearena.com +0.0.0.0 bannerexchange.troglod.com +0.0.0.0 www.usersonlinecounter.com +0.0.0.0 botd2.wordpress.com +0.0.0.0 xxx-r.com +# [Layered Technologies][AS3561][72.36.128.0 - 72.36.255.255] + +# [Layered Technologies][74.200.192.0 - 74.200.255.255] + +0.0.0.0 pagerank.scambiositi.com +0.0.0.0 www.statsforever.com +0.0.0.0 www.widebanner.com +# [Leaseweb][AS30633][108.59.0.0 - 108.59.15.255] + +0.0.0.0 reactads.engine.adglare.net +0.0.0.0 p491.atemda.com +# [Leaseweb][AS16265][109.237.208.0 - 109.237.219.255] + +0.0.0.0 feeds.wise-click.com +# [Leaseweb][AS16265][109.69.56.0 - 109.69.59.255] + +0.0.0.0 tgptraffic.biz +# [Leaseweb][AS28753][178.162.137.96 - 178.162.137.223] + +# [Leaseweb][AS16265][188.72.204.0 - 188.72.204.255] + +# [Leaseweb][AS16265][195.200.82.0 - 195.200.83.255] + +# [Leaseweb][AS30633][198.7.56.0 - 198.7.63.255] + +# [Leaseweb][AS30633][199.58.84.0 - 199.58.87.255] + +# [Leaseweb][AS30633][207.244.64.0 - 207.244.127.255] + +0.0.0.0 static.hotjar.com +# [Leaseweb][AS7203][209.58.128.0 - 209.58.143.255] + +0.0.0.0 utraffic.engine.adglare.net +# [Leaseweb][AS28753][212.95.32.0 - 212.95.63.255] + +0.0.0.0 ads.directcorp.de +0.0.0.0 adserver.directcorp.de +# [Leaseweb][AS28753][217.19.1.0 - 217.20.112.255] + +0.0.0.0 exit-ad.de +0.0.0.0 www.exit-ad.de +0.0.0.0 www.little-help.com +# [Leaseweb][AS28753][37.1.216.0 - 37.1.223.255] + +# [Leaseweb][AS60781][37.48.64.0 - 37.48.120.255] + +0.0.0.0 promo-m.bongacash.com +0.0.0.0 smartxads.com +# [Leaseweb][AS16265][46.165.240.0 - 46.165.247.255] + +# [Leaseweb][AS16265][46.243.0.0 - 46.243.7.255] + +0.0.0.0 www.awmads.com +0.0.0.0 vktr073.net +# [Leaseweb][AS16265][5.61.32.0 - 5.61.47.255] + +0.0.0.0 assculo.com +# [Leaseweb][AS16265][5.79.64.0 - 5.79.127.255] + +0.0.0.0 adservone.com +# [Leaseweb][AS16265][62.212.66.0 - 62.212.84.255] + +0.0.0.0 ads.adhood.com +0.0.0.0 www.ad-skills.nl +0.0.0.0 www.hubtraffic.com +# [Leaseweb][82.192.69.0 - 82.192.88.127] + +0.0.0.0 zhirok.com +# [Leaseweb][83.149.105.0 - 83.149.105.255] + +# [Leaseweb][83.149.110.0 - 83.149.110.255] + +# [Leaseweb][83.149.112.0 - 83.149.125.191] + +0.0.0.0 promo.bongacash.com +# [Leaseweb][83.149.85.0 - 83.149.85.255] + +# [Leaseweb][83.149.87.128 - 83.149.87.255] + +# [Leaseweb][AS28753][84.16.226.0 - 84.16.226.255] + +# [Leaseweb][AS16265][85.17.111.0 - 85.17.94.255] + +0.0.0.0 3animalsex.com +0.0.0.0 www.3animalsex.com +0.0.0.0 www.adcode.ws +0.0.0.0 adv.adultpartnership.com +0.0.0.0 counter.cam-content.com +0.0.0.0 piwik.cam-content.com +0.0.0.0 www.crackserver.com +0.0.0.0 ads2.ero-advertising.com +0.0.0.0 askjolene.ero-advertising.com +0.0.0.0 banners2.ero-advertising.com +0.0.0.0 imads.ero-advertising.com +0.0.0.0 js.ero-advertising.com +0.0.0.0 popads.ero-advertising.com +0.0.0.0 tracker.ero-advertising.com +0.0.0.0 adman.kathimerini.gr +0.0.0.0 www.promotion-campaigns.com +0.0.0.0 ads.rude.com +0.0.0.0 banners.rude.com +0.0.0.0 banners.content.rude.com +0.0.0.0 stat-tracker.net +0.0.0.0 uberads.net +0.0.0.0 ad.velmedia.net +0.0.0.0 www.velmedia.net +# [Leaseweb][Euronoc Networks][85.17.161.0 - 85.17.161.255] + +0.0.0.0 artwork.aim4media.com +0.0.0.0 www.aim4media.com +0.0.0.0 www.popupmoney.com +# [Leaseweb][AS16265][88.208.52.0 - 88.208.57.255] + +0.0.0.0 n.adonweb.ru +0.0.0.0 pc.adonweb.ru +0.0.0.0 wu.adonweb.ru +0.0.0.0 n.pcads.ru +# [Leaseweb][AS28753][89.149.194.0 - 89.149.255.255] + +0.0.0.0 www.ipcounter.de +0.0.0.0 counter.xeanon.com +# [Leaseweb / Kolido.net][91.184.48.0 - 91.184.55.191] + +# [Leaseweb][91.191.160.0 - 91.191.167.255] + +# [Leaseweb][94.75.198.0 - 94.75.198.255] + +# [Leaseweb][94.75.216.0 - 94.75.235.255] + +# [Nl-leaseweb][94.75.192.0 - 94.75.255.255] + +0.0.0.0 www.adhood.com +0.0.0.0 amateurdevils.com +0.0.0.0 webdata.vidz.com +# [Leaseweb][95.168.163.0 - 95.168.191.255] + +# [Leaseweb][AS16265][AS60781][95.211.0.0 - 95.211.255.255] + +0.0.0.0 ads.ad4max.com +0.0.0.0 static.adman.gr +0.0.0.0 ads.adone.com +0.0.0.0 cache.ad-serverparc.nl +0.0.0.0 cluster.ad-serverparc.nl +0.0.0.0 clickbux.ru +0.0.0.0 adserve.donanimhaber.com +0.0.0.0 ads.discreetad.com +0.0.0.0 pops.ero-advertising.com +0.0.0.0 a.heavy-r.com +0.0.0.0 openx.iamexpat.nl +0.0.0.0 itmcash.com +0.0.0.0 ads.itmcash.com +0.0.0.0 s6.lebenna.com +0.0.0.0 wwa.pacific-yield.com +0.0.0.0 adv.rockstar.bg +0.0.0.0 webmasters.videarn.com +0.0.0.0 ad.wingads.com +# [Legendum LLC][Tracking Service] + +0.0.0.0 db0.net-filter.com +0.0.0.0 db2.net-filter.com +0.0.0.0 db3.net-filter.com +0.0.0.0 db5.net-filter.com +0.0.0.0 db6.net-filter.com +0.0.0.0 db7.net-filter.com +0.0.0.0 sitestats.com +0.0.0.0 db0.sitestats.com +0.0.0.0 db1.sitestats.com +0.0.0.0 db2.sitestats.com +0.0.0.0 db3.sitestats.com +0.0.0.0 db4.sitestats.com +0.0.0.0 db5.sitestats.com +0.0.0.0 db6.sitestats.com +0.0.0.0 db7.sitestats.com +0.0.0.0 www.sitestats.com +# [Level3 / Lee][AS3356][192.104.182.0 - 192.104.231.255] + +0.0.0.0 stats-newyork1.bloxcms.com +# [Level3][AS3356][198.76.0.0 - 198.79.255.255] + +# [Level3][AS3356][199.92.0.0 - 199.95.255.255] + +0.0.0.0 sscdn.banners.advidi.com +# [Level3][AS3356][205.128.0.0 - 205.131.255.255] + +0.0.0.0 promo.lifeselector.com +# [Level3][AS3356][207.120.0.0 - 207.123.255.255] + +# [Level3 / InsightExpress][AS3356][209.244.0.0 - 209.247.255.255] + +0.0.0.0 ad.insightexpress.com +0.0.0.0 invite.insightexpress.com +0.0.0.0 www.insightexpress.com +0.0.0.0 icompass.insightexpressai.com +0.0.0.0 rb.insightexpressai.com +0.0.0.0 insightexpresserdd.com +# [Level3][AS3356][209.41.64.0 - 209.41.95.255] + +# [Level3][AS26667][213.19.162.0 - 213.19.162.255] + +0.0.0.0 pixel-eu.rubiconproject.com +# [Level3 / eXTReMe][AS3356][213.244.183.192 - 213.244.183.223] + +# [Level3][4.0.0.0 - 4.255.255.255] + +0.0.0.0 level3.applifier.com +0.0.0.0 ads-v-darwin.hulu.com +0.0.0.0 nbc.interpolls.com +0.0.0.0 pollserver.interpolls.com +0.0.0.0 ps2.interpolls.com +0.0.0.0 ps.interpolls.com +0.0.0.0 sw.interpolls.com +0.0.0.0 wb.interpolls.com +0.0.0.0 cdn.program3.com +0.0.0.0 m.sancdn.net +0.0.0.0 udm.ri1.scorecardresearch.com +0.0.0.0 udm.ri2.scorecardresearch.com +0.0.0.0 udm.ri3.scorecardresearch.com +0.0.0.0 udm.ri4.scorecardresearch.com +0.0.0.0 udm.ri5.scorecardresearch.com +0.0.0.0 udm.ri6.scorecardresearch.com +0.0.0.0 udm.ri7.scorecardresearch.com +0.0.0.0 udm.ri8.scorecardresearch.com +0.0.0.0 udm.ri9.scorecardresearch.com +# [Level3][62.140.0.0 - 62.140.31.255] + +0.0.0.0 cv.apprupt.com +# [Level3][63.208.0.0 - 63.215.255.255] + +0.0.0.0 www.clickmanage.com +# [Level3][64.152.0.0 - 64.159.255.255] + +# [Level3 / Internext Media][67.29.139.128 - 67.29.139.255] + +0.0.0.0 www.abcjmp.com +0.0.0.0 3151.77152.blueseek.com +0.0.0.0 4802.170.blueseek.com +0.0.0.0 5740.4785.blueseek.com +0.0.0.0 5882.1158.blueseek.com +0.0.0.0 5990.findit.blueseek.com +0.0.0.0 7457.accessaw.blueseek.com +0.0.0.0 7457.pownit.blueseek.com +0.0.0.0 7979.nosubid.blueseek.com +0.0.0.0 itc.2081.blueseek.com +0.0.0.0 itcg3.c5369.blueseek.com +0.0.0.0 2183.jsjmlejl.clickshield.net +0.0.0.0 redirect.clickshield.net +0.0.0.0 whatseek.com +# [Level 3 / Extra Security][AS12129][67.29.152.0 - 67.29.155.255] + +# [Level 3][AS3356][67.72.0.0 - 67.75.255.255] + +0.0.0.0 ads.empoweringmedia.net +# [Level3][AS3356][AS26667][AS11946][8.0.0.0 - 8.255.255.255] + +0.0.0.0 tag.1rx.io +0.0.0.0 cdn.adstatic.com +0.0.0.0 exityield.advertise.com +0.0.0.0 network.advertise.com +0.0.0.0 www.advertise.com +0.0.0.0 d.aggregateknowledge.com +0.0.0.0 cdn.alleliteads.com +0.0.0.0 adbcache.brandreachsys.com +0.0.0.0 cdn1.ads.brazzers.com +0.0.0.0 i.cdnpark.com +0.0.0.0 connect5364.com +0.0.0.0 ads.cracked.com +0.0.0.0 track.cracked.com +0.0.0.0 ping.crowdscience.com +0.0.0.0 adsvr.deviantart.com +0.0.0.0 ads.exoclick.com +0.0.0.0 msnads-wm9.fplive.net +0.0.0.0 cdntest.gand.de +0.0.0.0 ips-invite.iperceptions.com +0.0.0.0 img.metaffiliation.com +0.0.0.0 a.global.msads.net +0.0.0.0 global.msads.net +0.0.0.0 cdn.promo.pimproll.com +0.0.0.0 cdn.g.promosrv.com +0.0.0.0 cdn.redlightcenter.com +0.0.0.0 http100.content.ru4.com +0.0.0.0 http.content.ru4.com +0.0.0.0 bcbb.rubiconproject.com +0.0.0.0 beacon-us-iad2.rubiconproject.com +0.0.0.0 fastlane.rubiconproject.com +0.0.0.0 banners.securedataimages.com +0.0.0.0 e.sexad.net +0.0.0.0 pod.sexsearch.com +# 0.0.0.0 api.solvemedia.com #[affects captcha] + +0.0.0.0 pixel.solvemedia.com +0.0.0.0 fms2.pointroll.speedera.net +0.0.0.0 ad-cdn.technoratimedia.com +0.0.0.0 demoq.use-trade.com +# [Level3 / Joyent][8.17.168.0 - 8.17.171.255] + +# [Lightningcast][AS32288][216.52.117.0 - 216.52.117.255] + +0.0.0.0 stats.lightningcast.net +0.0.0.0 stats2.lightningcast.net +# [Lightstorm Communications][AS42005][92.240.234.0 - 92.240.237.255] + +0.0.0.0 adserver2.blueadvertise.com +0.0.0.0 cbpublishing.blueadvertise.com +0.0.0.0 cdxninteractive.blueadvertise.com +# [LiteUp][AS32959][69.22.132.0 - 69.22.135.255] + +# [Limelight][AS22822][208.111.128.0 - 208.111.191.255] + +0.0.0.0 qlipsodigital.checkm8.com +0.0.0.0 static.cpalead.com +0.0.0.0 cache.daredorm.com +0.0.0.0 cachewww.europacasino.com +0.0.0.0 cdn.intermarkets.net +0.0.0.0 intermrkts.vo.llnwd.net +0.0.0.0 wbads.vo.llnwd.net +0.0.0.0 scripts.mofos.com +0.0.0.0 cache.realitykings.com +0.0.0.0 media.sexinyourcity.com +0.0.0.0 cdn1.telemetryverification.net +0.0.0.0 ff1.telemetryverification.net +0.0.0.0 cdn.banner.thumbplay.com +0.0.0.0 creativeby2.unicast.com +0.0.0.0 pl1.yumenetworks.com +# [Limelight][68.142.64.0 - 68.142.127.255] + +0.0.0.0 static.ads.crakmedia.com +0.0.0.0 static.fleshlight.com +0.0.0.0 content.ipro.com +0.0.0.0 cdn-01.yumenetworks.com +# [Limelight][69.164.0.0 - 69.164.63.255] + +0.0.0.0 tealium.hs.llnwd.net +0.0.0.0 img100-321.xvideos.com +# [Limelight][69.28.128.0 - 69.28.191.255] + +0.0.0.0 im.afy11.net +# 0.0.0.0 libs.coremetrics.com #[affects tMobile/EverBank] + +0.0.0.0 cdn.content.exoticads.com +0.0.0.0 munchkin.marketo.net +# [Limestone][AS46475][69.162.64.0 - 69.162.127.255] + +0.0.0.0 ox.fashion.bg +0.0.0.0 e.freewebhostingarea.com +# [Limestone][AS46475][74.63.224.172] + +0.0.0.0 spns.seriousads.net +# [Limited Liability][AS28870][82.179.204.0 - 82.179.205.255] + +# [Liquid Web][AS32244][209.59.128.0 - 209.59.191.255] + +0.0.0.0 www.adspeed.com +# [Liquid Web][AS32244][50.28.0.0 - 50.28.127.255] + +0.0.0.0 filter.eclickz.com +0.0.0.0 ads.localyokelmedia.com +0.0.0.0 attribution.webmarketing123.com +# [Liquid Web][67.225.128.0 - 67.225.255.255] + +0.0.0.0 www.adimpact.com +0.0.0.0 blogadswap.com +0.0.0.0 clixtk.com +0.0.0.0 www.iwstats.com +0.0.0.0 maxtracker.net +# [Liquid Web][67.227.128.0 - 67.227.255.255] + +0.0.0.0 www.adworkmedia.com +0.0.0.0 quik2link.com +# [Liquid Web][AS32244][69.167.128.0 - 69.167.191.255] + +# [Liquid Web][69.16.192.0 - 69.16.255.255] + +0.0.0.0 search.eclickz.com +0.0.0.0 www.freeusersonline.com +# [Liquid Web][72.52.128.0 - 72.52.255.255] + +0.0.0.0 adspserving.com +0.0.0.0 www.adversal.com +0.0.0.0 adv.blogupp.com +0.0.0.0 www.chrumedia.com +0.0.0.0 www.hit-counts.com +0.0.0.0 www.validview.com +0.0.0.0 ads.peoplespharmacy.com +0.0.0.0 www.yieldtraffic.com +# [Lirex][AS8262][164.138.220.0 - 164.138.221.255] + +0.0.0.0 ads.3e-news.net +0.0.0.0 b.detetoigrae.com +0.0.0.0 a.kik.bg +0.0.0.0 openx.stand.bg +# [Lirex][AS8262][193.107.68.0 - 193.107.71.255] + +# [Lirex][AS8262][194.12.240.128 - 194.12.240.159] + +0.0.0.0 ads.start.bg +# [Lirex][AS8262][195.191.148.0 - 195.191.149.255] + +0.0.0.0 www.banners.bgcatalog.net +0.0.0.0 track.make-a-site.net +# [Lirex][AS8262][82.119.84.0 - 82.119.84.255] + +0.0.0.0 ads.pik.bg +# [Lirex][AS8262][85.14.21.0 - 85.14.22.255] + +0.0.0.0 o.ibg.bg +0.0.0.0 r01.ibg.bg +# [Lirex][AS8262][89.252.247.0 - 89.252.247.255] + +# [Lirex / SuperHosting.BG][AS8262][91.196.124.0 - 91.196.127.255] + +0.0.0.0 www.cpmfun.com +0.0.0.0 ex-traffic.com +0.0.0.0 forexadv.eu +0.0.0.0 stat.ganbox.com +0.0.0.0 ads.ka6tata.com +0.0.0.0 ads.lifesport.bg +0.0.0.0 adds.misiamoiatdom.com +0.0.0.0 ad.moreto.net +0.0.0.0 banner.sedem.bg +0.0.0.0 openx.vizzia.bg +0.0.0.0 ads.webcafe.bg +# [LL Limelight / Sobonito][AS31958][66.6.16.0 - 66.6.31.255] + +0.0.0.0 analytic.gatewayinterface.com +0.0.0.0 analyticcdn.globalmailer.com +0.0.0.0 mediaview.globalmailer.com +0.0.0.0 rt.globalmailer.com +0.0.0.0 pcash.globalmailer5.com +0.0.0.0 ads.streamlivesex.com +0.0.0.0 pcash.wildmatch.com +# [Logicalsolutions.net][AS14242][216.36.48.0 - 216.36.63.255] + +# [Lotame][AS40787][74.217.85.0 - 74.217.85.255] + +0.0.0.0 ag.tags.crwdcntrl.net +0.0.0.0 bebo.crwdcntrl.net +0.0.0.0 blogtalkradio.crwdcntrl.net +0.0.0.0 cdn.crwdcntrl.net +0.0.0.0 celebslam.tags.crwdcntrl.net +0.0.0.0 cnnmoney.tags.crwdcntrl.net +0.0.0.0 coop.crwdcntrl.net +0.0.0.0 deviantart.crwdcntrl.net +0.0.0.0 fotolog.crwdcntrl.net +0.0.0.0 huffingtonpost.crwdcntrl.net +0.0.0.0 justjared.crwdcntrl.net +0.0.0.0 livejournal.tags.crwdcntrl.net +0.0.0.0 multiply.crwdcntrl.net +0.0.0.0 nbcu.tags.crwdcntrl.net +0.0.0.0 perfspot.crwdcntrl.net +0.0.0.0 sociallitelife.tags.crwdcntrl.net +0.0.0.0 sportsillustrated.tags.crwdcntrl.net +0.0.0.0 superficial.crwdcntrl.net +0.0.0.0 tags.crwdcntrl.net +0.0.0.0 videogum.tags.crwdcntrl.net +0.0.0.0 vidilife.crwdcntrl.net +0.0.0.0 wwtdd.tags.crwdcntrl.net +0.0.0.0 yardbarker.tags.crwdcntrl.net +# [LV Radio Networks][AS8206][195.216.175.112 - 195.216.175.127] + +# [Lycos Europe][AS12832][213.193.8.0 - 213.193.8.127] + +0.0.0.0 fe.lea.jubii.dk +0.0.0.0 fe.lea.lycos.de +0.0.0.0 fe.lea.spray.se +# [Mail.RU][AS47764][217.69.128.0 - 217.69.135.255] + +0.0.0.0 top-fwz1.mail.ru +# [Mail.RU][AS47764][94.100.176.0 - 94.100.183.255] + +0.0.0.0 list.ru +0.0.0.0 top1.list.ru +0.0.0.0 top3.list.ru +0.0.0.0 top6.list.ru +# [Mail.RU][AS47764][94.100.184.0 - 94.100.191.255] + +0.0.0.0 host4.list.ru +# [Majordomo][AS43362][78.108.81.0 - 78.108.85.255] + +# [MakeNewMedia][AS44765][92.61.62.40 - 92.61.62.47] + +# [Managed Solutions][AS27645][205.209.128.0 - 205.209.191.255] + +# [Marchex][AS40495][AS14126][174.137.112.0 - 174.137.127.255] + +0.0.0.0 images.enhance.com +0.0.0.0 www.enhance.com +0.0.0.0 gflinks.industrybrains.com +0.0.0.0 imglinks.industrybrains.com +0.0.0.0 links.industrybrains.com +0.0.0.0 shlinks.industrybrains.com +# [Marchex][66.116.109.0 - 66.116.109.127] + +0.0.0.0 mdnhinc.com +# [Marchex][66.116.125.0 - 66.116.125.255] + +0.0.0.0 c.enhance.com +0.0.0.0 goclick.com +0.0.0.0 c.mdnhinc.com +0.0.0.0 cb.mdnhinc.com +0.0.0.0 title.mximg.com +# [Marchex][8.14.168.0 - 8.14.171.255] + +0.0.0.0 adtrack.voicestar.com +# [Master / Fast Internet][149.62.148.0 - 149.62.148.255] + +0.0.0.0 banners.yllix.com +0.0.0.0 click2.yllix.com +0.0.0.0 promo.love-money.de +# [Master / Fast Internet][AS24971][89.185.228.0 - 89.185.234.255] + +0.0.0.0 data.emimino.cz +0.0.0.0 expressdelivery.biz +0.0.0.0 www.expressdelivery.biz +0.0.0.0 www.hypercounter.com +# [Masterforex][AS48974][92.38.0.0 - 92.38.7.255] + +# [Masterhost][AS25532][217.16.27.0 - 217.16.27.255] + +0.0.0.0 engine.turboroller.ru +# [Masterhost][83.222.30.0 - 83.222.31.255] + +0.0.0.0 foreign.dt00.net +0.0.0.0 mytraf.info +0.0.0.0 www.mytraf.info +0.0.0.0 mytraf.ru +0.0.0.0 www.mytraf.ru +# [Masterhost][AS25532][87.242.72.0 - 87.242.91.255] + +0.0.0.0 banners.adfox.ru +0.0.0.0 rq.adfox.ru +0.0.0.0 sup.adfox.ru +0.0.0.0 sedu.adhands.ru +0.0.0.0 img.dt00.net +0.0.0.0 counter.hitmir.ru +0.0.0.0 a.marketgid.com +0.0.0.0 aa-gb.marketgid.com +0.0.0.0 ab-nb.marketgid.com +0.0.0.0 ac-nb.marketgid.com +0.0.0.0 af-gb.marketgid.com +0.0.0.0 ah-gb.marketgid.com +0.0.0.0 ai-gb.marketgid.com +0.0.0.0 ak-gb.marketgid.com +0.0.0.0 autocounter.marketgid.com +0.0.0.0 c.marketgid.com +0.0.0.0 cdn.marketgid.com +0.0.0.0 counter.marketgid.com +0.0.0.0 mg.marketgid.com +0.0.0.0 parking.reg.ru +0.0.0.0 com.adv.vz.ru +0.0.0.0 234x120.adv.vz.ru +0.0.0.0 p2p.adv.vz.ru +0.0.0.0 txt.adv.vz.ru +0.0.0.0 tizer.adv.vz.ru +# [Masterhost][AS25532][90.156.178.0 - 90.156.179.255] + +0.0.0.0 gs.spylog.ru +0.0.0.0 hits.spylog.com +0.0.0.0 www.spylog.com +0.0.0.0 spylog.ru +0.0.0.0 www.spylog.ru +# [Masterhost / Spylog][AS25532][90.156.194.0 - 90.156.194.255] + +# [Maxolution][AS42557][193.239.248.0 - 193.239.249.255] + +0.0.0.0 promotion.partnercash.de +# [Maxolution][AS42557][91.195.94.0 - 91.195.95.255] + +# [Mccolo][AS26780][208.72.168.0 - 208.72.175.255] + +# [Mecuriuz][AS48172][188.127.224.0 - 188.127.231.255] + +0.0.0.0 advert.rare.ru +# [Mecuriuz / Mc Host.ru][AS6854][83.229.252.0 - 83.229.253.255] + +# [Mecuriuz / McHost.Ru][AS48172][94.198.53.0 - 94.198.53.255] + +# [Media Breakaway / OptinRealBig.com][AS32311][69.6.27.0 - 69.6.27.255] + +0.0.0.0 www.cpaempire.com +0.0.0.0 ekmas.com +# [Mediametrie Estat][AS34980][194.126.156.0 - 194.126.157.255] + +0.0.0.0 prof.beta.estat.com +0.0.0.0 s.estat.com +0.0.0.0 sky.estat.com +0.0.0.0 w.estat.com +0.0.0.0 www.estat.com +# [Mediametrie Estat][AS34980][91.213.146.0 - 91.213.146.255] + +# 0.0.0.0 stat3.cybermonitor.com #[affects podcasts] + +# [Media Temple][AS31815][205.186.128.0 - 205.186.191.255] + +# [Media Temple][AS31815][216.70.64.0 - 216.70.127.255] + +0.0.0.0 www.adpeepshosted.com +0.0.0.0 evtrk.com +# [Media Temple][AS31815][64.13.192.0 - 64.13.255.255] + +# [Media Temple][AS31815][64.207.128.0 - 64.207.191.255] + +0.0.0.0 ping.hellobar.com +# [Media Temple][AS31815][72.47.192.0 - 72.47.255.255] + +0.0.0.0 adklip.com +0.0.0.0 topads.rrstar.com +# [MegaPath Networks][AS4565][216.132.0.0 - 216.133.223.255] + +# [Microsoft][AS8075][104.208.0.0 - 104.215.255.255] + +# [Microsoft][AS8069][111.221.16.0 - 111.221.31.255] + +0.0.0.0 iact.atdmt.com +# [Microsoft][AS8075][131.253.12.0 - 131.253.18.255] + +# [Microsoft][AS8075][137.116.0.0 - 137.116.255.255] + +0.0.0.0 otf.msn.com +0.0.0.0 trafficgateway.research-int.se +# [Microsoft][AS8075][137.135.0.0 - 137.135.255.255] + +0.0.0.0 my.trackjs.com +# [Microsoft][AS8075][157.54.0.0 - 157.60.255.255] + +0.0.0.0 image.atdmt.com +0.0.0.0 img.atdmt.com +# 0.0.0.0 switch.atdmt.com #[affects Hotmail signup] + +# 0.0.0.0 view.atdmt.com #[affects Microsoft / Sprint.com] + +0.0.0.0 www.atdmt.com +0.0.0.0 analytics.newsvine.com +# [Microsoft][AS8075][168.61.0.0 - 168.63.255.255] + +0.0.0.0 tracking.bannerflow.com +# [Microsoft][AS8075][191.232/14] + +0.0.0.0 analytics-eu.clickdimensions.com +# [Microsoft][AS8075][191.236/14] + +0.0.0.0 universal.iperceptions.com +# [Microsoft][AS8075][207.46.0.0 - 207.46.255.255] + +0.0.0.0 api.atdmt.com +0.0.0.0 www.bidclix.net +0.0.0.0 www.deepmetrix.com +0.0.0.0 log.newsvine.com +# [Microsoft][AS8075][23.96.0.0 - 23.103.255.255] + +0.0.0.0 e3.adpushup.com +0.0.0.0 mt.adquality.ch +0.0.0.0 api.iperceptions.com +0.0.0.0 adserver.pressboard.ca +0.0.0.0 data.queryly.com +# [Microsoft][AS8075][65.52.0.0 - 65.55.255.255] + +0.0.0.0 analytics.atdmt.com +0.0.0.0 c1.atdmt.com +0.0.0.0 h.atdmt.com +0.0.0.0 bat.bing.com +0.0.0.0 c.bing.com +0.0.0.0 analytics.breakingnews.com +0.0.0.0 analytics.clickdimensions.com +0.0.0.0 digg.analytics.live.com +0.0.0.0 madserver.net +0.0.0.0 a.ads1.msads.net +0.0.0.0 analytics.msn.com +0.0.0.0 images.adsyndication.msn.com +0.0.0.0 arc2.msn.com +0.0.0.0 arc3.msn.com +0.0.0.0 arc9.msn.com +0.0.0.0 analytics.r.msn.com +# 0.0.0.0 rad.msn.com #[affects MSN Messenger] + +0.0.0.0 rmads.eu.msn.com +0.0.0.0 rpt.rad.msn.com +0.0.0.0 analytics.msnbc.com +0.0.0.0 msn.serving-sys.com +# [Microsoft][AS8075][70.37.0.0 - 70.37.191.255] + +# [Microsoft][AS8075][94.245.64.0 - 94.245.127.255] + +# 0.0.0.0 clk.atdmt.com #[affects MS downloads] + +0.0.0.0 jact.atdmt.com +# [Mirror Image][AS12168][216.38.160.0 - 216.38.175.255] + +0.0.0.0 beacon.clickequations.net +0.0.0.0 js.clickequations.net +0.0.0.0 cachebanner.europacasino.com +0.0.0.0 servedby.o2.co.uk +0.0.0.0 cachebanner.titanpoker.com +0.0.0.0 creativeby1.unicast.com +0.0.0.0 ping1.unicast.com +0.0.0.0 cachebanner.vegasred.com +0.0.0.0 i.w55c.net +# [Miva Corporation][AS14745][66.150.51.0 - 66.150.51.255] + +# [Miva Corporation][Starware] + +0.0.0.0 v10.xmlsearch.miva.com +# [Mohawk][AS14537][109.202.114.224 - 109.202.114.255] + +0.0.0.0 partners.10bet.com +# [Mohawk Internet / Gaming Limited][AS14537][66.212.242.64 - 66.212.242.95] + +0.0.0.0 affiliates.bet-at-home.com +0.0.0.0 sportingbeteur.adsrv.eacdn.com +0.0.0.0 partners.fanduel.com +0.0.0.0 affiliates.neteller.com +0.0.0.0 affiliates.pinnaclesports.com +0.0.0.0 partner.sbaffiliates.com +0.0.0.0 banners.victor.com +# [Mohawk Internet][AS14537][67.211.96.0 - 67.211.111.255] + +0.0.0.0 ecess1.cdn.continent8.com +# [MojoHost][AS27589][199.182.106.32 - 199.182.106.47] + +0.0.0.0 one.cam4ads.com +0.0.0.0 ads.yvmads.com +# [MojoHost][AS13477][199.19.200.0 - 199.19.207.255] + +# [MojoHost / Easy Online Solutions][208.122.192.0 - 208.122.223.255] + +0.0.0.0 adserver.gallerytrafficservice.com +0.0.0.0 www.gallerytrafficservice.com +0.0.0.0 beta.galleries.paperstreetcash.com +0.0.0.0 pepipo.com +0.0.0.0 www.pepipo.com +# [MojoHost / Easy Online Solutions][64.59.64.0 - 64.59.127.255] + +0.0.0.0 a.adnium.com +0.0.0.0 popit.mediumpimpin.com +# [MojoHost / Aw Telecom][AS27589][64.59.82.128 - 64.59.82.159] + +0.0.0.0 promo.sensationalcash.com +# [MojoHost / Easy Online Solutions][AS27589][74.206.160.0 - 74.206.191.255] + +0.0.0.0 www.spunkycash.com +# [MojoHost / Webquest][AS27589][99.192.140.32 - 99.192.140.47] + +0.0.0.0 ads.camfuze.com +0.0.0.0 flashadtools.com +0.0.0.0 www.flashadtools.com +0.0.0.0 geo.gexo.com +0.0.0.0 ads.hornypharaoh.com +0.0.0.0 tools.pacinocash.com +0.0.0.0 analytics.pimproll.com +0.0.0.0 dev.trafficforce.com +0.0.0.0 ads.voyit.com +# [Momentum Solutions][AS23136][69.77.186.0 - 69.77.186.255] + +0.0.0.0 board.classifieds1000.com +# [Momentum Solutions][AS23136][69.77.188.0 - 69.77.188.255] + +# [Moskvacom][AS2118][195.95.155.0 - 195.95.155.255] + +# [Mstar.net][AS40201][72.8.64.0 - 72.8.127.255] + +# [Mts Allstream][AS15290][64.4.64.0 - 64.4.95.255] + +0.0.0.0 pk.adlandpro.com +0.0.0.0 trafficex.adlandpro.com +0.0.0.0 www.adlandpro.com +# [Multacom][AS35916][198.52.96.0 - 198.52.127.255] + +# [Multacom][TrekEight][AS35916][72.44.64.0 - 72.44.79.255] + +0.0.0.0 www.errornuker.com +0.0.0.0 www.evidencenuker.com +# [Munt Internet][AS21392][85.255.208.0 - 85.255.223.255] + +# [Mynet][AS12858][212.101.96.0 - 212.101.127.255] + +0.0.0.0 adserver.adklik.com.tr +0.0.0.0 s.adklik.com.tr +0.0.0.0 ads2.mynet.com +# [Natcoweb][AS46636][204.62.12.0 - 204.62.15.255] + +0.0.0.0 getmailcounter.com +# [Natcoweb][AS46636][88.214.197.0 - 88.214.197.255] + +0.0.0.0 1empiredirect.com +0.0.0.0 hstraffa.com +0.0.0.0 mysearchweb.net +# [Nationalnet][AS22384][173.0.64.0 - 173.0.79.255] + +0.0.0.0 peelads.hustler.com +# [Nationalnet][AS22384][173.45.172.0 - 173.45.172.255] + +0.0.0.0 redroomnetwork.com +0.0.0.0 www.redroomnetwork.com +# [Nationalnet / Certified Hosting][204.15.248.0 - 204.15.255.255] + +0.0.0.0 ads.trafficpimps.com +# [Nationalnet / Certified Hosting][AS22384][205.196.16.0 - 205.196.23.255] + +# [Nationalnet][216.201.80.0 - 216.201.95.255] + +0.0.0.0 nats4.fetishbucks.com +0.0.0.0 www.ninjadollars.com +# [Nationalnet / Live Interactive][AS22384][66.115.128.0 - 66.115.191.255] + +0.0.0.0 www.99stats.com +0.0.0.0 static.99widgets.com +0.0.0.0 advertising.justusboys.net +0.0.0.0 ocxxx.com +0.0.0.0 ads.oxymoronent.com +0.0.0.0 advertising.rockettube.net +0.0.0.0 stats.xxxrewards.com +0.0.0.0 rewards.macandbumble.com +0.0.0.0 secure6.platinumbucks.com +0.0.0.0 ayboll.sgsrv.com +0.0.0.0 sureads.com +# [Nationalnet][AS22384][69.50.128.0 - 69.50.143.255] + +0.0.0.0 www.adregistry.com +0.0.0.0 applicationstat.com +0.0.0.0 www.mediareps.com +0.0.0.0 www.secretbehindporn.com +0.0.0.0 link.siccash.com +0.0.0.0 vmn.net +# [NaviSite][AS14135][216.236.224.0 - 216.236.239.255] + +0.0.0.0 sony.tcliveus.com +0.0.0.0 tc.zionsbank.com +# [NaviSite / Joyent][AS14135][72.2.112.0 - 72.2.127.255] + +0.0.0.0 realtimeads.com +# [Net2ez][AS558][173.245.2.0 - 173.245.2.127] + +0.0.0.0 ads.eqads.com +0.0.0.0 e-ads.eqads.com +# [Net2ez][AS558][208.68.156.0 - 208.68.159.255] + +# [Net2EZ / Visionaire][AS558][64.93.64.0 - 64.93.95.255] + +0.0.0.0 broadspring.com +0.0.0.0 www.broadspring.com +0.0.0.0 partners.content.ad +0.0.0.0 xml.intelligenttrafficsystem.com +# [Net2ez / Privatesystems][AS558][67.222.0.0 - 67.222.31.255] + +# [Net2ez][AS558][69.89.64.0 - 69.89.95.255] + +0.0.0.0 engine.4dsply.com +0.0.0.0 engine.adsupply.com +0.0.0.0 tracking.1betternetwork.com +0.0.0.0 cpatrack.leadn.com +0.0.0.0 tracking.opienetwork.com +# [Net2ez][AS558][72.172.64.0 - 72.172.95.255] + +0.0.0.0 www.adminder.com +0.0.0.0 analytics.atomiconline.com +0.0.0.0 geo.gorillanation.com +0.0.0.0 cms.springboard.gorillanation.com +0.0.0.0 analytics.springboardvideo.com +0.0.0.0 analytics.stg.springboardvideo.com +# [Net Access][AS8001][173.255.192.0 - 173.255.255.255] + +# [Net Access][AS8001][50.116.0.0 - 50.116.63.255] + +# [Net Access / Cdnetworks][AS8001][66.114.48.0 - 66.114.63.255] + +0.0.0.0 img.linkstorm.net +# [Net Access][AS8001][66.175.208.0 - 66.175.223.255] + +# [Net Access][AS8001][66.228.32.0 - 66.228.63.255] + +0.0.0.0 tracking.onespot.com +# [Net Access][AS8001][66.29.0.0 - 66.29.127.255] + +# [Net Access][AS8001][69.164.192.0 - 69.164.223.255] + +# [Net Access / Linode][97.107.128.0 - 97.107.143.255] + +# [NetBridge][AS20616][217.156.103.0 - 217.156.103.255] + +0.0.0.0 ads.softure.com +0.0.0.0 adserver.softure.com +0.0.0.0 log.trafic.ro +# [Netcen][AS3.535][46.245.163.1 - 46.245.163.255] + +0.0.0.0 ads.dijitalvarliklar.com +0.0.0.0 banner-img.haber7.com +# [Netelligent][AS10929][192.154.136.0 - 192.154.143.255] + +# [Netelligent][AS10929][205.204.64.0 - 205.204.95.255] + +0.0.0.0 a.kickass.to +# [Netelligent][AS10929][209.44.96.0 - 209.44.127.255] + +# [Netelligent / SearchAnyway][64.15.72.0 - 64.15.72.127] + +# [Netelligent][AS10929][68.71.32.0 - 68.71.63.255] + +# [NetHolding][AS24730][81.173.64.0 - 81.173.64.255] + +# [Netinfo][AS13147][194.153.145.0 - 194.153.145.255] + +0.0.0.0 www.adwise.bg +0.0.0.0 ads.jenite.bg +# [Netinfo][AS13147][217.174.144.0 - 217.174.159.255] + +0.0.0.0 banners.alo.bg +0.0.0.0 adserver.economic.bg +0.0.0.0 adv.starozagorci.com +0.0.0.0 openx.vsekiden.com +# [Netinfo][AS13147][78.128.0.0 - 78.128.63.255] + +0.0.0.0 ads.3bay.bg +0.0.0.0 ads.biznews.bg +# [Netinfo][AS13147][79.124.64.0 - 79.124.95.255] + +0.0.0.0 adv.alo.bg +0.0.0.0 adsys.insert.bg +0.0.0.0 ads.kulinar.bg +0.0.0.0 adv.webvariant.com +# [Netinfo][AS13147][87.120.40.0 - 87.120.41.255] + +0.0.0.0 adv.consadbg.com +# [NetNation][AS14280][64.40.96.0 - 64.40.127.255] + +0.0.0.0 www.revisitors.com +0.0.0.0 content.thrixxx.com +# [Netsaits BV] + +0.0.0.0 cz2.clickzs.com +0.0.0.0 cz4.clickzs.com +0.0.0.0 cz5.clickzs.com +0.0.0.0 cz7.clickzs.com +0.0.0.0 cz9.clickzs.com +0.0.0.0 cz11.clickzs.com +0.0.0.0 js3.clickzs.com +0.0.0.0 js4.clickzs.com +0.0.0.0 js5.clickzs.com +0.0.0.0 js6.clickzs.com +0.0.0.0 js7.clickzs.com +0.0.0.0 js8.clickzs.com +0.0.0.0 js9.clickzs.com +0.0.0.0 js11.clickzs.com +0.0.0.0 jsp.clickzs.com +0.0.0.0 jsp2.clickzs.com +0.0.0.0 vip2.clickzs.com +0.0.0.0 www.clickzs.com +0.0.0.0 www.hit-now.com +# [Nedstat][AS42320][212.72.32.0 - 212.72.63.255] + +0.0.0.0 www.netdirect.nl +0.0.0.0 startpunt.nu.site-id.nl +0.0.0.0 www.site-id.nl +# [Nedstat][AS42320][77.72.112.0 - 77.72.113.255] + +0.0.0.0 www.nedstat.nl +0.0.0.0 m1.nedstatpro.net +0.0.0.0 www.nedstat.co.uk +0.0.0.0 fr.sitestat.com +0.0.0.0 www.sitestat.com +# [Nedstat BV][AS16243][87.249.105.0 - 87.249.105.255] + +0.0.0.0 nedstat.net +0.0.0.0 be.nedstat.net +0.0.0.0 es.nedstat.net +0.0.0.0 uk.nedstat.net +0.0.0.0 nl.nedstatpro.net +0.0.0.0 uk.nedstatpro.net +0.0.0.0 es.sitestat.com +# 0.0.0.0 nl.sitestat.com #[affects Netherlands DigiD] + +0.0.0.0 us.sitestat.com +# [Net Ground][AS41445 ][87.250.141.0 - 87.250.141.255] + +0.0.0.0 geoaddicted.net +# [Netrouting][AS47869][109.235.48.0 - 109.235.48.255] + +# [Neterra][AS34224][212.73.143.48 - 212.73.143.63] + +0.0.0.0 sms-ads.com +# [Neterra][AS34224][31.13.222.80 - 31.13.222.95] + +0.0.0.0 affiliate.bfashion.com +# [Neterra][AS34224][87.120.176.0 - 87.121.59.255] + +0.0.0.0 ads2.nextmedia.bg +0.0.0.0 banners.nova.bg +# [Neterra][AS34224][94.156.102.0 - 94.156.102.255] + +0.0.0.0 ads.bg-mamma.com +0.0.0.0 adx.darikweb.com +0.0.0.0 stats.darikweb.com +# [Netvertising][][84.2.34.0 - 84.2.34.63] + +0.0.0.0 adedy.com +# [NetVision][AS1680][192.116.32.0 - 192.116.63.255] + +0.0.0.0 realmedia.nana.co.il +# [NetVision][AS1680][199.203.83.0 - 199.203.88.255] + +0.0.0.0 xwbe.wcdn.co.il +# [NetVision / Elron][AS1680][207.232.0.0 - 207.232.63.255] + +0.0.0.0 dm.mlstat.com +0.0.0.0 www.mlstat.com +# [NetVision][AS1680][212.143.22.0 - 212.143.22.255] + +0.0.0.0 ads.downloadaccelerator.com +0.0.0.0 ad1.speedbit.com +0.0.0.0 ad2.speedbit.com +0.0.0.0 ad3.speedbit.com +0.0.0.0 ad5.speedbit.com +0.0.0.0 ad6.speedbit.com +0.0.0.0 ad7.speedbit.com +0.0.0.0 ad8.speedbit.com +0.0.0.0 ad9.speedbit.com +0.0.0.0 ad10.speedbit.com +0.0.0.0 ads1.speedbit.com +0.0.0.0 ads2.speedbit.com +0.0.0.0 ads3.speedbit.com +0.0.0.0 ads4.speedbit.com +0.0.0.0 ads5.speedbit.com +0.0.0.0 ads6.speedbit.com +0.0.0.0 ads8.speedbit.com +0.0.0.0 ads9.speedbit.com +0.0.0.0 mirrorsearch.speedbit.com +# [NetVision][AS8584][212.150.0.0 - 212.150.255.255] + +0.0.0.0 ads.cursorinfo.co.il +0.0.0.0 protizer.ru +0.0.0.0 rm.tapuz.co.il +# [NetVision][AS1680][212.29.254.192 - 212.29.254.255] + +0.0.0.0 geo.yad2.co.il +0.0.0.0 pics.yad2.co.il +0.0.0.0 walla.yad2.co.il +0.0.0.0 yad1.yad2.co.il +# [NetVision / Adperform][AS1680][62.90.134.16 - 62.90.134.31] + +0.0.0.0 www.adoptim.com +0.0.0.0 ariboo.com +0.0.0.0 www.ariboo.com +# [NetVision][AS1680][82.166.0.0 - 82.166.255.255] + +0.0.0.0 ads.globescale.com +0.0.0.0 cursor.kvada.globescale.com +# [Network Data Center][AS33322][208.67.180.0 - 208.67.183.255] + +0.0.0.0 crazyegg.com +# [Network Engineering][AS29809][208.74.168.0 - 208.85.183.255] + +# [Network Operations][AS21788][173.212.192.0 - 173.212.255.255] + +0.0.0.0 ads.kyalon.net +# [Network Operations][AS21788][64.120.128.0 - 64.120.255.255] + +# [Network Operations][AS21788][64.191.0.0 - 64.191.127.255] + +# [Network Solutions][AS6245][205.178.128.0 - 205.178.191.255] + +0.0.0.0 www.antarasystems.com +0.0.0.0 ads.netsol.com +0.0.0.0 stats.netsolads.com +0.0.0.0 code.superstats.com +# [NeverBlue Media][Vertrue Inc] + +0.0.0.0 kvors.com +0.0.0.0 rotator.nbjmp.com +# [Newmedia Express][AS38001][203.174.80.0 - 203.174.87.255] + +# [Nexica][AS24592][212.92.32.0 - 212.92.63.255] + +0.0.0.0 codead.impresionesweb.com +0.0.0.0 codenew.impresionesweb.com +0.0.0.0 gad.impresionesweb.com +# [Nexica][AS24592][217.13.124.64 - 217.13.124.127] + +0.0.0.0 ad.impresionesweb.com +0.0.0.0 alt.impresionesweb.com +0.0.0.0 code.impresionesweb.com +0.0.0.0 gb.impresionesweb.com +0.0.0.0 paneles.impresionesweb.com +0.0.0.0 www.impresionesweb.com +0.0.0.0 alternativos.iw-advertising.com +0.0.0.0 ad.sgdgjarfpp123.com +# [MISC NEWS SITES] + +0.0.0.0 ads.admaxasia.com +0.0.0.0 visualscience.external.bbc.co.uk +0.0.0.0 ads.bninews.com +0.0.0.0 ads.butlereagle.com +0.0.0.0 oasad.cantv.net +0.0.0.0 ads1.capitalinteractive.co.uk +0.0.0.0 as1.casinocity.com +0.0.0.0 adtrack.cimedia.net +0.0.0.0 realaudio.cimedia.net +0.0.0.0 fr.64.clickintext.net +0.0.0.0 ads.clubplanet.com +0.0.0.0 ads3.condenast.co.uk +0.0.0.0 clips.coolerads.com +0.0.0.0 ads.cnpapers.com +0.0.0.0 openx.cnpapers.com +0.0.0.0 ads.dixcom.com +0.0.0.0 www.dolanadserver.com +0.0.0.0 ads.eastbayexpress.com +0.0.0.0 adv.ecape.com +0.0.0.0 advertising.embarcaderopublishing.com +0.0.0.0 iklan.emedia.com.my +0.0.0.0 ads.emol.com +0.0.0.0 ads.empowher.com +0.0.0.0 unit2.euro2day.gr +0.0.0.0 tracking.fccinteractive.com +0.0.0.0 redirect.fairfax.com.au +0.0.0.0 ad1.firehousezone.com +0.0.0.0 onset.freedom.com +0.0.0.0 ads.globalsportsmedia.com +0.0.0.0 www.gcmadvertising.com +0.0.0.0 ads.grupozeta.es +0.0.0.0 web2.harris-pub.com +0.0.0.0 ads.hellomagazine.com +0.0.0.0 id.hellomagazine.com +0.0.0.0 webtrend25.hemscott.com +0.0.0.0 adserver.heraldextra.com +0.0.0.0 tag-stats.huffingtonpost.com +0.0.0.0 adscontent2.indiatimes.com +0.0.0.0 netspiderads.indiatimes.com +0.0.0.0 netspiderads3.indiatimes.com +0.0.0.0 html.knbc.com +0.0.0.0 ad1.logger.co.kr +0.0.0.0 trk14.logger.co.kr +0.0.0.0 oas.mainetoday.com +0.0.0.0 tracking.military.com +0.0.0.0 ad.mirror.co.uk +0.0.0.0 ads1.moneycontrol.com +0.0.0.0 partners.cfl.mybrighthouse.com +0.0.0.0 mouads.com +0.0.0.0 html.nbc10.com +0.0.0.0 promos.newsok.com +0.0.0.0 up.nytimes.com +0.0.0.0 rm.ocregister.com +0.0.0.0 ads.pagina12.com.ar +0.0.0.0 adserver.passagemaker.com +0.0.0.0 webtrends.randallpub.com +0.0.0.0 bst.reedbusiness.com +0.0.0.0 ads.rttnews.com +0.0.0.0 ads.signonsandiego.com +0.0.0.0 ads.sportingnews.com +0.0.0.0 suads.sulekha.com +0.0.0.0 dcs.swiftnews.com +0.0.0.0 m.teamsugar.com +0.0.0.0 test.theeagle.com +0.0.0.0 ads.thehour.com +0.0.0.0 mercury.tiser.com.au +0.0.0.0 ads.trackentertainment.com +0.0.0.0 ads.victoriaadvocate.com +0.0.0.0 ads2.victoriaadvocate.com +0.0.0.0 admanage.wescompapers.com +0.0.0.0 ads.wfmz.com +0.0.0.0 html.wnbc.com +# [Misc News via Advance Publications Group][69.2.96.0 - 69.2.127.255] + +0.0.0.0 geoip.cleveland.com +0.0.0.0 ads.gulflive.com +0.0.0.0 geoip.gulflive.com +0.0.0.0 ads.lehighvalleylive.com +0.0.0.0 geoip.lehighvalleylive.com +0.0.0.0 ads.masslive.com +0.0.0.0 geoip.masslive.com +0.0.0.0 geoip.mlive.com +0.0.0.0 science.mlive.com +0.0.0.0 geoip.nj.com +0.0.0.0 geoip.nola.com +0.0.0.0 geoip.oregonlive.com +0.0.0.0 ads.pennlive.com +0.0.0.0 geoip.pennlive.com +0.0.0.0 ads.silive.com +0.0.0.0 geoip.silive.com +0.0.0.0 ads.syracuse.com +0.0.0.0 geoip.syracuse.com +# [Misc News via American Media] + +0.0.0.0 cms1.ami-admin.com +0.0.0.0 ads.fitpregnancy.com +0.0.0.0 ads.muscleandfitness.com +0.0.0.0 ads.muscleandfitnesshers.com +0.0.0.0 ads.starmagazine.com +# [Misc News via Belo Interactive] + +# [Misc News via Clear Channel][207.230.128.0 - 207.230.159.255] + +0.0.0.0 dart.clearchannel.com +# [Misc News via Gannett Media / USA Today][159.54.0.0 - 159.54.255.255] + +0.0.0.0 atpco.ur.gcion.com +0.0.0.0 q.pni.com +0.0.0.0 c.usatoday.com +# [Misc News via Gannett Media] + +0.0.0.0 gannett.gcion.com +# [Scripps Newspaper Group] + +0.0.0.0 apptap.scripps.com +0.0.0.0 railads.scripps.com +# [Misc News via Village Voice Media] + +0.0.0.0 adindex.laweekly.com +0.0.0.0 adindex.ocweekly.com +0.0.0.0 adindex.villagevoice.com +# [Nforce][AS43350][77.247.176.32 - 77.247.176.63] + +# [Nforce][77.247.177.0 - 77.247.177.127] + +0.0.0.0 bestoffers.activeshopper.com +0.0.0.0 e-zshopper.activeshopper.com +0.0.0.0 mini.activeshopper.com +0.0.0.0 mobile.activeshopper.com +0.0.0.0 uk.activeshopper.com +0.0.0.0 ads2.mediashakers.com +# [Nforce][77.247.178.0 - 77.247.178.255] + +0.0.0.0 www.admez.com +0.0.0.0 ads.identads.com +0.0.0.0 www.urlcash.net +# [Nforce][AS16265][85.17.52.0 - 85.17.52.255] + +0.0.0.0 bugsforum.com +# [Nforce][AS43350][85.159.232.0 - 85.159.232.63] + +0.0.0.0 stats.ventivmedia.com +# [Nforce][AS43350][85.159.233.0 - 85.159.233.255] + +# [NHN][AS23576][103.6.172.0 - 103.6.175.255] + +0.0.0.0 ad.naver.com +0.0.0.0 adcreative.naver.com +0.0.0.0 nv1.ad.naver.com +0.0.0.0 nv2.ad.naver.com +# [Nine Internet Solutions][AS29691][217.150.247.0 - 217.150.247.63] + +0.0.0.0 ad.amiadogroup.com +# [nLayer][AS4436][108.161.176.0 - 108.161.191.255] + +0.0.0.0 vistabet-affiliate.host.bannerflow.com +0.0.0.0 cdn.beaconads.com +0.0.0.0 assets.customer.io +0.0.0.0 cdn.app.exitmonitor.com +0.0.0.0 pixels.mentad.com +0.0.0.0 cdn.popcash.net +0.0.0.0 tags.api.umbel.com +# [nLayer][AS4436][198.232.112.0 - 198.232.127.255] + +0.0.0.0 backfill.ph.affinity.com +0.0.0.0 inm.affinitymatrix.com +0.0.0.0 cdn.chitika.net +0.0.0.0 adn.fusionads.net +0.0.0.0 cdn.petametrics.com +# [Noc4hosts][AS29802][206.51.224.0 - 206.51.239.255] + +0.0.0.0 ad.reachppc.com +# [Noc4Hosts / Intensive][74.50.104.0 - 74.50.111.255] + +0.0.0.0 pubs.hiddennetwork.com +# [Noc4hosts][AS29802][74.50.96.0 - 74.50.127.255] + +# [Noc4hosts][AS29802][96.31.64.0 - 96.31.95.255] + +# [Nova-net][AS48031][91.207.60.0 - 91.207.61.255] + +# [Nozone Inc][AS33386][208.100.0.0 - 208.100.63.255] + +0.0.0.0 pixel1097.everesttech.net +0.0.0.0 pixel1324.everesttech.net +0.0.0.0 pixel1350.everesttech.net +0.0.0.0 pixel1370.everesttech.net +0.0.0.0 pixel1553.everesttech.net +0.0.0.0 pixel1739.everesttech.net +# [Nozone][AS32748][216.86.144.0 - 216.86.159.255] + +# [NTColo / Plitochnik][AS48669][194.165.4.0 - 194.165.5.255] + +# [Ntt America][AS2914][122.255.90.176] + +0.0.0.0 ad.digitimes.com.tw +# [Ntt America][AS2914][128.121.0.0 - 128.121.255.255] + +# [Ntt America][128.242.0.0 - 128.242.255.255] + +# [Ntt America][AS2914][161.58.0.0 - 161.58.255.255] + +0.0.0.0 ads.mediatwo.com +# [Ntt America][AS2914][165.254.0.0 - 165.254.255.255] + +0.0.0.0 mads.dailymail.co.uk +0.0.0.0 in-cdn.effectivemeasure.net +# [Ntt America][168.143.0.0 - 168.143.255.255] + +0.0.0.0 scripts.chitika.net +0.0.0.0 rtbcdn.doubleverify.com +0.0.0.0 s.marketwatch.com +# [Ntt America][198.104.0.0 - 198.104.255.255] + +0.0.0.0 www.zipitfast.com +# [Ntt America][198.63.0.0 - 198.66.255.255] + +# [Ntt America][199.236.0.0 - 199.239.255.255] + +0.0.0.0 www.tsgonline.com +# [Ntt America][199.4.64.0 - 199.4.127.255] + +0.0.0.0 nana10.checkm8.com +0.0.0.0 nana10digital.checkm8.com +0.0.0.0 nrg.checkm8.com +0.0.0.0 nrgdigital.checkm8.com +0.0.0.0 sport5.checkm8.com +0.0.0.0 sport5digital.checkm8.com +# [Ntt America][204.0.0.0 - 204.3.255.255] + +0.0.0.0 ds.eyeblaster.com +0.0.0.0 contextlinks.netseer.com +0.0.0.0 asd.tynt.com +# [Ntt America][AS2914][204.245.128.0 - 204.245.191.255] + +0.0.0.0 c04.adsummos.net +0.0.0.0 cdn.at.atwola.com +0.0.0.0 ads.chango.ca +0.0.0.0 me-cdn.effectivemeasure.net +0.0.0.0 za-cdn.effectivemeasure.net +0.0.0.0 www8.effectivemeasure.net +0.0.0.0 cdn.flashtalking.com +0.0.0.0 stat.flashtalking.com +0.0.0.0 video.flashtalking.com +0.0.0.0 ads.germanfriendfinder.com +0.0.0.0 a.huluad.com +0.0.0.0 adt.m7z.net +0.0.0.0 tap-cdn.rubiconproject.com +0.0.0.0 bridgetrack.speedera.r3h.net +0.0.0.0 media-1.vpptechnologies.com +0.0.0.0 media-2.vpptechnologies.com +0.0.0.0 media-4.vpptechnologies.com +0.0.0.0 media-5.vpptechnologies.com +0.0.0.0 media-6.vpptechnologies.com +0.0.0.0 media-8.vpptechnologies.com +0.0.0.0 media-a.vpptechnologies.com +0.0.0.0 media-b.vpptechnologies.com +0.0.0.0 media-c.vpptechnologies.com +0.0.0.0 media-d.vpptechnologies.com +0.0.0.0 media-e.vpptechnologies.com +0.0.0.0 media-f.vpptechnologies.com +# [Ntt America][204.0.0.0 - 204.3.255.255] + +# [Ntt America][207.198.128.0 - 207.198.255.255] + +0.0.0.0 web.checkm8.com +0.0.0.0 web2.checkm8.com +# [Ntt America][207.56.0.0 - 207.57.255.255] + +# [Ntt America][209.157.0.0 - 209.157.255.255] + +0.0.0.0 stats.homestead.com +0.0.0.0 track2.homestead.com +# [Ntt America][209.207.128.0 - 209.207.255.255] + +# [Ntt America][83.231.216.128 - 83.231.216.255] + +0.0.0.0 ads.boursorama.com +0.0.0.0 analytics.youramigo.com +# [Nugg.ad][AS48173][80.82.201.80 - 80.82.201.95] + +0.0.0.0 24m.nuggad.net +0.0.0.0 abcno.nuggad.net +0.0.0.0 asqcondenast.nuggad.net +0.0.0.0 axdget-sync.nuggad.net +0.0.0.0 ebayit-dp.nuggad.net +0.0.0.0 heise.nuggad.net +0.0.0.0 lokalavisendk.nuggad.net +0.0.0.0 lpm-francetv.nuggad.net +0.0.0.0 lpm-lagardere.nuggad.net +0.0.0.0 lpm-tf1.nuggad.net +0.0.0.0 mobilede-dp.nuggad.net +0.0.0.0 n24se.nuggad.net +0.0.0.0 naftemporiki.nuggad.net +0.0.0.0 om.nuggad.net +0.0.0.0 tuno.nuggad.net +0.0.0.0 ri.nuggad.net +0.0.0.0 tv2dk.nuggad.net +0.0.0.0 websystem24.nuggad.net +# [Nugg-ad-net][AS48173][94.198.59.128 - 94.198.59.143] + +0.0.0.0 3w.nuggad.net +0.0.0.0 71i.nuggad.net +0.0.0.0 ad.u.nuggad.net +0.0.0.0 adcloud-dp.nuggad.net +0.0.0.0 adselect.nuggad.net +0.0.0.0 asqlesechos.nuggad.net +0.0.0.0 asqnext.nuggad.net +0.0.0.0 bei.nuggad.net +0.0.0.0 berldk.nuggad.net +0.0.0.0 billboard.nuggad.net +0.0.0.0 ci.nuggad.net +0.0.0.0 dbadk.nuggad.net +0.0.0.0 eu.nuggad.net +0.0.0.0 gwp.nuggad.net +0.0.0.0 ip.nuggad.net +0.0.0.0 jpdk.nuggad.net +0.0.0.0 jobzdk.nuggad.net +0.0.0.0 jubdk.nuggad.net +0.0.0.0 jppol.nuggad.net +0.0.0.0 krone.nuggad.net +0.0.0.0 medienhaus.nuggad.net +0.0.0.0 mobilede.nuggad.net +0.0.0.0 msnad.nuggad.net +0.0.0.0 mtv.nuggad.net +0.0.0.0 nettno.nuggad.net +0.0.0.0 nuggad.nuggad.net +0.0.0.0 oms.nuggad.net +0.0.0.0 poldk.nuggad.net +0.0.0.0 rmsi.nuggad.net +0.0.0.0 si.nuggad.net +0.0.0.0 yahoo.nuggad.net +# [NuVox][AS11456][65.23.0.0 - 65.23.63.255] + +# [NuVox][AS11456][70.43.0.0 - 70.43.255.255] + +# [Oc3 Networks][AS29761][173.254.192.0 - 173.254.255.255] + +# [Oc3 Networks][AS29761][204.152.192.0 - 204.152.223.255] + +0.0.0.0 counter.dt07.net +# [Oc3 Networks][AS29761][72.11.128.0 - 72.11.159.255] + +0.0.0.0 blue.sexer.com +0.0.0.0 hello.sexer.com +0.0.0.0 white.sexer.com +# [Oc3 Networks][AS29761][96.44.128.0 - 96.44.191.255] + +# [Oleksandr Oleksandrovich][AS45045][91.203.144.0 - 91.203.147.255] + +# [Olm][AS19916][65.18.128.0 - 65.18.223.255] + +0.0.0.0 it.bannerout.com +0.0.0.0 www.firebanner.com +0.0.0.0 www.scambiobanner.tv +# [Olm][AS19916][69.94.0.0 - 69.94.127.255] + +0.0.0.0 s3.pageranktop.com +# [Omniture / Adobe][AS15224][192.243.224.0 - 192.243.255.255] + +# [Omniture / Adobe][AS15224][66.117.16.0 - 66.117.31.255] + +0.0.0.0 foxnews.tt.omtrdc.net +# [Omniture / Adobe][AS15224][66.235.128.0 - 66.235.159.255] + +0.0.0.0 som.aeroplan.com +0.0.0.0 tracking.everydayhealth.com +0.0.0.0 omni.focus.de +0.0.0.0 metrics.ilsole24ore.com +0.0.0.0 metrics.laredoute.fr +0.0.0.0 stats2.luckymag.com +0.0.0.0 metrics.necn.com +# 0.0.0.0 citicorpcreditservic.tt.omtrdc.net + +0.0.0.0 metrics.rcsmetrics.it +0.0.0.0 metrics.td.com +0.0.0.0 tracking.whattoexpect.com +# [Omniture][AS15224][Wildcard DNS] + +# 0.0.0.0 appleglobal.112.2o7.net #[affects Apple site] + +0.0.0.0 byubroadcast.112.2o7.net +0.0.0.0 kasperthreatpostprod.112.2o7.net +0.0.0.0 kaspersky.122.2o7.net +0.0.0.0 nautilus.122.2o7.net +# 0.0.0.0 survey.112.2o7.net #[affect Sprint.com] + +0.0.0.0 tirerackcom.112.2o7.net +0.0.0.0 stats.esomniture.com +0.0.0.0 www.omniture.com +0.0.0.0 www.touchclarity.com +# [Omniture via Misc Sites] + +0.0.0.0 nossl.aafp.org +0.0.0.0 metrics.aarp.org +0.0.0.0 ewstv.abc15.com +0.0.0.0 metrics.acehardware.com +# 0.0.0.0 stats.adobe.com #[affects MacOS updates] + +0.0.0.0 analytic.ae.com +0.0.0.0 metrics.aetn.com +0.0.0.0 metric.allrecipes.com +0.0.0.0 stats2.allure.com +0.0.0.0 b.alot.com +0.0.0.0 analytics.amakings.com +0.0.0.0 metrics.amd.com +0.0.0.0 metrics.americancityandcounty.com +# 0.0.0.0 metrics.ancestry.co.uk #[affects login] + +0.0.0.0 metric.angieslist.com +0.0.0.0 o.sa.aol.com +0.0.0.0 s.sa.aol.com +0.0.0.0 metrics.apartmentfinder.com +# 0.0.0.0 metrics.apple.com #[affects Apple site/MacOS] + +# 0.0.0.0 securemetrics.apple.com #[affects Apple site/MacOS] + +0.0.0.0 metrics.ariba.com +0.0.0.0 omniture.artinstitutes.edu +0.0.0.0 stats2.arstechnica.com +0.0.0.0 vs.asianave.com +0.0.0.0 metrics.autotrader.co.uk +0.0.0.0 metrics.autobytel.com +0.0.0.0 metrics.automobilemag.com +0.0.0.0 www2.autopartswarehouse.com +0.0.0.0 metrics.azfamily.com +0.0.0.0 metrics.babycenter.com +0.0.0.0 metrics.babycentre.co.uk +0.0.0.0 stats.backcountry.com +0.0.0.0 omni.basspro.com +0.0.0.0 sa.bbc.co.uk +0.0.0.0 metrics.beachbody.com +0.0.0.0 a.beliefnet.com +0.0.0.0 metrics.bestbuy.com +0.0.0.0 metrics.bet.com +0.0.0.0 n.betus.com +0.0.0.0 metrics.bhg.com +0.0.0.0 metrics.bitdefender.com +0.0.0.0 metric.bizjournals.com +0.0.0.0 metrics.blackberry.com +0.0.0.0 vs.blackplanet.com +0.0.0.0 om.blockbuster.com +0.0.0.0 metrics.bloomberg.com +0.0.0.0 o.bluewin.ch +0.0.0.0 n.bodybuilding.com +0.0.0.0 stats.bookingbuddy.com +0.0.0.0 metrics.bose.com +0.0.0.0 om.businessweek.com +0.0.0.0 stats.buycostumes.com +0.0.0.0 omni.canadiantire.ca +0.0.0.0 metrics.car.com +0.0.0.0 metrics.caranddriver.com +0.0.0.0 metrics.cars.com +0.0.0.0 metrics.carbonite.com +0.0.0.0 metrics.carphonewarehouse.com +0.0.0.0 omni.cash.ch +0.0.0.0 om.cbsi.com +0.0.0.0 mtrics.cdc.gov +0.0.0.0 metrics.centex.com +0.0.0.0 metrics.chacha.com +0.0.0.0 omniture.chip.de +0.0.0.0 metrics.chron.com +# 0.0.0.0 metrics1.citibank.com #[affects login] + +0.0.0.0 om.cnet.co.uk +0.0.0.0 track.collegeboard.com +0.0.0.0 serviceo.comcast.net +0.0.0.0 metrics.compactappliance.com +# 0.0.0.0 metrics.consumerreports.org #[affects login] + +0.0.0.0 metrics.corus.ca +0.0.0.0 metrics.cosmopolitan.co.uk +0.0.0.0 omn.crackle.com +0.0.0.0 om.craftsman.com +0.0.0.0 smetrics.creditreport.com +0.0.0.0 metrics.crystalcruises.com +0.0.0.0 omni.csc.com +0.0.0.0 metrics.dailymotion.com +0.0.0.0 metrics.dailystrength.org +0.0.0.0 nsm.dell.com +0.0.0.0 metrics.delta.com +0.0.0.0 metrics.dentonrc.com +0.0.0.0 stats2.details.com +0.0.0.0 metrics.dickssportinggoods.com +0.0.0.0 stats.dice.com +0.0.0.0 img.discovery.com +0.0.0.0 metrics.discovery.com +0.0.0.0 omni.dispatch.com +0.0.0.0 metrics.divinecaroline.com +0.0.0.0 metrics.diy.com +0.0.0.0 metrics.doctoroz.com +0.0.0.0 metrics.dollargeneral.com +0.0.0.0 om.dowjoneson.com +0.0.0.0 stats.drugstore.com +0.0.0.0 metrics.dunkindonuts.com +0.0.0.0 metrics.ems.com +0.0.0.0 wa.eonline.com +0.0.0.0 wa.essent.nl +0.0.0.0 om.expedia.com +0.0.0.0 metrics.express.com +0.0.0.0 metrics.expressen.se +0.0.0.0 o.fandango.com +0.0.0.0 metrics.fedex.com +0.0.0.0 metrics.finishline.com +0.0.0.0 metrics.fitnessmagazine.com +0.0.0.0 metrics.ford.com +0.0.0.0 metrics.foreignpolicy.com +0.0.0.0 smetrics.freecreditreport.com +0.0.0.0 metrics.frontlineshop.com +0.0.0.0 metrics.flyingmag.com +0.0.0.0 metrics.fnac.es +0.0.0.0 sc-forbes.forbes.com +0.0.0.0 a.fox.com +0.0.0.0 track.futureshop.ca +0.0.0.0 metrics.gamestop.com +0.0.0.0 metrics.gcimetrics.com +0.0.0.0 stats2.gq.com +0.0.0.0 stats2.glamour.com +0.0.0.0 metrics.gnc.com +0.0.0.0 stats2.golfdigest.com +0.0.0.0 metrics.govexec.com +0.0.0.0 stats.grubstreet.com +# 0.0.0.0 w88.go.com #[affects espn.com] + +0.0.0.0 metrics.harley-davidson.com +0.0.0.0 analytics.hayneedle.com +0.0.0.0 metrics.hbogo.com +0.0.0.0 minerva.healthcentral.com +0.0.0.0 metrics.hhgregg.com +0.0.0.0 metrics.homebase.co.uk +0.0.0.0 omt.honda.com +0.0.0.0 metrics.hoovers.com +0.0.0.0 metrics.howstuffworks.com +0.0.0.0 my.iheartradio.com +0.0.0.0 sc.independent.co.uk +0.0.0.0 metrics.imvu.com +0.0.0.0 www91.intel.com +0.0.0.0 metrics.store.irobot.com +0.0.0.0 dc.kaboodle.com +0.0.0.0 metrics.kbb.com +0.0.0.0 ww9.kohls.com +0.0.0.0 metrics.lawyers.com +0.0.0.0 metrics.lehighvalleylive.com +0.0.0.0 metrics.us.levi.com +0.0.0.0 metrics.lexus.com +0.0.0.0 stats.libresse.no +0.0.0.0 om.lonelyplanet.com +# 0.0.0.0 omni.macworld.com #[affects Safari] + +0.0.0.0 analytics.mail-corp.com +0.0.0.0 metric.makemytrip.com +0.0.0.0 metric.marthastewart.com +0.0.0.0 metrics.mcafee.com +0.0.0.0 tracking.medpagetoday.com +0.0.0.0 metrics.mercola.com +0.0.0.0 report.mitsubishicars.com +0.0.0.0 an.mlb.com +0.0.0.0 metric.modcloth.com +0.0.0.0 metrics.moneymart.ca +0.0.0.0 metrics.more.com +0.0.0.0 stats.mvilivestats.com +0.0.0.0 metric.mylife.com +0.0.0.0 oimg.nbcuni.com +0.0.0.0 om.neimanmarcus.com +0.0.0.0 ometrics.netapp.com +0.0.0.0 metrics.newcars.com +0.0.0.0 metrics.nissanusa.com +0.0.0.0 metrics.nj.com +0.0.0.0 metrics.nola.com +0.0.0.0 metrics.nutrisystem.com +0.0.0.0 stats.nymag.com +0.0.0.0 om.onlineshoes.com +0.0.0.0 o.opentable.com +0.0.0.0 metrics.oprah.com +0.0.0.0 metrics.pagoda.com +0.0.0.0 stats.pandora.com +0.0.0.0 metrics.parents.com +0.0.0.0 metrics.pe.com +0.0.0.0 metrics.pennlive.com +0.0.0.0 metrics.penton.com +0.0.0.0 metric.petinsurance.com +0.0.0.0 metrics.petsmart.com +0.0.0.0 metrics.us.playstation.com +0.0.0.0 metrics.politico.com +0.0.0.0 metrics.performgroup.com +0.0.0.0 metrics.radioshack.com +0.0.0.0 metrics.ralphlauren.com +0.0.0.0 mtrcs.redhat.com +0.0.0.0 metric.rent.com +0.0.0.0 metrics.retailmenot.com +0.0.0.0 data.ritzcarlton.com +0.0.0.0 om.rogersmedia.com +0.0.0.0 metrics.seattlepi.com +0.0.0.0 metrics.seenon.com +0.0.0.0 stats2.self.com +0.0.0.0 om.sfgate.com +0.0.0.0 metrics.sharecare.com +0.0.0.0 ou.shutterfly.com +0.0.0.0 metrics.shoedazzle.com +0.0.0.0 metrics.shopoon.fr +0.0.0.0 omniture.shopstyle.com +0.0.0.0 metrics.silive.com +0.0.0.0 b.skinstore.com +0.0.0.0 metrics.sky.com +# 0.0.0.0 metrics.skype.com + +0.0.0.0 metrics.slate.com +0.0.0.0 metrics.speedousa.com +0.0.0.0 omni.sportingnews.com +0.0.0.0 metrics.solarwinds.com +0.0.0.0 metrics.sony.com +0.0.0.0 omn.sonypictures.com +0.0.0.0 metrics.southwest.com +# 0.0.0.0 metrics.sprint.com #[affects login] + +0.0.0.0 metrics.starwoodhotels.com +0.0.0.0 omniture.stuff.co.nz +0.0.0.0 stats.style.com +0.0.0.0 metric.superpages.com +0.0.0.0 metrics.svd.se +0.0.0.0 om.symantec.com +0.0.0.0 metrics.syracuse.com +0.0.0.0 analytics.tbs.com +0.0.0.0 metrics.teambeachbody.com +0.0.0.0 stats2.teenvogue.com +0.0.0.0 info.telstra.com +0.0.0.0 metrics.tgw.com +0.0.0.0 metrics.thinkgeek.com +0.0.0.0 metrics.three.co.uk +0.0.0.0 metrics.ticketmaster.com +0.0.0.0 tgd.timesonline.co.uk +# 0.0.0.0 metric.timewarnercable.com #[affects billing?] + +0.0.0.0 metrics.tlc.com +0.0.0.0 metrics.toptenreviews.com +0.0.0.0 metrics.toysrus.com +0.0.0.0 metrics.traderonline.com +0.0.0.0 om.truecar.com +0.0.0.0 metric.trulia.com +0.0.0.0 metrics.turner.com +0.0.0.0 metrics.tvguide.com +0.0.0.0 metrics.uol.com.br +0.0.0.0 sleep.vermontteddybear.com +0.0.0.0 metrics.vividseats.com +0.0.0.0 sc.vmware.com +0.0.0.0 metrics.vodafone.co.uk +0.0.0.0 metric.volkswagen.com +0.0.0.0 webstats.volvo.com +0.0.0.0 stats.voyages-sncf.com +0.0.0.0 stats.vulture.com +0.0.0.0 wa.and.co.uk +# 0.0.0.0 metrics.washingtonpost.com #[affects login] + +0.0.0.0 webanalyticsnossl.websense.com +0.0.0.0 std.o.webmd.com +0.0.0.0 metrics.which.co.uk +0.0.0.0 metrics.winsupersite.com +0.0.0.0 stats2.wmagazine.com +0.0.0.0 an.worldbaseballclassic.com +0.0.0.0 metric.worldcat.org +0.0.0.0 metrics.worldmarket.com +# 0.0.0.0 metric.wtop.com #[affects login] + +0.0.0.0 s.xbox.com +0.0.0.0 smetrics.yellowbook.com +0.0.0.0 metric.yellowpages.com +0.0.0.0 track.www.zazzle.com +# [Omniture / Offermatica][66.150.139.0 - 66.150.139.63] + +0.0.0.0 mbox.offermatica.intuit.com +0.0.0.0 mbox12.offermatica.com +# [Omniture][AS15224][66.235.128.0 - 66.235.159.255] + +0.0.0.0 metrics.iconfitness.com +# [Omniture / Offermatica][70.42.13.0 - 70.42.13.255] + +0.0.0.0 mbox3.offermatica.com +0.0.0.0 mbox3e.offermatica.com +0.0.0.0 mbox4.offermatica.com +0.0.0.0 mbox4e.offermatica.com +0.0.0.0 mbox9e.offermatica.com +# [Omniture / Offermatica][72.5.238.0 - 72.5.238.63] + +0.0.0.0 geo.offermatica.com +# [Omniture / Offermatica] + +0.0.0.0 mbox6.offermatica.com +# [Omniture / Adobe][AS10763] + +0.0.0.0 a.advanstar.com +0.0.0.0 a.amd.com +0.0.0.0 a.answers.com +0.0.0.0 a.autoexpress.co.uk +0.0.0.0 a.bizarremag.com +0.0.0.0 a.cbc.ca +0.0.0.0 vendorweb.citibank.com +0.0.0.0 b.computerworlduk.com +0.0.0.0 a.custompc.co.uk +0.0.0.0 ap101.curves.com +0.0.0.0 b.digitalartsonline.co.uk +0.0.0.0 a.environmentaldefense.org +0.0.0.0 a.evo.co.uk +0.0.0.0 a.fandango.com +0.0.0.0 wss.hbpl.co.uk +0.0.0.0 a.heretv.com +0.0.0.0 h.hollywood.com +0.0.0.0 a.independent.co.uk +0.0.0.0 a.itpro.co.uk +0.0.0.0 a.law.com +0.0.0.0 a.macuser.co.uk +0.0.0.0 a.modernmedicine.com +0.0.0.0 cs.montrealplus.ca +0.0.0.0 a.networkworld.com +0.0.0.0 a.pcpro.co.uk +0.0.0.0 a.pokerplayermagazine.co.uk +0.0.0.0 c.realtytrac.com +0.0.0.0 a.shop.com +0.0.0.0 a.spicetv.com +0.0.0.0 h.spill.com +0.0.0.0 a.tempurpedic.com +0.0.0.0 ngd.thesun.co.uk +0.0.0.0 a.tiscali.co.uk +0.0.0.0 a.vonage.com +0.0.0.0 ws.yellowpages.ca +# [Online S.a.s][AS12876][163.172.0.0 - 163.172.255.255] + +0.0.0.0 imgg.adskeeper.co.uk +0.0.0.0 servicer.adskeeper.co.uk +0.0.0.0 wsp.adskeeper.co.uk +0.0.0.0 adexchange.guru +# [Online S.a.s][AS12876][195.154.128.0 - 195.154.255.255] + +0.0.0.0 admedit.net +0.0.0.0 www.freestats.ws +# [Online S.a.s][AS12876][212.129.0.0 - 212.129.21.255] + +0.0.0.0 geoip.edagames.com +# [Online S.a.s][AS12876][212.83.153.103] + +# [Online S.a.s][AS12876][62.210.128.0 - 62.210.255.255] + +0.0.0.0 5advertise.com +0.0.0.0 s42.cpmaffiliation.com +0.0.0.0 www.cpmaffiliation.com +# [Online S.a.s][AS12876][62.4.27.32 - 62.4.27.63] + +0.0.0.0 code.d-agency.net +0.0.0.0 switch.d-agency.net +0.0.0.0 code.rtbsystem.com +# [Openminds][AS30961][188.93.102.23 - 188.93.103.255] + +0.0.0.0 ads-colruytgroup.adhese.com +0.0.0.0 ads-nrc.adhese.com +0.0.0.0 pool-nrc.adhese.com +0.0.0.0 ads.pebblemedia.adhese.com +0.0.0.0 ads.persgroep.adhese.com +0.0.0.0 pool-colruytgroup.adhese.com +0.0.0.0 pool.persgroep.adhese.com +0.0.0.0 ads.roularta.adhese.com +0.0.0.0 pool.roularta.adhese.com +0.0.0.0 pebble-adhese.gva.be +0.0.0.0 pebble-adhese.hbvl.be +# [Openminds][AS30961][37.72.160.15] + +0.0.0.0 ads-pebblemedia.adhese.com +0.0.0.0 user-sync.adhese.com +# [Openx][AS36089][173.241.240.0 - 173.241.255.255] + +0.0.0.0 ox-d.buddytv.com +0.0.0.0 ox-d.cloud9-media.net +0.0.0.0 ox-d.digiday.com +0.0.0.0 ox-d.eluniversal.com +0.0.0.0 ox-d.footballmedia.com +0.0.0.0 ox-d.gamer-network.net +0.0.0.0 ox-d.gamerpublishing.com +0.0.0.0 ox-d.globalpost.com +0.0.0.0 ox-d.hdcmedia.nl +0.0.0.0 ox-d.iflscience.com +0.0.0.0 ox-d.johnstonpress.co.uk +0.0.0.0 ox-d.majorgeeks.com +0.0.0.0 ox-d.mirror-digital.com +0.0.0.0 ox-d.mm1x.nl +0.0.0.0 ox-d.mmaadnet.com +0.0.0.0 ox-d.motogp.com +0.0.0.0 ox-d.officer.com +0.0.0.0 33across-d.openx.net +0.0.0.0 aa-d.openx.net +0.0.0.0 amu-d.openx.net +0.0.0.0 advancedigital-d.openx.net +0.0.0.0 bizjournals-d.openx.net +0.0.0.0 bloggernetwork-d.openx.net +0.0.0.0 boston-d.openx.net +0.0.0.0 brainfall-d.openx.net +0.0.0.0 brainyquote-d.openx.net +0.0.0.0 coed-d.openx.net +0.0.0.0 complex-media-d.openx.net +0.0.0.0 condenast-d.openx.net +0.0.0.0 digikulture-d.openx.net +0.0.0.0 digitaltrends-d.openx.net +0.0.0.0 digitalfirst-d.openx.net +0.0.0.0 elitedaily-d.openx.net +0.0.0.0 eu-u.openx.net +0.0.0.0 fanserv-d.openx.net +0.0.0.0 freestar-d.openx.net +0.0.0.0 funnyordie-d.openx.net +0.0.0.0 hsw-d.openx.net +0.0.0.0 idguk1-d.openx.net +0.0.0.0 insticator-d.openx.net +0.0.0.0 jp-u.openx.net +0.0.0.0 kiosked-d.openx.net +0.0.0.0 kiplinger-d.openx.net +0.0.0.0 mailonline-d.openx.net +0.0.0.0 majorgeeks-d.openx.net +0.0.0.0 mediadc-d.openx.net +0.0.0.0 media122-d.openx.net +0.0.0.0 mediavine-d.openx.net +0.0.0.0 meredithlocal-d.openx.net +0.0.0.0 monkey-broker-d.openx.net +0.0.0.0 motleyfool-d.openx.net +0.0.0.0 olxro-d.openx.net +0.0.0.0 oxjapan-d.openx.net +0.0.0.0 paste-d.openx.net +0.0.0.0 philly-d.openx.net +0.0.0.0 pmc-d.openx.net +0.0.0.0 publir-d.openx.net +0.0.0.0 prod-d.openx.com +0.0.0.0 propermedia-d.openx.net +0.0.0.0 reuters-d.openx.net +0.0.0.0 sbnationbidder-d.openx.net +0.0.0.0 spanishdict-d.openx.net +0.0.0.0 spinmedia-d.openx.net +0.0.0.0 stroer-d.openx.net +0.0.0.0 tango-d.openx.net +0.0.0.0 thehill-d.openx.net +0.0.0.0 titangate-d.openx.net +0.0.0.0 topix-d.openx.net +0.0.0.0 u.openx.net +0.0.0.0 us-u.openx.net +0.0.0.0 universal-d.openx.net +0.0.0.0 veuhub-d.openx.net +0.0.0.0 warnerbros-d.openx.net +0.0.0.0 wetpaint-d.openx.net +0.0.0.0 zealotnetworks-d.openx.net +0.0.0.0 ox-d.openxadexchange.com +0.0.0.0 d.peoplesearchads.com +0.0.0.0 ox-d.photobucket.com +0.0.0.0 ax-d.pixfuture.net +0.0.0.0 ox-d.popmatters.com +0.0.0.0 ox-d.rantsports.com +0.0.0.0 ox-d.ask.servedbyopenx.com +0.0.0.0 ox-d.apax.servedbyopenx.com +0.0.0.0 ox-d.bauer.servedbyopenx.com +0.0.0.0 ox-d.bizjournals.servedbyopenx.com +0.0.0.0 ox-d.boston.servedbyopenx.com +0.0.0.0 ox-d.cheezburger.servedbyopenx.com +0.0.0.0 ox-d.concourse.servedbyopenx.com +0.0.0.0 ox-d.curse.servedbyopenx.com +0.0.0.0 ox-d.evolvemedia.servedbyopenx.com +0.0.0.0 ox-d.futurenet.servedbyopenx.com +0.0.0.0 ox-d.ibt.servedbyopenx.com +0.0.0.0 ox-d.imgur.servedbyopenx.com +0.0.0.0 ox-d.leessp.servedbyopenx.com +0.0.0.0 ox-d.mediavine.servedbyopenx.com +0.0.0.0 ox-d.nydailynews.servedbyopenx.com +0.0.0.0 ox-d.philly.servedbyopenx.com +0.0.0.0 ox-d.publisherdesk.servedbyopenx.com +0.0.0.0 ox-d.ranker.servedbyopenx.com +0.0.0.0 ox-d.realtor.servedbyopenx.com +0.0.0.0 ox-d.sinclair.servedbyopenx.com +0.0.0.0 ox-d.thechive.servedbyopenx.com +0.0.0.0 ox-d.venturebeat.servedbyopenx.com +0.0.0.0 ox-d.sidereel.com +0.0.0.0 adserv.bulletinmarketing.com +0.0.0.0 a.unanimis.co.uk +0.0.0.0 ox-d.verivox.de +0.0.0.0 ox-d.viralnova.com +0.0.0.0 ox-d.washingtonpost.servedbyopenx.com +0.0.0.0 ads.webcamclub.com +# [Opsource][AS19461][209.34.64.0 - 209.34.95.255] + +0.0.0.0 www.avnads.com +# [Orange County][AS20155][216.171.160.0 - 216.171.175.255] + +# [Orcs Web][AS19271][206.72.112.0 - 206.72.127.255] + +0.0.0.0 314.hittail.com +0.0.0.0 815.hittail.com +0.0.0.0 922.hittail.com +0.0.0.0 1262.hittail.com +0.0.0.0 30811.hittail.com +0.0.0.0 3241.hittail.com +0.0.0.0 3415.hittail.com +0.0.0.0 3463.hittail.com +0.0.0.0 3918.hittail.com +0.0.0.0 3933.hittail.com +0.0.0.0 3957.hittail.com +0.0.0.0 4134.hittail.com +0.0.0.0 4560.hittail.com +0.0.0.0 4612.hittail.com +0.0.0.0 8260.hittail.com +0.0.0.0 8959.hittail.com +0.0.0.0 9394.hittail.com +0.0.0.0 9446.hittail.com +0.0.0.0 9547.hittail.com +0.0.0.0 9563.hittail.com +0.0.0.0 9571.hittail.com +0.0.0.0 10006.hittail.com +0.0.0.0 10168.hittail.com +0.0.0.0 12877.hittail.com +0.0.0.0 13223.hittail.com +0.0.0.0 14228.hittail.com +0.0.0.0 15141.hittail.com +0.0.0.0 15628.hittail.com +0.0.0.0 15694.hittail.com +0.0.0.0 16565.hittail.com +0.0.0.0 19097.hittail.com +0.0.0.0 19500.hittail.com +0.0.0.0 19533.hittail.com +0.0.0.0 20909.hittail.com +0.0.0.0 21807.hittail.com +0.0.0.0 22537.hittail.com +0.0.0.0 23315.hittail.com +0.0.0.0 23837.hittail.com +0.0.0.0 24725.hittail.com +0.0.0.0 24809.hittail.com +0.0.0.0 25057.hittail.com +0.0.0.0 26288.hittail.com +0.0.0.0 27460.hittail.com +0.0.0.0 27891.hittail.com +0.0.0.0 28305.hittail.com +0.0.0.0 30001.hittail.com +0.0.0.0 31335.hittail.com +0.0.0.0 31870.hittail.com +0.0.0.0 34673.hittail.com +0.0.0.0 35385.hittail.com +0.0.0.0 71158.hittail.com +0.0.0.0 73091.hittail.com +0.0.0.0 77266.hittail.com +0.0.0.0 78843.hittail.com +0.0.0.0 93367.hittail.com +0.0.0.0 99400.hittail.com +0.0.0.0 100065.hittail.com +0.0.0.0 103532.hittail.com +0.0.0.0 106242.hittail.com +0.0.0.0 108411.hittail.com +0.0.0.0 tracking.hittail.com +0.0.0.0 tracking2.hittail.com +# [Oversee.net][AS33626][204.13.160.0 - 204.13.163.255] + +0.0.0.0 images.domainsponsor.com +0.0.0.0 spi.domainsponsor.com +0.0.0.0 dsparking.com +# [Oversee.net][208.73.208.0 - 208.73.215.255] + +0.0.0.0 dsnextgen.com +0.0.0.0 www.dsnextgen.com +# [Oversee.net / Seevast][Moniker][Kanoodle] + +0.0.0.0 www.kanoodle.com +0.0.0.0 content.pulse360.com +# [Ovh Sas][AS16276][142.4.192.0 - 142.4.223.255] + +0.0.0.0 ads.videoadex.com +# [Ovh Sas][AS16276][158.69.0.0 - 158.69.255.255] + +0.0.0.0 plug.plugerr.com +# [Ovh Sas][AS16276][176.31.145.136 - 176.31.145.139] + +0.0.0.0 geoloc4.geovisite.com +0.0.0.0 adyoulike.omnitagjs.com +0.0.0.0 prosearchs.in +0.0.0.0 whoads.net +# [Ovh Sas][AS16276][178.32.18.128 - 178.33.18.191] + +0.0.0.0 cpm1.affiz.net +0.0.0.0 creativecdn.com +0.0.0.0 www.efficienttraffic.com +0.0.0.0 c1.onedmp.com +0.0.0.0 banners.oxiads.fr +# [Ovh Sas][AS16276][188.165.192.0 - 188.165.255.255] + +0.0.0.0 hub.adlpartner.com +0.0.0.0 tracking.propellerads.com +# [Ovh Sas][AS16276][192.95.0.0 - 192.95.63.255] + +0.0.0.0 www5.afsanalytics.com +0.0.0.0 ad.asntown.net +0.0.0.0 marketingenhanced.com +0.0.0.0 www2.yidsense.com +# [Ovh Sas][AS16276][192.99.0.0 - 192.99.255.255] + +0.0.0.0 www8.afsanalytics.com +0.0.0.0 www.yidsense.com +# [Ovh Sas][198.27.64.0 - 198.50.255.255] + +0.0.0.0 cdn.tapstream.com +# [Ovh Sas][213.186.33.0 - 213.186.33.255] + +0.0.0.0 static.canalstat.com +0.0.0.0 www.geoworldonline.com +0.0.0.0 metriweb.be +# [Ovh Sas / Eurobarre][213.186.49.64 - 213.186.49.79] + +# [Ovh Sas][213.251.131.0 - 213.251.131.255] + +# [Ovh Sas][213.251.176.0 - 213.251.183.255] + +# [Ovh Sas][AS16276][37.187.128.0 - 37.187.135.255] + +0.0.0.0 go27.net +0.0.0.0 eu1.heatmap.it +0.0.0.0 oxybe.com +0.0.0.0 pubted.com +0.0.0.0 ucoxa.work +# [Ovh Sas][37.59.0.0 - 37.59.63.255] + +0.0.0.0 www.frameptp.com +0.0.0.0 geoloc16.geovisite.com +# [Ovh Sas][46.105.96.0 - 46.105.127.255] + +0.0.0.0 fwg0b0sfig.s.ad6media.fr +0.0.0.0 ads.databrainz.com +0.0.0.0 geoloc2.geovisite.com +0.0.0.0 u.heatmap.it +0.0.0.0 megapopads.com +0.0.0.0 sender.megapopads.com +0.0.0.0 tracking.veille-referencement.com +# [Ovh Sas][AS16276][5.135.203.32 - 5.135.203.47] + +0.0.0.0 static.adbutter.net +0.0.0.0 ads.clipconverter.cc +0.0.0.0 sender.hipersushiads.com +0.0.0.0 fo-api.omnitagjs.com +0.0.0.0 stabx.net +# [Ovh Sas][AS16276][5.39.39.136 - 5.39.50.123] + +0.0.0.0 st-1.1fichier.com +0.0.0.0 r.ad6media.fr +0.0.0.0 adbanner.adxcore.com +0.0.0.0 l.adxcore.com +0.0.0.0 ad.adxcore.com +0.0.0.0 ad.ohmyad.co +# [Ovh Sas][87.98.240.0 - 87.98.247.255] + +0.0.0.0 adplans.net +0.0.0.0 www.alenty.com +0.0.0.0 secure.audienceinsights.net +0.0.0.0 ox2.sterta.pl +# [Ovh Sas][91.121.144.0 - 91.121.191.255] + +0.0.0.0 server1.affiz.net +0.0.0.0 apicit.net +0.0.0.0 www.canalstat.com +0.0.0.0 stats.click-internet.fr +0.0.0.0 www.diffusionpub.com +0.0.0.0 dreamad.org +0.0.0.0 3wregie.ezakus.net +0.0.0.0 overblog.ezakus.net +0.0.0.0 ads.freecaster.tv +0.0.0.0 geoloc12.geovisite.com +0.0.0.0 geoloc13.geovisite.com +0.0.0.0 geoloc14.geovisite.com +0.0.0.0 www.net-pratique.fr +0.0.0.0 ads1.nexdra.com +0.0.0.0 www.noowho.com +0.0.0.0 piwik.org +0.0.0.0 hit.reference-sexe.com +0.0.0.0 tracker.squidanalytics.com +0.0.0.0 ads.stickyadstv.com +0.0.0.0 script.yeb.biz +# [Ovh Sas][AS16276][94.23.0.0 - 94.23.63.255] + +0.0.0.0 fr.1sponsor.com +0.0.0.0 adv.440network.com +0.0.0.0 fr.cim.clickintext.net +0.0.0.0 fr.slidein.clickintext.net +0.0.0.0 fr.85.clickintext.net +0.0.0.0 top.c-stat.eu +0.0.0.0 exgfsbucks.com +0.0.0.0 geoloc17.geovisite.com +0.0.0.0 www.livecount.fr +0.0.0.0 adtools.matrix-cash.com +0.0.0.0 adhosting.ohmyad.co +0.0.0.0 www.one-door.com +0.0.0.0 c.thestat.net +0.0.0.0 www.toptracker.ru +0.0.0.0 www.pro.webstat.pl +0.0.0.0 tracking.wisepops.com +0.0.0.0 www.xstat.pl +0.0.0.0 zbiornik.com +# [Panther Express][AS36408][66.114.48.0 - 66.114.63.255] + +0.0.0.0 cache.adviva.net +0.0.0.0 media.baventures.com +0.0.0.0 rkcache.brandreachsys.com +0.0.0.0 images.ddc.com +0.0.0.0 cdn.firstlook.com +# 0.0.0.0 adm.fwmrm.net #[affects nhl.com] + +0.0.0.0 m2.fwmrm.net +0.0.0.0 cache.gfrevenge.com +0.0.0.0 cache.izearanks.com +0.0.0.0 cdn.media6degrees.com +0.0.0.0 static.meteorsolutions.com +0.0.0.0 tas.orangeads.fr +0.0.0.0 cache.specificmedia.com +0.0.0.0 wp.vizu.com +# [Peer 1][AS13768][107.6.0.0 - 107.6.63.255] + +0.0.0.0 cm.eyereturn.com +# [Peer 1][AS13768][176.74.176.160 - 176.74.176.191] + +0.0.0.0 return.uk.domainnamesales.com +# [Peer 1][AS13768][207.198.64.0 - 207.198.127.255] + +# [Peer 1][AS13768][209.15.0.0 - 209.15.255.255] + +0.0.0.0 use-tor.adsrvr.org +0.0.0.0 btprmnav.com +0.0.0.0 pixel.crosspixel.net +# [Peer 1][209.25.128.0 - 209.25.255.255] + +0.0.0.0 tracking.aimediagroup.com +# [Peer 1][216.122.0.0 - 216.122.255.255] + +0.0.0.0 as1.mistupid.com +# [Peer 1][AS13768][216.151.208.0 - 216.151.223.255] + +# [Peer 1][216.157.0.0 - 216.157.111.255] + +0.0.0.0 androidsdk.ads.mp.mydas.mobi +0.0.0.0 bank01.ads.dt.mydas.mobi +0.0.0.0 bank02.ads.dt.mydas.mobi +0.0.0.0 bank03.ads.dt.mydas.mobi +0.0.0.0 bank04.ads.dt.mydas.mobi +0.0.0.0 bank05.ads.dt.mydas.mobi +0.0.0.0 bank06.ads.dt.mydas.mobi +0.0.0.0 bank07.ads.dt.mydas.mobi +0.0.0.0 bank08.ads.dt.mydas.mobi +0.0.0.0 bank09.ads.dt.mydas.mobi +0.0.0.0 bank10.ads.dt.mydas.mobi +0.0.0.0 bank11.ads.dt.mydas.mobi +0.0.0.0 bank12.ads.dt.mydas.mobi +0.0.0.0 bank13.ads.dt.mydas.mobi +0.0.0.0 bank15.ads.dt.mydas.mobi +0.0.0.0 bank16.ads.dt.mydas.mobi +0.0.0.0 bank17.ads.dt.mydas.mobi +0.0.0.0 bank18.ads.dt.mydas.mobi +0.0.0.0 bank19.ads.dt.mydas.mobi +0.0.0.0 bank20.ads.dt.mydas.mobi +0.0.0.0 bank01.ads.mp.mydas.mobi +0.0.0.0 bank02.ads.mp.mydas.mobi +0.0.0.0 bank03.ads.mp.mydas.mobi +0.0.0.0 bank04.ads.mp.mydas.mobi +0.0.0.0 bank05.ads.mp.mydas.mobi +0.0.0.0 bank06.ads.mp.mydas.mobi +0.0.0.0 bank07.ads.mp.mydas.mobi +0.0.0.0 bank08.ads.mp.mydas.mobi +0.0.0.0 bank09.ads.mp.mydas.mobi +0.0.0.0 bank10.ads.mp.mydas.mobi +0.0.0.0 bank11.ads.mp.mydas.mobi +0.0.0.0 bank12.ads.mp.mydas.mobi +0.0.0.0 bank13.ads.mp.mydas.mobi +0.0.0.0 bank15.ads.mp.mydas.mobi +0.0.0.0 bank16.ads.mp.mydas.mobi +0.0.0.0 bank17.ads.mp.mydas.mobi +0.0.0.0 bank18.ads.mp.mydas.mobi +0.0.0.0 bank19.ads.mp.mydas.mobi +0.0.0.0 bank20.ads.mp.mydas.mobi +# [Peer 1][AS13768][46.20.119.247 - 46.20.119.247] + +0.0.0.0 srv.buysellads.com +# [Peer 1][AS11305][64.224.0.0 - 64.227.255.255] + +0.0.0.0 www.iboard.com +0.0.0.0 cg-global.maxymiser.com +0.0.0.0 www.mcsqd.com +# [Peer 1 / Canadawebhosting][64.33.132.0 - 64.34.132.255] + +0.0.0.0 ab163949.adbutler-kaon.com +0.0.0.0 ads.d-msquared.com +0.0.0.0 1.ofsnetwork.com +0.0.0.0 centro.pixel.ad +0.0.0.0 ads.sportsblog.com +0.0.0.0 ab159015.adbutler-zilon.com +# [Peer 1 / Canadawebhosting][AS13768][65.39.128.0 - 65.39.255.255] + +0.0.0.0 pub17.bravenet.com +0.0.0.0 www.countmypage.com +0.0.0.0 www.cpalist.com +# [Peer 1 / Serverbeach][64.34.0.0 - 64.34.255.255] + +0.0.0.0 click.icetraffic.com +0.0.0.0 pix.lfstmedia.com +0.0.0.0 map.media6degrees.com +0.0.0.0 d6y5.ads.pof.com +0.0.0.0 t.ads.pof.com +# [Peer 1][AS13601][66.132.128.0 - 66.132.255.255] + +0.0.0.0 archive.coolerads.com +0.0.0.0 counter.co.kz +0.0.0.0 hitmodel.net +# [Peer 1 / Serverbeach][66.135.32.0 - 66.135.63.255] + +0.0.0.0 openads.hiphopsite.com +# [Peer 1][AS13768][66.155.16.0 - 66.155.97.255] + +0.0.0.0 connexionsafe.com +0.0.0.0 geo.crtracklink.com +0.0.0.0 delivery.c.switchadhub.com +# [Peer 1][66.199.128.0 - 66.199.191.255] + +0.0.0.0 banner.titanpoker.com +# [Peer 1][AS11388][66.33.0.0 - 66.33.127.255] + +# [Peer 1][AS11388][66.40.0.0 - 66.40.255.25550] + +0.0.0.0 coolinc.info +0.0.0.0 www.mb57.com +# [Peer 1 / Dmcontact.com][69.28.197.128 - 69.28.197.159] + +# [Peer 1][AS13768][69.90.0.0 - 69.90.255.255] + +0.0.0.0 d.adgear.com +0.0.0.0 o.adgear.com +0.0.0.0 purefuck.com +0.0.0.0 ads.purefuck.com +0.0.0.0 adwords2.paretologic.revenuewire.net +0.0.0.0 members.sexroulette.com +# [Peer 1][70.33.192.0 - 70.33.255.255] + +0.0.0.0 www.ab4tn.com +0.0.0.0 bb.o2.eyereturn.com +0.0.0.0 musicmembersarea.com +# [Peer 1][AS13768][72.51.0.0 - 72.51.63.255] + +0.0.0.0 www.apponic.com +# [Peer 1][76.74.128.0 - 76.74.255.255] + +0.0.0.0 www.adelixir.com +0.0.0.0 geo.connexionsecure.com +0.0.0.0 eyereact.eyereturn.com +0.0.0.0 timespent.eyereturn.com +0.0.0.0 geo.hyperlinksecure.com +0.0.0.0 stats.polldaddy.com +0.0.0.0 geo.safelinktracker.com +0.0.0.0 seethisinaction.com +0.0.0.0 spc.cefhdghhafdgceifiehdfdad.iban.telemetryverification.net +0.0.0.0 www.webmoblink.com +0.0.0.0 botd.wordpress.com +# [Peer 1][AS13768][83.222.232.69 - 83.222.232.69] + +# [Pegasus / Fortressitx][AS25653][208.116.0.0 - 208.116.63.255] + +# [Pegasus / Fortressitx][69.57.160.0 - 69.57.191.255] + +0.0.0.0 ads.adtrustmedia.com +# [Pegasus / Fortressitx][69.72.128.0 - 69.72.255.255] + +0.0.0.0 adserver.exgfnetwork.com +# [Perimeter][AS27582][24.249.224.0 - 24.249.227.255] + +# [PeterHost.Ru][AS35295][80.93.49.0 - 80.93.49.255] + +0.0.0.0 p543.adskape.ru +0.0.0.0 p13178.adskape.ru +0.0.0.0 p1574.adskape.ru +0.0.0.0 p2408.adskape.ru +0.0.0.0 p4010.adskape.ru +0.0.0.0 p9762.adskape.ru +# [Peterhost.ru][AS35569][80.93.56.0 - 80.93.59.255] + +# [Phonera][AS21503][80.252.160.0 - 80.252.191.255] + +0.0.0.0 www.hit-counter-download.com +0.0.0.0 rotator.offpageads.com +# [Phyber / Adconion][AS7012][207.171.14.0 - 207.171.15.255] + +0.0.0.0 ae.amgdgt.com +0.0.0.0 at.amgdgt.com +0.0.0.0 cdns.amgdgt.com +# [Pilosoft][AS26627][69.172.128.0 - 69.172.143.255] + +0.0.0.0 topcounts.com +# [Pilosoft][AS26627][69.31.0.0 - 69.31.143.255] + +0.0.0.0 astalavista.box.sk +# [Platinum eMedia / Marketing Extensions][AS40818][207.246.196.0 - 207.246.199.255] + +0.0.0.0 www.platinumbucks.com +0.0.0.0 www.sexfind.com +# [Plurimedia][AS8839][212.95.67.0 - 212.95.67.255] + +0.0.0.0 pvpub.paruvendu.fr +# [Plurimedia][AS8839][212.95.70.0 - 212.95.71.255] + +0.0.0.0 ad2play.ftv-publicite.fr +# [Plus.Line / Wegener][AS12306][213.83.9.128 - 213.83.9.191] + +# [PlusServer][AS8972][188.138.0.0 - 188.138.129.255] + +0.0.0.0 ox.forexbrokerz.com +0.0.0.0 ad.inmatads.info +0.0.0.0 ad.inpizdads.info +0.0.0.0 ad.inpulds.info +0.0.0.0 ad.lazynerd.info +0.0.0.0 adv.p2pbg.com +0.0.0.0 ad.philipstreehouse.info +0.0.0.0 ad.sethads.info +0.0.0.0 ad.theequalground.info +0.0.0.0 pops.velmedia.net +0.0.0.0 ad.zoglafi.info +0.0.0.0 ads.9mp.ro +# [PlusServer / Server4you][AS8972][217.172.182.0 - 217.172.183.255] + +0.0.0.0 a.mouseflow.com +0.0.0.0 www.onlinewebservice3.de +# [PlusServer][AS8972][62.75.177.0 - 62.75.219.255] + +0.0.0.0 track.celeb.gate.cc +0.0.0.0 www.hitmaster.de +0.0.0.0 www.webanalyser.net +# [PlusServer / 24 interactive][AS8972][62.75.239.64 - 62.75.239.127] + +0.0.0.0 evania.adspirit.de +# [PlusServer / Server4you][AS8972][80.86.83.0 - 80.86.83.255] + +# [PlusServer / Bsb-service][85.25.120.0 - 85.25.127.255] + +# [PlusServer][AS8972][85.25.129.0 - 85.25.251.255] + +0.0.0.0 ad.ad24.ru +0.0.0.0 234.adru.net +0.0.0.0 bdgadv.ru +0.0.0.0 ads.dailystar.com.lb +0.0.0.0 openads.flagman.bg +0.0.0.0 www.klamm-counter.de +0.0.0.0 promoserver.net +0.0.0.0 scripts.psyma.com +0.0.0.0 aff.summercart.com +0.0.0.0 banners.tempobet.com +# [PlusServer][85.25.28.128 - 85.25.28.255] + +0.0.0.0 img6.adspirit.de +0.0.0.0 img7.adspirit.de +# [PlusServer][85.25.83.0 - 85.25.83.127] + +# [PointRoll][Gannett] + +0.0.0.0 ev.ads.pointroll.com +# [PointRoll][72.32.153.176 - 72.32.153.183] + +0.0.0.0 clk.pointroll.com +0.0.0.0 media.pointroll.com +0.0.0.0 t.pointroll.com +0.0.0.0 track.pointroll.com +0.0.0.0 www.pointroll.com +# [Pret En Print / Fr-carpe-diem][AS16080][193.110.146.0 - 193.110.146.255] + +0.0.0.0 media.yesmessenger.com +0.0.0.0 outils.yes-messenger.com +# [Pret En Print / Fr-carpe-diem][AS16080][193.138.90.0 - 193.138.90.255] + +# [Prime / Seekio][AS15082][216.7.87.0 - 216.7.90.255] + +0.0.0.0 avalon.topbucks.com +0.0.0.0 botw.topbucks.com +0.0.0.0 clickheat.topbucks.com +0.0.0.0 cluster-03.topbucks.com +0.0.0.0 mainstream.topbucks.com +0.0.0.0 rainbow.topbucks.com +0.0.0.0 referral.topbucks.com +0.0.0.0 vod.topbucks.com +0.0.0.0 referral.vod.topbucks.com +0.0.0.0 webmaster.topbucks.com +# [Priority Colo][AS30176][204.11.48.0 - 204.11.55.255] + +0.0.0.0 keywords.fmpub.net +0.0.0.0 tenzing.fmpub.net +# [Priority Colo / Enthropia][AS30176][204.11.52.64 - 204.11.52.127] + +0.0.0.0 mapstats.blogflux.com +0.0.0.0 topsites.blogflux.com +0.0.0.0 www.blogtopsites.com +0.0.0.0 www.topblogs.com.ph +# [Probe Networks / Planet-hosting.cz][AS29686][85.190.34.0 - 85.190.34.31] + +# [Probe Networks / Artergo][AS29686][85.197.104.0 - 85.197.104.255] + +0.0.0.0 www.maxxxhits.com +# [Prolexic / Confluence][AS40034][103.53.40.0 - 103.53.43.255] + +# [Prolexic / Confluence][AS40034][208.91.196.0 - 208.91.199.255] + +# [Prolexic][AS32787][207.8.128.0 - 207.8.255.255] + +# [Prolexic / Confluence][AS40034][208.91.196.0 - 208.91.199.255] + +0.0.0.0 www.bnmq.com +0.0.0.0 pics.cnomy.com +0.0.0.0 pics.kolmic.com +# [Prolexic / Crown Solution][AS32787][209.200.162.192 - 209.200.162.223] + +0.0.0.0 www.webtrackerplus.com +# [Prolexic / Confluence][AS40034][50.58.0.0 - 50.59.255.255] + +0.0.0.0 www.mnetads.com +# [Prolexic][AS32787][72.52.0.0 - 72.52.63.255] + +0.0.0.0 tour.affbuzzads.com +# [Proxad][AS12322][212.27.60.0 - 212.83.156.255] + +0.0.0.0 cloud-observer.ip-label.net +# [Proxad][AS12322][62.210.0.0 - 62.210.255.255] + +0.0.0.0 ad.caradisiac-publicite.com +# [Proxad / Dedibox Sas][AS12322][88.191.3.0 - 88.191.248.255] + +# [Prq-net-colo][AS33837][88.80.2.0 - 88.80.7.255] + +# [Q9 Networks][AS12188][216.220.32.0 - 216.220.63.255] + +0.0.0.0 geo.deepmetrix.com +0.0.0.0 www.incentaclick.com +# [Q9 Networks][AS36031][67.210.208.0 - 67.210.223.255] + +# [Quantcast][AS27281][64.94.107.0 - 64.94.107.255] + +0.0.0.0 www.edge.quantserve.com +0.0.0.0 flash.quantserve.com +0.0.0.0 pixel.quantserve.com +0.0.0.0 secure.quantserve.com +0.0.0.0 segapi.quantserve.com +# [Quantcast][AS27281][74.217.63.0 - 74.217.63.255] + +0.0.0.0 cms.quantserve.com +# [Qwest / United][AS209][192.155.49.0 - 192.155.49.255] + +# [Qwest / Satellite][AS209][208.76.176.0 - 208.76.183.255] + +# [Qwest / Web Metro][63.147.18.0 - 63.147.18.255] + +0.0.0.0 client.roiadtracker.com +# [Qwest][AS209][63.151.44.11] + +0.0.0.0 ds-aksb-a.akamaihd.net +# [Qwest][AS209][63.232.0.0 - 63.235.255.255] + +# [Qwest][AS209][63.236.0.0 - 63.236.127.255] + +0.0.0.0 cdn.publicidad.net +0.0.0.0 get.whitesmoke.com +0.0.0.0 www.whitesmoke.com +0.0.0.0 www.whitesmoke.us +# [Qwest][AS209][63.144.0.0 - 63.151.255.255] + +0.0.0.0 ak1.abmr.net +0.0.0.0 ads.xda-developers.com +# [Qwest][AS209][65.112.0.0 - 65.127.255.255] + +0.0.0.0 ads.sidekick.condenast.com +0.0.0.0 cache.dtmpub.com +0.0.0.0 t.omkt.co +# [Qwest][AS209][67.144.0.0 - 67.148.255.255] + +0.0.0.0 tiads.people.com +0.0.0.0 ads.vimg.net +# [Qwest / Conduit Ltd][Effective-i][AS209][66.77.197.0 - 66.77.197.255] + +0.0.0.0 apps.conduit-banners.com +0.0.0.0 www.conduit-banners.com +# [Qwest / Lowermybills.com][66.77.208.0 - 66.77.211.255] + +0.0.0.0 r1.affiliatefuel.com +0.0.0.0 www.affiliatefuel.com +0.0.0.0 aftrk.com +# [Qwest / CMP Media][AS209][66.77.24.0 - 66.77.27.255] + +# [Qwest / Opinion Lab][AS209][66.77.28.64 - 66.77.28.127] + +0.0.0.0 ccc00.opinionlab.com +0.0.0.0 ccc01.opinionlab.com +0.0.0.0 rate.opinionlab.com +0.0.0.0 www.opinionlab.com +# [Qwest / Akamai][AS209][67.148.147.0 - 67.148.147.255] + +# 0.0.0.0 static.chartbeat.com #[affects Healthcare.gov] + +0.0.0.0 csma95349.analytics.edgesuite.net +# [Qwest / Akamai][AS209][69.192.0.0 - 69.192.255.255] + +0.0.0.0 an.secure.tacoda.net +# [Qwest / Tarrob][69.8.202.0 - 69.8.202.127] + +0.0.0.0 ads.tarrobads.com +# [Qwest][70.56.0.0 - 70.59.255.255] + +0.0.0.0 hu.2.cqcounter.com +# [Qwest / Akamai][AS209][96.6.0.0 - 96.7.255.255] + +# [Race Technologies][AS30041][64.201.96.0 - 64.201.127.255] + +# [Rack911][AS62710][184.174.0.0 - 184.174.127.255] + +0.0.0.0 creative.wwwpromoter.com +# [Rackco.com][AS36529][208.94.64.0 - 208.94.67.255] + +# [Rackco.com][AS36529][38.112.0.0 - 38.119.255.255] + +0.0.0.0 c4tracking01.com +# [Rackforce Hosting][AS19875][64.46.32.0 - 64.46.63.255] + +# [Rackhosting][AS31590][77.247.64.0 - 77.247.79.255] + +0.0.0.0 stats.sbstv.dk +# [Rackmy.com / Xiolink][AS27467][63.246.0.0 - 63.246.31.255 ] + +# [Rackmy.com / Xiolink][AS27467][67.221.224.0 - 67.221.239.255] + +0.0.0.0 analytics.juggle.com +# [Rackspace.com][AS19994][104.130.0.0 - 104.130.255.255] + +0.0.0.0 adtradradservices.com +0.0.0.0 www.earnify.com +# [Rackspace.com][AS27357][146.20.0.0 - 146.20.255.255] + +0.0.0.0 ssp.lkqd.net +0.0.0.0 v.lkqd.net +# [Rackspace.com][AS33070][148.62.0.0 - 148.62.255.255] + +0.0.0.0 my-pc-cleaner.org +# [Rackspace.com][AS15395][162.13.136.0 - 162.13.143.255] + +0.0.0.0 ads2.williamhill.com +# [Rackspace.com][AS19994][162.209.0.0 - 162.209.127.255] + +0.0.0.0 api.cheatsheet.me +0.0.0.0 www.tr553.com +# [Rackspace.com][AS27357][162.242.128.0 - 162.242.255.255] + +0.0.0.0 track.blogmeetsbrand.com +0.0.0.0 interyield.td553.com +# [Rackspace.com][AS15395][164.177.147.0 - 164.177.147.255] + +0.0.0.0 admarket.entireweb.com +# [Rackspace.com][AS33070][166.78.40.0 - 166.78.41.255] + +0.0.0.0 ad.download.cnet.com +0.0.0.0 ml314.com +# [Rackspace.com][AS33070][AS19994][173.203.0.0 - 173.203.255.255] + +0.0.0.0 api.adsnative.com +0.0.0.0 offers.affiliatetraction.com +0.0.0.0 track.ionicmedia.com +0.0.0.0 api.mixpanel.com +0.0.0.0 live.monitus.net +# [Rackspace.com][AS33070][174.143.0.0 - 174.143.255.255] + +0.0.0.0 adx.bixee.com +0.0.0.0 banners.brinkin.com +0.0.0.0 zfhg.digitaldesire.com +0.0.0.0 adsrv.ea.com +0.0.0.0 adx.ibibo.com +0.0.0.0 pixel.parsely.com +0.0.0.0 www.pixeltrack66.com +0.0.0.0 px.steelhousemedia.com +0.0.0.0 tag.tlvmedia.com +0.0.0.0 winknewsads.com +# [Rackspace.com][AS19994][184.106.0.0 - 184.106.255.255] + +0.0.0.0 api.bounceexchange.com +0.0.0.0 iluv.clickbooth.com +0.0.0.0 cpatraffictracker.com +0.0.0.0 immanalytics.com +0.0.0.0 tracking.intermundomedia.com +0.0.0.0 cdnt.meteorsolutions.com +0.0.0.0 naughtyadserve.com +0.0.0.0 distillery.wistia.com +# [Rackspace.com][AS19994][192.237.147.16 - 192.237.147.19] + +0.0.0.0 tools.ranker.com +# [Rackspace.com][AS19994][198.254.64.0 - 198.254.79.255] + +0.0.0.0 gmdtrk.com +0.0.0.0 tsmtrk.com +# [Rackspace.com][AS19994][198.61.128.0 - 198.61.255.255] + +0.0.0.0 www.clear-request.com +0.0.0.0 dcs.netbiscuits.net +0.0.0.0 lb.web-stat.com +0.0.0.0 server2.web-stat.com +# [Rackspace.com][AS27357][204.232.128.0 - 204.232.255.255] + +0.0.0.0 www.electronicpromotion.com +0.0.0.0 www.webhostingcounter.com +# [Rackspace.com][AS33070][209.61.179.88 - 209.61.179.95] + +0.0.0.0 www.trackingstatalytics.com +# [Rackspace.com][AS15395][212.100.244.244 - 212.100.244.245] + +0.0.0.0 www.smartlinks.dianomi.com +0.0.0.0 www.dianomioffers.co.uk +# [Rackspace.com][AS19994][23.253.0.0 - 23.253.255.255] + +0.0.0.0 n.ad-back.net +0.0.0.0 bcanalytics.bigcommerce.com +0.0.0.0 www.oktrk.com +0.0.0.0 pipedream.wistia.com +# [Rackspace.com][AS15395][31.222.175.0 - 31.222.175.255] + +# [Rackspace.com][AS15395][46.38.178.0 - 46.38.179.255] + +0.0.0.0 www.ist-track.com +# [Rackspace.com][AS15395][5.79.32.232 - 5.79.32.239] + +0.0.0.0 www.powerlinks.com +# [Rackspace.com][AS19994][50.56.4.216 - 50.57.4.223] + +0.0.0.0 comcluster.cxense.com +0.0.0.0 lfscpttracking.com +0.0.0.0 ads.referlocal.com +0.0.0.0 interyield.td563.com +0.0.0.0 www.trkr1.com +# [Rackspace][AS10532][64.49.192.0 - 64.49.255.255] + +0.0.0.0 adexcite.com +0.0.0.0 q1mediahydraplatform.com +# [Rackspace / Solvware][AS10532][65.61.156.32 - 65.61.156.47] + +0.0.0.0 123count.com +0.0.0.0 count1.compteur.fr +0.0.0.0 www.countercentral.com +0.0.0.0 server4.web-stat.com +0.0.0.0 seomatrix.webtrackingservices.com +# [Rackspace.com][67.192.0.0 - 67.192.255.255] + +0.0.0.0 adreadytractions.com +0.0.0.0 www.adversalservers.com +0.0.0.0 clickgooroo.com +0.0.0.0 bigapple.contextuads.com +0.0.0.0 cowboy.contextuads.com +0.0.0.0 loadus.exelator.com +0.0.0.0 container.pointroll.com +0.0.0.0 www.sexinyourcity.com +0.0.0.0 www1.sexinyourcity.com +0.0.0.0 swtkes.com +# [Rackspace.com / Slicehost][AS12200][67.23.0.0 - 67.23.47.255] + +0.0.0.0 cdn.linksmart.com +# [Rackspace.com][69.20.0.0 - 69.20.127.255] + +# [Rackspace.com / Acez Software][72.3.128.0 - 72.3.255.255] + +0.0.0.0 www.acez.com +0.0.0.0 data.cpalead.com +0.0.0.0 www.cpalead.com +0.0.0.0 www.performics.com +# [Rackspace.com][AS33070][72.32.0.0 - 72.32.255.255] + +0.0.0.0 members.commissionmonster.com +0.0.0.0 track.dmipartners.com +0.0.0.0 gd.geobytes.com +0.0.0.0 ism2trk.com +0.0.0.0 clk.madisonlogic.com +0.0.0.0 jsc.madisonlogic.com +0.0.0.0 oamtrk.com +0.0.0.0 clients.pointroll.com +0.0.0.0 ads.psxextreme.com +0.0.0.0 secure2.segpay.com +0.0.0.0 adserver.softwareonline.com +0.0.0.0 www.textlinkads.com +0.0.0.0 www.vivo7.com +0.0.0.0 secure.w3track.com +# [Rackspace.com][74.205.0.0 - 74.205.127.255] + +0.0.0.0 sinettrk.com +0.0.0.0 b.sli-spark.com +# [Rackspace.com][AS15395][78.136.16.48 - 78.136.16.55] + +0.0.0.0 track.childrensalon.com +# [Rackspace.com][AS15395][83.138.128.0 - 83.138.191.255] + +0.0.0.0 adserver.powerlinks.com +# [Rackspace / IP Space][AS15395][89.234.32.248 - 89.234.32.255] + +0.0.0.0 ads.adhsm.adhese.com +0.0.0.0 ads.nrc.adhese.com +0.0.0.0 pool.adhsm.adhese.com +0.0.0.0 pool.nrc.adhese.com +0.0.0.0 pool.sanoma.adhese.com +# [Rackspace.com][AS15395]92.52.109.160 - 92.52.109.167] + +# [Rackspace.com][AS15395]92.52.72.160 - 92.52.72.191] + +0.0.0.0 metering.pagesuite.com +# [Rackspace / IP Space][AS15395][94.236.103.0 - 94.236.103.63] + +0.0.0.0 ads.comeon.com +0.0.0.0 inskinad.com +0.0.0.0 ads.mrgreen.com +0.0.0.0 ads.offsidebet.com +0.0.0.0 ads.o-networkaffiliates.com +0.0.0.0 t.wowanalytics.co.uk +# [Rackspace.com][AS15395]94.236.90.16 - 94.236.90.31] + +0.0.0.0 ads.betsafe.com +0.0.0.0 www.inskinad.com +0.0.0.0 ads.mybet.com +# [Rackspace.com][AS15395][95.138.128.0 - 95.138.191.255] + +# [Rackspace.com][98.129.0.0 - 98.129.255.255] + +0.0.0.0 adserv.adbonus.com +0.0.0.0 www.adbonus.com +0.0.0.0 www.metricsimage.com +0.0.0.0 p.placemypixel.com +0.0.0.0 ads.radiatemedia.com +0.0.0.0 analytics.radiatemedia.com +# [Rambler][AS24638][81.19.70.0 - 81.19.70.255] + +0.0.0.0 ad2.rambler.ru +# 0.0.0.0 id.rambler.ru #[affects Rambler email] + +0.0.0.0 images.rambler.ru +0.0.0.0 info-images.rambler.ru +0.0.0.0 scnt.rambler.ru +0.0.0.0 scounter.rambler.ru +0.0.0.0 top100.rambler.ru +0.0.0.0 st.top100.ru +# [Rapidswitch][AS29131][109.169.13.128 - 109.169.13.255] + +0.0.0.0 delivery.switchadhub.com +# [Rapidswitch][AS29131][78.129.142.0 - 78.129.142.255] + +# [Rapidswitch / Zenex 5ive][AS29131][78.129.244.64 - 78.129.244.127] + +# [Rapidswitch][87.117.192.0 - 87.117.207.255] + +0.0.0.0 adserving.muppetism.com +# [Realon Service][AS41671][194.54.80.0 - 194.54.83.255] + +# [Reasonnet / Janerus][AS25525][213.189.11.0 - 213.189.15.255] + +# [Reasonnet][AS25525][83.98.203.128 - 83.98.203.255] + +0.0.0.0 gfx.webmasterprofitcenter.com +0.0.0.0 promo.webmasterprofitcenter.com +0.0.0.0 promo.worldprofitcenter.com +# [Reflected Networks][AS29789][208.99.64.0 - 208.99.95.255] + +# [Reflected Networks][AS29789][209.239.160.0 - 209.239.175.255] + +0.0.0.0 ads.playboy.com +0.0.0.0 a.submityourflicks.com +0.0.0.0 delivery.trafficforce.com +0.0.0.0 www.traffichaus.com +0.0.0.0 www.yvmads.com +# [Reflected Networks][AS29789][216.18.160.0 - 216.18.191.255] + +0.0.0.0 aff.adsurve.com +0.0.0.0 ads.amakings.com +0.0.0.0 ads.amaland.com +0.0.0.0 ads.bigrebelads.com +0.0.0.0 adserver2.exgfnetwork.com +0.0.0.0 analytics.fuckingawesome.com +0.0.0.0 ads.jo-games.com +0.0.0.0 ads.myjizztube.com +0.0.0.0 www.tubehits.com +0.0.0.0 ads.watchmygf.net +0.0.0.0 openx.watchmygf.net +0.0.0.0 stats.watchmygf.com +# [Reflected Networks][AS29789][64.210.128.0 - 64.210.159.255] + +0.0.0.0 ab.adrecreate.com +0.0.0.0 cdn.teamskeetimages.com +# [Reflected Networks][AS29789][66.254.96.0 - 66.254.127.255] + +0.0.0.0 z.gameslivetv.com +0.0.0.0 tackthisclick.com +0.0.0.0 ctrack.trafficjunky.net +0.0.0.0 static.trafficjunky.net +# [Register.it][AS39729][81.88.48.64 - 81.88.48.127] + +0.0.0.0 histats2014.simply-webspace.it +# [Relcom][AS2118][194.58.155.0 - 194.58.155.255] + +# [ReliableHosting][AS22781][216.131.64.0 - 216.131.127.255] + +0.0.0.0 www.naughty-traffic.com +# [Righthosting.com][AS14576][66.78.16.0 - 66.78.31.255] + +# [Righthosting.com / ZMac][AS14576][67.220.139.64 - 67.220.139.127] + +0.0.0.0 ads.host.camz.com +# [Righthosting.com][AS14576][67.220.140.0 - 67.220.141.255] + +# [RTComm.ru][AS8342][81.176.236.0 - 81.176.78.255] + +0.0.0.0 code.directadvert.ru +0.0.0.0 ad.oyy.ru +# [RTComm.ru][AS8342][81.177.32.0 - 81.177.37.255] + +0.0.0.0 cityads.ru +0.0.0.0 promo.cityads.ru +0.0.0.0 www.cityads.ru +0.0.0.0 track.seorate.ru +# [Saferoute][AS7415][69.172.216.0 - 69.172.216.255] + +0.0.0.0 5726.bapi.adsafeprotected.com +0.0.0.0 6063.bapi.adsafeprotected.com +0.0.0.0 dt.adsafeprotected.com +0.0.0.0 pm.adsafeprotected.com +0.0.0.0 static.adsafeprotected.com +0.0.0.0 spixel.adsafeprotected.com +# [Sago][207.150.160.0 - 207.150.191.255] + +0.0.0.0 adlik.akavita.com +# [Sago][65.110.32.0 - 65.110.63.255] + +0.0.0.0 www.hobwelt.com +# [Sago / United Colocation][AS21840][66.111.32.0 - 66.111.63.255] + +# [Sago][66.118.128.0 - 66.118.191.255] + +0.0.0.0 top.addfreestats.com +0.0.0.0 www9.addfreestats.com +0.0.0.0 www.mvav.com +# [Savvis][AS3561][205.138.0.0 - 205.140.175.255] + +0.0.0.0 bbads.sx.atl.publicus.com +# [Savvis][AS3561][205.216.0.0 - 205.217.223.255] + +# 0.0.0.0 d.xp1.ru4.com #[affects Battlefield] + +0.0.0.0 udm.ia6.scorecardresearch.com +0.0.0.0 udm.ia7.scorecardresearch.com +# [Savvis / Comscore][AS3561][205.218.0.0 - 205.219.255.255] + +0.0.0.0 sa.scorecardresearch.com +# [Savvis][AS3561][209.185.0.0 - 209.185.255.255] + +0.0.0.0 banners.weboverdrive.com +# [Savvis / Lycos][209.202.192.0 - 209.202.255.255] + +0.0.0.0 ads1.tripod.com +0.0.0.0 nedstat.tripod.com +0.0.0.0 cm8.lycos.com +# [Savvis][AS3561][209.225.16.144 - 209.225.16.159] + +# [Savvis][AS3561][216.34.181.0 - 216.35.255.255] + +0.0.0.0 e89.friendfinder.com +0.0.0.0 analytics.slashdotmedia.com +0.0.0.0 events.webflowmetrics.com +# [Savvis / Nextpoint][216.69.224.0 - 216.69.239.255] + +0.0.0.0 track1.breakmedia.com +# [Savvis / Creative Media][216.74.128.0 - 216.74.191.255] + +0.0.0.0 alt.webtraxs.com +0.0.0.0 www.webtraxs.com +# [Savvis / Icdsoft][64.14.68.0 - 64.14.79.255] + +# [Savvis / AlmondNet][64.14.90.224 - 64.14.90.239] + +# [Savvis][64.41.128.0 - 64.41.255.255] + +0.0.0.0 spd.atdmt.speedera.net +# [Savvis][AS3561][64.58.64.0 - 64.58.95.255] + +# [Savvis][AS3561][64.79.160.0 - 64.79.175.255] + +0.0.0.0 ads.fmwinc.com +0.0.0.0 images.specificclick.net +# [SBC][AS7132][64.149.32.0 - 64.149.47.255] + +# [SBC][AS7132][64.252.250.0 - 64.252.251.255] + +# [SBC / Net Applications][AS16966][66.161.36.128 - 66.161.36.159] + +0.0.0.0 profiles.hitslink.com +0.0.0.0 www2.hitslink.com +0.0.0.0 www.hitslink.com +# [Schibsted][AS21171][152.90.0.0 - 152.90.255.255] + +0.0.0.0 click.trafikkfondet.no +# [Schibsted][AS21171][80.91.37.0 - 80.91.37.255] + +0.0.0.0 aa.oasfile.aftenposten.no +0.0.0.0 helios.finn.no +# [SecurePrivateNetwork / OC3 Networks][204.152.192.0 - 204.152.223.255] + +0.0.0.0 s05.flagcounter.com +# [SecurePrivateNetwork / OC3 Networks][207.150.160.110 - 207.150.160.119] + +# [SecurePrivateNetwork / OC3 Networks][AS22298][216.45.48.0 - 216.45.63.255] + +0.0.0.0 partners.badongo.com +0.0.0.0 ua.badongo.com +# [SecurePrivateNetwork / Assertivenet][AS22298][66.154.96.0 - 66.154.127.255] + +0.0.0.0 www.1adult.com +0.0.0.0 i.11zz.com +0.0.0.0 in.11zz.com +0.0.0.0 www.acmexxx.com +0.0.0.0 adultlinksco.com +0.0.0.0 www.adultlinksco.com +0.0.0.0 cashcount.com +0.0.0.0 cttracking08.com +0.0.0.0 in.cybererotica.com +0.0.0.0 in.ff5.com +0.0.0.0 tgp.pornsponsors.com +0.0.0.0 www.pornsponsors.com +0.0.0.0 bigtits.xxxallaccesspass.com +# [Secured Servers][AS20454][108.170.0.0 - 108.170.63.255] + +# [Secured Servers][AS20454][184.171.160.0 - 184.171.175.255] + +0.0.0.0 tags.adonly.com +# [Secured Servers][AS20454][198.15.64.0 - 198.15.127.255] + +# [Secured Servers][AS20454][209.188.14.0 - 209.188.14.255] + +0.0.0.0 banners.lativio.com +# [Secured Servers][AS20454][64.152.0.0 - 64.159.255.255] + +0.0.0.0 join4free.com +# [Secured Servers][AS20454][64.38.192.0 - 64.38.255.255] + +0.0.0.0 serve.ads.chaturbate.com +0.0.0.0 bill.ecsuite.com +0.0.0.0 adserver.exoticads.com +0.0.0.0 ads.xprofiles.com +# [Sedo LLC Group] + +0.0.0.0 www.adsedo.com +0.0.0.0 www.sedotracker.com +0.0.0.0 www.sedotracker.de +# [Sedo / Cachenetworks][AS23352][AS30081][205.234.175.0 - 205.234.175.255] + +0.0.0.0 js.dmtry.com +0.0.0.0 static.parkingpanel.com +0.0.0.0 img.sedoparking.com +# [Sedo][82.98.86.0 - 82.98.86.255] + +0.0.0.0 traffic.revenuedirect.com +0.0.0.0 www.sedoparking.com +0.0.0.0 www1.sedoparking.com +# [ServePath][157.22.32.0 - 157.22.47.255] + +0.0.0.0 www.incentivenetworks2.com +# [ServePath][173.1.0.0 - 173.1.127.255] + +0.0.0.0 ggo.directrev.com +# [ServePath][AS26228][173.204.0.0 - 173.204.255.255] + +# [ServePath][AS26228][204.51.128.0 - 204.51.255.255] + +0.0.0.0 ideoclick.com +# [ServePath][AS26228][208.96.0.0 - 208.96.63.255] + +0.0.0.0 partners.realgirlsmedia.com +# [ServePath][AS26228][216.121.0.0 - 216.121.127.255] + +0.0.0.0 www30a4.glam.com +0.0.0.0 ignitad.com +# [ServePath][AS26228][216.93.160.0 - 216.93.191.255] + +0.0.0.0 hookedmediagroup.com +0.0.0.0 ads.hookedmediagroup.com +0.0.0.0 beacon.hookedmediagroup.com +0.0.0.0 www.hookedmediagroup.com +0.0.0.0 t4.trackalyzer.com +0.0.0.0 t6.trackalyzer.com +# [ServePath][AS26228][64.151.64.0 - 64.151.127.255] + +0.0.0.0 t5.trackalyzer.com +# [ServePath][AS26228][69.59.128.0 - 69.59.191.255] + +0.0.0.0 t1.trackalyzer.com +0.0.0.0 t2.trackalyzer.com +0.0.0.0 t3.trackalyzer.com +# [ServePath][AS26228][74.3.192.0 - 74.3.255.255] + +# [Server Central Network][AS23352][204.93.128.0 - 204.93.255.255] + +0.0.0.0 beacon-2.newrelic.com +0.0.0.0 beacon-4.newrelic.com +0.0.0.0 beacon-6.newrelic.com +# [Server Central Network][AS23352][205.234.128.0 - 205.234.255.255] + +0.0.0.0 delivery.adrecover.com +# [Server Central / TrackingSoft][AS23352][216.246.14.0 - 216.246.14.63] + +0.0.0.0 fcds.affiliatetracking.net +0.0.0.0 our.affiliatetracking.net +0.0.0.0 www.affiliatetracking.net +0.0.0.0 www.affiliatetracking.com +0.0.0.0 ads.evtv1.com +0.0.0.0 ads.vidsense.com +0.0.0.0 st.wetrack.it +# [Server Central][AS23352][50.31.128.0 - 50.31.255.255] + +0.0.0.0 vrp.outbrain.com +# [Server Central Network][AS23352][66.225.192.0/18] + +0.0.0.0 gamesiteads.com +# [Serverconnect][AS29518][83.233.165.0 - 83.233.30.255] + +# [ServerStack][AS46652][141.0.172.0 - 141.0.175.255] + +0.0.0.0 118605-5437.link.iwanttodeliver.com +0.0.0.0 145639-4902.link.iwanttodeliver.com +0.0.0.0 www.iwanttodeliver.com +# [ServerStack][AS46652][192.81.208.0 - 192.81.223.255] + +0.0.0.0 servads.fansshare.com +# [ServerStack][AS46652][198.199.64.0 - 198.199.127.255] + +0.0.0.0 pagetracking.popmarker.com +# [ServerStack][AS46652][37.139.16.0 - 37.139.23.255] + +0.0.0.0 beacon.mediahuis.be +# [ServerStack][AS46652][69.55.48.0 - 69.55.63.255] + +0.0.0.0 prscripts.com +# [Serverstream][AS42129][91.151.208.0 - 91.151.223.255] + +0.0.0.0 info.intelli-direct.com +0.0.0.0 oxfam.intelli-direct.com +0.0.0.0 tui.intelli-direct.com +0.0.0.0 www.intelli-direct.com +# [Serveur-express-nerim][AS13193][80.65.232.0 - 80.65.232.255] + +# [ServInt][AS25847][199.230.52.0 - 199.230.55.255] + +# [ServInt / BackBeat Media][AS25847][207.58.150.192 - 207.58.150.223] + +# [ServInt / Funix][AS25847][216.38.58.0 - 216.38.58.31] + +# [Singlehop][AS32475][107.6.128.0 - 107.6.191.255] + +0.0.0.0 advertising.bayoubuzz.com +# [Singlehop][AS32475][108.178.4.98] + +# [Singlehop][AS32475][173.236.0.0 - 173.236.127.255] + +0.0.0.0 banners.popads.net +# [Singlehop][AS32475][184.154.0.0 - 184.154.255.255] + +0.0.0.0 affiliates.date-connected.com +0.0.0.0 track.justcloud.com +0.0.0.0 www.liveadclicks.com +0.0.0.0 www.pixelpmm.info +# [Singlehop][AS32475][198.143.128.0 - 198.143.191.255] + +# [Singlehop][AS32475][198.20.64.0 - 198.20.127.255] + +# [Singlehop][AS32475][216.104.32.0 - 216.104.47.255] + +0.0.0.0 tally.upsideout.com +# [Singlehop][AS32475][65.60.0.0 - 65.60.63.255] + +0.0.0.0 www.virtualsurfer.com +0.0.0.0 www.youho.com +# [Singlehop][AS32475][67.212.160.0 - 67.212.191.255] + +# [Singlehop][AS32475][69.175.0.0 - 69.175.127.255] + +0.0.0.0 a.gsmarena.com +0.0.0.0 tracksitetraffic1.com +0.0.0.0 www.universal-traffic.com +# [Shiny][AS6665][195.210.96.0 - 195.210.127.255] + +0.0.0.0 codice.shinystat.com +0.0.0.0 codicebusiness.shinystat.com +0.0.0.0 codicefl.shinystat.com +0.0.0.0 codiceisp.shinystat.com +0.0.0.0 s1.shinystat.com +0.0.0.0 s2.shinystat.com +0.0.0.0 s3.shinystat.com +0.0.0.0 s9.shinystat.com +0.0.0.0 www.shinystat.com +0.0.0.0 codice.shinystat.it +0.0.0.0 codiceisp.shinystat.it +0.0.0.0 s2.shinystat.it +0.0.0.0 s3.shinystat.it +0.0.0.0 s4.shinystat.it +0.0.0.0 www.shinystat.it +# [Sia Css Group][AS48662][94.142.128.0 - 94.142.129.127] + +# [Sia Nano It][AS43513][91.203.68.0 - 91.203.71.255] + +# [Sia Teron][AS35695][195.88.80.0 - 195.88.81.255] + +# [Sia Vps][AS56617][91.226.32.0 - 91.226.33.255] + +# [Simpli Hosting / Rampell][208.69.176.0 - 208.69.183.255] + +0.0.0.0 www.didtheyreadit.com +0.0.0.0 www.readnotify.com +0.0.0.0 xpostmail.com +# [Simpliq / Sc Globe Hosting][AS39758][89.47.236.0 - 89.47.237.255] + +# [Simpliq][AS39758][93.115.248.0 - 93.115.251.255] + +# [SiteMeter] + +0.0.0.0 s40.sitemeter.com +0.0.0.0 s49.sitemeter.com +0.0.0.0 s50.sitemeter.com +0.0.0.0 s51.sitemeter.com +0.0.0.0 www.sitemeter.com +# [Skyline / Believe][AS22361][208.74.32.0 - 208.74.39.255] + +0.0.0.0 ads.net-ad-vantage.com +0.0.0.0 ia.spinbox.net +0.0.0.0 www.spinbox.net +# [Skyline][AS22361][65.220.52.0 - 65.220.53.255] + +# [Sky-Media / Rax.RU][AS39134][88.212.196.64 - 88.212.196.127] + +0.0.0.0 ad.bannerhost.ru +0.0.0.0 ads.photosight.ru +0.0.0.0 ads.yadro.ru +0.0.0.0 sticker.yadro.ru +0.0.0.0 upstats.yadro.ru +# [Sky-Media / Ooo Medialand][AS39134][88.212.200.0 - 88.212.200.127] + +0.0.0.0 100-100.ru +0.0.0.0 www.100-100.ru +0.0.0.0 business.lbn.ru +0.0.0.0 www.business.lbn.ru +0.0.0.0 fun.lbn.ru +0.0.0.0 www.fun.lbn.ru +0.0.0.0 234.media.lbn.ru +# [Smartlogic Ltd][AS35118][80.90.112.0 - 80.90.115.255] + +# [Smart][AS44553][87.119.79.0 - 87.119.79.255] + +0.0.0.0 www.europerank.com +0.0.0.0 ads.glasove.com +# [Smart][AS44553][87.239.152.0 - 87.239.159.255] + +0.0.0.0 delfin.bg +0.0.0.0 ads.delfin.bg +# [Smartadserver][AS201081][185.86.137.17] + +0.0.0.0 mobile.smartadserver.com +0.0.0.0 rtb-csync.smartadserver.com +0.0.0.0 www5.smartadserver.com +0.0.0.0 www6.smartadserver.com +0.0.0.0 ww38.smartadserver.com +0.0.0.0 ww62.smartadserver.com +0.0.0.0 ww135.smartadserver.com +0.0.0.0 ww147.smartadserver.com +0.0.0.0 ww150.smartadserver.com +0.0.0.0 ww206.smartadserver.com +0.0.0.0 ww400.smartadserver.com +0.0.0.0 ww691.smartadserver.com +0.0.0.0 ww797.smartadserver.com +0.0.0.0 ww965.smartadserver.com +0.0.0.0 ww1003.smartadserver.com +0.0.0.0 ww1097.smartadserver.com +0.0.0.0 ww1270.smartadserver.com +0.0.0.0 ww2026.smartadserver.com +0.0.0.0 smart.styria-digital.com +0.0.0.0 ww881.smartadserver.com +# [Smartadserver][AS47043][199.187.192.0 - 199.187.195.255] + +0.0.0.0 www8.smartadserver.com +0.0.0.0 www9.smartadserver.com +# [Smartwave][AS2379][207.30.25.0 - 207.30.25.127] + +# [Softlayer][AS36351][104.200.16.0 - 104.200.31.255] + +0.0.0.0 delivery.thebloggernetwork.com +0.0.0.0 logs.thebloggernetwork.com +# [Softlayer][AS36351][108.167.128.0 - 108.168.255.255] + +0.0.0.0 www.adforgames.com +0.0.0.0 clkmon.com +0.0.0.0 p30839.clksite.com +0.0.0.0 p69523.clksite.com +0.0.0.0 tag.navdmp.com +0.0.0.0 device.maxmind.com +0.0.0.0 rhtag.com +0.0.0.0 www.rightmedia.com +0.0.0.0 c.securepaths.com +0.0.0.0 www.securepaths.com +0.0.0.0 srvpub.com +0.0.0.0 dx.steelhousemedia.com +# [Softlayer][AS36351][119.81.0.0 - 119.81.255.255] + +0.0.0.0 adr.adplus.co.id +# [Softlayer][AS36351][173.192.0.0 - 173.193.255.255] + +0.0.0.0 d1.24counter.com +0.0.0.0 www.admixxer.com +0.0.0.0 affrh2019.com +0.0.0.0 analytics.bluekai.com +0.0.0.0 stags.bluekai.com +0.0.0.0 c.chango.com +0.0.0.0 d.chango.com +0.0.0.0 dnetshelter3.d.chango.com +0.0.0.0 realtime.services.disqus.com +0.0.0.0 tempest.services.disqus.com +0.0.0.0 s4is.histats.com +0.0.0.0 ad5.netshelter.net +0.0.0.0 px.owneriq.net +0.0.0.0 session.owneriq.net +0.0.0.0 spx.owneriq.net +0.0.0.0 stats.snacktools.net +0.0.0.0 tags.t.tailtarget.com +0.0.0.0 h.verticalscope.com +0.0.0.0 w55c.net +0.0.0.0 tags.w55c.net +0.0.0.0 ads.wellsmedia.com +# [Softlayer / Hosting Services][AS36351][173.244.192.0 - 173.244.223.255] + +0.0.0.0 ad.looktraffic.com +# [Softlayer][174.127.0.0 - 174.37.255.255] + +0.0.0.0 www.1800banners.com +0.0.0.0 addjump.com +0.0.0.0 aff.adventory.com +0.0.0.0 www.besthitsnow.com +0.0.0.0 www.cashlayer.com +0.0.0.0 ads1.cricbuzz.com +0.0.0.0 juggler.services.disqus.com +0.0.0.0 ads.imaging-resource.com +0.0.0.0 optimum-hits.com +0.0.0.0 www.optimum-hits.com +0.0.0.0 ads.right-ads.com +0.0.0.0 www.supremehits.net +0.0.0.0 www.whalecashads.com +# [Softlayer][181.224.156/24] + +# [Softlayer][AS36351][184.172.0.0 - 184.173.255.255] + +0.0.0.0 ad.a-ads.com +0.0.0.0 convusmp.admailtiser.com +0.0.0.0 fqtag.com +0.0.0.0 c.fqtag.com +0.0.0.0 navdmp.com +0.0.0.0 px.splittag.com +# [Softlayer][AS36351][192.200.160.0 - 192.200.191.255] + +0.0.0.0 analytics.bigcommerce.com +# [Softlayer][AS36351][198.23.64.0 - 198.58.127.255] + +0.0.0.0 ping.qbaka.net +# [Softlayer / Hosting Services][AS36351][206.217.192.0 - 206.217.223.255] + +0.0.0.0 adultdatingtest.worlddatingforum.com +# [SoftLayer][AS36351][208.43.0.0 - 208.43.255.255] + +0.0.0.0 banners.adventory.com +0.0.0.0 as.autoforums.com +0.0.0.0 as2.autoforums.com +0.0.0.0 b.collective-media.net +0.0.0.0 www.counters4u.com +0.0.0.0 odin.goo.mx +0.0.0.0 c1.gostats.com +0.0.0.0 c4.gostats.com +0.0.0.0 gostats.ir +0.0.0.0 c3.gostats.ir +0.0.0.0 gostats.pl +0.0.0.0 gostats.ro +0.0.0.0 gostats.ru +0.0.0.0 c4.gostats.ru +0.0.0.0 monster.gostats.ru +0.0.0.0 s11.histats.com +0.0.0.0 s128.histats.com +0.0.0.0 s129js.histats.com +0.0.0.0 sstatic1.histats.com +0.0.0.0 in-appadvertising.com +0.0.0.0 widget6.linkwithin.com +0.0.0.0 ad1.netshelter.net +0.0.0.0 ad2.netshelter.net +0.0.0.0 ad4.netshelter.net +0.0.0.0 peerfly.com +0.0.0.0 ads.somd.com +0.0.0.0 webstats.thaindian.com +0.0.0.0 www.trafficpace.com +# [Softlayer][216.172.160.0 - 216.172.191.255] + +# [Softlayer][AS36351][37.58.82.248 - 37.58.82.255] + +0.0.0.0 service.clicksvenue.com +0.0.0.0 eu-px.steelhousemedia.com +0.0.0.0 ww-eu.steelhousemedia.com +# [Softlayer][AS36351][5.10.68.176 - 5.10.68.183] + +0.0.0.0 ads.eu.e-planning.net +# [Softlayer][AS36351][5.153.20.24 - 5.153.20.27] + +# [Softlayer][50.116.64.0 - 50.97.255.255] + +0.0.0.0 probes.cedexis.com +0.0.0.0 adplus.goo.mx +0.0.0.0 www.klixmedia.com +0.0.0.0 static.realmediadigital.com +0.0.0.0 reseller.sexyads.com +0.0.0.0 www.sexyads.net +0.0.0.0 servedby.studads.com +0.0.0.0 a.thoughtleadr.com +0.0.0.0 wp-stats.com +# [Softlayer][66.228.112.0 - 66.228.127.255] + +0.0.0.0 ad01.advertise.com +# [Softlayer / Hosting Services][67.213.208.0 - 67.213.223.255] + +# [Softlayer][AS36351][67.228.0.0 - 67.228.255.255] + +0.0.0.0 cn.clickable.net +0.0.0.0 www2.clustrmaps.com +0.0.0.0 www3.clustrmaps.com +0.0.0.0 www4.clustrmaps.com +0.0.0.0 www.clustrmaps.com +0.0.0.0 referrer.disqus.com +0.0.0.0 adv.elaana.com +0.0.0.0 hitstatus.com +0.0.0.0 rt.legolas-media.com +0.0.0.0 my.mobfox.com +0.0.0.0 banners.mynakedweb.com +# 0.0.0.0 api.nanigans.com #[affects 2go.com] + +0.0.0.0 pi.pardot.com +0.0.0.0 www.seekways.com +0.0.0.0 www.toplistim.com +# [Softlayer / Hosting Services][69.4.224.0 - 69.4.239.255] + +# [Softlayer][74.120.236.0 - 74.120.239.255] + +0.0.0.0 r.bid4keywords.com +# [Softlayer][74.86.0.0 - 74.86.255.255] + +0.0.0.0 adserverus.info +0.0.0.0 www.arcadebanners.com +0.0.0.0 www.autosurfpro.com +0.0.0.0 www2.game-advertising-online.com +0.0.0.0 mycounter.tinycounter.com +0.0.0.0 urlstats.com +0.0.0.0 ads.verticalscope.com +# [Softlayer][75.126.0.0 - 75.126.255.255] + +0.0.0.0 error.000webhost.com +0.0.0.0 arank.com +0.0.0.0 b3d.com +0.0.0.0 www.b3d.com +0.0.0.0 www.game-advertising-online.com +0.0.0.0 www.mypagerank.net +0.0.0.0 obeus.com +0.0.0.0 by.uservoice.com +0.0.0.0 www.vizury.com +0.0.0.0 window1.com +# [Sophus][AS29017][89.145.118.0 - 89.145.118.255] + +0.0.0.0 scripts.sophus3.com +0.0.0.0 gm.touchclarity.com +0.0.0.0 traffic.webtrafficagents.com +# [Sovintel][AS3216][194.67.0.0 - 194.67.63.255] + +0.0.0.0 adv.aport.ru +0.0.0.0 stat.aport.ru +0.0.0.0 stat.stars.ru +# [Sovintel][AS3216][195.239.111.0 - 195.239.111.255] + +0.0.0.0 engine.rbc.medialand.ru +# [Sovintel][AS3216][195.68.160.0 - 195.68.160.255] + +0.0.0.0 click.readme.ru +0.0.0.0 img.readme.ru +# [Sovintel][AS3216][213.221.0.0 - 213.221.63.255] + +# [Spectrum][AS8717][195.34.113.48 - 195.34.113.63] + +0.0.0.0 ads.fresh.bg +# [Spectrum][AS8717][212.50.12.80 - 212.50.12.95] + +0.0.0.0 ads.standartnews.com +0.0.0.0 op.standartnews.com +# [Spectrum][AS8717][92.247.8.0 - 92.247.15.255] + +0.0.0.0 openx.bmwpower-bg.net +0.0.0.0 vm3.parabol.object.bg +0.0.0.0 ads.tv7.bg +0.0.0.0 ads.tv7.sporta.bg +# [Srvg-net-fl1-h][AS29671][77.232.66.0 - 77.232.73.255] + +0.0.0.0 www.islamic-banners.com +# [SSERV / Adlink][AS24679][91.209.81.0 - 91.209.81.255] + +0.0.0.0 tc.adlink.net +# [Starhubinternet][AS4657][124.155.192.0 - 124.155.223.255] + +0.0.0.0 cdn.tracking.bannerflow.com +# [Starhubinternet / Akamai][AS4657][125.252.192.0 - 125.252.255.255] + +0.0.0.0 aka-cdn.adtech.de +# [Starhubinternet][AS4657][202.27.16.0 - 202.27.31.255] + +0.0.0.0 adtag.asiaone.com +# [Starhubinternet][AS4657][203.116.0.0 - 203.118.63.255] + +0.0.0.0 dws.reporting.dnitv.com +# [Starline][AS39823][92.62.101.0 - 92.62.101.255] + +# [Starnet][AS31252][95.65.26.0 - 95.65.26.255] + +# [Startphone][AS47344][94.100.124.0 - 94.100.127.255] + +0.0.0.0 ads.dichtbij.adhese.com +0.0.0.0 pool.dichtbij.adhese.com +# [Statcounter][Aodhan Cullen] + +0.0.0.0 c2.statcounter.com +0.0.0.0 c18.statcounter.com +0.0.0.0 c19.statcounter.com +0.0.0.0 c20.statcounter.com +0.0.0.0 c21.statcounter.com +0.0.0.0 c22.statcounter.com +0.0.0.0 c23.statcounter.com +0.0.0.0 c24.statcounter.com +0.0.0.0 c25.statcounter.com +0.0.0.0 c26.statcounter.com +0.0.0.0 c27.statcounter.com +0.0.0.0 c28.statcounter.com +0.0.0.0 c29.statcounter.com +0.0.0.0 c30.statcounter.com +0.0.0.0 c31.statcounter.com +0.0.0.0 c32.statcounter.com +0.0.0.0 c33.statcounter.com +0.0.0.0 c34.statcounter.com +0.0.0.0 c35.statcounter.com +0.0.0.0 c36.statcounter.com +0.0.0.0 c37.statcounter.com +0.0.0.0 c38.statcounter.com +0.0.0.0 c39.statcounter.com +0.0.0.0 c40.statcounter.com +0.0.0.0 c41.statcounter.com +0.0.0.0 c42.statcounter.com +0.0.0.0 c43.statcounter.com +0.0.0.0 c45.statcounter.com +0.0.0.0 c46.statcounter.com +0.0.0.0 my.statcounter.com +0.0.0.0 my8.statcounter.com +0.0.0.0 secure.statcounter.com +# [Steadfast Networks][AS32748][67.202.64.0 - 67.202.127.255] + +0.0.0.0 www.clixtrac.com +0.0.0.0 ic.tynt.com +# [Steephost.com][AS47142][195.190.13.0 - 195.190.13.255] + +# [Suavemente / IzoWeb][AS14572][66.11.113.0 - 66.11.114.255] + +0.0.0.0 freakads.com +# [SuperHost.pl][AS41079][193.218.152.0 - 193.218.155.255] + +# [Superhosting.bg][AS201200][164.138.216.0 - 164.138.217.255] + +0.0.0.0 ads.359group.com +0.0.0.0 ads.kidssports.bg +0.0.0.0 ads.news359.bg +# [Superhosting.bg][AS201200][91.196.124.0 - 91.196.127.255] + +0.0.0.0 ads.kanal3.bg +# [SuperNetwork][AS39392][185.93.0.0 - 185.93.0.255] + +# [SuperNetwork][AS39392][46.234.113.0 - 46.234.113.255] + +0.0.0.0 cdn.adrotator.se +0.0.0.0 cdn.exactag.com +# [SuperNetwork][AS39392][88.86.96.0 - 88.86.127.255] + +0.0.0.0 link.bannersystem.cz +0.0.0.0 counter.prohledat.cz +0.0.0.0 www.toplist.cz +0.0.0.0 toplist.sk +0.0.0.0 bannerlink.xxxtreams.com +# [SuperNetwork][AS39392][95.168.216.0 - 95.168.216.255] + +0.0.0.0 monitoring.profi-webhosting.cz +# [Swift Ventures][AS25700][204.8.32.0 - 204.8.35.255] + +0.0.0.0 clicks2.traffictrader.net +# [Swift Ventures][AS25700][204.13.164.0 - 204.13.167.255] + +0.0.0.0 clicks3.traffictrader.net +0.0.0.0 weownthetraffic.com +0.0.0.0 www.weownthetraffic.com +0.0.0.0 stats.xxxkey.com +# [Swift Ventures][AS25700][204.15.224.192 - 204.15.231.255] + +0.0.0.0 clicks.traffictrader.net +0.0.0.0 clicks.eutopia.traffictrader.net +# [Swiftwill][AS30361][146.82.200.0 - 146.82.207.255] + +0.0.0.0 banners.dogfart.com +0.0.0.0 theshemalesurvey.com +# [Swiftwill][AS30361][64.210.128.0 - 64.210.159.255] + +0.0.0.0 adhealers.com +0.0.0.0 ab.adrevivify.com +0.0.0.0 ab.advertiserurl.com +0.0.0.0 syndication.trafficreps.com +# [Swiftwill][AS30361][64.88.240.0 - 64.88.255.255] + +0.0.0.0 ads.genericlink.com +0.0.0.0 ads.ghettotube.com +0.0.0.0 ads.iknowthatgirl.com +0.0.0.0 ads.ireel.com +0.0.0.0 ads.videobash.com +0.0.0.0 ads.weownthetraffic.com +0.0.0.0 www.ypmadserver.com +# [Tacoda Systems][AOL][209.50.160.0 - 209.50.191.255] + +0.0.0.0 anad.tacoda.net +0.0.0.0 anat.tacoda.net +# [TAM Network][AS32070][69.8.176.0 - 69.8.191.255] + +# [Tata / Market Engines/Rack Engines][AS6453][63.243.188.0 - 63.243.188.255] + +0.0.0.0 click.cashengines.com +0.0.0.0 www.cashengines.com +0.0.0.0 click.interactivebrands.com +0.0.0.0 safepay2.interactivebrands.com +0.0.0.0 www.interactivebrands.com +0.0.0.0 helpdesk.marketbill.com +0.0.0.0 www.marketbill.com +0.0.0.0 download2.marketengines.com +0.0.0.0 secure.marketengines.com +0.0.0.0 secure3.marketengines.com +# [Tata][AS6453][64.86.0.0 - 64.86.255.255] + +0.0.0.0 gwmtracking.com +# [TDC Data][AS3292][193.88.186.0 - 193.88.186.255] + +0.0.0.0 kt.tns-gallup.dk +# [TDC Data][AS3292][194.100.98.64 - 194.100.98.95] + +0.0.0.0 ajakkirj.spring-tns.net +0.0.0.0 delfi.spring-tns.net +0.0.0.0 err.spring-tns.net +0.0.0.0 kainari.spring-tns.net +0.0.0.0 kotikokki.spring-tns.net +0.0.0.0 lehtimedia.spring-tns.net +0.0.0.0 is.spring-tns.net +0.0.0.0 mtv3.spring-tns.net +0.0.0.0 myyjaosta.spring-tns.net +0.0.0.0 ohtuleht.spring-tns.net +0.0.0.0 postimees.spring-tns.net +0.0.0.0 smf.spring-tns.net +0.0.0.0 talsa.spring-tns.net +0.0.0.0 telkku.spring-tns.net +0.0.0.0 vuokraovi.spring-tns.net +# [TDC Data][AS3292][194.182.249.0 - 194.182.249.255] + +0.0.0.0 sdc.flysas.com +# [TDC Data][AS3292][213.236.166.0 - 213.236.166.255] + +0.0.0.0 piwik.onlinemagasinet.no +# [TDC Data][AS3292][80.63.11.64 - 80.63.11.127] + +0.0.0.0 dr.adservinginternational.com +0.0.0.0 fynskemedieradmin.adservinginternational.com +0.0.0.0 media.adservinginternational.com +# [TDC Data][AS3292][93.160.60.0 - 93.160.60.255] + +0.0.0.0 dk1.siteimprove.com +0.0.0.0 ssl.siteimprove.com +# [Techie Hosting][AS13909][199.80.56.0 - 199.80.63.255] + +0.0.0.0 ads.lovercash.com +0.0.0.0 media.lovercash.com +0.0.0.0 ads.singlescash.com +# [Techie Hosting][AS13909][208.90.152.0 - 208.90.155.255] + +0.0.0.0 www.cashthat.com +# [Technorati][AS16936][208.66.64.0 - 208.66.67.255] + +# [TekChannel][AS36700][98.124.128.0 - 98.124.191.255] + +0.0.0.0 au.effectivemeasure.net +0.0.0.0 id-cdn.effectivemeasure.net +0.0.0.0 me.effectivemeasure.net +0.0.0.0 my.effectivemeasure.net +0.0.0.0 sea.effectivemeasure.net +0.0.0.0 yahoo.effectivemeasure.net +0.0.0.0 www6.effectivemeasure.net +0.0.0.0 www8-ssl.effectivemeasure.net +0.0.0.0 www9.effectivemeasure.net +0.0.0.0 www.effectivemeasure.net +# [Telecitygroup][AS15830][109.74.200.0 - 109.74.207.255] + +0.0.0.0 ads.netcommunities.com +# [Telecitygroup][AS15830][176.58.120.0 - 176.58.127.255] + +0.0.0.0 adv2.expres.ua +0.0.0.0 ms.onscroll.com +# [Telecitygroup][AS15830][178.79.152.0 - 178.79.159.255] + +0.0.0.0 www.cheekybanners.com +0.0.0.0 ping.onscroll.com +# [Telecitygroup][AS15830][212.71.236.0 - 212.71.239.255] + +0.0.0.0 adgebra.co.in +# [Telecitygroup][AS15830][213.52.252.0 - 213.52.255.255] + +# [Telecitygroup][AS15830][62.216.253.128 - 62.216.253.255] + +0.0.0.0 platform.communicatorcorp.com +# [Telecitygroup][AS15830][80.252.92.0 - 80.252.92.63] + +0.0.0.0 textads.sexmoney.com +# [Telecitygroup][AS15830][82.199.79.0 - 82.199.79.255] + +0.0.0.0 bannerrotation.sexmoney.com +0.0.0.0 click.sexmoney.com +0.0.0.0 imageads.sexmoney.com +0.0.0.0 pagepeels.sexmoney.com +0.0.0.0 www.sexmoney.com +0.0.0.0 counter.sexsuche.tv +# [Telecitygroup][AS15830][85.90.254.32 - 85.90.254.63] + +0.0.0.0 de.hosting.adjug.com +0.0.0.0 com-cdiscount.netmng.com +# [Telemark Info-Media] + +0.0.0.0 adx.ocala.com +0.0.0.0 adx.starbanner.com +0.0.0.0 adx.telegram.com +0.0.0.0 adx.timesdaily.com +0.0.0.0 nyads.ny.publicus.com +0.0.0.0 bbads.sv.publicus.com +0.0.0.0 beads.sx.atl.publicus.com +0.0.0.0 crimg.sv.publicus.com +0.0.0.0 fdads.sv.publicus.com +0.0.0.0 nsads.sv.publicus.com +0.0.0.0 ptads.sv.publicus.com +0.0.0.0 siads.sv.publicus.com +0.0.0.0 tpads.sv.publicus.com +0.0.0.0 lladinserts.us.publicus.com +# [Telenet][AS6848][212.123.12.128 - 212.123.12.159] + +0.0.0.0 ads.adhese.be +0.0.0.0 host2.adhese.be +0.0.0.0 host3.adhese.be +0.0.0.0 host4.adhese.be +0.0.0.0 adhese.standaard.be +# [Telia / Emediate][AS1299][195.12.228.160 - 195.12.228.191] + +0.0.0.0 eas1.emediate.eu +0.0.0.0 eas2.emediate.eu +0.0.0.0 eas3.emediate.eu +0.0.0.0 ad2.emediate.se +0.0.0.0 eas.hitta.se +0.0.0.0 rig.idg.no +# [Telia / Akamai][AS1299][209.170.64.0 - 209.170.127.255] + +# [Telia / Trade Doubler][AS1299][217.212.240.160 - 217.212.240.191] + +0.0.0.0 anet.tradedoubler.com +0.0.0.0 anetch.tradedoubler.com +0.0.0.0 anetdk.tradedoubler.com +0.0.0.0 anetfi.tradedoubler.com +0.0.0.0 anetlt.tradedoubler.com +0.0.0.0 anetse.tradedoubler.com +0.0.0.0 clkde.tradedoubler.com +0.0.0.0 hstde.tradedoubler.com +0.0.0.0 hstes.tradedoubler.com +0.0.0.0 hstfr.tradedoubler.com +0.0.0.0 hstgb.tradedoubler.com +0.0.0.0 hstit.tradedoubler.com +0.0.0.0 hstno.tradedoubler.com +0.0.0.0 hstpl.tradedoubler.com +0.0.0.0 hstus.tradedoubler.com +0.0.0.0 img.tradedoubler.com +0.0.0.0 imp.tradedoubler.com +0.0.0.0 impat.tradedoubler.com +0.0.0.0 impcz.tradedoubler.com +0.0.0.0 impfi.tradedoubler.com +0.0.0.0 implt.tradedoubler.com +0.0.0.0 impru.tradedoubler.com +0.0.0.0 tbl.tradedoubler.com +0.0.0.0 tbs.tradedoubler.com +0.0.0.0 wrap.tradedoubler.com +# [Telia][AS1299][80.239.175.32 - 80.239.175.63] + +0.0.0.0 active.cache.el-mundo.net +0.0.0.0 eas3.emediate.se +0.0.0.0 eas8.emediate.eu +0.0.0.0 adv.punto-informatico.it +# [Telia / Trade Doubler][AS25473][82.196.187.128 - 82.196.187.255] + +0.0.0.0 anetno.tradedoubler.com +0.0.0.0 stardk.tradedoubler.com +0.0.0.0 tarno.tradedoubler.com +# [Telnetnetwork][AS24589][193.111.244.0 - 193.111.247.255] + +# [Telos Solutions][AS49087][91.212.127.0 - 91.212.127.255] + +# [Theplanet.com][AS21844][173.255.192.0 - 174.123.255.255] + +0.0.0.0 24counter.com +0.0.0.0 dev.flurry.com +0.0.0.0 the-best-track.com +0.0.0.0 advertising.thediabetesnetwork.com +0.0.0.0 w-tres.info +# [Theplanet.com][174.132.0.0 - 174.133.255.255] + +0.0.0.0 adtactics.com +0.0.0.0 www.adtactics.com +0.0.0.0 adscampaign.net +0.0.0.0 www.adscampaign.net +0.0.0.0 adsvert.com +0.0.0.0 ads.betternetworker.com +0.0.0.0 xyz.freeweblogger.com +0.0.0.0 www.htmate2.com +0.0.0.0 www.pantanalvip.com.br +0.0.0.0 www.persianstat.com +# [Theplanet.com][205.251.128.0 - 205.251.159.255] + +# [Theplanet.com][207.44.128.0 - 207.44.255.255] + +0.0.0.0 mmaadnet.ad-control-panel.com +0.0.0.0 as.gostats.com +0.0.0.0 ded.gostats.com +# [Theplanet.com][209.62.0.0 - 209.62.127.255] + +0.0.0.0 advertisingnemesis.com +0.0.0.0 adportal.advertisingnemesis.com +0.0.0.0 ads.advertisingnemesis.com +# [Theplanet.com][209.85.0.0 - 209.85.127.255] + +# [Theplanet.com / Loseout.com][209.85.40.128 - 209.85.40.191] + +0.0.0.0 ads.freeonlinegames.com +0.0.0.0 stats.freeonlinegames.com +# [Theplanet.com][216.12.192.0 - 216.12.223.255] + +0.0.0.0 ads.desktopscans.com +0.0.0.0 stats.ircfast.com +# [Theplanet.com][64.246.0.0 - 64.246.63.255] + +# [Theplanet.com][66.98.128.0 - 66.98.255.255] + +0.0.0.0 007.free-counter.co.uk +# [ThePlanet.com][67.15.0.0 - 67.15.255.255] + +0.0.0.0 ads.asexstories.com +0.0.0.0 www.traffic4u.com +# [Theplanet.com / Privacy Protect][209.85.87.0 - 209.85.87.255] + +0.0.0.0 cm3.bnmq.com +# [Theplanet.com / Privacy Protect][67.15.35.0 - 67.15.35.255] + +0.0.0.0 images.bnmq.com +0.0.0.0 search.in +# [Theplanet.com][67.18.0.0 - 67.19.255.255] + +0.0.0.0 g.adspeed.net +0.0.0.0 www.dating-banners.com +0.0.0.0 www.free-hardcoresex.org +0.0.0.0 ad4.gueb.com +0.0.0.0 ad7.gueb.com +0.0.0.0 ext.host-tracker.com +0.0.0.0 ads.loveshack.org +0.0.0.0 www.megastats.com +0.0.0.0 webads.tradeholding.com +# [Theplanet.com][69.56.128.0 - 69.56.255.255] + +0.0.0.0 www.adultdatingtraffic.com +0.0.0.0 counter.relmaxtop.com +0.0.0.0 www.relmaxtop.com +# [Theplanet.com][69.57.128.0 - 69.57.159.255] + +# [Theplanet.com][69.93.0.0 - 69.93.255.255] + +0.0.0.0 advertising.entensity.net +# [Theplanet.com][70.84.0.0 - 70.87.255.255] + +0.0.0.0 www.1trac.com +0.0.0.0 www.adscampaign.com +0.0.0.0 www.adultdatelink.com +0.0.0.0 www.atomictime.net +0.0.0.0 network.clickconversion.net +0.0.0.0 bar.freelogs.com +0.0.0.0 goo.freelogs.com +0.0.0.0 ico.freelogs.com +0.0.0.0 joe.freelogs.com +0.0.0.0 mom.freelogs.com +0.0.0.0 st1.freeonlineusers.com +0.0.0.0 www.herbalsmokeshops.com +0.0.0.0 service.persianstat.com +0.0.0.0 www.persianstat.ir +0.0.0.0 www.websitealive3.com +0.0.0.0 counter.yakcash.com +# [Theplanet.com][AS21844][74.52.0.0 - 74.55.255.255] + +0.0.0.0 adsystem.adbull.com +0.0.0.0 www.adgroups.net +0.0.0.0 www.adszooks.com +0.0.0.0 www.adultblogtoplist.com +0.0.0.0 www.adultlinkexchange.com +0.0.0.0 www.blogtoplist.com +0.0.0.0 www.commissionempire.com +0.0.0.0 easyhitcounters.com +0.0.0.0 fishclix.com +0.0.0.0 www.fishclix.com +0.0.0.0 www.funklicks.com +0.0.0.0 advertising.goldseek.com +0.0.0.0 ads.gravytrainproductions.com +0.0.0.0 ads.gusanito.com +0.0.0.0 tracking.hostgator.com +0.0.0.0 ads.infomediainc.com +0.0.0.0 www.knacads.com +0.0.0.0 ads.mindviz.com +0.0.0.0 traffic.mindviz.com +0.0.0.0 ft.mvtracker.com +0.0.0.0 www.mvtracker.com +0.0.0.0 sayac.onlinewebstat.com +0.0.0.0 ads.retirementjobs.com +0.0.0.0 silveragesoftware.com +0.0.0.0 www.silveragesoftware.com +0.0.0.0 www.top1.ro +0.0.0.0 www.top90.ro +0.0.0.0 counter.yakbucks.com +# [Theplanet.com][74.54.156.234] + +# [Theplanet.com][75.125.0.0 - 75.125.255.255] + +0.0.0.0 www.3bsoftware.com +0.0.0.0 bunny-net.com +0.0.0.0 www.cbproads.com +0.0.0.0 pulsix.com +0.0.0.0 www.pulsix.com +# [Thoughtconvergence.com][AS31898][209.59.195.0 - 209.59.195.255] + +0.0.0.0 landing.trafficz.com +0.0.0.0 landings.trafficz.com +# [Thruport Technologies][AS15266][64.237.96.0 - 64.237.111.255] + +0.0.0.0 www.adjuggler.com +0.0.0.0 adprudence.rotator.hadj7.adjuggler.net +0.0.0.0 amc.rotator.hadj1.adjuggler.net +0.0.0.0 bullzeye.rotator.hadj1.adjuggler.net +0.0.0.0 cdmedia.rotator.hadj7.adjuggler.net +0.0.0.0 fidelity.rotator.hadj7.adjuggler.net +0.0.0.0 forum.rotator.hadj7.adjuggler.net +0.0.0.0 ientry.rotator.hadj1.adjuggler.net +0.0.0.0 rebellionmedia.rotator.hadj7.adjuggler.net +0.0.0.0 ssprings.rotator.hadj7.adjuggler.net +0.0.0.0 traffiqexchange.rotator.hadj7.adjuggler.net +0.0.0.0 ads.bootcampmedia.com +0.0.0.0 aj.daniweb.com +0.0.0.0 ads.gamersmedia.com +0.0.0.0 ads.gamesbannernet.com +0.0.0.0 ads.greenerworldmedia.com +0.0.0.0 7.rotator.wigetmedia.com +# [Ticketmaster][AS46318][209.104.32.0 - 209.104.63.255] + +# [Tiggee][AS16552][208.94.144.0 - 208.94.151.255] + +0.0.0.0 ak.sail-horizon.com +# [Tiggee][AS16552][216.21.13.15] + +0.0.0.0 klakcdiqmgxq.com +# [Tintel][AS21221][212.29.171.0 - 212.29.171.255] + +# [Tinet SpA][AS3257][108.161.176.0 - 108.161.191.255] + +0.0.0.0 servedby.integraclick.com +# [Tinet SpA / Akamai][AS3257][2.18.176.0 - 2.18.191.255] + +0.0.0.0 fast.mtvn.demdex.net +# [Tinet SpA][AS3257][23.192.0.0 - 23.223.255.255] + +0.0.0.0 ads.scorecardresearch.com +# [Tinet SpA][AS8612][213.200.36.0 - 213.205.39.255] + +0.0.0.0 ma211-r.analytics.edgesuite.net +0.0.0.0 adsweb.tiscali.it +# [Tinet SpA][AS3257][46.33.64.0 - 46.33.77.255] + +0.0.0.0 au-cdn.effectivemeasure.net +# [Tinet SpA][AS3257][77.67.102.0 - 77.67.102.255] + +0.0.0.0 ma76-r.analytics.edgesuite.net +0.0.0.0 c.effectivemeasure.net +0.0.0.0 nz-cdn.effectivemeasure.net +0.0.0.0 sg-cdn.effectivemeasure.net +0.0.0.0 fast.fairfax.demdex.net +0.0.0.0 tiads.timeinc.net +# [Tinet SpA][AS3257][77.67.53.192 - 77.67.53.223] + +0.0.0.0 front.adproved.net +0.0.0.0 ads.msvp.net +# [Todayhost][AS47143][178.214.96.0 - 178.214.127.255] + +# [Todayhost / Bogal Ab][195.42.102.0 - 195.42.103.255] + +# [Total Server][AS40426][208.78.40.0 - 208.78.43.255] + +0.0.0.0 api.instantdollarz.com +# [Total Server][AS46562][208.93.192.0 - 208.93.195.255] + +# [Transoptics][AS36024][65.99.250.0 - 65.99.251.255] + +# [Tranquil][AS13647][208.79.80.0 - 208.79.83.255] + +0.0.0.0 piwik.datawrapper.de +# [Transquality C.v][AS44259][91.205.232.0 - 91.205.235.255] + +# [Trans World][AS26972][216.25.240.0 - 216.25.255.255] + +# [Tribal Fusion][Dilip DaSilva][AS33419][204.11.108.0 - 204.11.111.255] + +0.0.0.0 cdn1.tribalfusion.com +0.0.0.0 ctxt.tribalfusion.com +0.0.0.0 s.tribalfusion.com +0.0.0.0 www.tribalfusion.com +# [Trip.net][AS17393][64.8.96.0 - 64.8.127.255] + +0.0.0.0 g.websponsors.com +# [Trueserver][AS15703][87.233.13.0 - 87.233.13.255] + +# [Trueserver][87.233.141.0 - 87.233.228.255] + +0.0.0.0 a3.adzs.nl +0.0.0.0 a4.adzs.nl +0.0.0.0 img.adzs.nl +0.0.0.0 www.cash4members.com +0.0.0.0 webmaster.privatamateure.com +0.0.0.0 www.privatamateure.com +# [Turk Telekom][AS9121][212.174.200.96 - 212.174.200.127] + +# [Turk Telekom][AS9121][85.96.0.0 - 85.111.255.255] + +# [TutHost / Samotlortelecom][AS44820][91.203.4.0 - 91.203.7.255] + +# [Tw Telecom][AS4323][174.46.0.0 - 174.47.255.255] + +0.0.0.0 servedby.ipromote.com +# [Tw Telecom][AS4323][206.80.0.0 - 206.80.31.255] + +0.0.0.0 pureleads.com +# [Tw Telecom][AS4323][216.120.224.0 - 216.120.255.255] + +0.0.0.0 boloz.com +# [Tw Telecom][AS4323][216.136.0.0 - 216.136.127.255] + +0.0.0.0 feed3.hype-ads.com +# [Tw Telecom][AS4323][66.192.0.0 - 66.195.255.255] + +0.0.0.0 testats.inuvo.com +0.0.0.0 tracking.inuvo.com +0.0.0.0 myap.liveperson.com +0.0.0.0 img1.ncsreporting.com +0.0.0.0 www.ncsreporting.com +0.0.0.0 aff.primaryads.com +0.0.0.0 ads.proz.com +0.0.0.0 theaffiliateprogram.com +0.0.0.0 www.theaffiliateprogram.com +# [UK2.net][AS13213][109.123.95.0 - 109.123.95.255] + +# [UK2.net][AS13213][83.170.64.0 - 83.170.127.255] + +0.0.0.0 error404.000webhost.com +# [Uaonline-ipipe][AS46636][80.77.81.0 - 80.77.86.255] + +0.0.0.0 www.adultvalleycash.com +# [Uaonline / iPipe Inc][AS46636][88.214.209.0 - 88.214.209.255] + +# [Uaonline / Real International][AS46636][88.214.192.0 - 88.214.255.255] + +0.0.0.0 ehho.com +0.0.0.0 gbscript.com +0.0.0.0 403.hqhost.net +0.0.0.0 404.hqhost.net +0.0.0.0 tr-af.com +0.0.0.0 zr0.net +# [Ukrtelnet][AS6849][212.113.49.0 - 212.113.49.255] + +0.0.0.0 adnet.pravda.com.ua +# [Ukrtelnet / Datacenter Networks][AS6849][213.186.114.0 - 213.186.114.255] + +0.0.0.0 a.abnad.net +0.0.0.0 b.abnad.net +0.0.0.0 c.abnad.net +0.0.0.0 d.abnad.net +0.0.0.0 e.abnad.net +0.0.0.0 t.abnad.net +0.0.0.0 z.abnad.net +0.0.0.0 advert.ru.redtram.com +0.0.0.0 js.redtram.com +0.0.0.0 js.en.redtram.com +# [Unistars][AS28699][188.130.250.0 - 188.130.251.255] + +# [Unitedlayer][AS23342][207.7.128.0 - 207.7.159.255] + +0.0.0.0 ban.xpays.com +0.0.0.0 exit.xpays.com +0.0.0.0 www.xpays.com +# [United Online / Juno][AS13446][64.136.0.0 - 64.136.63.255] + +0.0.0.0 banner.50megs.com +0.0.0.0 aboutwebservices.com +0.0.0.0 downloadz.us +0.0.0.0 free-stats.com +0.0.0.0 free-stats.i8.com +0.0.0.0 banner.freeservers.com +0.0.0.0 eegad.freeservers.com +0.0.0.0 abbyssh.freestats.com +0.0.0.0 insurancejournal.freestats.com +0.0.0.0 site-stats.i8.com +0.0.0.0 sitetracker.com +0.0.0.0 pomeranian99.sitetracker.com +0.0.0.0 www.sitetracker.com +0.0.0.0 www2a.sitetracker.com +0.0.0.0 cyclops.prod.untd.com +0.0.0.0 nztv.prod.untd.com +0.0.0.0 track.untd.com +# [Upl-net-customers][AS43355][78.108.180.0 - 78.108.184.255] + +0.0.0.0 adv.drtuber.com +0.0.0.0 links-and-traffic.com +0.0.0.0 www.links-and-traffic.com +# [Upl-net-customers][AS43355][94.198.240.0 - 94.198.243.255] + +0.0.0.0 promo.hdvbucks.com +0.0.0.0 bn.premiumhdv.com +# [Uptilt][AS36699][208.66.204.0 - 208.66.207.255] + +0.0.0.0 stats.clicktracks.com +0.0.0.0 stats3.clicktracks.com +0.0.0.0 stats4.clicktracks.com +0.0.0.0 www.clicktracks.com +# [US Signal][AS26554][64.186.32.0 - 64.186.63.255] + +0.0.0.0 webalize.net +0.0.0.0 www.webalize.net +# [UUnet / Iperceptions][AS701][207.176.215.192 - 207.176.215.255] + +0.0.0.0 group11.iperceptions.com +# [UUnet Technologies][AS701][208.192.0.0 - 208.255.255.255] + +# [UUnet Technologies][AS701][63.76.184.0 - 63.76.187.255] + +# [UUnet / Worldata][AS701][63.77.84.0 - 63.77.84.255] + +0.0.0.0 webconnect.net +0.0.0.0 www.webconnect.net +0.0.0.0 www.worldata.com +# [UUnet / Microsoft.Avenue A][AS7046][65.203.229.0 - 65.203.229.255] + +0.0.0.0 ads.adagent.chacha.com +0.0.0.0 adecn-w.atdmt.com +0.0.0.0 srch.atdmt.com +0.0.0.0 atlasdmt.com +0.0.0.0 www.atlasdmt.com +0.0.0.0 www.avenuea.com +0.0.0.0 www.bidclix.com +# [UUnet / Yesup][AS701][66.48.81.128 - 66.48.81.255] + +0.0.0.0 serving.xxxwebtraffic.com +# [Valueclick][AS25751][216.34.207.0 - 216.34.207.255] + +# [ValueClick / Commission Junction[216.34.209.0 - 216.34.209.31] + +0.0.0.0 www.anrdoezrs.net +0.0.0.0 mp.apmebf.com +0.0.0.0 www.apmebf.com +0.0.0.0 www.commission-junction.com +0.0.0.0 www.emjcd.com +0.0.0.0 www.jdoqocy.com +0.0.0.0 qksrv.com +0.0.0.0 www.qksrv.net +0.0.0.0 www.qksz.net +0.0.0.0 www.tkqlhce.com +# [Valueclick][AS25751][64.152.0.0 - 64.159.255.255] + +0.0.0.0 csp.fastclick.net +0.0.0.0 cdn.mplxtms.com +0.0.0.0 n.mplxtms.com +0.0.0.0 t.mplxtms.com +# [Valueclick / Conversant][AS25751][8.18.45.0 - 8.18.45.255] + +0.0.0.0 cj.dotomi.com +# [Vanoppen.biz / Accretive Technology][AS11404][216.243.0.0 - 216.243.63.255] + +0.0.0.0 adrotator.com +0.0.0.0 www.adrotator.com +0.0.0.0 vote.sparklit.com +0.0.0.0 webpoll.sparklit.com +# [Vdhost Ltd][AS35057][78.157.142.0 - 78.157.142.255] + +# [Velcom / Rcp.net][AS30407][206.53.48.0 - 206.53.63.255] + +0.0.0.0 abtracker.adultbouncer.com +# [Velcom / Teleglobe][AS30407][64.86.16.0 - 64.86.17.255] + +# [Velocity Networks][AS8018][207.182.224.0 - 207.182.255.255] + +# [Velocity Networks][AS8018][66.102.128.0 - 66.102.143.255] + +0.0.0.0 ads.xbiz.com +0.0.0.0 exchange.xbiz.com +# [Vendare Group][AS36468][216.108.240.0 - 216.108.255.255] + +# [Ventrex][AS48856][95.129.144.0 - 95.129.145.255] + +# [VeriCenter / Coremetrics][204.77.28.0 - 204.77.31.255] + +# [VeriCenter / Coremetrics][209.235.28.0 - 209.235.28.255] + +0.0.0.0 data.cmcore.com +0.0.0.0 analytics.harpercollins.com +0.0.0.0 d1.playboy.com +0.0.0.0 www62.runningtimes.com +0.0.0.0 www9.swansonvitamins.com +# [VeriCenter / Coremetrics][66.179.0.0 - 66.179.255.255] + +0.0.0.0 www2.kiehls.com +# [VeriCenter / Coremetrics][66.179.217.0 - 66.179.217.255] + +# [VeriCenter / Coremetrics][69.48.237.0 - 69.48.237.255] + +0.0.0.0 log.aebn.net +0.0.0.0 cerberus.entertainment.com +0.0.0.0 c.maccosmetics.com +0.0.0.0 site.puritan.com +# [VeriCenter][AS33502][216.205.80.0 - 216.205.95.255] + +0.0.0.0 www3.bloomingdales.com +0.0.0.0 core.bluefly.com +0.0.0.0 www9.collectiblestoday.com +0.0.0.0 cmd.customink.com +0.0.0.0 rpt.footlocker.com +0.0.0.0 ww62.hsn.com +0.0.0.0 1901.nordstrom.com +# [Verizon][AS702][193.67.160.0 - 193.67.167.255] + +0.0.0.0 webtrends1.britishgas.co.uk +# [Verizon Europe / Tranent][AS702][195.54.71.0 - 195.54.71.255] + +# [Verizon][AS702][212.153.70.0 - 212.155.198.31] + +0.0.0.0 secure-eu.imrworldwide.com +# [Verizon Europe][AS702][213.129.10.0 - 213.129.10.255] + +# [Viacom][AS7256][206.220.40.0 - 206.220.43.255] + +# [ViaWest][AS13649][204.238.82.0 - 204.238.82.255] + +# 0.0.0.0 www.securitymetrics.com #[affects bank login] + +# [ViaWest][AS13649][206.71.64.0 - 206.71.95.255] + +0.0.0.0 mv.treehousei.com +# [ViaWest][AS13649][216.24.128.0 - 216.24.159.255] + +0.0.0.0 ap.lijit.com +0.0.0.0 beacon.lijit.com +0.0.0.0 www.lijit.com +# [ViaWest][AS13649][216.38.192.0 - 216.38.223.255] + +0.0.0.0 www.hugedomains.com +# [ViaWest][AS13649][216.46.160.0 - 216.46.191.255] + +# [ViaWest][AS14825][67.208.128.0 - 67.208.143.255] + +0.0.0.0 www.dicarlotrack.com +0.0.0.0 www.jmpads.com +0.0.0.0 www.leadtrackgo.com +0.0.0.0 www.rsptrack.com +0.0.0.0 www.xy7track.com +0.0.0.0 affiliates.yourapprovaltracker.com +# [ViaWest][AS13649][74.63.128.0 - 74.63.191.255] + +0.0.0.0 www.shopathome.com +# [Vibrant Media][AS17131] + +0.0.0.0 uk.intellitxt.com +0.0.0.0 www.intellitxt.com +0.0.0.0 mamamia.au.intellitxt.com +0.0.0.0 zdnet.be.intellitxt.com +0.0.0.0 ad-hoc-news.de.intellitxt.com +0.0.0.0 atspace.de.intellitxt.com +0.0.0.0 audio.de.intellitxt.com +0.0.0.0 awardspace.de.intellitxt.com +0.0.0.0 bild.de.intellitxt.com +0.0.0.0 chip.de.intellitxt.com +0.0.0.0 castingshow-news.de.intellitxt.com +0.0.0.0 computerbase.de.intellitxt.com +0.0.0.0 computerbild.de.intellitxt.com +0.0.0.0 computerhilfen.de.intellitxt.com +0.0.0.0 computerwoche.de.intellitxt.com +0.0.0.0 digital-world.de.intellitxt.com +0.0.0.0 ghacks.de.intellitxt.com +0.0.0.0 golem.de.intellitxt.com +0.0.0.0 gulli.de.intellitxt.com +0.0.0.0 inquake.de.intellitxt.com +0.0.0.0 loady.de.intellitxt.com +0.0.0.0 macwelt.de.intellitxt.com +0.0.0.0 msmobiles.de.intellitxt.com +0.0.0.0 news.de.intellitxt.com +0.0.0.0 pcwelt.de.intellitxt.com +0.0.0.0 php-mag.de.intellitxt.com +0.0.0.0 php-magnet.de.intellitxt.com +0.0.0.0 softonic.de.intellitxt.com +0.0.0.0 supernature-forum.de.intellitxt.com +0.0.0.0 supportnet.de.intellitxt.com +0.0.0.0 tecchannel.de.intellitxt.com +0.0.0.0 winfuture.de.intellitxt.com +0.0.0.0 wg-gesucht.de.intellitxt.com +0.0.0.0 womenshealth.de.intellitxt.com +0.0.0.0 actualite-de-stars.fr.intellitxt.com +0.0.0.0 telefonica.es.intellitxt.com +0.0.0.0 cowcotland.fr.intellitxt.com +0.0.0.0 froggytest.fr.intellitxt.com +0.0.0.0 generation-nt.fr.intellitxt.com +0.0.0.0 hiphopgalaxy.fr.intellitxt.com +0.0.0.0 infos-du-net.fr.intellitxt.com +0.0.0.0 memoclic.fr.intellitxt.com +0.0.0.0 neteco.fr.intellitxt.com +0.0.0.0 pcinpact.fr.intellitxt.com +0.0.0.0 pc-infopratique.fr.intellitxt.com +0.0.0.0 presence-pc.fr.intellitxt.com +0.0.0.0 programme-tv.fr.intellitxt.com +0.0.0.0 reseaux-telecoms.fr.intellitxt.com +0.0.0.0 tomshardware.fr.intellitxt.com +0.0.0.0 zataz.fr.intellitxt.com +0.0.0.0 techgadgets.in.intellitxt.com +0.0.0.0 telefonino.it.intellitxt.com +0.0.0.0 computeridee.nl.intellitxt.com +0.0.0.0 computertotaal.nl.intellitxt.com +0.0.0.0 techworld.nl.intellitxt.com +0.0.0.0 techzine.nl.intellitxt.com +0.0.0.0 topdownloads.nl.intellitxt.com +0.0.0.0 webwereld.nl.intellitxt.com +0.0.0.0 compulenta.ru.intellitxt.com +0.0.0.0 rbmods.se.intellitxt.com +0.0.0.0 tomshardware.se.intellitxt.com +0.0.0.0 4thegame.uk.intellitxt.com +0.0.0.0 amygrindhouse.uk.intellitxt.com +0.0.0.0 anorak.uk.intellitxt.com +0.0.0.0 bink.uk.intellitxt.com +0.0.0.0 bit-tech.uk.intellitxt.com +0.0.0.0 biosmagazine.uk.intellitxt.com +0.0.0.0 cbronline.uk.intellitxt.com +0.0.0.0 computeractive.uk.intellitxt.com +0.0.0.0 computing.uk.intellitxt.com +0.0.0.0 digit-life.uk.intellitxt.com +0.0.0.0 efluxmedia.uk.intellitxt.com +0.0.0.0 express.uk.intellitxt.com +0.0.0.0 femalefirst.uk.intellitxt.com +0.0.0.0 fhm.uk.intellitxt.com +0.0.0.0 footymad.uk.intellitxt.com +0.0.0.0 freedownloadmanager.uk.intellitxt.com +0.0.0.0 freewarepalm.uk.intellitxt.com +0.0.0.0 futurepublications.uk.intellitxt.com +0.0.0.0 gamesindustry.uk.intellitxt.com +0.0.0.0 handbag.uk.intellitxt.com +0.0.0.0 hellomagazine.uk.intellitxt.com +0.0.0.0 hexus.uk.intellitxt.com +0.0.0.0 itpro.uk.intellitxt.com +0.0.0.0 itreviews.uk.intellitxt.com +0.0.0.0 knowyourmobile.uk.intellitxt.com +0.0.0.0 legitreviews-uk.intellitxt.com +0.0.0.0 letsgodigital.uk.intellitxt.com +0.0.0.0 lse.uk.intellitxt.com +0.0.0.0 mad.uk.intellitxt.com +0.0.0.0 mobilecomputermag.uk.intellitxt.com +0.0.0.0 nodevice.uk.intellitxt.com +0.0.0.0 ok.uk.intellitxt.com +0.0.0.0 pcadvisor-uk.intellitxt.com +0.0.0.0 pcgamer.uk.intellitxt.com +0.0.0.0 pcpro.uk.intellitxt.com +0.0.0.0 pcw.uk.intellitxt.com +0.0.0.0 product-reviews.uk.intellitxt.com +0.0.0.0 sharecast.uk.intellitxt.com +0.0.0.0 sofeminine.uk.intellitxt.com +0.0.0.0 squarefootball.uk.intellitxt.com +0.0.0.0 tcmagazine.uk.intellitxt.com +0.0.0.0 teamtalk.uk.intellitxt.com +0.0.0.0 techradar.uk.intellitxt.com +0.0.0.0 thehollywoodnews.uk.intellitxt.com +0.0.0.0 theinquirer.uk.intellitxt.com +0.0.0.0 theregister.uk.intellitxt.com +0.0.0.0 thetechherald.uk.intellitxt.com +0.0.0.0 videojug.uk.intellitxt.com +0.0.0.0 vitalfootball.uk.intellitxt.com +0.0.0.0 vnunet.uk.intellitxt.com +0.0.0.0 webuser.uk.intellitxt.com +0.0.0.0 windows7news.uk.intellitxt.com +0.0.0.0 worldtravelguide.uk.intellitxt.com +0.0.0.0 247wallstreet.us.intellitxt.com +0.0.0.0 2snaps.us.intellitxt.com +0.0.0.0 2spyware.us.intellitxt.com +0.0.0.0 24wrestling.us.intellitxt.com +0.0.0.0 411mania.us.intellitxt.com +0.0.0.0 4w-wrestling.us.intellitxt.com +0.0.0.0 5starsupport.us.intellitxt.com +0.0.0.0 9down.us.intellitxt.com +0.0.0.0 10best.us.intellitxt.com +0.0.0.0 able2know.us.intellitxt.com +0.0.0.0 accuweather.us.intellitxt.com +0.0.0.0 aceshowbiz.us.intellitxt.com +0.0.0.0 aclasscelebs.us.intellitxt.com +0.0.0.0 activewin.us.intellitxt.com +0.0.0.0 actionscript.us.intellitxt.com +0.0.0.0 advancedmn.us.intellitxt.com +0.0.0.0 adwarereport.us.intellitxt.com +0.0.0.0 afterdawn.us.intellitxt.com +0.0.0.0 afraidtoask.us.intellitxt.com +0.0.0.0 ajc.us.intellitxt.com +0.0.0.0 akihabaranews.us.intellitxt.com +0.0.0.0 alive.us.intellitxt.com +0.0.0.0 allcarselectric.us.intellitxt.com +0.0.0.0 allgetaways.us.intellitxt.com +0.0.0.0 allhiphop.us.intellitxt.com +0.0.0.0 allrefer.us.intellitxt.com +0.0.0.0 allwomenstalk.us.intellitxt.com +0.0.0.0 amdzone.us.intellitxt.com +0.0.0.0 americanmedia.us.intellitxt.com +0.0.0.0 andpop.us.intellitxt.com +0.0.0.0 androidandme.us.intellitxt.com +0.0.0.0 androidcentral.us.intellitxt.com +0.0.0.0 androidcommunity.us.intellitxt.com +0.0.0.0 answerbag.us.intellitxt.com +0.0.0.0 antimusic.us.intellitxt.com +0.0.0.0 anythinghollywood.us.intellitxt.com +0.0.0.0 appscout.us.intellitxt.com +0.0.0.0 artistdirect.us.intellitxt.com +0.0.0.0 askmen.us.intellitxt.com +0.0.0.0 aquasoft.us.intellitxt.com +0.0.0.0 architecturaldesigns.us.intellitxt.com +0.0.0.0 autoforums.us.intellitxt.com +0.0.0.0 automobilemag.us.intellitxt.com +0.0.0.0 automotive.us.intellitxt.com +0.0.0.0 autospies.us.intellitxt.com +0.0.0.0 autoworldnews.us.intellitxt.com +0.0.0.0 away.us.intellitxt.com +0.0.0.0 aximsite.us.intellitxt.com +0.0.0.0 b5media.us.intellitxt.com +0.0.0.0 backseatcuddler.us.intellitxt.com +0.0.0.0 balleralert.us.intellitxt.com +0.0.0.0 baselinemag.us.intellitxt.com +0.0.0.0 bastardly.us.intellitxt.com +0.0.0.0 beautyden.us.intellitxt.com +0.0.0.0 becomegorgeous.us.intellitxt.com +0.0.0.0 beliefnet.us.intellitxt.com +0.0.0.0 betanews.us.intellitxt.com +0.0.0.0 beyondhollywood.us.intellitxt.com +0.0.0.0 bigbigforums.us.intellitxt.com +0.0.0.0 bittenandbound.us.intellitxt.com +0.0.0.0 blacksportsonline.us.intellitxt.com +0.0.0.0 blastro.us.intellitxt.com +0.0.0.0 bleepingcomputer.us.intellitxt.com +0.0.0.0 blisstree.us.intellitxt.com +0.0.0.0 boldride.us.intellitxt.com +0.0.0.0 bootdaily.us.intellitxt.com +0.0.0.0 boxingscene.us.intellitxt.com +0.0.0.0 bradpittnow.us.intellitxt.com +0.0.0.0 bricksandstonesgossip.us.intellitxt.com +0.0.0.0 brighthub.us.intellitxt.com +0.0.0.0 brothersoft.us.intellitxt.com +0.0.0.0 bukisa.us.intellitxt.com +0.0.0.0 bullz-eye.us.intellitxt.com +0.0.0.0 bumpshack.us.intellitxt.com +0.0.0.0 businessinsider.us.intellitxt.com +0.0.0.0 businessknowhow.us.intellitxt.com +0.0.0.0 bustedcoverage.us.intellitxt.com +0.0.0.0 buzzfoto.us.intellitxt.com +0.0.0.0 buzzhumor.us.intellitxt.com +0.0.0.0 bolt.us.intellitxt.com +0.0.0.0 cadillacforums.us.intellitxt.com +0.0.0.0 cafemom.us.intellitxt.com +0.0.0.0 canmag.us.intellitxt.com +0.0.0.0 car-stuff.us.intellitxt.com +0.0.0.0 cavemancircus.us.intellitxt.com +0.0.0.0 cbstv.us.intellitxt.com +0.0.0.0 newyork.cbslocal.us.intellitxt.com +0.0.0.0 cdreviews.us.intellitxt.com +0.0.0.0 cdrinfo.us.intellitxt.com +0.0.0.0 cdrom-guide.us.intellitxt.com +0.0.0.0 celebitchy.us.intellitxt.com +0.0.0.0 celebridoodle.us.intellitxt.com +0.0.0.0 celebrity-babies.us.intellitxt.com +0.0.0.0 celebritytoob.us.intellitxt.com +0.0.0.0 celebridiot.us.intellitxt.com +0.0.0.0 celebrifi.us.intellitxt.com +0.0.0.0 celebritymound.us.intellitxt.com +0.0.0.0 celebritynation.us.intellitxt.com +0.0.0.0 celebrityodor.us.intellitxt.com +0.0.0.0 celebrity-rightpundits.us.intellitxt.com +0.0.0.0 celebritysmackblog.us.intellitxt.com +0.0.0.0 celebrityviplounge.us.intellitxt.com +0.0.0.0 celebslam.us.intellitxt.com +0.0.0.0 celebrity-gossip.us.intellitxt.com +0.0.0.0 celebritypwn.us.intellitxt.com +0.0.0.0 celebritywonder.us.intellitxt.com +0.0.0.0 celebuzz.us.intellitxt.com +0.0.0.0 channelinsider.us.intellitxt.com +0.0.0.0 cheatcc.us.intellitxt.com +0.0.0.0 cheatingdome.us.intellitxt.com +0.0.0.0 chevelles.us.intellitxt.com +0.0.0.0 cmp.us.intellitxt.com +0.0.0.0 cnet.us.intellitxt.com +0.0.0.0 coedmagazine.us.intellitxt.com +0.0.0.0 collegefootballnews.us.intellitxt.com +0.0.0.0 comicbookmovie.us.intellitxt.com +0.0.0.0 comicbookresources.us.intellitxt.com +0.0.0.0 comingsoon.us.intellitxt.com +0.0.0.0 complex.us.intellitxt.com +0.0.0.0 compnet.us.intellitxt.com +0.0.0.0 consumerreview.us.intellitxt.com +0.0.0.0 contactmusic.us.intellitxt.com +0.0.0.0 cooksrecipes.us.intellitxt.com +0.0.0.0 cooltechzone.us.intellitxt.com +0.0.0.0 counselheal.us.intellitxt.com +0.0.0.0 countryweekly.us.intellitxt.com +0.0.0.0 courierpostonline.us.intellitxt.com +0.0.0.0 coxtv.us.intellitxt.com +0.0.0.0 crmbuyer.us.intellitxt.com +0.0.0.0 csharpcorner.us.intellitxt.com +0.0.0.0 csnation.us.intellitxt.com +0.0.0.0 dabcc.us.intellitxt.com +0.0.0.0 dailycaller.us.intellitxt.com +0.0.0.0 dailygab.us.intellitxt.com +0.0.0.0 dailystab.us.intellitxt.com +0.0.0.0 dailytech.us.intellitxt.com +0.0.0.0 damnimcute.us.intellitxt.com +0.0.0.0 danasdirt.us.intellitxt.com +0.0.0.0 daniweb.us.intellitxt.com +0.0.0.0 darkhorizons.us.intellitxt.com +0.0.0.0 darlamack.us.intellitxt.com +0.0.0.0 dbtechno.us.intellitxt.com +0.0.0.0 delawareonline.us.intellitxt.com +0.0.0.0 delconewsnetwork.us.intellitxt.com +0.0.0.0 destructoid.us.intellitxt.com +0.0.0.0 demonews.us.intellitxt.com +0.0.0.0 denguru.us.intellitxt.com +0.0.0.0 derekhail.us.intellitxt.com +0.0.0.0 dietsinreview.us.intellitxt.com +0.0.0.0 digitalhome.us.intellitxt.com +0.0.0.0 digitalmediaonline.us.intellitxt.com +0.0.0.0 digitalmediawire.us.intellitxt.com +0.0.0.0 diyfood.us.intellitxt.com +0.0.0.0 dlmag.us.intellitxt.com +0.0.0.0 download32.us.intellitxt.com +0.0.0.0 drdobbs.us.intellitxt.com +0.0.0.0 driverguide.us.intellitxt.com +0.0.0.0 drugscom.us.intellitxt.com +0.0.0.0 eastsideboxing.us.intellitxt.com +0.0.0.0 eatingwell.us.intellitxt.com +0.0.0.0 ebaumsworld.us.intellitxt.com +0.0.0.0 ecanadanow.us.intellitxt.com +0.0.0.0 ecommercetimes.us.intellitxt.com +0.0.0.0 eepn.us.intellitxt.com +0.0.0.0 efanguide.us.intellitxt.com +0.0.0.0 egotastic.us.intellitxt.com +0.0.0.0 eharmony.us.intellitxt.com +0.0.0.0 ehomeupgrade.us.intellitxt.com +0.0.0.0 electronista.us.intellitxt.com +0.0.0.0 emaxhealth.us.intellitxt.com +0.0.0.0 encyclocentral.us.intellitxt.com +0.0.0.0 entrepreneur.us.intellitxt.com +0.0.0.0 entertainmentwise.us.intellitxt.com +0.0.0.0 eontarionow.us.intellitxt.com +0.0.0.0 estelle.us.intellitxt.com +0.0.0.0 eten-users.us.intellitxt.com +0.0.0.0 everyjoe.us.intellitxt.com +0.0.0.0 evilbeetgossip.us.intellitxt.com +0.0.0.0 eweek.us.intellitxt.com +0.0.0.0 extntechnologies.us.intellitxt.com +0.0.0.0 extremeoverclocking.us.intellitxt.com +0.0.0.0 eztracks.us.intellitxt.com +0.0.0.0 fangoria.us.intellitxt.com +0.0.0.0 faqts.us.intellitxt.com +0.0.0.0 fatbackandcollards.us.intellitxt.com +0.0.0.0 fatbackmedia.us.intellitxt.com +0.0.0.0 fatfreekitchen.us.intellitxt.com +0.0.0.0 feedsweep.us.intellitxt.com +0.0.0.0 fhmonline.us.intellitxt.com +0.0.0.0 fightline.us.intellitxt.com +0.0.0.0 filmdrunk.us.intellitxt.com +0.0.0.0 filedudes.us.intellitxt.com +0.0.0.0 filmstew.us.intellitxt.com +0.0.0.0 filmthreat.us.intellitxt.com +0.0.0.0 firingsquad.us.intellitxt.com +0.0.0.0 fixya.us.intellitxt.com +0.0.0.0 flyingmag.us.intellitxt.com +0.0.0.0 forbes.us.intellitxt.com +0.0.0.0 fortunecity.us.intellitxt.com +0.0.0.0 forumediainc.us.intellitxt.com +0.0.0.0 foxsports.us.intellitxt.com +0.0.0.0 freecodecs.us.intellitxt.com +0.0.0.0 freewarehome.us.intellitxt.com +0.0.0.0 friendtest.us.intellitxt.com +0.0.0.0 futurelooks.us.intellitxt.com +0.0.0.0 g2.us.intellitxt.com +0.0.0.0 g3.us.intellitxt.com +0.0.0.0 g4.us.intellitxt.com +0.0.0.0 g5.us.intellitxt.com +0.0.0.0 gabsmash.us.intellitxt.com +0.0.0.0 gamedev.us.intellitxt.com +0.0.0.0 gamerstemple.us.intellitxt.com +0.0.0.0 gannettwisconsin.us.intellitxt.com +0.0.0.0 gardenweb.us.intellitxt.com +0.0.0.0 gather.us.intellitxt.com +0.0.0.0 geek.us.intellitxt.com +0.0.0.0 geekstogo.us.intellitxt.com +0.0.0.0 genmay.us.intellitxt.com +0.0.0.0 gigwise.us.intellitxt.com +0.0.0.0 girlsaskguys.us.intellitxt.com +0.0.0.0 givememyremote.us.intellitxt.com +0.0.0.0 goal.us.intellitxt.com +0.0.0.0 gossipcenter.us.intellitxt.com +0.0.0.0 gossiponthis.us.intellitxt.com +0.0.0.0 gossipteen.us.intellitxt.com +0.0.0.0 gottabemobile.us.intellitxt.com +0.0.0.0 govpro.us.intellitxt.com +0.0.0.0 graytv.us.intellitxt.com +0.0.0.0 gsmarena.us.intellitxt.com +0.0.0.0 gtmedia.us.intellitxt.com +0.0.0.0 guardianlv.us.intellitxt.com +0.0.0.0 guru3d.us.intellitxt.com +0.0.0.0 hairboutique.us.intellitxt.com +0.0.0.0 hardforum.us.intellitxt.com +0.0.0.0 hardwaregeeks.us.intellitxt.com +0.0.0.0 hardwarezone.us.intellitxt.com +0.0.0.0 harmony-central.us.intellitxt.com +0.0.0.0 haveuheard.us.intellitxt.com +0.0.0.0 helium.us.intellitxt.com +0.0.0.0 hiphoprx.us.intellitxt.com +0.0.0.0 hiphopdx.us.intellitxt.com +0.0.0.0 hiphoplead.us.intellitxt.com +0.0.0.0 hngn.com.us.intellitxt.com +0.0.0.0 hollyrude.us.intellitxt.com +0.0.0.0 hollywood.us.intellitxt.com +0.0.0.0 hollywooddame.us.intellitxt.com +0.0.0.0 hollywoodbackwash.us.intellitxt.com +0.0.0.0 hollywoodchicago.us.intellitxt.com +0.0.0.0 hollywoodstreetking.us.intellitxt.com +0.0.0.0 hollywoodtuna.us.intellitxt.com +0.0.0.0 hometheaterhifi.us.intellitxt.com +0.0.0.0 hongkiat.us.intellitxt.com +0.0.0.0 hoopsworld.us.intellitxt.com +0.0.0.0 hoovers.us.intellitxt.com +0.0.0.0 horoscope.us.intellitxt.com +0.0.0.0 hostboard.us.intellitxt.com +0.0.0.0 hotmommagossip.us.intellitxt.com +0.0.0.0 howardchui.us.intellitxt.com +0.0.0.0 hq-celebrity.us.intellitxt.com +0.0.0.0 huliq.us.intellitxt.com +0.0.0.0 i4u.us.intellitxt.com +0.0.0.0 iamnotageek.us.intellitxt.com +0.0.0.0 icentric.us.intellitxt.com +0.0.0.0 ichef.us.intellitxt.com +0.0.0.0 icydk.us.intellitxt.com +0.0.0.0 idontlikeyouinthatway.us.intellitxt.com +0.0.0.0 iesb.us.intellitxt.com +0.0.0.0 india-forums.us.intellitxt.com +0.0.0.0 babes.ign.us.intellitxt.com +0.0.0.0 cars.ign.us.intellitxt.com +0.0.0.0 comics.ign.us.intellitxt.com +0.0.0.0 cube.ign.us.intellitxt.com +0.0.0.0 ds.ign.us.intellitxt.com +0.0.0.0 filmforcedvd.ign.us.intellitxt.com +0.0.0.0 gameboy.ign.us.intellitxt.com +0.0.0.0 music.ign.us.intellitxt.com +0.0.0.0 psp.ign.us.intellitxt.com +0.0.0.0 ps2.ign.us.intellitxt.com +0.0.0.0 psx.ign.us.intellitxt.com +0.0.0.0 revolution.ign.us.intellitxt.com +0.0.0.0 sports.ign.us.intellitxt.com +0.0.0.0 wireless.ign.us.intellitxt.com +0.0.0.0 xbox.ign.us.intellitxt.com +0.0.0.0 xbox360.ign.us.intellitxt.com +0.0.0.0 idm.us.intellitxt.com +0.0.0.0 i-hacked.us.intellitxt.com +0.0.0.0 imnotobsessed.us.intellitxt.com +0.0.0.0 impactwrestling.us.intellitxt.com +0.0.0.0 imreportcard.us.intellitxt.com +0.0.0.0 infopackets.us.intellitxt.com +0.0.0.0 insidemacgames.us.intellitxt.com +0.0.0.0 intermix.us.intellitxt.com +0.0.0.0 internetautoguide.us.intellitxt.com +0.0.0.0 intogossip.us.intellitxt.com +0.0.0.0 intomobile.us.intellitxt.com +0.0.0.0 investingchannel.us.intellitxt.com +0.0.0.0 investopedia.us.intellitxt.com +0.0.0.0 ittoolbox.us.intellitxt.com +0.0.0.0 itxt3.us.intellitxt.com +0.0.0.0 itworld.us.intellitxt.com +0.0.0.0 ivillage.us.intellitxt.com +0.0.0.0 s.ivillage.us.intellitxt.com +0.0.0.0 iwon.us.intellitxt.com +0.0.0.0 jacksonsun.us.intellitxt.com +0.0.0.0 jakeludington.us.intellitxt.com +0.0.0.0 jkontherun.us.intellitxt.com +0.0.0.0 juicyceleb.us.intellitxt.com +0.0.0.0 juicy-news.blogspot.us.intellitxt.com +0.0.0.0 jupiter.us.intellitxt.com +0.0.0.0 justjared.us.intellitxt.com +0.0.0.0 justmovietrailers.us.intellitxt.com +0.0.0.0 jutiagroup.us.intellitxt.com +0.0.0.0 kaboose.us.intellitxt.com +0.0.0.0 kasterborous.us.intellitxt.com +0.0.0.0 killerstartups.us.intellitxt.com +0.0.0.0 kissingsuzykolber.us.intellitxt.com +0.0.0.0 knac.us.intellitxt.com +0.0.0.0 kpopstarz.us.intellitxt.com +0.0.0.0 laboroflove.us.intellitxt.com +0.0.0.0 laineygossip.us.intellitxt.com +0.0.0.0 laptoplogic.us.intellitxt.com +0.0.0.0 lat34.us.intellitxt.com +0.0.0.0 latinpost.us.intellitxt.com +0.0.0.0 letsrun.us.intellitxt.com +0.0.0.0 latinoreview.us.intellitxt.com +0.0.0.0 lifescript.us.intellitxt.com +0.0.0.0 linuxdevcenter.us.intellitxt.com +0.0.0.0 linuxjournal.us.intellitxt.com +0.0.0.0 livescience.us.intellitxt.com +0.0.0.0 livestrong.us.intellitxt.com +0.0.0.0 lmcd.us.intellitxt.com +0.0.0.0 lockergnome.us.intellitxt.com +0.0.0.0 lohud.us.intellitxt.com +0.0.0.0 longhornblogs.us.intellitxt.com +0.0.0.0 lxer.us.intellitxt.com +0.0.0.0 lyrics.us.intellitxt.com +0.0.0.0 macdailynews.us.intellitxt.com +0.0.0.0 macnewsworld.us.intellitxt.com +0.0.0.0 macgamefiles.us.intellitxt.com +0.0.0.0 macmegasite.us.intellitxt.com +0.0.0.0 macobserver.us.intellitxt.com +0.0.0.0 madamenoire.us.intellitxt.com +0.0.0.0 madpenguin.us.intellitxt.com +0.0.0.0 mainstreet.us.intellitxt.com +0.0.0.0 majorgeeks.us.intellitxt.com +0.0.0.0 makeherup.us.intellitxt.com +0.0.0.0 makemeheal.us.intellitxt.com +0.0.0.0 makeushot.us.intellitxt.com +0.0.0.0 masalatalk.us.intellitxt.com +0.0.0.0 mazdaworld.us.intellitxt.com +0.0.0.0 medicinenet.us.intellitxt.com +0.0.0.0 medindia.us.intellitxt.com +0.0.0.0 memphisrap.us.intellitxt.com +0.0.0.0 meredithtv.us.intellitxt.com +0.0.0.0 methodshop.us.intellitxt.com +0.0.0.0 military.us.intellitxt.com +0.0.0.0 missjia.us.intellitxt.com +0.0.0.0 mobileburn.us.intellitxt.com +0.0.0.0 mobiletechreview.us.intellitxt.com +0.0.0.0 mobilewhack.us.intellitxt.com +0.0.0.0 mobilityguru.us.intellitxt.com +0.0.0.0 modifiedlife.us.intellitxt.com +0.0.0.0 mommyish.us.intellitxt.com +0.0.0.0 morningstar.us.intellitxt.com +0.0.0.0 motortrend.us.intellitxt.com +0.0.0.0 moviehole.us.intellitxt.com +0.0.0.0 movie-list.us.intellitxt.com +0.0.0.0 movies.us.intellitxt.com +0.0.0.0 movieweb.us.intellitxt.com +0.0.0.0 msfn.us.intellitxt.com +0.0.0.0 msnbc.us.intellitxt.com +0.0.0.0 autos.msnbc.us.intellitxt.com +0.0.0.0 business.msnbc.us.intellitxt.com +0.0.0.0 health.msnbc.us.intellitxt.com +0.0.0.0 nbcsports.us.intellitxt.com +0.0.0.0 news.msnbc.us.intellitxt.com +0.0.0.0 sports.msnbc.us.intellitxt.com +0.0.0.0 technology.msnbc.us.intellitxt.com +0.0.0.0 travel-and-weather.msnbc.us.intellitxt.com +0.0.0.0 mmafighting.us.intellitxt.com +0.0.0.0 entertainment.msn.us.intellitxt.com +0.0.0.0 muscleandfitnesshers.us.intellitxt.com +0.0.0.0 mydigitallife.us.intellitxt.com +0.0.0.0 myfavoritegames.us.intellitxt.com +0.0.0.0 mydailymoment.us.intellitxt.com +0.0.0.0 nasioc.us.intellitxt.com +0.0.0.0 nationalledger.us.intellitxt.com +0.0.0.0 nationalenquirer.us.intellitxt.com +0.0.0.0 naturalhealth.us.intellitxt.com +0.0.0.0 natureworldnews.us.intellitxt.com +0.0.0.0 nbcnewyork.us.intellitxt.com +0.0.0.0 nbcuniversaltv.us.intellitxt.com +0.0.0.0 neoseeker.us.intellitxt.com +0.0.0.0 nextround.us.intellitxt.com +0.0.0.0 newsoxy.us.intellitxt.com +0.0.0.0 newstoob.us.intellitxt.com +0.0.0.0 nihoncar.us.intellitxt.com +0.0.0.0 ninjadude.us.intellitxt.com +0.0.0.0 ntcompatible.us.intellitxt.com +0.0.0.0 oceanup.us.intellitxt.com +0.0.0.0 octools.us.intellitxt.com +0.0.0.0 ocworkbench.us.intellitxt.com +0.0.0.0 officer.us.intellitxt.com +0.0.0.0 okmagazine.us.intellitxt.com +0.0.0.0 onlamp.us.intellitxt.com +0.0.0.0 ontheflix.us.intellitxt.com +0.0.0.0 oocenter.us.intellitxt.com +0.0.0.0 osdir.us.intellitxt.com +0.0.0.0 ostg.us.intellitxt.com +0.0.0.0 outofsightmedia.us.intellitxt.com +0.0.0.0 overclockersonline.us.intellitxt.com +0.0.0.0 overthelimit.us.intellitxt.com +0.0.0.0 pal-item.us.intellitxt.com +0.0.0.0 perezhilton.us.intellitxt.com +0.0.0.0 philadelphia_cbslocal.us.intellitxt.com +0.0.0.0 phonearena.us.intellitxt.com +0.0.0.0 pickmeupnews.us.intellitxt.com +0.0.0.0 pinkisthenewblog.us.intellitxt.com +0.0.0.0 popdirt.us.intellitxt.com +0.0.0.0 popfill.us.intellitxt.com +0.0.0.0 popoholic.us.intellitxt.com +0.0.0.0 poponthepop.us.intellitxt.com +0.0.0.0 prettyboring.us.intellitxt.com +0.0.0.0 priusonline.us.intellitxt.com +0.0.0.0 profootballweekly.us.intellitxt.com +0.0.0.0 programmerworld.us.intellitxt.com +0.0.0.0 pro-networks.us.intellitxt.com +0.0.0.0 ps3news.us.intellitxt.com +0.0.0.0 punchjump.us.intellitxt.com +0.0.0.0 puppytoob.us.intellitxt.com +0.0.0.0 pwinsider.us.intellitxt.com +0.0.0.0 quickpwn.us.intellitxt.com +0.0.0.0 quinstreet.us.intellitxt.com +0.0.0.0 rankmytattoos.us.intellitxt.com +0.0.0.0 rantsports.us.intellitxt.com +0.0.0.0 rcpmag.us.intellitxt.com +0.0.0.0 realitytea.us.intellitxt.com +0.0.0.0 realitytvmagazine.us.intellitxt.com +0.0.0.0 recipeland.us.intellitxt.com +0.0.0.0 redbalcony.us.intellitxt.com +0.0.0.0 reelmovienews.us.intellitxt.com +0.0.0.0 rickey.us.intellitxt.com +0.0.0.0 ringsurf.us.intellitxt.com +0.0.0.0 rnbdirt.us.intellitxt.com +0.0.0.0 rumorfix.us.intellitxt.com +0.0.0.0 sports.rightpundits.us.intellitxt.com +0.0.0.0 rojakpot.us.intellitxt.com +0.0.0.0 rpg.us.intellitxt.com +0.0.0.0 rx8club.us.intellitxt.com +0.0.0.0 rydium.us.intellitxt.com +0.0.0.0 scanwith.us.intellitxt.com +0.0.0.0 scienceworldreport.us.intellitxt.com +0.0.0.0 screensavers.us.intellitxt.com +0.0.0.0 sdcexecs.us.intellitxt.com +0.0.0.0 shallownation.us.intellitxt.com +0.0.0.0 shebudgets.us.intellitxt.com +0.0.0.0 sheknows.us.intellitxt.com +0.0.0.0 shoutwire.us.intellitxt.com +0.0.0.0 slashfilm.us.intellitxt.com +0.0.0.0 smartabouthealth.us.intellitxt.com +0.0.0.0 smartcarfinder.us.intellitxt.com +0.0.0.0 smartdevicecentral.us.intellitxt.com +0.0.0.0 sportingnews.us.intellitxt.com +0.0.0.0 soccergaming.us.intellitxt.com +0.0.0.0 socialanxietysupport.us.intellitxt.com +0.0.0.0 socialitelife.us.intellitxt.com +0.0.0.0 softpedia.us.intellitxt.com +0.0.0.0 sohh.us.intellitxt.com +0.0.0.0 space.us.intellitxt.com +0.0.0.0 speedguide.us.intellitxt.com +0.0.0.0 speedtv.us.intellitxt.com +0.0.0.0 sportscarillustrated.us.intellitxt.com +0.0.0.0 sprintusers.us.intellitxt.com +0.0.0.0 sqlservercentral.us.intellitxt.com +0.0.0.0 starcasm.us.intellitxt.com +0.0.0.0 starpulse.us.intellitxt.com +0.0.0.0 steadyhealth.us.intellitxt.com +0.0.0.0 stockgroup.us.intellitxt.com +0.0.0.0 storknet.us.intellitxt.com +0.0.0.0 stupidcelebrities.us.intellitxt.com +0.0.0.0 styleblazer.us.intellitxt.com +0.0.0.0 supercars.us.intellitxt.com +0.0.0.0 superherohype.us.intellitxt.com +0.0.0.0 surebaby.us.intellitxt.com +0.0.0.0 symbianone.us.intellitxt.com +0.0.0.0 symbian-freak.us.intellitxt.com +0.0.0.0 taletela.us.intellitxt.com +0.0.0.0 tbohiphop.us.intellitxt.com +0.0.0.0 tech-faq.us.intellitxt.com +0.0.0.0 techgage.us.intellitxt.com +0.0.0.0 techguy.us.intellitxt.com +0.0.0.0 techimo.us.intellitxt.com +0.0.0.0 technobuffalo.us.intellitxt.com +0.0.0.0 technologyguide.us.intellitxt.com +0.0.0.0 techpowerup.us.intellitxt.com +0.0.0.0 techsupportforum.us.intellitxt.com +0.0.0.0 tenmagazines.us.intellitxt.com +0.0.0.0 thathappened.us.intellitxt.com +0.0.0.0 theadvertiser.us.intellitxt.com +0.0.0.0 theblemish.us.intellitxt.com +0.0.0.0 thebosh.us.intellitxt.com +0.0.0.0 thecarconnection.us.intellitxt.com +0.0.0.0 thecelebritycafe.us.intellitxt.com +0.0.0.0 theeldergeek.us.intellitxt.com +0.0.0.0 thefinalfantasy.us.intellitxt.com +0.0.0.0 theforce.us.intellitxt.com +0.0.0.0 thefrisky.us.intellitxt.com +0.0.0.0 thefutoncritic.us.intellitxt.com +0.0.0.0 thegauntlet.us.intellitxt.com +0.0.0.0 theglobeandmail.us.intellitxt.com +0.0.0.0 thegloss.us.intellitxt.com +0.0.0.0 thehdroom.us.intellitxt.com +0.0.0.0 thehollywoodgossip.us.intellitxt.com +0.0.0.0 themanroom.us.intellitxt.com +0.0.0.0 theonenetwork.us.intellitxt.com +0.0.0.0 thepaparazzis.us.intellitxt.com +0.0.0.0 thestreet.us.intellitxt.com +0.0.0.0 thesuperficial.us.intellitxt.com +0.0.0.0 thetechlounge.us.intellitxt.com +0.0.0.0 theunwired.us.intellitxt.com +0.0.0.0 theybf.us.intellitxt.com +0.0.0.0 thinkcomputers.us.intellitxt.com +0.0.0.0 threadwatch.us.intellitxt.com +0.0.0.0 tmz.us.intellitxt.com +0.0.0.0 todayshow.us.intellitxt.com +0.0.0.0 toofab.us.intellitxt.com +0.0.0.0 tomsforumz.us.intellitxt.com +0.0.0.0 tomshardware.us.intellitxt.com +0.0.0.0 topsocialite.us.intellitxt.com +0.0.0.0 topnews.us.intellitxt.com +0.0.0.0 toptechreviews.us.intellitxt.com +0.0.0.0 toptenreviews.us.intellitxt.com +0.0.0.0 topspeed.us.intellitxt.com +0.0.0.0 torquenews.us.intellitxt.com +0.0.0.0 tothecenter.us.intellitxt.com +0.0.0.0 traileraddict.us.intellitxt.com +0.0.0.0 trekweb.us.intellitxt.com +0.0.0.0 triumphrat.us.intellitxt.com +0.0.0.0 tsxclub.us.intellitxt.com +0.0.0.0 tutorialoutpost.us.intellitxt.com +0.0.0.0 tvfanatic.us.intellitxt.com +0.0.0.0 tv-now.us.intellitxt.com +0.0.0.0 tv-rightcelebrity.us.intellitxt.com +0.0.0.0 tvseriesfinale.us.intellitxt.com +0.0.0.0 tweaks.us.intellitxt.com +0.0.0.0 tweaktown.us.intellitxt.com +0.0.0.0 tweakvista.us.intellitxt.com +0.0.0.0 tweetsoup.us.intellitxt.com +0.0.0.0 twitchguru.us.intellitxt.com +0.0.0.0 ubergizmo.us.intellitxt.com +0.0.0.0 unathleticmag.us.intellitxt.com +0.0.0.0 universityherald.us.intellitxt.com +0.0.0.0 upi.us.intellitxt.com +0.0.0.0 vault9.us.intellitxt.com +0.0.0.0 viaarena.us.intellitxt.com +0.0.0.0 vibe.us.intellitxt.com +0.0.0.0 videocodezone.us.intellitxt.com +0.0.0.0 vidnet.us.intellitxt.com +0.0.0.0 voodoofiles.us.intellitxt.com +0.0.0.0 warcry.us.intellitxt.com +0.0.0.0 washingtontimes.us.intellitxt.com +0.0.0.0 weightlossforall.us.intellitxt.com +0.0.0.0 whatthetech.us.intellitxt.com +0.0.0.0 whoateallthepies.uk.intellitxt.com +0.0.0.0 wincert.us.intellitxt.com +0.0.0.0 windowsbbs.us.intellitxt.com +0.0.0.0 windowsitpro.us.intellitxt.com +0.0.0.0 winmatrix.us.intellitxt.com +0.0.0.0 winterrowd.us.intellitxt.com +0.0.0.0 wiregirl.us.intellitxt.com +0.0.0.0 withleather.us.intellitxt.com +0.0.0.0 wm5fixsite.us.intellitxt.com +0.0.0.0 womensforum.us.intellitxt.com +0.0.0.0 wowinterface.us.intellitxt.com +0.0.0.0 wrestling-edge.us.intellitxt.com +0.0.0.0 wwtdd.us.intellitxt.com +0.0.0.0 x17online.us.intellitxt.com +0.0.0.0 xmlpitstop.us.intellitxt.com +0.0.0.0 yeeeah.us.intellitxt.com +0.0.0.0 yourtango.us.intellitxt.com +0.0.0.0 zatznotfunny.us.intellitxt.com +0.0.0.0 zeldalily.us.intellitxt.com +0.0.0.0 zug.us.intellitxt.com +# [Virtualxs][AS15535][62.129.128.0 - 62.129.159.255] + +0.0.0.0 banners.payserve.com +# [Visible Measures][AS14742][64.95.73.0 - 64.95.73.31] + +# 0.0.0.0 cdn.visiblemeasures.com #[affects Collegehumor.com] + +0.0.0.0 video.od.visiblemeasures.com +# [Vladlen Turkevich][AS41665][213.155.2.32 - 213.155.2.39] + +# [Voxel][AS29791][107.6.64.0 - 107.6.127.255] + +0.0.0.0 optimize.innity.com +# [Voxel][AS29791][208.122.0.0 - 208.122.63.255] + +0.0.0.0 api.adrenalads.com +# [Voxel][AS29791][208.122.0.0 - 208.122.63.255] + +0.0.0.0 f.blogads.com +0.0.0.0 g.blogads.com +0.0.0.0 weblog.blogads.com +0.0.0.0 t.blogreaderproject.com +0.0.0.0 ads.exactseek.com +0.0.0.0 tracer.perezhilton.com +0.0.0.0 ads.pressflex.com +0.0.0.0 adserver.pressflex.com +0.0.0.0 fishadz.pressflex.net +# [Voxel][AS29791][23.92.176.0 - 23.92.191.255] + +0.0.0.0 mydmp.exelator.com +# [Voxel][69.9.160.0 - 69.9.191.255] + +0.0.0.0 banners.absolpublisher.com +0.0.0.0 tracking.absolstats.com +0.0.0.0 www.blogads.com +# [Voxel][72.251.192.0 - 72.251.255.255] + +0.0.0.0 loadeu.exelator.com +0.0.0.0 tracking.m6r.eu +# [Voxel][AS29791][74.63.32.0 - 74.63.63.255] + +0.0.0.0 p.raasnet.com +0.0.0.0 ads.sfomedia.com +0.0.0.0 stats.twistage.com +# [W Net Isp][AS15772][217.20.160.0 - 217.20.163.255] + +0.0.0.0 stat.delo.ua +# [W Net Isp][AS15772][217.20.175.0 - 217.20.175.127] + +0.0.0.0 c.mystat-in.net +0.0.0.0 ___id___.c.mystat-in.net +0.0.0.0 011707160008.c.mystat-in.net +0.0.0.0 121807150325.c.mystat-in.net +0.0.0.0 122907224924.c.mystat-in.net +0.0.0.0 061606084448.c.mystat-in.net +0.0.0.0 070806142521.c.mystat-in.net +0.0.0.0 090906042103.c.mystat-in.net +0.0.0.0 092706152958.c.mystat-in.net +0.0.0.0 102106151057.c.mystat-in.net +0.0.0.0 112006133326.c.mystat-in.net +# [W Net Isp][AS15772][92.60.176.0 - 92.60.191.255] + +# [Wahome / 2x4.ru][AS41947][92.241.168.0 - 92.241.169.254] + +# [WAN Worldcom / Live Technology][AS11486][206.65.169.128 - 206.65.169.191] + +0.0.0.0 14713804a.l2m.net +0.0.0.0 30280827a.l2m.net +0.0.0.0 jmm.livestat.com +0.0.0.0 www.livestat.com +# [WAN Worldcom / Digital Ink][AS11486][63.123.224.0 - 63.123.231.255] + +# [WAN Worldcom / LinkShare][63.123.248.0 - 63.123.248.63] + +0.0.0.0 analytics.clickpathmedia.com +# [Way Internet][AS13890][216.133.242.224 - 216.133.242.255] + +0.0.0.0 trafficads.com +0.0.0.0 www.trafficads.com +# [Way Internet][AS13890][216.133.243.0 - 216.133.243.63] + +0.0.0.0 click.zipcodez.com +# [Webair][AS27257][173.239.42.214] + +0.0.0.0 filter.adxfactory.com +0.0.0.0 xml.adxfactory.com +0.0.0.0 cpanel.nativeads.com +0.0.0.0 xml.plusfind.net +0.0.0.0 cpv.popxml.com +0.0.0.0 xml.quiveradnet.com +0.0.0.0 app.super-links.net +0.0.0.0 cpm.super-links.net +0.0.0.0 cpm.tz4.com +# [Webair][AS36057][174.137.128.0 - 174.137.191.255] + +0.0.0.0 adx.adosx.com +0.0.0.0 cdn.adosx.com +0.0.0.0 affiliates.hookup.com +0.0.0.0 xml.mxsads.com +0.0.0.0 ads.sexforums.com +# [Webair][AS36057][198.134.112.230] + +0.0.0.0 pl120422.puhtml.com +0.0.0.0 pl3087.puhtml.com +0.0.0.0 pl5102.puhtml.com +0.0.0.0 pl5318.puhtml.com +0.0.0.0 pl1978.puhtml.com +0.0.0.0 pl106067.puhtml.com +0.0.0.0 pl107977.puhtml.com +0.0.0.0 pl108062.puhtml.com +0.0.0.0 pl109504.puhtml.com +0.0.0.0 pl137937.puhtml.com +0.0.0.0 pl176754.puhtml.com +0.0.0.0 pl3861661.puhtml.com +0.0.0.0 pl6429510.puhtml.com +# [Webair][209.200.0.0 - 209.200.63.255] + +0.0.0.0 exits.adultcash.com +0.0.0.0 popfree.adultcash.com +0.0.0.0 www.adultcash.com +0.0.0.0 www.bnhtml.com +0.0.0.0 cdn.dabhit.com +0.0.0.0 www.lonelycheatingwives.com +0.0.0.0 www.spookylinks.com +# [Webair][AS27257][209.51.178.0 - 209.51.178.255] + +# [Webair][216.130.160.0 - 216.130.191.255] + +0.0.0.0 dn.adzerver.com +0.0.0.0 temp.adzerver.com +# [Webair][AS27257][66.207.43.232] + +0.0.0.0 www.clickterra.net +# [Webair][67.55.64.0 - 67.55.127.255] + +0.0.0.0 xml.admanage.com +0.0.0.0 push.poptm.com +0.0.0.0 www.professionalcash.com +0.0.0.0 pl136883.puhtml.com +0.0.0.0 www.terrapops.com +# [Webair][69.42.64.0 - 69.42.95.255] + +0.0.0.0 ov2ochu.bid +# [Webair][74.206.224.0 - 74.206.255.255] + +# [WebApps][AS12180][67.215.170.0 - 67.215.170.255] + +0.0.0.0 affiliate.adgtracker.com +# [WebaZilla][AS35415][178.208.83.0 - 178.208.83.255] + +# [WebaZilla][AS35415][185.49.144.0 - 185.49.147.255] + +0.0.0.0 go.ad2up.com +0.0.0.0 adsvids.com +0.0.0.0 padsdel.cdnads.com +0.0.0.0 go.padsdel.com +# [WebaZilla][AS35415][188.164.249.128 - 188.164.249.255] + +0.0.0.0 a2pub.com +# [WebaZilla][AS35415][188.72.201.34] + +0.0.0.0 go.ad2upapp.com +0.0.0.0 go.deliverymodo.com +# [WebaZilla][AS35415][193.105.200.0 - 193.105.200.255] + +0.0.0.0 rmbn.net +# [WebaZilla][AS35415][206.54.160.0 - 206.54.191.255] + +0.0.0.0 aclickads.com +0.0.0.0 go.mooncklick.com +# [WebaZilla][AS35415][5.11.80.0 - 5.11.87.255] + +0.0.0.0 39o9mcr2.party +0.0.0.0 xbfk51p7.review +0.0.0.0 04dn8g4f.space +# [WebaZilla][AS35415][74.117.176.0/21] + +# [WebaZilla / Nl-webazilla][AS35415][78.140.128.0 - 78.140.191.255] + +0.0.0.0 1phads.com +0.0.0.0 www2.acint.net +0.0.0.0 jsc.adskeeper.co.uk +0.0.0.0 adsyst.biz +0.0.0.0 adultcomix.biz +0.0.0.0 free.adultcomix.biz +0.0.0.0 metrics.aviasales.ru +0.0.0.0 cartoonpornguide.com +0.0.0.0 free.cartoonpornguide.com +0.0.0.0 www.cartoonpornguide.com +0.0.0.0 ads.depositfiles.com +0.0.0.0 jsn.dt00.net +0.0.0.0 dvdhentai.net +0.0.0.0 www.fhserve.com +0.0.0.0 secure.fhserve.com +0.0.0.0 jsn.marketgid.com +0.0.0.0 go.mobisla.com +0.0.0.0 go.mobtrks.com +0.0.0.0 go.mobytrks.com +0.0.0.0 go.oclasrv.com +0.0.0.0 otherprofit.com +0.0.0.0 t.otherprofit.com +0.0.0.0 popunder.net +0.0.0.0 www.postads24.com +0.0.0.0 propellerpops.com +0.0.0.0 go.pub2srv.com +0.0.0.0 rake2mysweeps.com +0.0.0.0 www.reduxmediia.com +0.0.0.0 www.scoreadate.com +0.0.0.0 xml.seekandsee.com +0.0.0.0 ads.shorte.st +0.0.0.0 c1.smartclick.net +0.0.0.0 traffic.ru +0.0.0.0 ad.trafficshop.com +0.0.0.0 pu.trafficshop.com +0.0.0.0 webmasters.tubealliance.com +0.0.0.0 affiliates.upforitnetworks.com +0.0.0.0 stat.upforitnetworks.com +0.0.0.0 www.yourlustmedia.com +# [Webazilla][AS35415][88.85.64.0 - 88.85.95.255] + +0.0.0.0 rotator.7x3.net +0.0.0.0 adultimate.net +0.0.0.0 ads.alphaporno.com +0.0.0.0 www.bravospots.com +0.0.0.0 ad.depositfiles.com +0.0.0.0 ad3.depositfiles.com +0.0.0.0 www.feyads.com +0.0.0.0 helltraffic.com +0.0.0.0 www.helltraffic.com +0.0.0.0 jsu.mgid.com +0.0.0.0 echo.teasernet.ru +0.0.0.0 tmserver-1.com +0.0.0.0 static.traffic.ru +0.0.0.0 xxxreactor.com +# [WebaZilla][AS35415][93.170.104.0 - 93.170.111.255] + +# [Web Clients][AS23045][64.8.21.0 - 64.8.21.255] + +0.0.0.0 webclients.net +0.0.0.0 www.webclients.net +0.0.0.0 ocs.websponsors.com +# [Web & Mail Hosting][AS18106][202.73.57.0 - 202.73.57.31] + +# [Webmd][AS46244][208.93.168.0 - 208.93.175.255] + +0.0.0.0 bi.medscape.com +0.0.0.0 adv.medscape.com +0.0.0.0 as.medscape.com +# [Webnx][AS18450][100.42.208.0 - 100.42.223.255] + +# [Webnx][AS18450][173.231.0.0 - 173.231.63.255] + +0.0.0.0 img.jizzads.com +# [Webnx][AS18450][50.115.32.0 - 50.115.47.255] + +0.0.0.0 ads4pubs.com +# [Webnx][AS18450][67.220.192.0 - 67.220.223.255] + +0.0.0.0 fttcj.com +0.0.0.0 ads.socialreach.com +# [Webpower][AS22783][209.60.76.0 - 209.60.76.255] + +# [Webpower][65.212.89.0 - 65.212.89.255] + +# [Websupport][AS51013][195.210.28.0 - 195.210.29.255] + +# [Websupport][AS51013][37.9.168.0 - 37.9.168.127] + +# [WebTone][AS25961][204.13.8.0 - 204.13.8.255] + +0.0.0.0 pmetrics.getclicky.com +0.0.0.0 static.getclicky.com +0.0.0.0 pmetrics.performancing.com +0.0.0.0 stats.webleads-tracker.com +# [Webtrekk][AS60164][185.54.148.0 - 185.54.151.255] + +0.0.0.0 verivox01.webtrekk.net +# [Webtrends][AS11944][216.64.169.0 - 216.64.169.255] + +0.0.0.0 www.webtrends.net +# [Webtrends][AS11944][63.251.0.0 - 63.251.255.255] + +0.0.0.0 hm.webtrends.com +0.0.0.0 scs.webtrends.com +# [Webtrends][63.88.212.0 - 63.88.213.255] + +# [Webtrends][AS10913][66.150.117.0 - 66.150.117.127] + +0.0.0.0 ctix8.cheaptickets.com +0.0.0.0 rd.clickshift.com +0.0.0.0 wt.o.nytimes.com +0.0.0.0 dc.webtrends.com +0.0.0.0 dcs.wtlive.com +0.0.0.0 dcstest.wtlive.com +# [Webtrends via Misc Sites] + +0.0.0.0 wtrs.101com.com +0.0.0.0 sdc.acc.org +0.0.0.0 sdc.caranddriver.com +0.0.0.0 sdc.brightcove.com +0.0.0.0 sdc.ca.com +0.0.0.0 sdc.dishnetwork.com +0.0.0.0 sdc.dn.no +0.0.0.0 sdc.entertainment.com +0.0.0.0 ssdc.icelandair.com +0.0.0.0 sdc.jumptheshark.com +0.0.0.0 sdc.lef.org +0.0.0.0 sdc.livingchoices.com +0.0.0.0 sdc.mcafee.com +0.0.0.0 sdc.netiq.com +0.0.0.0 sdc.plannedparenthood.org +0.0.0.0 sdc.radio-canada.ca +0.0.0.0 sdc.roadandtrack.com +0.0.0.0 sdc.sanofi-aventis.us +0.0.0.0 sdc.traderonline.com +0.0.0.0 sdc.tvguide.com +0.0.0.0 sdc.usps.com +0.0.0.0 sdc.vml.com +0.0.0.0 sdc.windowsmarketplace.com +0.0.0.0 wdcs.trendmicro.com +# [Winstar / Inferno][AS19969][204.27.56.72 - 204.27.57.231] + +# [WireSix][AS14141][66.71.240.0 - 66.71.255.255] + +# [WireSix][AS14141][98.142.208.0 - 98.142.223.255] + +# [Wolfgang Lanzrath][] + +0.0.0.0 aidu.ivwbox.de +0.0.0.0 chip.ivwbox.de +0.0.0.0 ciao.ivwbox.de +0.0.0.0 daserste.ivwbox.de +0.0.0.0 freecast.ivwbox.de +0.0.0.0 finatime.ivwbox.de +0.0.0.0 gsea.ivwbox.de +0.0.0.0 handbl.ivwbox.de +0.0.0.0 heute.ivwbox.de +0.0.0.0 mclient.ivwbox.de +0.0.0.0 mdr.ivwbox.de +0.0.0.0 mobile.ivwbox.de +0.0.0.0 morgpost.ivwbox.de +0.0.0.0 netzeitu.ivwbox.de +0.0.0.0 newsclic.ivwbox.de +0.0.0.0 qs.ivwbox.de +0.0.0.0 rtl.ivwbox.de +0.0.0.0 schuelvz.ivwbox.de +0.0.0.0 studivz.ivwbox.de +0.0.0.0 sueddeut.ivwbox.de +0.0.0.0 swr.ivwbox.de +0.0.0.0 tagessch.ivwbox.de +0.0.0.0 yahoo.ivwbox.de +0.0.0.0 zdf.ivwbox.de +0.0.0.0 zeitonl.ivwbox.de +# [Worldnet Data][AS34450][86.106.97.0 - 86.106.97.255] + +# [Worldstream][AS49981][109.236.81.0 - 109.236.81.255] + +0.0.0.0 nottided.xyz +0.0.0.0 event.ohmyad.co +# [Worldstream][AS15435][93.190.139.0 - 93.190.142.255] + +# [Worldstream][AS49981][94.100.26.0 - 94.100.27.255] + +# [WPP Group via 24/7 Real Media Inc] + +0.0.0.0 imagec05.247realmedia.com +0.0.0.0 imagec07.247realmedia.com +0.0.0.0 imagec09.247realmedia.com +0.0.0.0 imagec10.247realmedia.com +0.0.0.0 imagec11.247realmedia.com +0.0.0.0 imagec16.247realmedia.com +0.0.0.0 imagec17.247realmedia.com +0.0.0.0 oasc06.247realmedia.com +0.0.0.0 oasc08.247realmedia.com +0.0.0.0 oasc10.247realmedia.com +0.0.0.0 oasc11.247realmedia.com +0.0.0.0 oasc12.247realmedia.com +0.0.0.0 oasc17.247realmedia.com +0.0.0.0 oasc04052.247realmedia.com +0.0.0.0 oasc05024.247realmedia.com +0.0.0.0 oasc05134.247realmedia.com +0.0.0.0 oasc05135.247realmedia.com +0.0.0.0 oasc05139.247realmedia.com +0.0.0.0 oasc08006.247realmedia.com +0.0.0.0 oasc08011.247realmedia.com +0.0.0.0 oasc08024.247realmedia.com +0.0.0.0 oasc10015.247realmedia.com +0.0.0.0 oasc11009.247realmedia.com +0.0.0.0 oasc12001.247realmedia.com +0.0.0.0 oasc12016.247realmedia.com +0.0.0.0 oasc12056.247realmedia.com +0.0.0.0 oasc14008.247realmedia.com +0.0.0.0 oasc18005.247realmedia.com +0.0.0.0 openadstream-eu1.247realmedia.com +0.0.0.0 ads.realmedia.com.br +0.0.0.0 ad.realmedia.co.kr +0.0.0.0 tech.realmedia.co.kr +0.0.0.0 tracking.247search.com +0.0.0.0 realmedia-a592.d4p.net +0.0.0.0 rusads.toysrus.com +# [24/7 Real Media via various][AS33694][208.71.120.0 - 208.71.127.255] + +0.0.0.0 oascentral.aeroplan.com +0.0.0.0 sifomedia.aftonbladet.se +0.0.0.0 oascentral.arkansasonline.com +0.0.0.0 as.bankrate.com +0.0.0.0 oascentral.beliefnet.com +0.0.0.0 ads.benefitspro.com +0.0.0.0 ads.bhmedianetwork.com +0.0.0.0 a.diximedia.es +0.0.0.0 oascentral.dominionenterprises.com +0.0.0.0 ads.epi.es +0.0.0.0 oascentral.fiercemarkets.com +0.0.0.0 ads.fora.tv +0.0.0.0 sifomedia.idg.se +0.0.0.0 ads.itzdigital.com +0.0.0.0 ads.lifehealthpro.com +0.0.0.0 oas.monster.com +0.0.0.0 b3.mookie1.com +0.0.0.0 premium.mookie1.com +0.0.0.0 t.mookie1.com +0.0.0.0 ads.mrtones.com +0.0.0.0 mig.nexac.com +0.0.0.0 ads.propertycasualty360.com +0.0.0.0 oas.providencejournal.com +0.0.0.0 oas.247sports.com +0.0.0.0 oas.ad-vice.biz +0.0.0.0 oascentral.hosted.ap.org +0.0.0.0 oascentral.autoweek.com +0.0.0.0 oascentral.blackenterprise.com +0.0.0.0 oascentral.bigfishgames.com +0.0.0.0 oascentral.bristolpress.com +0.0.0.0 oascentral.broadway.com +0.0.0.0 oascentral.browardpalmbeach.com +0.0.0.0 oascentral.businessinsurance.com +0.0.0.0 oascentral.buysell.com +0.0.0.0 oascentral.capecodonline.com +0.0.0.0 oascentral.careerbuilder.com +0.0.0.0 oascentral.citypaper.com +0.0.0.0 realmedia.channel4.com +0.0.0.0 oascentral.crainsnewyork.com +0.0.0.0 oascentral.cygnusb2b.com +0.0.0.0 oascentral.dailylocal.com +0.0.0.0 oas.dallasnews.com +0.0.0.0 oascentral.datasphere.com +0.0.0.0 oas.deejay.it +0.0.0.0 oascentral.dollargeneral.com +0.0.0.0 oascentral.emarketer.com +0.0.0.0 oascentral.emedicine.com +0.0.0.0 oascentral.escapistmagazine.com +0.0.0.0 oas.five.tv +0.0.0.0 oascentral.fosters.com +0.0.0.0 oascentral.goerie.com +0.0.0.0 oascentral.gotriad.com +0.0.0.0 oascentral.grandparents.com +0.0.0.0 oascentral.greenevillesun.com +0.0.0.0 oascentral.herald-dispatch.com +0.0.0.0 oascentral.hispanicbusiness.com +0.0.0.0 oascentral.hitfix.com +0.0.0.0 oascentral.internetretailer.com +0.0.0.0 oascentral.investingmediasolutions.com +0.0.0.0 oascentral.investmentnews.com +0.0.0.0 oascentral.katv.com +0.0.0.0 oascentral.lifetimetv.com +0.0.0.0 oas.maktoobblog.com +0.0.0.0 oascentral.metrotimes.com +0.0.0.0 oascentral.metrowestdailynews.com +0.0.0.0 oascentral.miaminewtimes.com +0.0.0.0 oascentral.modernhealthcare.com +0.0.0.0 oascentral.movietickets.com +0.0.0.0 oascentral.nationalunderwriter.com +0.0.0.0 oascentral.necn.com +0.0.0.0 oascentral.nephrologynews.com +0.0.0.0 oascentral.netnewscheck.com +0.0.0.0 oascentral.news-record.com +0.0.0.0 oascentral.newstimeslive.com +0.0.0.0 oas-fr.video.on.nytimes.com +0.0.0.0 oascentral.ocweekly.com +0.0.0.0 oascentral.onthesnow.com +0.0.0.0 oascentral.oprah.com +0.0.0.0 oascentral.planetatv.com +0.0.0.0 oascentral.pressdemocrat.com +0.0.0.0 oascentral.prodivnet.com +0.0.0.0 oascentral.recordnet.com +0.0.0.0 oascentral.recordonline.com +0.0.0.0 oascentral.record-eagle.com +0.0.0.0 oascentral.recroom.com +0.0.0.0 oascentral.recyclebank.com +0.0.0.0 oascentral.red7media.com +0.0.0.0 oas.rivals.com +0.0.0.0 oascentral.salemweb.net +0.0.0.0 oascentral.samsclub.com +0.0.0.0 oascentral.spineuniverse.com +0.0.0.0 oascentral.southjerseylocalnews.com +0.0.0.0 oascentral.sportsfanlive.com +0.0.0.0 oascentral.s-t.com +0.0.0.0 oascentral.stackmag.com +0.0.0.0 oascentral.stansberryresearch.com +0.0.0.0 oascentral.stripes.com +0.0.0.0 oascentral.superpages.com +0.0.0.0 ads.tdbank.com +0.0.0.0 oascentral.timesfreepress.com +0.0.0.0 oascentral.thedailymeal.com +0.0.0.0 oascentral.thepostgame.com +0.0.0.0 oascentral.theweek.com +0.0.0.0 oascentral.tophosts.com +0.0.0.0 oascentral.traffic.com +0.0.0.0 oascentral.travelzoo.com +0.0.0.0 oascentral.trentonian.com +0.0.0.0 oas.trustnet.com +0.0.0.0 oascentral.tvnewscheck.com +0.0.0.0 oascentral.walmartwom.com +0.0.0.0 oascentral.wickedlocal.com +0.0.0.0 oascentral.yakimaherald.com +0.0.0.0 coriolis.accuweather.com +0.0.0.0 panel.research-int.se +# [24/7 Real Media via various][AS36805][208.81.232.0 - 208.81.235.255] + +0.0.0.0 oas.autotrader.co.uk +0.0.0.0 kantarmedia.guardian.co.uk +0.0.0.0 oas.guardiannews.com +0.0.0.0 oas.ilsecoloxix.it +0.0.0.0 deliv.lexpress.fr +0.0.0.0 b3-uk.mookie1.com +0.0.0.0 oas.northernandshell.co.uk +0.0.0.0 oas.offremedia.com +0.0.0.0 ads.pennnet.com +0.0.0.0 oas.populisengage.com +0.0.0.0 oas.rcsadv.it +0.0.0.0 panel2.research-int.se +0.0.0.0 oas.theguardian.com +0.0.0.0 oas.stv.tv +# [24/7 Real Media][AS33694][64.191.192.0 - 64.191.255.255] + +# [Wz Communications][AS40824][199.80.52.0 - 199.80.55.255] + +0.0.0.0 cpaclickoffer.com +0.0.0.0 jsn.mgid.com +# [Wz Communications][199.101.132.0 - 199.101.135.255] + +0.0.0.0 www.adshost1.com +# [Wz Communications][AS40824][204.155.144.0 - 204.155.159.255] + +0.0.0.0 track.ad4mmo.com +0.0.0.0 n44adshostnet.com +0.0.0.0 cdn.mgid.com +# [Wz Communications][AS40824][206.54.177.0 - 206.54.177.255] + +0.0.0.0 x.cnt.my +# [Wz Communications][208.88.224.0 - 208.88.227.255] + +0.0.0.0 aka-root.com +0.0.0.0 ads.h2porn.com +0.0.0.0 adv.h2porn.com +# [Wz Communications / Soft-Com.biz][AS40824][208.94.235.0 - 208.94.235.255] + +# [Wz Communications][AS40824][74.117.176.0 - 74.117.183.255] + +0.0.0.0 adv.freepornvs.com +0.0.0.0 a.mgid.com +0.0.0.0 aa-gb.mgid.com +0.0.0.0 ac-gb.mgid.com +0.0.0.0 cm.mgid.com +0.0.0.0 counter.mgid.com +0.0.0.0 servicer.mgid.com +0.0.0.0 i3.putags.com +# [Xentronix][AS16265][85.12.43.0 - 85.12.43.255] + +# [X-host.ua Network][AS25456][193.200.255.0 - 193.200.255.255] + +# [XO Communications][AS2828][206.111.0.0 - 206.111.255.255] + +0.0.0.0 http.edge.ru4.com +# [XO Communications][AS40935][208.36.0.0 - 208.37.255.255] + +0.0.0.0 smartad.mercadolibre.com.ar +0.0.0.0 smartad.mercadolivre.com.br +# [XO Communications][209.116.0.0 - 209.119.255.255] + +0.0.0.0 33universal.adprimemedia.com +0.0.0.0 video1.adprimemedia.com +# [XO Communications][AS40935][209.31.0.0 - 209.31.255.255] + +# [XO Communications][216.0.0.0 - 216.5.255.255] + +# [XO Communications][64.244.0.0 - 64.245.255.255] + +0.0.0.0 advert.funimation.com +0.0.0.0 webiq005.webiqonline.com +# [XO Communications][AS2828][65.104.0.0 - 65.107.255.255] + +# [XO Communications][AS2828][66.104.0.0 - 66.107.255.255] + +0.0.0.0 advertising.finditt.com +# [XO Communications][AS2828][67.104.0.0 - 67.111.255.255] + +# [X Plus One][AS53563][75.98.46.0 - 75.98.46.255] + +0.0.0.0 https.edge.ru4.com +0.0.0.0 s.xp1.ru4.com +# [Xs4all Internet][AS3265][213.222.29.96 - 213.222.29.127] + +# [Xs4all Internet][AS3265][82.161.231.0 - 82.161.231.255] + +0.0.0.0 www.mediahighway.net +0.0.0.0 www.netpoll.nl +0.0.0.0 business.realtracker.com +0.0.0.0 free.realtracker.com +0.0.0.0 layout1.realtracker.com +0.0.0.0 project2.realtracker.com +0.0.0.0 tpl1.realtracker.com +0.0.0.0 tpl2.realtracker.com +0.0.0.0 free1.usa.realtracker.com +0.0.0.0 www.realtracker.com +# [Xs4all Internet][AS3265][83.68.16.0 - 83.68.16.255] + +# [Xtraordinary][AS30827][82.113.144.0 - 82.113.151.255] + +0.0.0.0 banners.delivery.addynamo.com +0.0.0.0 s01.delivery.addynamo.com +0.0.0.0 s01-delivery.addynamo.net +0.0.0.0 static.addynamo.net +0.0.0.0 static-uk.addynamo.net +# [YabaMedia][AS49097][91.212.135.0 - 91.212.135.255] + +# [Yahoo][AS38689][119.161.0.0 - 119.161.31.255] + +# [Yahoo Taiwan][AS24506][116.214.0.0 - 116.214.15.255] + +0.0.0.0 ad.wretch.cc +# [Yahoo SG1][124.108.112.0 - 124.108.127.255] + +0.0.0.0 nz.adserver.yahoo.com +# [Yahoo Brasil][200.152.160/20] + +# [Yahoo China][202.43.192.0 - 202.43.223.255] + +# [Yahoo India][AS38072][202.43.192.0 - 202.43.223.255] + +# [Yahoo TPC][203.84.192.0 - 203.84.223.255] + +# [Yahoo][AS36129][206.190.32.0 - 206.190.63.255] + +0.0.0.0 e.yieldmanager.net +# [Yahoo / Right Media][208.67.64.0 - 208.67.71.255] + +0.0.0.0 my.adtegrity.net +0.0.0.0 ym.bannerconnect.net +0.0.0.0 reporting.cpxinteractive.com +0.0.0.0 api.yieldmanager.com +0.0.0.0 my.yieldmanager.com +# [Yahoo][209.191.64.0 - 209.191.127.255] + +# [Yahoo Europe][AS15635][217.12.3.0 - 217.12.4.255] + +0.0.0.0 be.adserver.yahoo.com +# [Yahoo Europe][217.146.184.0 - 217.146.191.47] + +0.0.0.0 gr.adserver.yahoo.com +# [Yahoo Europe][217.163.20.0 - 217.163.21.255] + +# [Yahoo / BlueLithium] + +0.0.0.0 gambling911.adrevolver.com +0.0.0.0 aps.media.adrevolver.com +# [Yahoo][AS14779][66.196.64.0 - 66.196.127.255] + +0.0.0.0 hostingprod.com +0.0.0.0 geo.yahoo.com +0.0.0.0 nol.yahoo.com +# [Yahoo][AS26101][66.196.64.0 - 66.196.127.255] + +# [Yahoo][AS26101][68.142.192.0 - 68.142.255.255] + +0.0.0.0 partnerads.ysm.yahoo.com +# [Yahoo][AS36752][68.180.128.0 - 68.180.255.255] + +0.0.0.0 ts.richmedia.yahoo.com +# [Yahoo][AS26101][69.147.64.0 - 69.147.127.255] + +# [Yahoo / Inktomi][AS14778][72.30.0.0 - 72.30.255.255] + +0.0.0.0 srv1.wa.marketingsolutions.yahoo.com +0.0.0.0 srv2.wa.marketingsolutions.yahoo.com +0.0.0.0 srv3.wa.marketingsolutions.yahoo.com +# [Yahoo][AS14778][76.13.0.0 - 76.13.255.255] + +0.0.0.0 ad.creafi.com +0.0.0.0 ad.hi5.com +0.0.0.0 ae.adserver.yahoo.com +0.0.0.0 ar.adserver.yahoo.com +0.0.0.0 cn2.adserver.yahoo.com +0.0.0.0 eu-pn2.adserver.yahoo.com +0.0.0.0 pn1.adserver.yahoo.com +0.0.0.0 tw2.adserver.yahoo.com +0.0.0.0 csc.beap.bc.yahoo.com +0.0.0.0 clicks.beap.ad.yieldmanager.net +0.0.0.0 csc.beap.ad.yieldmanager.net +0.0.0.0 open.ad.yieldmanager.net +# [Yahoo Europe][77.238.160.0 - 77.238.167.255] + +# [Yahoo][AS42173][87.248.122.0 - 87.248.123.255] + +# [Yahoo][AS26101][98.136.0.0 - 98.139.255.255] + +0.0.0.0 www.adinterax.com +0.0.0.0 np.lexity.com +0.0.0.0 na.ads.yahoo.com +# 0.0.0.0 beap.adss.yahoo.com #[affects Yahoo video] + +0.0.0.0 beap.adx.yahoo.com +0.0.0.0 sp.analytics.yahoo.com +0.0.0.0 analytics.query.yahoo.com +0.0.0.0 gd.ads.vip.gq1.yahoo.com +0.0.0.0 geo.query.yahoo.com +0.0.0.0 ci.beap.ad.yieldmanager.net +0.0.0.0 ac.ybinst0.ec.yimg.com +0.0.0.0 ac.ybinst1.ec.yimg.com +0.0.0.0 ac.ybinst2.ec.yimg.com +0.0.0.0 ac.ybinst3.ec.yimg.com +0.0.0.0 ac.ybinst4.ec.yimg.com +0.0.0.0 ac.ybinst5.ec.yimg.com +0.0.0.0 ac.ybinst6.ec.yimg.com +0.0.0.0 ac.ybinst7.ec.yimg.com +0.0.0.0 ac.ybinst8.ec.yimg.com +0.0.0.0 ac.ybinst9.ec.yimg.com +0.0.0.0 ybinst0.ec.yimg.com +0.0.0.0 ybinst1.ec.yimg.com +0.0.0.0 ybinst2.ec.yimg.com +0.0.0.0 ybinst3.ec.yimg.com +0.0.0.0 ybinst4.ec.yimg.com +0.0.0.0 ybinst5.ec.yimg.com +0.0.0.0 ybinst6.ec.yimg.com +0.0.0.0 ybinst7.ec.yimg.com +0.0.0.0 ybinst8.ec.yimg.com +0.0.0.0 ybinst9.ec.yimg.com +# [Yandex][AS13238][178.154.131.0 - 178.154.131.255] + +# 0.0.0.0 yastatic.net #[affects Yandex Mail] + +# [Yandex][AS13238][213.180.193.0 - 213.180.193.255] + +# [Yandex][AS13238][87.250.250.0 - 87.250.250.255] + +0.0.0.0 advertising.yandex.ru +0.0.0.0 bs-meta.yandex.ru +# 0.0.0.0 clck.yandex.ru + +# 0.0.0.0 grade.market.yandex.ru + +0.0.0.0 informer.yandex.ru +0.0.0.0 yandexadexchange.net +# [Yaris Industries][AS40824][91.210.56.0 - 91.210.59.255] + +# [Yesup][AS22923][199.21.148.0 - 199.21.151.255] + +0.0.0.0 serv.clicksor.net +0.0.0.0 serw.myroitracking.com +0.0.0.0 tr1.myroitracking.com +0.0.0.0 track.visitorpath.com +# [Yesup Ecommerce Solutions][66.48.78.192 - 66.48.78.255] + +0.0.0.0 banner.adsrevenue.net +0.0.0.0 main.clicksor.com +0.0.0.0 mci12.clicksor.com +0.0.0.0 search.clicksor.com +0.0.0.0 serw.clicksor.com +0.0.0.0 track.clicksor.com +0.0.0.0 mp.clicksor.net +0.0.0.0 myad.clicksor.net +0.0.0.0 pub.clicksor.net +0.0.0.0 www.infinityads.com +0.0.0.0 multipops.com +0.0.0.0 service.multi-pops.com +0.0.0.0 www1.multipops.com +0.0.0.0 www2.multipops.com +0.0.0.0 www.multipops.com +0.0.0.0 www.xxxwebtraffic.com +# [Yesup Ecommerce Solutions][AS701][66.48.81.128 - 66.48.81.255] + +0.0.0.0 ads.adonion.com +0.0.0.0 serving.adsrevenue.clicksor.net +0.0.0.0 www.myroitracking.com +0.0.0.0 yourstats.net +0.0.0.0 www.yourstats.net +# [Zao National][AS30968][92.243.72.0 - 92.243.75.255] + +# [ZEDO][AS26914][64.127.125.112 - 64.127.125.127] + +0.0.0.0 l7.zedo.com +0.0.0.0 click.zxxds.net +# [ZEDO] + +0.0.0.0 ads.zedo.com +0.0.0.0 g.zedo.com +0.0.0.0 gw.zedo.com +0.0.0.0 h.zedo.com +0.0.0.0 l1.zedo.com +0.0.0.0 l2.zedo.com +0.0.0.0 l3.zedo.com +0.0.0.0 l4.zedo.com +0.0.0.0 l5.zedo.com +0.0.0.0 l6.zedo.com +0.0.0.0 l8.zedo.com +0.0.0.0 r1.zedo.com +0.0.0.0 ss1.zedo.com +0.0.0.0 ss2.zedo.com +0.0.0.0 ss7.zedo.com +0.0.0.0 yads.zedo.com +0.0.0.0 www.zedo.com +0.0.0.0 c1.zxxds.net +# [Zero Lag][AS20093][67.201.0.0 - 67.201.63.255] + +# [Zero Lag][AS20093][68.71.240.0 - 68.71.255.255] + +0.0.0.0 rt.udmserve.net +# [Zero Lag][AS20093][72.37.216.0 - 72.37.217.255] + +0.0.0.0 www.stickylogic.com +# [end of entries generated by MVPS HOSTS] + +#===================================== + +# Hosts contributed by Steven Black + +# http://stevenblack.com + +0.0.0.0 1493361689.rsc.cdn77.org +0.0.0.0 30-day-change.com +0.0.0.0 2468.go2cloud.org +0.0.0.0 adsmws.cloudapp.net +0.0.0.0 annualconsumersurvey.com +0.0.0.0 apps.id.net +0.0.0.0 breaksurvey.com +0.0.0.0 data.cnn.com +0.0.0.0 canuck-method.com +0.0.0.0 com-notice.info +0.0.0.0 www.com-notice.info +0.0.0.0 apple.com-notice.info +0.0.0.0 www.apple.com-notice.info +0.0.0.0 support.apple.com-notice.info +0.0.0.0 www.support.apple.com-notice.info +0.0.0.0 dobre-programy.pl +0.0.0.0 www.canuck-method.com +0.0.0.0 login.dotomi.com +0.0.0.0 login.dotomi.net +0.0.0.0 external.stealthedeal.com +0.0.0.0 goodblock.gladly.io +0.0.0.0 help.evernote.com +0.0.0.0 mackeeperapp.zeobit.com +0.0.0.0 montrealgazette.stats.com +0.0.0.0 fgoogle.com +0.0.0.0 hosted.stats.com +0.0.0.0 hosted.stats.com.edgesuite.net +0.0.0.0 howupdateworks.amazingupdates4youtoday.website +0.0.0.0 mywot.com +0.0.0.0 mywot.net +0.0.0.0 onlineusagesurveys.com +0.0.0.0 promotions.yourfirstmillion.biz +0.0.0.0 quickcash-system.com +0.0.0.0 save-your-pc.info +0.0.0.0 sportsinteraction.com +0.0.0.0 www.sportsinteraction.com +0.0.0.0 embed.sendtonews.com +0.0.0.0 ext.privacyassistant.net +0.0.0.0 www.pussysaga.com +0.0.0.0 promotion.com-rewards.club +0.0.0.0 rereddit.com +0.0.0.0 specialsections.siteseer.ca +0.0.0.0 stealthedeal.com +0.0.0.0 tags.news.com.au +0.0.0.0 twitter.cm +0.0.0.0 ttwitter.com +0.0.0.0 virtual.thewhig.com +0.0.0.0 www.dobre-programy.pl +0.0.0.0 www.diptanuinfo.co.cc +0.0.0.0 www.mywot.com +0.0.0.0 www.mywot.net +0.0.0.0 www.torrenty-org.pl + + +# Gambling Sites + +0.0.0.0 www.10bet.com +0.0.0.0 10luxury39.com +0.0.0.0 www.10luxury39.com +0.0.0.0 www.12bet.com +0.0.0.0 1337bid.com +0.0.0.0 www.1337bid.com +0.0.0.0 138.com +0.0.0.0 www.138.com +0.0.0.0 180bets.com +0.0.0.0 www.180bets.com +0.0.0.0 188bet.com +0.0.0.0 www.188bet.com +0.0.0.0 18bet.com +0.0.0.0 www.18bet.com +0.0.0.0 www.1bet.com +0.0.0.0 1bet2bet.com +0.0.0.0 www.1bet2bet.com +0.0.0.0 1stlines.com +0.0.0.0 www.1stlines.com +0.0.0.0 1vice.ag +0.0.0.0 www.1vice.ag +0.0.0.0 1x2plus.com +0.0.0.0 www.1x2plus.com +0.0.0.0 1xbet.com +0.0.0.0 www.1xbet.com +0.0.0.0 24hbet.com +0.0.0.0 www.24hbet.com +0.0.0.0 2betab.com +0.0.0.0 www.2betab.com +0.0.0.0 2betesi.com +0.0.0.0 www.2betesi.com +0.0.0.0 2winbet.gr +0.0.0.0 www.2winbet.gr +0.0.0.0 32redsport.com +0.0.0.0 www.32redsport.com +0.0.0.0 368bet.com +0.0.0.0 www.368bet.com +0.0.0.0 377bet.com +0.0.0.0 www.377bet.com +0.0.0.0 444sports.com +0.0.0.0 www.444sports.com +0.0.0.0 5dimes.com +0.0.0.0 www.5dimes.com +0.0.0.0 724sports.com +0.0.0.0 www.724sports.com +0.0.0.0 777bets.co.uk +0.0.0.0 7epta7.com +0.0.0.0 www.7epta7.com +0.0.0.0 888sport.com +0.0.0.0 www.888sport.com +0.0.0.0 88asia88.com +0.0.0.0 www.88asia88.com +0.0.0.0 88sports.com +0.0.0.0 www.88sports.com +0.0.0.0 88winners.com +0.0.0.0 90dakika.com +0.0.0.0 www.90dakika.com +0.0.0.0 99bet.com +0.0.0.0 www.99bet.com +0.0.0.0 a1casino.com +0.0.0.0 www.a1casino.com +0.0.0.0 abcislands.ag +0.0.0.0 www.abcislands.ag +0.0.0.0 ace-skins.com +0.0.0.0 www.ace-skins.com +0.0.0.0 action24.com +0.0.0.0 actionbets.com +0.0.0.0 actiononsports.com +0.0.0.0 www.actiononsports.com +0.0.0.0 acttab.com.au +0.0.0.0 www.acttab.com.au +0.0.0.0 adjarabet.com +0.0.0.0 allhorseracing.ag +0.0.0.0 www.allhorseracing.ag +0.0.0.0 allpro.eu +0.0.0.0 www.allpro.eu +0.0.0.0 allstarbet.com +0.0.0.0 www.allstarbet.com +0.0.0.0 allstarsportsbook.com +0.0.0.0 www.allstarsportsbook.com +0.0.0.0 allyoubet.ag +0.0.0.0 www.allyoubet.ag +0.0.0.0 alphadraft.com +0.0.0.0 www.alphadraft.com +0.0.0.0 amcleanbookmakers.com +0.0.0.0 www.amcleanbookmakers.com +0.0.0.0 americanfootballbetting.com +0.0.0.0 www.americanfootballbetting.com +0.0.0.0 americasbookie.com +0.0.0.0 www.americasbookie.com +0.0.0.0 anonibet.com +0.0.0.0 www.anonibet.com +0.0.0.0 apollobet.com +0.0.0.0 www.apollobet.com +0.0.0.0 arena-bet.com +0.0.0.0 www.arena-bet.com +0.0.0.0 artemisbet10.com +0.0.0.0 asianbeta.com +0.0.0.0 www.asianbeta.com +0.0.0.0 axbet.com +0.0.0.0 www.axbet.com +0.0.0.0 bananajackpot.com +0.0.0.0 www.bananajackpot.com +0.0.0.0 beatthebook.eu +0.0.0.0 www.beatthebook.eu +0.0.0.0 belmont.ag +0.0.0.0 www.belmont.ag +0.0.0.0 bestbet.com +0.0.0.0 www.bestbet.com +0.0.0.0 bestbettoday.com +0.0.0.0 www.bestbettoday.com +0.0.0.0 bestecasino.com +0.0.0.0 www.bestecasino.com +0.0.0.0 bestsportslines.com +0.0.0.0 bet-52.com +0.0.0.0 www.bet-52.com +0.0.0.0 www.bet-at-home.com +0.0.0.0 bet-csgo.com +0.0.0.0 www.bet-csgo.com +0.0.0.0 bet.co.za +0.0.0.0 www.bet.co.za +0.0.0.0 bet.pkr.com +0.0.0.0 bet1128.com +0.0.0.0 www.bet1128.com +0.0.0.0 bet11888.com +0.0.0.0 www.bet11888.com +0.0.0.0 bet2290.com +0.0.0.0 www.bet2290.com +0.0.0.0 bet2875.com +0.0.0.0 www.bet2875.com +0.0.0.0 bet2earn.net +0.0.0.0 www.bet2earn.net +0.0.0.0 bet3000.com +0.0.0.0 www.bet3000.com +0.0.0.0 bet33.com +0.0.0.0 www.bet33.com +0.0.0.0 bet7days.com +0.0.0.0 www.bet7days.com +0.0.0.0 bet90.com +0.0.0.0 www.bet90.com +0.0.0.0 betadonis55.com +0.0.0.0 www.betadonis55.com +0.0.0.0 betadria.com +0.0.0.0 www.betadria.com +0.0.0.0 betaland.com +0.0.0.0 www.betaland.com +0.0.0.0 betamerica.com +0.0.0.0 www.betamerica.com +0.0.0.0 betandclick.com +0.0.0.0 www.betandclick.com +0.0.0.0 betanysports.eu +0.0.0.0 www.betanysports.eu +0.0.0.0 betbanks.com +0.0.0.0 www.betbanks.com +0.0.0.0 betboro.com +0.0.0.0 www.betboro.com +0.0.0.0 betbright.com +0.0.0.0 www.betbright.com +0.0.0.0 betbuckeyesports.com +0.0.0.0 www.betbuckeyesports.com +0.0.0.0 betbyrne.com +0.0.0.0 www.betbyrne.com +0.0.0.0 betcanadian.com +0.0.0.0 www.betcanadian.com +0.0.0.0 betcapri.com +0.0.0.0 www.betcapri.com +0.0.0.0 betcascade.com +0.0.0.0 www.betcascade.com +0.0.0.0 betcatalinasports.com +0.0.0.0 betcave.com +0.0.0.0 www.betcave.com +0.0.0.0 betcc.com +0.0.0.0 www.betcc.com +0.0.0.0 betcityru.com +0.0.0.0 www.betcityru.com +0.0.0.0 www.betclic.com +0.0.0.0 betclock.com +0.0.0.0 www.betclock.com +0.0.0.0 betcostarica.ag +0.0.0.0 www.betcostarica.ag +0.0.0.0 betcris.com +0.0.0.0 www.betcris.com +0.0.0.0 betdaq.com +0.0.0.0 www.betdaq.com +0.0.0.0 betdon.com +0.0.0.0 www.betdon.com +0.0.0.0 betdsi.eu +0.0.0.0 www.betdsi.eu +0.0.0.0 betelephant.com +0.0.0.0 www.betelephant.com +0.0.0.0 betepic.com +0.0.0.0 www.betepic.com +0.0.0.0 betextratime.com +0.0.0.0 www.betextratime.com +0.0.0.0 betezy.com.au +0.0.0.0 www.betezy.com.au +0.0.0.0 betfair.com +0.0.0.0 www.betfair.com +0.0.0.0 betfirst-en.dhnet.be +0.0.0.0 www.betfirst-en.dhnet.be +0.0.0.0 betflag.com +0.0.0.0 www.betflag.com +0.0.0.0 betflash.co.za +0.0.0.0 www.betflash.co.za +0.0.0.0 betfred.com +0.0.0.0 www.betfred.com +0.0.0.0 betfreesports.com +0.0.0.0 www.betfreesports.com +0.0.0.0 betgolf.com.au +0.0.0.0 www.betgolf.com.au +0.0.0.0 betgoto.com +0.0.0.0 www.betgoto.com +0.0.0.0 betgrande.com +0.0.0.0 www.betgrande.com +0.0.0.0 betguardian.me +0.0.0.0 betgun.com +0.0.0.0 www.betgun.com +0.0.0.0 betin.com +0.0.0.0 www.betin.com +0.0.0.0 betin1.com +0.0.0.0 www.betin1.com +0.0.0.0 betinternet.com +0.0.0.0 www.betinternet.com +0.0.0.0 betjamaica.com +0.0.0.0 www.betjamaica.com +0.0.0.0 betjambo.com +0.0.0.0 www.betjambo.com +0.0.0.0 betklass.com +0.0.0.0 www.betklass.com +0.0.0.0 betland.com +0.0.0.0 www.betland.com +0.0.0.0 betlatina.com +0.0.0.0 www.betlatina.com +0.0.0.0 betline.com +0.0.0.0 www.betline.com +0.0.0.0 betliner.com +0.0.0.0 www.betliner.com +0.0.0.0 betlm.eu +0.0.0.0 www.betlm.eu +0.0.0.0 betmania.ag +0.0.0.0 www.betmania.ag +0.0.0.0 betmclean.com +0.0.0.0 www.betmclean.com +0.0.0.0 betmira.com +0.0.0.0 www.betmira.com +0.0.0.0 betmotion.com +0.0.0.0 www.betmotion.com +0.0.0.0 betmyline.com +0.0.0.0 www.betmyline.com +0.0.0.0 betn1.com +0.0.0.0 www.betn1.com +0.0.0.0 betngo.com +0.0.0.0 www.betngo.com +0.0.0.0 betondunhill.com +0.0.0.0 www.betondunhill.com +0.0.0.0 betonline.ag +0.0.0.0 www.betonline.ag +0.0.0.0 betonline247.com +0.0.0.0 www.betonline247.com +0.0.0.0 betonusa.ag +0.0.0.0 www.betonusa.ag +0.0.0.0 betorca.com +0.0.0.0 www.betorca.com +0.0.0.0 betoto.com +0.0.0.0 www.betoto.com +0.0.0.0 betowi.com +0.0.0.0 www.betowi.com +0.0.0.0 betpack.com +0.0.0.0 www.betpack.com +0.0.0.0 betpanther.com +0.0.0.0 www.betpanther.com +0.0.0.0 betpassion.uno +0.0.0.0 www.betpassion.uno +0.0.0.0 betpci.com +0.0.0.0 www.betpci.com +0.0.0.0 betphoenix.ag +0.0.0.0 www.betphoenix.ag +0.0.0.0 betplay.com +0.0.0.0 www.betplay.com +0.0.0.0 betpop.eu +0.0.0.0 www.betpop.eu +0.0.0.0 betprestige.com +0.0.0.0 www.betprestige.com +0.0.0.0 betprimetime.com +0.0.0.0 www.betprimetime.com +0.0.0.0 betqs.com +0.0.0.0 www.betqs.com +0.0.0.0 betquick.com +0.0.0.0 www.betquick.com +0.0.0.0 betrally.com +0.0.0.0 betrebels.com +0.0.0.0 www.betrebels.com +0.0.0.0 betredkings.com +0.0.0.0 www.betredkings.com +0.0.0.0 betrevolution.com +0.0.0.0 www.betrevolution.com +0.0.0.0 betrockit.com +0.0.0.0 www.betrockit.com +0.0.0.0 betrogers.com +0.0.0.0 www.betrogers.com +0.0.0.0 betroyal.com +0.0.0.0 www.betroyal.com +0.0.0.0 bets10go.com +0.0.0.0 www.bets10go.com +0.0.0.0 bets4all.com +0.0.0.0 www.bets4all.com +0.0.0.0 betsafe.com +0.0.0.0 www.betsafe.com +0.0.0.0 betsbi.com +0.0.0.0 www.betsbi.com +0.0.0.0 betshop.com +0.0.0.0 www.betshop.com +0.0.0.0 betsking11.com +0.0.0.0 www.betsking11.com +0.0.0.0 betsocial.net +0.0.0.0 www.betsocial.net +0.0.0.0 betsonic.com +0.0.0.0 www.betsonic.com +0.0.0.0 betsson.com +0.0.0.0 www.betsson.com +0.0.0.0 betstar.com.au +0.0.0.0 www.betstar.com.au +0.0.0.0 betstars.com +0.0.0.0 www.betstars.com +0.0.0.0 betswar.com +0.0.0.0 www.betswar.com +0.0.0.0 bettap.com +0.0.0.0 www.bettap.com +0.0.0.0 bettbet.com +0.0.0.0 www.bettbet.com +0.0.0.0 bettheglobe.eu +0.0.0.0 www.bettheglobe.eu +0.0.0.0 betting195.com +0.0.0.0 bettingchamps.eu +0.0.0.0 bettingexpress.com +0.0.0.0 www.bettingexpress.com +0.0.0.0 bettingworld.co.za +0.0.0.0 www.bettingworld.co.za +0.0.0.0 bettopsport.com +0.0.0.0 www.bettopsport.com +0.0.0.0 bettor.com +0.0.0.0 www.bettor.com +0.0.0.0 bettripledraw.com +0.0.0.0 www.bettripledraw.com +0.0.0.0 bettrojan.com +0.0.0.0 www.bettrojan.com +0.0.0.0 bettropics.com +0.0.0.0 www.bettropics.com +0.0.0.0 bettvs.com +0.0.0.0 www.bettvs.com +0.0.0.0 bettylue.com +0.0.0.0 www.bettylue.com +0.0.0.0 betuniq.eu +0.0.0.0 www.betuniq.eu +0.0.0.0 betus.com.pa +0.0.0.0 www.betus.com.pa +0.0.0.0 betusa.ag +0.0.0.0 www.betusa.ag +0.0.0.0 betvictor.com +0.0.0.0 www.betvictor.com +0.0.0.0 betway.com +0.0.0.0 www.betway.com +0.0.0.0 betworks.com +0.0.0.0 www.betworks.com +0.0.0.0 betxchange.co.za +0.0.0.0 www.betxchange.co.za +0.0.0.0 betzone.com +0.0.0.0 www.betzone.com +0.0.0.0 bgbet.com +0.0.0.0 www.bgbet.com +0.0.0.0 bigbetworld.com +0.0.0.0 www.bigbetworld.com +0.0.0.0 bingoscotland.net +0.0.0.0 www.bingoscotland.net +0.0.0.0 bingostreet.com +0.0.0.0 www.bingostreet.com +0.0.0.0 bingotime.co.uk +0.0.0.0 www.bingotime.co.uk +0.0.0.0 bingowags.com +0.0.0.0 www.bingowags.com +0.0.0.0 bingoyard.com +0.0.0.0 www.bingoyard.com +0.0.0.0 bitcoinsports.eu +0.0.0.0 www.bitcoinsports.eu +0.0.0.0 bitsaloon.com +0.0.0.0 www.bitsaloon.com +0.0.0.0 bobetting.com +0.0.0.0 www.bobetting.com +0.0.0.0 bodog.eu +0.0.0.0 bodugi.com +0.0.0.0 www.bodugi.com +0.0.0.0 bola88.com +0.0.0.0 www.bola88.com +0.0.0.0 bombaybets.eu +0.0.0.0 www.bombaybets.eu +0.0.0.0 book247.eu +0.0.0.0 www.book247.eu +0.0.0.0 bookies.com.au +0.0.0.0 www.bookies.com.au +0.0.0.0 bookmaker.com.au +0.0.0.0 www.bookmaker.com.au +0.0.0.0 bookmaker.eu +0.0.0.0 www.bookmaker.eu +0.0.0.0 bookmaker7.com +0.0.0.0 www.bookmaker7.com +0.0.0.0 bookmakerclub.com +0.0.0.0 www.bookmakerclub.com +0.0.0.0 botbcasino.com +0.0.0.0 www.botbcasino.com +0.0.0.0 bovada.lv +0.0.0.0 www.bovada.lv +0.0.0.0 boylesports.com +0.0.0.0 www.boylesports.com +0.0.0.0 britsbingo.co.uk +0.0.0.0 www.britsbingo.co.uk +0.0.0.0 browncowbingo.com +0.0.0.0 www.browncowbingo.com +0.0.0.0 brucebetting.com +0.0.0.0 www.brucebetting.com +0.0.0.0 btcsportsbet.com +0.0.0.0 www.btcsportsbet.com +0.0.0.0 bubblebonusbingo.com +0.0.0.0 www.bubblebonusbingo.com +0.0.0.0 bulldog777.com +0.0.0.0 www.bulldog777.com +0.0.0.0 bulletbets.com +0.0.0.0 www.bulletbets.com +0.0.0.0 butterflybingo.com +0.0.0.0 www.butterflybingo.com +0.0.0.0 bwin.com +0.0.0.0 www.bwin.com +0.0.0.0 canadasbookie.com +0.0.0.0 www.canadasbookie.com +0.0.0.0 candisbingo.co.uk +0.0.0.0 www.candisbingo.co.uk +0.0.0.0 candyshopbingo.com +0.0.0.0 www.candyshopbingo.com +0.0.0.0 carbonsports.ag +0.0.0.0 www.carbonsports.ag +0.0.0.0 cardbet.com +0.0.0.0 www.cardbet.com +0.0.0.0 caribsports.com +0.0.0.0 www.caribsports.com +0.0.0.0 cashpoint.com +0.0.0.0 www.cashpoint.com +0.0.0.0 casineto.net +0.0.0.0 www.casineto.net +0.0.0.0 casinobitco.in +0.0.0.0 www.casinobitco.in +0.0.0.0 cbmsport.com +0.0.0.0 www.cbmsport.com +0.0.0.0 cc898.com +0.0.0.0 www.cc898.com +0.0.0.0 celebbingo.com +0.0.0.0 www.celebbingo.com +0.0.0.0 centrebet.com +0.0.0.0 www.centrebet.com +0.0.0.0 champagnebingo.com +0.0.0.0 www.champagnebingo.com +0.0.0.0 championsbet.net +0.0.0.0 www.championsbet.net +0.0.0.0 chinesebookie.eu +0.0.0.0 www.chinesebookie.eu +0.0.0.0 chisholmbet.com +0.0.0.0 www.chisholmbet.com +0.0.0.0 circlebet.com +0.0.0.0 www.circlebet.com +0.0.0.0 circusbingo.com +0.0.0.0 www.circusbingo.com +0.0.0.0 citybingo.com +0.0.0.0 www.citybingo.com +0.0.0.0 ciwox.com +0.0.0.0 www.ciwox.com +0.0.0.0 clickngamble.ag +0.0.0.0 www.clickngamble.ag +0.0.0.0 cmdbet.com +0.0.0.0 www.cmdbet.com +0.0.0.0 coastalsportsbook.com +0.0.0.0 www.coastalsportsbook.com +0.0.0.0 cocktailbingo.com +0.0.0.0 www.cocktailbingo.com +0.0.0.0 coffeebingo.com +0.0.0.0 www.coffeebingo.com +0.0.0.0 colossusbets.com +0.0.0.0 www.colossusbets.com +0.0.0.0 comebackskins.com +0.0.0.0 www.comebackskins.com +0.0.0.0 comeon.com +0.0.0.0 www.comeon.com +0.0.0.0 completesportsbetting.com.au +0.0.0.0 www.completesportsbetting.com.au +0.0.0.0 contorabet.com +0.0.0.0 www.contorabet.com +0.0.0.0 coral.co.uk +0.0.0.0 www.coral.co.uk +0.0.0.0 corbettsports.com +0.0.0.0 www.corbettsports.com +0.0.0.0 costabingo.com +0.0.0.0 www.costabingo.com +0.0.0.0 costagames.com +0.0.0.0 www.costagames.com +0.0.0.0 counterluck.com +0.0.0.0 www.counterluck.com +0.0.0.0 creditwagering.com +0.0.0.0 www.creditwagering.com +0.0.0.0 cricketbetlive.com +0.0.0.0 www.cricketbetlive.com +0.0.0.0 crowin24.com +0.0.0.0 www.crowin24.com +0.0.0.0 crsportsbetting.com +0.0.0.0 www.crsportsbetting.com +0.0.0.0 csgo-casino.com +0.0.0.0 www.csgo-casino.com +0.0.0.0 csgo-dream.com +0.0.0.0 www.csgo-dream.com +0.0.0.0 csgo-easy.com +0.0.0.0 www.csgo-easy.com +0.0.0.0 csgo-gambler.com +0.0.0.0 www.csgo-gambler.com +0.0.0.0 csgo-games.net +0.0.0.0 www.csgo-games.net +0.0.0.0 csgo-house.com +0.0.0.0 www.csgo-house.com +0.0.0.0 csgo-jackpots.com +0.0.0.0 csgo-raffle.com +0.0.0.0 www.csgo-raffle.com +0.0.0.0 csgo-saloon.com +0.0.0.0 www.csgo-saloon.com +0.0.0.0 csgo-skin-raffle.com +0.0.0.0 www.csgo-skin-raffle.com +0.0.0.0 csgo-slots.com +0.0.0.0 www.csgo-slots.com +0.0.0.0 csgo-try.com +0.0.0.0 www.csgo-try.com +0.0.0.0 csgo777.com +0.0.0.0 www.csgo777.com +0.0.0.0 csgoace.com +0.0.0.0 www.csgoace.com +0.0.0.0 csgoaimpot.com +0.0.0.0 www.csgoaimpot.com +0.0.0.0 csgobig.com +0.0.0.0 www.csgobig.com +0.0.0.0 csgobigbets.com +0.0.0.0 www.csgobigbets.com +0.0.0.0 csgobird.com +0.0.0.0 www.csgobird.com +0.0.0.0 csgoblackjack.com +0.0.0.0 www.csgoblackjack.com +0.0.0.0 csgobooth.com +0.0.0.0 www.csgobooth.com +0.0.0.0 csgobrawl.com +0.0.0.0 www.csgobrawl.com +0.0.0.0 csgobud.com +0.0.0.0 www.csgobud.com +0.0.0.0 csgocardgames.com +0.0.0.0 www.csgocardgames.com +0.0.0.0 csgocasual.com +0.0.0.0 www.csgocasual.com +0.0.0.0 csgochance.com +0.0.0.0 www.csgochance.com +0.0.0.0 csgochips.com +0.0.0.0 www.csgochips.com +0.0.0.0 csgocytosis.com +0.0.0.0 www.csgocytosis.com +0.0.0.0 csgodealer.com +0.0.0.0 www.csgodealer.com +0.0.0.0 csgodice.com +0.0.0.0 www.csgodice.com +0.0.0.0 csgodices.com +0.0.0.0 www.csgodices.com +0.0.0.0 csgodivine.com +0.0.0.0 www.csgodivine.com +0.0.0.0 csgodouble.com +0.0.0.0 www.csgodouble.com +0.0.0.0 csgodoubleup.com +0.0.0.0 www.csgodoubleup.com +0.0.0.0 csgoearth.com +0.0.0.0 www.csgoearth.com +0.0.0.0 csgoezknife.com +0.0.0.0 csgofakebet.com +0.0.0.0 www.csgofakebet.com +0.0.0.0 csgofunpot.com +0.0.0.0 www.csgofunpot.com +0.0.0.0 csgohollow.com +0.0.0.0 www.csgohollow.com +0.0.0.0 csgohunt.com +0.0.0.0 www.csgohunt.com +0.0.0.0 csgojackpot.com +0.0.0.0 www.csgojackpot.com +0.0.0.0 csgolden.eu +0.0.0.0 www.csgolden.eu +0.0.0.0 csgoldpot.com +0.0.0.0 www.csgoldpot.com +0.0.0.0 csgoleap.com +0.0.0.0 www.csgoleap.com +0.0.0.0 csgolotto.net +0.0.0.0 www.csgolotto.net +0.0.0.0 csgolounge.com +0.0.0.0 www.csgolounge.com +0.0.0.0 csgolucky.com +0.0.0.0 www.csgolucky.com +0.0.0.0 csgoluckywheel.com +0.0.0.0 www.csgoluckywheel.com +0.0.0.0 csgoparty.com +0.0.0.0 www.csgoparty.com +0.0.0.0 csgopoker.com +0.0.0.0 www.csgopoker.com +0.0.0.0 csgopot.win +0.0.0.0 www.csgopot.win +0.0.0.0 csgopull.com +0.0.0.0 www.csgopull.com +0.0.0.0 csgoput.com +0.0.0.0 csgoraffling.com +0.0.0.0 www.csgoraffling.com +0.0.0.0 csgorage.com +0.0.0.0 www.csgorage.com +0.0.0.0 csgorambopot.com +0.0.0.0 www.csgorambopot.com +0.0.0.0 csgoreactor.com +0.0.0.0 www.csgoreactor.com +0.0.0.0 csgoreaper.com +0.0.0.0 www.csgoreaper.com +0.0.0.0 csgoresort.com +0.0.0.0 www.csgoresort.com +0.0.0.0 csgorich.com +0.0.0.0 www.csgorich.com +0.0.0.0 csgoshuffle.com +0.0.0.0 www.csgoshuffle.com +0.0.0.0 csgoskinlottery.com +0.0.0.0 www.csgoskinlottery.com +0.0.0.0 csgoskins.com +0.0.0.0 www.csgoskins.com +0.0.0.0 csgospeed.com +0.0.0.0 www.csgospeed.com +0.0.0.0 csgostakes.com +0.0.0.0 www.csgostakes.com +0.0.0.0 csgovaults.com +0.0.0.0 www.csgovaults.com +0.0.0.0 csgowealth.com +0.0.0.0 www.csgowealth.com +0.0.0.0 csgowheel.com +0.0.0.0 www.csgowheel.com +0.0.0.0 cshub.net +0.0.0.0 www.cshub.net +0.0.0.0 cspotluck.com +0.0.0.0 www.cspotluck.com +0.0.0.0 cupcakebingo.co.uk +0.0.0.0 www.cupcakebingo.co.uk +0.0.0.0 cupcakebingo.com +0.0.0.0 www.cupcakebingo.com +0.0.0.0 dadobet.com +0.0.0.0 www.dadobet.com +0.0.0.0 dafabet.com +0.0.0.0 www.dafabet.com +0.0.0.0 dailydime.eu +0.0.0.0 www.dailydime.eu +0.0.0.0 daisybingo.com +0.0.0.0 www.daisybingo.com +0.0.0.0 dakotacasino.com +0.0.0.0 dashbet.com +0.0.0.0 www.dashbet.com +0.0.0.0 desertnightscasino.co.uk +0.0.0.0 www.desertnightscasino.co.uk +0.0.0.0 dhoze.com +0.0.0.0 www.dhoze.com +0.0.0.0 dialabet.com.au +0.0.0.0 www.dialabet.com.au +0.0.0.0 dicestrike.com +0.0.0.0 www.dicestrike.com +0.0.0.0 diegocasino.com +0.0.0.0 www.diegocasino.com +0.0.0.0 digibet.com +0.0.0.0 www.digibet.com +0.0.0.0 dimeline.eu +0.0.0.0 dinobingo.com +0.0.0.0 www.dinobingo.com +0.0.0.0 divabingo.com +0.0.0.0 www.divabingo.com +0.0.0.0 dobet.com +0.0.0.0 docbet.com +0.0.0.0 www.docbet.com +0.0.0.0 doribet.com +0.0.0.0 www.doribet.com +0.0.0.0 doxxbet.com +0.0.0.0 www.doxxbet.com +0.0.0.0 dynabet.com.au +0.0.0.0 www.dynabet.com.au +0.0.0.0 easytowager.com +0.0.0.0 www.easytowager.com +0.0.0.0 ebetusa.com +0.0.0.0 www.ebetusa.com +0.0.0.0 eccobet.com +0.0.0.0 www.eccobet.com +0.0.0.0 ed3688.com +0.0.0.0 www.ed3688.com +0.0.0.0 efbet.com +0.0.0.0 www.efbet.com +0.0.0.0 egamingbets.com +0.0.0.0 www.egamingbets.com +0.0.0.0 ehorse.com +0.0.0.0 www.ehorse.com +0.0.0.0 elitebetkenya.com +0.0.0.0 www.elitebetkenya.com +0.0.0.0 emeraldbet.com +0.0.0.0 www.emeraldbet.com +0.0.0.0 enterbet.com +0.0.0.0 www.enterbet.com +0.0.0.0 eqraffle.com +0.0.0.0 www.eqraffle.com +0.0.0.0 esball.net +0.0.0.0 www.esball.net +0.0.0.0 espnsportsbook.com +0.0.0.0 www.espnsportsbook.com +0.0.0.0 esportscasino.com +0.0.0.0 www.esportscasino.com +0.0.0.0 etopaz.az +0.0.0.0 www.etopaz.az +0.0.0.0 euro24sports.com +0.0.0.0 www.euro24sports.com +0.0.0.0 europe-bet.com +0.0.0.0 www.europe-bet.com +0.0.0.0 evobet.com +0.0.0.0 www.evobet.com +0.0.0.0 exbeteu.com +0.0.0.0 www.exbeteu.com +0.0.0.0 exebet.com +0.0.0.0 www.exebet.com +0.0.0.0 expekt.com +0.0.0.0 www.expekt.com +0.0.0.0 extreme-sportsbetting.com +0.0.0.0 www.extreme-sportsbetting.com +0.0.0.0 eypobet.com +0.0.0.0 www.eypobet.com +0.0.0.0 ezbets.ag +0.0.0.0 www.ezbets.ag +0.0.0.0 ezsportsbetting.com +0.0.0.0 www.ezsportsbetting.com +0.0.0.0 ezsportsbettingonline.com +0.0.0.0 www.ezsportsbettingonline.com +0.0.0.0 ezstreetsports.com +0.0.0.0 www.ezstreetsports.com +0.0.0.0 falconbet.com +0.0.0.0 www.falconbet.com +0.0.0.0 favbet.com +0.0.0.0 www.favbet.com +0.0.0.0 favourit.com +0.0.0.0 www.favourit.com +0.0.0.0 flemingtonsportsbet.com.au +0.0.0.0 www.flemingtonsportsbet.com.au +0.0.0.0 fonbet.com +0.0.0.0 www.fonbet.com +0.0.0.0 footballpools.com +0.0.0.0 www.footballpools.com +0.0.0.0 forsportspicks.com +0.0.0.0 www.forsportspicks.com +0.0.0.0 fullbetter.com +0.0.0.0 www.fullbetter.com +0.0.0.0 fun-bet.com +0.0.0.0 www.fun-bet.com +0.0.0.0 fun88.co.uk +0.0.0.0 www.fun88.co.uk +0.0.0.0 galaxybetting.com +0.0.0.0 www.galaxybetting.com +0.0.0.0 galaxysports.com +0.0.0.0 www.galaxysports.com +0.0.0.0 gamblecsgo.com +0.0.0.0 www.gamblecsgo.com +0.0.0.0 gamebookers.com +0.0.0.0 www.gamebookers.com +0.0.0.0 gamerjackpot.com +0.0.0.0 www.gamerjackpot.com +0.0.0.0 gametime88.com +0.0.0.0 www.gametime88.com +0.0.0.0 gentingcasino.com +0.0.0.0 www.gentingcasino.com +0.0.0.0 geobet.com +0.0.0.0 www.geobet.com +0.0.0.0 geoff-banks.com +0.0.0.0 www.geoff-banks.com +0.0.0.0 getabet.com +0.0.0.0 www.getabet.com +0.0.0.0 giocoreale.com +0.0.0.0 www.giocoreale.com +0.0.0.0 globalwagering.ws +0.0.0.0 www.globalwagering.ws +0.0.0.0 globetworld.com +0.0.0.0 www.globetworld.com +0.0.0.0 go50.net +0.0.0.0 www.go50.net +0.0.0.0 goalbetint.com +0.0.0.0 www.goalbetint.com +0.0.0.0 goalwin.com +0.0.0.0 www.goalwin.com +0.0.0.0 gobetgo.com +0.0.0.0 www.gobetgo.com +0.0.0.0 gohorsebetting.ag +0.0.0.0 www.gohorsebetting.ag +0.0.0.0 golazobet.com +0.0.0.0 www.golazobet.com +0.0.0.0 goldbetsports.com +0.0.0.0 www.goldbetsports.com +0.0.0.0 goldenbetsng.com +0.0.0.0 www.goldenbetsng.com +0.0.0.0 goldmedalbingo.com +0.0.0.0 www.goldmedalbingo.com +0.0.0.0 gossipbingo.com +0.0.0.0 www.gossipbingo.com +0.0.0.0 gotocasino.com +0.0.0.0 www.gotocasino.com +0.0.0.0 gotosportsbook.com +0.0.0.0 www.gotosportsbook.com +0.0.0.0 gowildcasino.net +0.0.0.0 www.gowildcasino.net +0.0.0.0 gr88.com +0.0.0.0 www.gr88.com +0.0.0.0 gracesbingo.com +0.0.0.0 www.gracesbingo.com +0.0.0.0 gtbets.eu +0.0.0.0 www.gtbets.eu +0.0.0.0 guestlistbingo.com +0.0.0.0 www.guestlistbingo.com +0.0.0.0 gunnersgaming.com +0.0.0.0 www.gunnersgaming.com +0.0.0.0 guts.com +0.0.0.0 www.guts.com +0.0.0.0 gutshot.com +0.0.0.0 www.gutshot.com +0.0.0.0 gwbet.com +0.0.0.0 www.gwbet.com +0.0.0.0 hamsterbet.com +0.0.0.0 www.hamsterbet.com +0.0.0.0 hanplayer.com +0.0.0.0 www.hanplayer.com +0.0.0.0 hawaiicasino.com +0.0.0.0 www.hawaiicasino.com +0.0.0.0 heavenbet.com +0.0.0.0 www.heavenbet.com +0.0.0.0 heritagesports.eu +0.0.0.0 www.heritagesports.eu +0.0.0.0 herobet.com.br +0.0.0.0 www.herobet.com.br +0.0.0.0 heypoker.com +0.0.0.0 www.heypoker.com +0.0.0.0 highheelsbingo.com +0.0.0.0 www.highheelsbingo.com +0.0.0.0 highlifebingo.com +0.0.0.0 www.highlifebingo.com +0.0.0.0 hippobingo.com +0.0.0.0 www.hippobingo.com +0.0.0.0 hititbet.com +0.0.0.0 www.hititbet.com +0.0.0.0 hollywoodbets.net +0.0.0.0 www.hollywoodbets.net +0.0.0.0 hollywoodsportsbook.eu +0.0.0.0 www.hollywoodsportsbook.eu +0.0.0.0 homerunsportsbetting.com +0.0.0.0 www.homerunsportsbetting.com +0.0.0.0 horizonsports.es +0.0.0.0 www.horizonsports.es +0.0.0.0 hotlinecsgo.com +0.0.0.0 www.hotlinecsgo.com +0.0.0.0 hpbet.com +0.0.0.0 www.hpbet.com +0.0.0.0 hrwager.ag +0.0.0.0 www.hrwager.ag +0.0.0.0 hughesbet.com +0.0.0.0 www.hughesbet.com +0.0.0.0 hunkybingo.com +0.0.0.0 www.hunkybingo.com +0.0.0.0 iasbet.com +0.0.0.0 www.iasbet.com +0.0.0.0 ibet789.com +0.0.0.0 www.ibet789.com +0.0.0.0 ibetcasino.com +0.0.0.0 www.ibetcasino.com +0.0.0.0 inbet88.com +0.0.0.0 www.inbet88.com +0.0.0.0 infinitybet.com +0.0.0.0 www.infinitybet.com +0.0.0.0 instantactionsports.com +0.0.0.0 www.instantactionsports.com +0.0.0.0 interapostas.com +0.0.0.0 www.interapostas.com +0.0.0.0 interbet.co.za +0.0.0.0 www.interbet.co.za +0.0.0.0 intertops.eu +0.0.0.0 www.intertops.eu +0.0.0.0 interwetten.com +0.0.0.0 www.interwetten.com +0.0.0.0 irisheyesbet.com +0.0.0.0 www.irisheyesbet.com +0.0.0.0 ironbet.com +0.0.0.0 www.ironbet.com +0.0.0.0 islandcasino.com +0.0.0.0 www.islandcasino.com +0.0.0.0 isleofbingo.com +0.0.0.0 www.isleofbingo.com +0.0.0.0 isportbet.net +0.0.0.0 www.isportbet.net +0.0.0.0 itvbingo.com +0.0.0.0 www.itvbingo.com +0.0.0.0 jackpotbingo.co.uk +0.0.0.0 www.jackpotbingo.co.uk +0.0.0.0 jackpotcity.com +0.0.0.0 www.jackpotcity.com +0.0.0.0 jammyduck.com +0.0.0.0 www.jammyduck.com +0.0.0.0 jaxx.com +0.0.0.0 www.jaxx.com +0.0.0.0 jazzsports.ag +0.0.0.0 www.jazzsports.ag +0.0.0.0 jebetting.com +0.0.0.0 www.jebetting.com +0.0.0.0 jenningsbet.com +0.0.0.0 www.jenningsbet.com +0.0.0.0 jesterjackpots.co.uk +0.0.0.0 www.jesterjackpots.co.uk +0.0.0.0 jesterjackpots.com +0.0.0.0 www.jesterjackpots.com +0.0.0.0 jetbull.com +0.0.0.0 www.jetbull.com +0.0.0.0 jinglebingo.com +0.0.0.0 www.jinglebingo.com +0.0.0.0 joinbet.eu +0.0.0.0 www.joinbet.eu +0.0.0.0 justbet.co.za +0.0.0.0 www.justbet.co.za +0.0.0.0 justbet.cx +0.0.0.0 www.justbet.cx +0.0.0.0 justforbettors.com +0.0.0.0 www.justforbettors.com +0.0.0.0 kashmobet.com +0.0.0.0 www.kashmobet.com +0.0.0.0 katiesbingo.com +0.0.0.0 www.katiesbingo.com +0.0.0.0 keyarena.gg +0.0.0.0 www.keyarena.gg +0.0.0.0 kingneptunescasino.com +0.0.0.0 www.kingneptunescasino.com +0.0.0.0 kingneptunescasino.eu +0.0.0.0 www.kingneptunescasino.eu +0.0.0.0 kingswaybingoonline.com +0.0.0.0 www.kingswaybingoonline.com +0.0.0.0 kissmybingo.com +0.0.0.0 www.kissmybingo.com +0.0.0.0 krugerbets.com +0.0.0.0 www.krugerbets.com +0.0.0.0 ksbingo.com +0.0.0.0 www.ksbingo.com +0.0.0.0 ladbrokes.com +0.0.0.0 www.ladbrokes.com +0.0.0.0 laspalmassportsbook.com +0.0.0.0 www.laspalmassportsbook.com +0.0.0.0 latinopoker.eu +0.0.0.0 www.latinopoker.eu +0.0.0.0 lazvegas.com +0.0.0.0 www.lazvegas.com +0.0.0.0 legendsportsbook.com +0.0.0.0 www.legendsportsbook.com +0.0.0.0 leisure888.com +0.0.0.0 www.leisure888.com +0.0.0.0 leojackpot.com +0.0.0.0 www.leojackpot.com +0.0.0.0 leonbets.net +0.0.0.0 www.leonbets.net +0.0.0.0 liga365.com +0.0.0.0 www.liga365.com +0.0.0.0 lightbet.com +0.0.0.0 www.lightbet.com +0.0.0.0 link2bet.com +0.0.0.0 www.link2bet.com +0.0.0.0 lionbet.com +0.0.0.0 www.lionbet.com +0.0.0.0 lippybingo.com +0.0.0.0 www.lippybingo.com +0.0.0.0 littlebigbingo.com +0.0.0.0 www.littlebigbingo.com +0.0.0.0 livebetting.com +0.0.0.0 www.livebetting.com +0.0.0.0 livebingo.com +0.0.0.0 www.livebingo.com +0.0.0.0 llamabet.co.uk +0.0.0.0 lmbookmaker.com +0.0.0.0 www.lmbookmaker.com +0.0.0.0 loadsabingo.com +0.0.0.0 www.loadsabingo.com +0.0.0.0 lookbingo.com +0.0.0.0 www.lookbingo.com +0.0.0.0 loonybingo.co.uk +0.0.0.0 www.loonybingo.co.uk +0.0.0.0 loonybingo.com +0.0.0.0 www.loonybingo.com +0.0.0.0 looselines.com +0.0.0.0 www.looselines.com +0.0.0.0 lopocasport.com +0.0.0.0 www.lopocasport.com +0.0.0.0 loquaxbingo.co.uk +0.0.0.0 www.loquaxbingo.co.uk +0.0.0.0 lotto24bingo.com +0.0.0.0 www.lotto24bingo.com +0.0.0.0 louisvillecasino.com +0.0.0.0 www.louisvillecasino.com +0.0.0.0 lowvig.ag +0.0.0.0 www.lowvig.ag +0.0.0.0 lsbet.com +0.0.0.0 www.lsbet.com +0.0.0.0 luckycharmbingo.com +0.0.0.0 www.luckycharmbingo.com +0.0.0.0 lumibet.com +0.0.0.0 www.lumibet.com +0.0.0.0 luxbet.com +0.0.0.0 www.luxbet.com +0.0.0.0 m8bet.net +0.0.0.0 www.m8bet.net +0.0.0.0 m8poker.com +0.0.0.0 www.m8poker.com +0.0.0.0 macaubet.com +0.0.0.0 www.macaubet.com +0.0.0.0 macauslot.com +0.0.0.0 www.macauslot.com +0.0.0.0 magicbet.com +0.0.0.0 www.magicbet.com +0.0.0.0 majorbet.net +0.0.0.0 www.majorbet.net +0.0.0.0 majorsportsbetting.com +0.0.0.0 www.majorsportsbetting.com +0.0.0.0 mansion88.com +0.0.0.0 www.mansion88.com +0.0.0.0 marathonbet.com +0.0.0.0 www.marathonbet.com +0.0.0.0 markjarvisbet.com +0.0.0.0 www.markjarvisbet.com +0.0.0.0 marsbet12.com +0.0.0.0 www.marsbet12.com +0.0.0.0 marsbet200.com +0.0.0.0 www.marsbet200.com +0.0.0.0 marsbet300.com +0.0.0.0 www.marsbet300.com +0.0.0.0 marsbet400.com +0.0.0.0 www.marsbet400.com +0.0.0.0 matchbook.com +0.0.0.0 www.matchbook.com +0.0.0.0 mayansports.eu +0.0.0.0 www.mayansports.eu +0.0.0.0 mbet.co.za +0.0.0.0 www.mbet.co.za +0.0.0.0 mcbookie.com +0.0.0.0 www.mcbookie.com +0.0.0.0 megasportsworld.com +0.0.0.0 www.megasportsworld.com +0.0.0.0 meridianbet.com +0.0.0.0 www.meridianbet.com +0.0.0.0 metspoker.com +0.0.0.0 www.metspoker.com +0.0.0.0 miamicasino.com +0.0.0.0 www.miamicasino.com +0.0.0.0 middlebet.com +0.0.0.0 www.middlebet.com +0.0.0.0 mobilbet.com +0.0.0.0 www.mobilbet.com +0.0.0.0 monacoaces.com +0.0.0.0 www.monacoaces.com +0.0.0.0 moneyplayscasino.com +0.0.0.0 www.moneyplayscasino.com +0.0.0.0 morganbet.eu +0.0.0.0 www.morganbet.eu +0.0.0.0 mozzartbet.com +0.0.0.0 www.mozzartbet.com +0.0.0.0 mrringo.com +0.0.0.0 www.mrringo.com +0.0.0.0 mvpaction.ag +0.0.0.0 www.mvpaction.ag +0.0.0.0 mybet.com +0.0.0.0 www.mybet.com +0.0.0.0 mysportsbook.ag +0.0.0.0 www.mysportsbook.ag +0.0.0.0 naijabet.com +0.0.0.0 www.naijabet.com +0.0.0.0 nairabet.com +0.0.0.0 www.nairabet.com +0.0.0.0 nairastake.com +0.0.0.0 www.nairastake.com +0.0.0.0 nanos365.com +0.0.0.0 www.nanos365.com +0.0.0.0 nederbet.com +0.0.0.0 www.nederbet.com +0.0.0.0 needforbet.com +0.0.0.0 www.needforbet.com +0.0.0.0 netbet.com +0.0.0.0 www.netbet.com +0.0.0.0 neverfelted.eu +0.0.0.0 www.neverfelted.eu +0.0.0.0 nightwoodbookmakers.co.uk +0.0.0.0 www.nightwoodbookmakers.co.uk +0.0.0.0 nikebet.net +0.0.0.0 www.nikebet.net +0.0.0.0 ninjackpot.com +0.0.0.0 www.ninjackpot.com +0.0.0.0 nitrogensports.eu +0.0.0.0 www.nitrogensports.eu +0.0.0.0 nordicbet.com +0.0.0.0 www.nordicbet.com +0.0.0.0 novibet.com +0.0.0.0 www.novibet.com +0.0.0.0 noxwin.com +0.0.0.0 www.noxwin.com +0.0.0.0 oddsmaker.ag +0.0.0.0 www.oddsmaker.ag +0.0.0.0 oddsring.com +0.0.0.0 www.oddsring.com +0.0.0.0 odinbet.com +0.0.0.0 www.odinbet.com +0.0.0.0 offsidebet.com +0.0.0.0 www.offsidebet.com +0.0.0.0 ohiocasino.com +0.0.0.0 www.ohiocasino.com +0.0.0.0 ohmbet.com +0.0.0.0 www.ohmbet.com +0.0.0.0 olimp.com +0.0.0.0 www.olimp.com +0.0.0.0 olybet.com +0.0.0.0 www.olybet.com +0.0.0.0 onlywinners.com +0.0.0.0 www.onlywinners.com +0.0.0.0 opcrates.com +0.0.0.0 www.opcrates.com +0.0.0.0 optibet.com +0.0.0.0 www.optibet.com +0.0.0.0 optionsports.com +0.0.0.0 www.optionsports.com +0.0.0.0 orakulas.lt +0.0.0.0 www.orakulas.lt +0.0.0.0 orlandocasino.com +0.0.0.0 www.orlandocasino.com +0.0.0.0 ourpricebet.com +0.0.0.0 www.ourpricebet.com +0.0.0.0 overtheodds.com.au +0.0.0.0 www.overtheodds.com.au +0.0.0.0 ozbet.com.au +0.0.0.0 www.ozbet.com.au +0.0.0.0 paddypower.com +0.0.0.0 www.paddypower.com +0.0.0.0 paf.com +0.0.0.0 www.paf.com +0.0.0.0 palladiumcasino.eu +0.0.0.0 www.palladiumcasino.eu +0.0.0.0 pandabet.net +0.0.0.0 www.pandabet.net +0.0.0.0 paradisewin.com +0.0.0.0 parasino.com +0.0.0.0 www.parasino.com +0.0.0.0 parimatch.com +0.0.0.0 www.parimatch.com +0.0.0.0 pasarbola.com +0.0.0.0 www.pasarbola.com +0.0.0.0 pinnaclesports.com +0.0.0.0 www.pinnaclesports.com +0.0.0.0 planetofbets.com +0.0.0.0 www.planetofbets.com +0.0.0.0 planetwin365.com +0.0.0.0 www.planetwin365.com +0.0.0.0 playbet.com +0.0.0.0 www.playbet.com +0.0.0.0 plexodds.com +0.0.0.0 www.plexodds.com +0.0.0.0 pointcasino.com +0.0.0.0 www.pointcasino.com +0.0.0.0 pokerdassi360.com +0.0.0.0 www.pokerdassi360.com +0.0.0.0 pokerimaa.com +0.0.0.0 www.pokerimaa.com +0.0.0.0 pokermax.com +0.0.0.0 www.pokermax.com +0.0.0.0 pokerstars.eu +0.0.0.0 www.pokerstars.eu +0.0.0.0 pridmorebookmakers.com +0.0.0.0 www.pridmorebookmakers.com +0.0.0.0 primebet.com.mt +0.0.0.0 www.primebet.com.mt +0.0.0.0 pro-factory.com +0.0.0.0 www.pro-factory.com +0.0.0.0 propawin.com +0.0.0.0 www.propawin.com +0.0.0.0 punchbets.com +0.0.0.0 www.punchbets.com +0.0.0.0 purepoker.eu +0.0.0.0 www.purepoker.eu +0.0.0.0 racebets.com +0.0.0.0 www.racebets.com +0.0.0.0 rajahbet.com +0.0.0.0 www.rajahbet.com +0.0.0.0 rb88.com +0.0.0.0 www.rb88.com +0.0.0.0 readytobet.com +0.0.0.0 realbet.eu +0.0.0.0 www.realbet.eu +0.0.0.0 realdealbet.com +0.0.0.0 www.realdealbet.com +0.0.0.0 rebatewager.ag +0.0.0.0 www.rebatewager.ag +0.0.0.0 redbet.com +0.0.0.0 www.redbet.com +0.0.0.0 redmilebets.com +0.0.0.0 www.redmilebets.com +0.0.0.0 redstarsports.eu +0.0.0.0 www.redstarsports.eu +0.0.0.0 rivalo.com +0.0.0.0 www.rivalo.com +0.0.0.0 roadbet.com +0.0.0.0 www.roadbet.com +0.0.0.0 royalcspot.com +0.0.0.0 www.royalcspot.com +0.0.0.0 rubet.com +0.0.0.0 www.rubet.com +0.0.0.0 safaribet.com.gh +0.0.0.0 www.safaribet.com.gh +0.0.0.0 saharabet.com +0.0.0.0 www.saharabet.com +0.0.0.0 samvo.com +0.0.0.0 www.samvo.com +0.0.0.0 sanfrancasino.com +0.0.0.0 www.sanfrancasino.com +0.0.0.0 saturnplay.com +0.0.0.0 www.saturnplay.com +0.0.0.0 sbgglobal.eu +0.0.0.0 www.sbgglobal.eu +0.0.0.0 sbobet.com +0.0.0.0 www.sbobet.com +0.0.0.0 score99.net +0.0.0.0 www.score99.net +0.0.0.0 scotbet.com +0.0.0.0 www.scotbet.com +0.0.0.0 seabet.com +0.0.0.0 www.seabet.com +0.0.0.0 seangraham.com +0.0.0.0 www.seangraham.com +0.0.0.0 seaniemac.com +0.0.0.0 www.seaniemac.com +0.0.0.0 sectorbet.com +0.0.0.0 www.sectorbet.com +0.0.0.0 secure.bkbet.eu +0.0.0.0 sesbet.com +0.0.0.0 www.sesbet.com +0.0.0.0 setantabet.com +0.0.0.0 www.setantabet.com +0.0.0.0 sirbobet.com +0.0.0.0 www.sirbobet.com +0.0.0.0 sjbet.at +0.0.0.0 www.sjbet.at +0.0.0.0 skedina.com +0.0.0.0 www.skedina.com +0.0.0.0 skinarena.com +0.0.0.0 www.skinarena.com +0.0.0.0 skinbet.com +0.0.0.0 www.skinbet.com +0.0.0.0 skinduel.com +0.0.0.0 www.skinduel.com +0.0.0.0 skingaben.com +0.0.0.0 www.skingaben.com +0.0.0.0 skinhell.com +0.0.0.0 www.skinhell.com +0.0.0.0 skinhunt.com +0.0.0.0 www.skinhunt.com +0.0.0.0 skinprofit.com +0.0.0.0 www.skinprofit.com +0.0.0.0 skinsdream.com +0.0.0.0 www.skinsdream.com +0.0.0.0 skybet.com +0.0.0.0 www.skybet.com +0.0.0.0 skybook.ag +0.0.0.0 www.skybook.ag +0.0.0.0 skytowersportsbook.com +0.0.0.0 www.skytowersportsbook.com +0.0.0.0 slbet.com +0.0.0.0 www.slbet.com +0.0.0.0 smarkets.com +0.0.0.0 smashsportsbetting.com +0.0.0.0 www.smashsportsbetting.com +0.0.0.0 socalsportbook.com +0.0.0.0 www.socalsportbook.com +0.0.0.0 softbet.eu +0.0.0.0 www.softbet.eu +0.0.0.0 spindipity.com +0.0.0.0 www.spindipity.com +0.0.0.0 sport-gewin.com +0.0.0.0 www.sport-gewin.com +0.0.0.0 sportbet.com +0.0.0.0 www.sportbet.com +0.0.0.0 sportfanatik.com +0.0.0.0 www.sportfanatik.com +0.0.0.0 sportingbet.com.au +0.0.0.0 www.sportingbet.com.au +0.0.0.0 sportingbet.com +0.0.0.0 www.sportingbet.com +0.0.0.0 sportingindex.com +0.0.0.0 www.sportingindex.com +0.0.0.0 sportlife.com.mk +0.0.0.0 www.sportlife.com.mk +0.0.0.0 sportodds.com +0.0.0.0 sports-gambling.com +0.0.0.0 www.sports-gambling.com +0.0.0.0 sports.magicred.com +0.0.0.0 www.sports.magicred.com +0.0.0.0 sports.partypoker.com +0.0.0.0 sports.smartlivegaming.com +0.0.0.0 sports.winner.com +0.0.0.0 sportsbet.co.za +0.0.0.0 www.sportsbet.co.za +0.0.0.0 sportsbet.com.au +0.0.0.0 www.sportsbet.com.au +0.0.0.0 sportsbetting.ag +0.0.0.0 www.sportsbetting.ag +0.0.0.0 sportsbetting.com.au +0.0.0.0 www.sportsbetting.com.au +0.0.0.0 sportsbettingonline.ag +0.0.0.0 www.sportsbettingonline.ag +0.0.0.0 sportsbook-uk.com +0.0.0.0 www.sportsbook-uk.com +0.0.0.0 sportsbook.ca +0.0.0.0 www.sportsbook.ca +0.0.0.0 sportsbook.com +0.0.0.0 www.sportsbook.com +0.0.0.0 sportsbook.kingdomcasino.com +0.0.0.0 sportsbooks.com +0.0.0.0 www.sportsbooks.com +0.0.0.0 sportsbookusa.com +0.0.0.0 www.sportsbookusa.com +0.0.0.0 sportsspread.com +0.0.0.0 www.sportsspread.com +0.0.0.0 sporttime.net +0.0.0.0 www.sporttime.net +0.0.0.0 sportzbookz.com +0.0.0.0 www.sportzbookz.com +0.0.0.0 spreadex.com +0.0.0.0 www.spreadex.com +0.0.0.0 sssbet.com +0.0.0.0 www.sssbet.com +0.0.0.0 stanjames.com +0.0.0.0 www.stanjames.com +0.0.0.0 starlottosport.com +0.0.0.0 www.starlottosport.com +0.0.0.0 statusbet.com +0.0.0.0 www.statusbet.com +0.0.0.0 strikewin.com +0.0.0.0 www.strikewin.com +0.0.0.0 supabets.com.gh +0.0.0.0 www.supabets.com.gh +0.0.0.0 super88.club +0.0.0.0 super8casino.com +0.0.0.0 www.super8casino.com +0.0.0.0 superbet.com +0.0.0.0 www.superbet.com +0.0.0.0 superlenny.com +0.0.0.0 www.superlenny.com +0.0.0.0 supersoccer.co.uk +0.0.0.0 www.supersoccer.co.uk +0.0.0.0 supersportsbook.com +0.0.0.0 www.supersportsbook.com +0.0.0.0 superusacasino.com +0.0.0.0 www.superusacasino.com +0.0.0.0 tab.co.nz +0.0.0.0 www.tab.co.nz +0.0.0.0 tab.com.au +0.0.0.0 www.tab.com.au +0.0.0.0 tabgold.co.za +0.0.0.0 www.tabgold.co.za +0.0.0.0 tatts.com +0.0.0.0 tempobet.com +0.0.0.0 www.tempobet.com +0.0.0.0 texascasino.com +0.0.0.0 www.texascasino.com +0.0.0.0 thebetarena.com +0.0.0.0 www.thebetarena.com +0.0.0.0 thegreek.com +0.0.0.0 www.thegreek.com +0.0.0.0 tipbet.com +0.0.0.0 www.tipbet.com +0.0.0.0 tipico.com +0.0.0.0 www.tipico.com +0.0.0.0 tipwin.com +0.0.0.0 www.tipwin.com +0.0.0.0 titanbet.com +0.0.0.0 www.titanbet.com +0.0.0.0 titansbet.com.au +0.0.0.0 www.titansbet.com.au +0.0.0.0 toals.co.uk +0.0.0.0 www.toals.co.uk +0.0.0.0 tommyfrench.com +0.0.0.0 www.tommyfrench.com +0.0.0.0 tomwaterhouse.com +0.0.0.0 www.tomwaterhouse.com +0.0.0.0 tonybet.com +0.0.0.0 www.tonybet.com +0.0.0.0 topbet.eu +0.0.0.0 www.topbet.eu +0.0.0.0 topbetta.com +0.0.0.0 www.topbetta.com +0.0.0.0 topcatsports.ag +0.0.0.0 www.topcatsports.ag +0.0.0.0 topodds.com.au +0.0.0.0 www.topodds.com.au +0.0.0.0 topplay.cc +0.0.0.0 www.topplay.cc +0.0.0.0 topsport.com.au +0.0.0.0 www.topsport.com.au +0.0.0.0 topsportwetten.com +0.0.0.0 www.topsportwetten.com +0.0.0.0 topwin.cc +0.0.0.0 www.topwin.cc +0.0.0.0 totalbets.com +0.0.0.0 www.totalbets.com +0.0.0.0 totesport.com +0.0.0.0 www.totesport.com +0.0.0.0 totobet.com +0.0.0.0 www.totobet.com +0.0.0.0 totobet24.com +0.0.0.0 www.totobet24.com +0.0.0.0 toxicjackpot.com +0.0.0.0 www.toxicjackpot.com +0.0.0.0 triobet.com +0.0.0.0 www.triobet.com +0.0.0.0 uberskins.net +0.0.0.0 ubet.com +0.0.0.0 www.ubet.com +0.0.0.0 ucabet.co +0.0.0.0 www.ucabet.co +0.0.0.0 ultimate-odds.com +0.0.0.0 www.ultimate-odds.com +0.0.0.0 unibet.com +0.0.0.0 www.unibet.com +0.0.0.0 unionbet.com +0.0.0.0 www.unionbet.com +0.0.0.0 usapriceperhead.com +0.0.0.0 www.usapriceperhead.com +0.0.0.0 usbetting.co.za +0.0.0.0 www.usbetting.co.za +0.0.0.0 vandersports.com +0.0.0.0 www.vandersports.com +0.0.0.0 vbet.com +0.0.0.0 www.vbet.com +0.0.0.0 vernons.com +0.0.0.0 www.vernons.com +0.0.0.0 vestabet365.com +0.0.0.0 www.vestabet365.com +0.0.0.0 vierklee.com +0.0.0.0 www.vierklee.com +0.0.0.0 vietbet.eu +0.0.0.0 www.vietbet.eu +0.0.0.0 villabet.com +0.0.0.0 www.villabet.com +0.0.0.0 vipsports.eu +0.0.0.0 www.vipsports.eu +0.0.0.0 vitalbet.com +0.0.0.0 www.vitalbet.com +0.0.0.0 voltbet.com +0.0.0.0 www.voltbet.com +0.0.0.0 vulcun.com +0.0.0.0 www.vulcun.com +0.0.0.0 vwin.com +0.0.0.0 www.vwin.com +0.0.0.0 wager.dm +0.0.0.0 www.wager.dm +0.0.0.0 wager123.com +0.0.0.0 www.wager123.com +0.0.0.0 wager7.eu +0.0.0.0 www.wager7.eu +0.0.0.0 wagerallin.com +0.0.0.0 www.wagerallin.com +0.0.0.0 wagermadness.com +0.0.0.0 www.wagermadness.com +0.0.0.0 wagerweb.ag +0.0.0.0 www.wagerweb.ag +0.0.0.0 webbookmakers.com +0.0.0.0 www.webbookmakers.com +0.0.0.0 wettpunkt.com +0.0.0.0 www.wettpunkt.com +0.0.0.0 wgh.ag +0.0.0.0 www.wgh.ag +0.0.0.0 whalegaming.co.uk +0.0.0.0 www.whalegaming.co.uk +0.0.0.0 whitebet.com +0.0.0.0 www.whitebet.com +0.0.0.0 williamhill.com +0.0.0.0 www.williamhill.com +0.0.0.0 wilsonbet.com +0.0.0.0 www.wilsonbet.com +0.0.0.0 win29.com +0.0.0.0 www.win29.com +0.0.0.0 winmasters.com +0.0.0.0 www.winmasters.com +0.0.0.0 winningft.com +0.0.0.0 www.winningft.com +0.0.0.0 worldofsport.co.za +0.0.0.0 www.worldofsport.co.za +0.0.0.0 worldsportsbetting.co.za +0.0.0.0 www.worldsportsbetting.co.za +0.0.0.0 worldstar.co.ug +0.0.0.0 www.worldstar.co.ug +0.0.0.0 worldwidegamble.com +0.0.0.0 www.worldwidegamble.com +0.0.0.0 wwin.ba +0.0.0.0 www.wwin.ba +0.0.0.0 xinweide.com +0.0.0.0 www.xinweide.com +0.0.0.0 yabet.com +0.0.0.0 www.yabet.com +0.0.0.0 youwager.eu +0.0.0.0 www.youwager.eu +0.0.0.0 youwin.com +0.0.0.0 www.youwin.com +0.0.0.0 zebrabet.com.au +0.0.0.0 www.zebrabet.com.au +0.0.0.0 zetpoker.eu +0.0.0.0 www.zetpoker.eu + + +# Porn Sites + + +# Porn Domains + +0.0.0.0 0013langford.tumblr.com +0.0.0.0 0xxx.ws +0.0.0.0 1-last-fight.tumblr.com +0.0.0.0 1.hot-dances.com +0.0.0.0 100200film.com +0.0.0.0 100amateurvideos.com +0.0.0.0 101sexsecret.com +0.0.0.0 110percentnatural.com +0.0.0.0 11inchesbuffed.tumblr.com +0.0.0.0 18-teen-xxx.com +0.0.0.0 18andabused.tv +0.0.0.0 18comix.com +0.0.0.0 18eighteenz.com +0.0.0.0 18phd.com +0.0.0.0 18porno.tv +0.0.0.0 18teenvid.com +0.0.0.0 18tubehd.com +0.0.0.0 18yearsold.com +0.0.0.0 18yo.pics +0.0.0.0 1905cglr.tumblr.com +0.0.0.0 19angels.net +0.0.0.0 1on1sexwebcams.com +0.0.0.0 1sexsex.com +0.0.0.0 1st-virgin.com +0.0.0.0 1stmovieclub.net +0.0.0.0 1virgins.net +0.0.0.0 1watchmygf.com +0.0.0.0 2013znakomstva.datingsprivate2013.com +0.0.0.0 2017porn.com +0.0.0.0 21x.org +0.0.0.0 24h-porn.net +0.0.0.0 2bigtobetrue.com +0.0.0.0 2busty.net +0.0.0.0 2damnhot.com +0.0.0.0 2gfx.com +0.0.0.0 2girls1gif.tumblr.com +0.0.0.0 2virgins.com +0.0.0.0 2wjk.tumblr.com +0.0.0.0 300webcams.com +0.0.0.0 321webcams.com +0.0.0.0 3angelsvideo.com +0.0.0.0 3arabporn.com +0.0.0.0 3at3ot.com +0.0.0.0 3dbadgirls.com +0.0.0.0 3dxchat.com +0.0.0.0 3movs.com +0.0.0.0 3redangels.com +0.0.0.0 3sex.com +0.0.0.0 3thehardway.nl +0.0.0.0 3virgin.com +0.0.0.0 3x.ro +0.0.0.0 3xplanet.com +0.0.0.0 404.elitedollars.com +0.0.0.0 404.quickbuck.com +0.0.0.0 404.ragecash.com +0.0.0.0 40best.com +0.0.0.0 4desiz.blogspot.com +0.0.0.0 4gifporn.tumblr.com +0.0.0.0 4porn.com +0.0.0.0 4porngifs.tumblr.com +0.0.0.0 4sex4.com +0.0.0.0 4sexwebcams.com +0.0.0.0 4tube.com +0.0.0.0 5fing.com +0.0.0.0 5starangels.com +0.0.0.0 69-webcams.com +0.0.0.0 69games.xxx +0.0.0.0 69prasempre.tumblr.com +0.0.0.0 6eez.net +0.0.0.0 777porn.com +0.0.0.0 7virgin.com +0.0.0.0 85porn.net +0.0.0.0 88cum.com +0.0.0.0 88fuck.com +0.0.0.0 88gals.com +0.0.0.0 8maturepornmovies.com +0.0.0.0 8muses.com +0.0.0.0 8teenbay.net +0.0.0.0 8teenxxx.com +0.0.0.0 8thstreetlatinas.com +0.0.0.0 91porn.com +0.0.0.0 99cams.com +0.0.0.0 99webcams.com +0.0.0.0 9hz.com +0.0.0.0 a-angel.skyblog.com +0.0.0.0 a-fodidinha.tumblr.com +0.0.0.0 a.gaytube.com +0.0.0.0 a4w.cc +0.0.0.0 a5.x-traceur.com +0.0.0.0 a7.x-traceur.com +0.0.0.0 aampmaps.com +0.0.0.0 aaronsangels.com +0.0.0.0 abbyaae.angelfire.com +0.0.0.0 abbygirlgirl.com +0.0.0.0 abbywinters.com +0.0.0.0 abl-angels.deluxepass.com +0.0.0.0 aboutagentleman.tumblr.com +0.0.0.0 aboutangelinajolie.com +0.0.0.0 aboutgirlslove.com +0.0.0.0 aboutsexxx.com +0.0.0.0 abrutis.com +0.0.0.0 abs.redbills.com +0.0.0.0 absolute-live.com +0.0.0.0 achaudry4.tumblr.com +0.0.0.0 acmexxx.com +0.0.0.0 actual-porn.org +0.0.0.0 ad.blackystars.com +0.0.0.0 ad.pornfuzepremium.videobox.com +0.0.0.0 adamandeve.com +0.0.0.0 adameve.com +0.0.0.0 adcontrol.lonestarnaughtygirls.com +0.0.0.0 address.9hz.com +0.0.0.0 adenofdevils.tumblr.com +0.0.0.0 adimages.myjizztube.com +0.0.0.0 admin.amateurgalls.com +0.0.0.0 admin.oldpornsite.com +0.0.0.0 admost.nl +0.0.0.0 adressesx.com +0.0.0.0 adriana-sage.org +0.0.0.0 ads.adultpopunders.com +0.0.0.0 ads.eropower.de +0.0.0.0 ads.jerk2it.com +0.0.0.0 ads.mucunki.com +0.0.0.0 ads.premiumaccounts.com +0.0.0.0 ads.privatefeeds.com +0.0.0.0 ads.sextvx.com +0.0.0.0 ads.usualgirls.com +0.0.0.0 ads.virgin.net +0.0.0.0 ads.waterbondage.com +0.0.0.0 ads.wiredpussy.com +0.0.0.0 ads.wtfpeople.com +0.0.0.0 ads0.videosz.com +0.0.0.0 ads01.9hz.com +0.0.0.0 ads1.tuccus.com +0.0.0.0 ads2.tuccus.com +0.0.0.0 adserver.juicybucks.com +0.0.0.0 adserver.penthouse.com +0.0.0.0 adult-adv.com +0.0.0.0 adult-arab.com +0.0.0.0 adult-banner-ads.com +0.0.0.0 adult-clips.us +0.0.0.0 adult-dating-ads.com +0.0.0.0 adult-extreme.com +0.0.0.0 adult-models.org +0.0.0.0 adult-profit-files.com +0.0.0.0 adult-profit-files2.com +0.0.0.0 adult-targeted-traffic.com +0.0.0.0 adult-top.worlddatingforum.com +0.0.0.0 adult-tracker.de +0.0.0.0 adult.adrevservice.com +0.0.0.0 adult.find-fm.com +0.0.0.0 adult.master-tv.net +0.0.0.0 adult.phoneaccess.com +0.0.0.0 adultadbroker.com +0.0.0.0 adultads.biz +0.0.0.0 adultbanners.co.uk +0.0.0.0 adultbay.org +0.0.0.0 adultblogcollection.tumblr.com +0.0.0.0 adultblogtoplist.com +0.0.0.0 adultcash.com +0.0.0.0 adultcashtraffic.com +0.0.0.0 adultcommercial.net +0.0.0.0 adultdatelink.com +0.0.0.0 adultdatingtraffic.com +0.0.0.0 adultdialersolution.com +0.0.0.0 adultdvdhits.com +0.0.0.0 adultempire.com +0.0.0.0 adultfreex.com +0.0.0.0 adultfriendfinders.com +0.0.0.0 adultfriendfinders.net +0.0.0.0 adultfriendfinders.us +0.0.0.0 adultfriendfinderz.com +0.0.0.0 adultfriendsearch.com +0.0.0.0 adulthostedblogs.com +0.0.0.0 adultlinkexchange.com +0.0.0.0 adultmoviegroup.com +0.0.0.0 adultoffline.com +0.0.0.0 adultpopunders.com +0.0.0.0 adultrevenueservice.com +0.0.0.0 adultscandy.com +0.0.0.0 adulttrafficads.com +0.0.0.0 adultvalleycash.com +0.0.0.0 adultvideofinder.com +0.0.0.0 adultvideosteens.com +0.0.0.0 adultwebmastersonline.com +0.0.0.0 adventuretimeporn.xyz +0.0.0.0 adverts.trojanpublishing.net +0.0.0.0 advertx.net +0.0.0.0 aebn.net +0.0.0.0 aerisdies.com +0.0.0.0 affairsclub.com +0.0.0.0 affiliate-cash.tied-angels.com +0.0.0.0 affiliation-int.com +0.0.0.0 affiliation.porn.fr +0.0.0.0 aflamneek.com +0.0.0.0 aflamporn.com +0.0.0.0 africancasting.com +0.0.0.0 agangels.net +0.0.0.0 agentur-angelina.de +0.0.0.0 agnesangel.com +0.0.0.0 ah-me.com +0.0.0.0 aintgo.angelfire.com +0.0.0.0 akibaangels.com +0.0.0.0 akibathewolf.tumblr.com +0.0.0.0 alaa168.angelfire.com +0.0.0.0 alamalditasea.tumblr.com +0.0.0.0 alcuda.com +0.0.0.0 aleexball.tumblr.com +0.0.0.0 alexa-xxx.com +0.0.0.0 alexisvirgin.com +0.0.0.0 alfamina.com +0.0.0.0 alison-angel-1.com +0.0.0.0 alison-angel.biz +0.0.0.0 alison-angel.org +0.0.0.0 alisonangel.at +0.0.0.0 alisonangel.cc +0.0.0.0 alisonangel.com +0.0.0.0 alisonangel.fr +0.0.0.0 alisonangelmovie.com +0.0.0.0 alisonangelrocks.com +0.0.0.0 alisonangelzone.com +0.0.0.0 alivegirls.com +0.0.0.0 alldayanalgifs.tumblr.com +0.0.0.0 allevaangelina.com +0.0.0.0 allfordrocher.com +0.0.0.0 allgaybdsm.com +0.0.0.0 allhotcams.com +0.0.0.0 allinternal.com +0.0.0.0 allisonangel.com +0.0.0.0 allisonangel.info +0.0.0.0 allisonsangels.com +0.0.0.0 allisonvirgin.com +0.0.0.0 alljapanesepass.com +0.0.0.0 allmyxxxit.tumblr.com +0.0.0.0 allofx.com +0.0.0.0 allsexblogs.com +0.0.0.0 allteeens.com +0.0.0.0 allvirgins.com +0.0.0.0 almostvirgins.com +0.0.0.0 alochucknorris.tumblr.com +0.0.0.0 alohatube.com +0.0.0.0 alonso962.tumblr.com +0.0.0.0 alotporn.com +0.0.0.0 alphaporno.com +0.0.0.0 alrincon.com +0.0.0.0 alsangel.com +0.0.0.0 alsangels.com +0.0.0.0 alsscan.com +0.0.0.0 alsscanangels.com +0.0.0.0 alt-angel.com +0.0.0.0 alt-girls-paradise.tumblr.com +0.0.0.0 alt.com +0.0.0.0 altassafadeza.tumblr.com +0.0.0.0 altingramfiyati.org +0.0.0.0 amabitch.com +0.0.0.0 amadorasblog.tumblr.com +0.0.0.0 amaland.com +0.0.0.0 amamilfs.com +0.0.0.0 amaporn.com +0.0.0.0 amateur-porn-links.com +0.0.0.0 amateur.wedoo.com +0.0.0.0 amateuralbum.net +0.0.0.0 amateurcool.com +0.0.0.0 amateurcurves.tumblr.com +0.0.0.0 amateurdumper.com +0.0.0.0 amateurfarm.net +0.0.0.0 amateurgalore.net +0.0.0.0 amateurindex.com +0.0.0.0 amateurmpeg.net +0.0.0.0 amateurpalooza.tumblr.com +0.0.0.0 amateurs-gone-wild.com +0.0.0.0 amateurseite.com +0.0.0.0 amateursexpert.com +0.0.0.0 amateursexy.net +0.0.0.0 amateurvoyeurforum.com +0.0.0.0 amateurxtv.com +0.0.0.0 amazingsexx.com +0.0.0.0 americanvirgins.net +0.0.0.0 amorix.biz +0.0.0.0 amourangels.com +0.0.0.0 amourangels.eu +0.0.0.0 amp.st.virgin.net +0.0.0.0 amsterdam-webcams.com +0.0.0.0 amsterdamned.com +0.0.0.0 amsterdamnightlife.com +0.0.0.0 amyvirgin.com +0.0.0.0 anal-porn76.tumblr.com +0.0.0.0 anal-webcams.com +0.0.0.0 analdildolesbians.com +0.0.0.0 analdin.com +0.0.0.0 analxtv.com +0.0.0.0 anawjarrate.info +0.0.0.0 andi-pink.babelogbook.com +0.0.0.0 angel-anime.com +0.0.0.0 angel-archives.com +0.0.0.0 angel-black.fr.st +0.0.0.0 angel-cassidy.net +0.0.0.0 angel-collection.com +0.0.0.0 angel-companions.co.uk +0.0.0.0 angel-dana.net.tc +0.0.0.0 angel-dark.org +0.0.0.0 angel-delite.co.uk +0.0.0.0 angel-exhib.com +0.0.0.0 angel-eyes.cjb.net +0.0.0.0 angel-of-heels.com +0.0.0.0 angel-picpost.com +0.0.0.0 angel-search.com +0.0.0.0 angel-wave.com +0.0.0.0 angel-x.com +0.0.0.0 angel-x.fr.st +0.0.0.0 angel.arings.com +0.0.0.0 angel.cn8828.com +0.0.0.0 angel.comcen.com.au +0.0.0.0 angel.ne.jp +0.0.0.0 angel.se +0.0.0.0 angel20.com +0.0.0.0 angel4christyb.com +0.0.0.0 angel4host.com +0.0.0.0 angel4u.linkarena.com +0.0.0.0 angela-devi.net +0.0.0.0 angela-taylor.org +0.0.0.0 angela.ai.net +0.0.0.0 angela.nl +0.0.0.0 angela.nu +0.0.0.0 angela.ts.free.fr +0.0.0.0 angela.uw.hu +0.0.0.0 angela1.book.fr +0.0.0.0 angela2000.de +0.0.0.0 angela21.com +0.0.0.0 angelaandrews.com +0.0.0.0 angelaathomas.com +0.0.0.0 angelacappetta.com +0.0.0.0 angeladevi.com +0.0.0.0 angeladevi.free.fr +0.0.0.0 angelagrant.com +0.0.0.0 angelalittle.net +0.0.0.0 angelamelini.com +0.0.0.0 angelarchives.com +0.0.0.0 angelartemis.an.ohost.de +0.0.0.0 angelaryan.com +0.0.0.0 angelas-sin-city.com +0.0.0.0 angelas-team.de +0.0.0.0 angelasalvagno.com +0.0.0.0 angelasavage.com +0.0.0.0 angelascloset.com +0.0.0.0 angelass.com +0.0.0.0 angelasummers.com +0.0.0.0 angelataylor.org +0.0.0.0 angelatiger.com +0.0.0.0 angelbabedebs.com +0.0.0.0 angelband.org +0.0.0.0 angelbaseball.com +0.0.0.0 angelbodywear.com +0.0.0.0 angelbust.com +0.0.0.0 angelbutton.com +0.0.0.0 angelbutton.info +0.0.0.0 angelcam.nl +0.0.0.0 angelcassidey.com +0.0.0.0 angelcassidy.com +0.0.0.0 angelcasting.net +0.0.0.0 angelcat02.skyblog.com +0.0.0.0 angelcharmswizard.com +0.0.0.0 angelchic.com +0.0.0.0 angelclip.info +0.0.0.0 angelclub.cz +0.0.0.0 angelcrack.com +0.0.0.0 angelcream.com +0.0.0.0 angeldark.nl +0.0.0.0 angeldarkhoney.com +0.0.0.0 angeldarkmovies.com +0.0.0.0 angeldarkvideos.com +0.0.0.0 angelday.info +0.0.0.0 angeldesign.org +0.0.0.0 angeldollars.com +0.0.0.0 angeldust24.com +0.0.0.0 angele-coquine.com +0.0.0.0 angelelle.com +0.0.0.0 angelesangelwitch.com +0.0.0.0 angelesbuenos.com.ar +0.0.0.0 angelescitysexguide.com +0.0.0.0 angelesdelared.webcindario.com +0.0.0.0 angelesdivinos.webcindario.com +0.0.0.0 angelesurbanos.com +0.0.0.0 angeleyes.ca +0.0.0.0 angelface.canalblog.com +0.0.0.0 angelface.hu +0.0.0.0 angelfier.com +0.0.0.0 angelfotostudio.com +0.0.0.0 angelfuns.net.tf +0.0.0.0 angelfuns.over-blog.com +0.0.0.0 angelgabriel.over-blog.com +0.0.0.0 angelglam.com +0.0.0.0 angelgo885.tumblr.com +0.0.0.0 angelheat.com +0.0.0.0 angelhousematernityhome.net +0.0.0.0 angeliberty.centerblog.net +0.0.0.0 angelic.book.fr +0.0.0.0 angelica.bella.free.fr +0.0.0.0 angelica.fr.st +0.0.0.0 angelica.tvn.hu +0.0.0.0 angelicabella.com +0.0.0.0 angelicablack.net +0.0.0.0 angelicabridges.too.it +0.0.0.0 angelicaheart.com +0.0.0.0 angelicales.com +0.0.0.0 angelicasin.com +0.0.0.0 angelicasin.net +0.0.0.0 angelicavamp.ukf.net +0.0.0.0 angelicax.free.fr +0.0.0.0 angelicbebe.vox.com +0.0.0.0 angelicfilms.com +0.0.0.0 angelicjeanette.00go.com +0.0.0.0 angelicmichele.com +0.0.0.0 angelicmusick.com +0.0.0.0 angelicumalumni.com +0.0.0.0 angelie.com +0.0.0.0 angelien.isheet.nl +0.0.0.0 angelife02.skyblog.com +0.0.0.0 angelika-club.com +0.0.0.0 angelika-l.de.nr +0.0.0.0 angelika.de +0.0.0.0 angelika.myblox.fr +0.0.0.0 angelika.net +0.0.0.0 angelikaminsk.com +0.0.0.0 angelina-and-friends.com +0.0.0.0 angelina-and-friends.eu +0.0.0.0 angelina-croft.com +0.0.0.0 angelina-jolie-nue.com +0.0.0.0 angelina-jolie.startkabel.nl +0.0.0.0 angelina-nue.over-blog.com +0.0.0.0 angelina.cz +0.0.0.0 angelina.de +0.0.0.0 angelina.home.sapo.pt +0.0.0.0 angelina4eva.tripod.com +0.0.0.0 angelinaamour.com +0.0.0.0 angelinaashe.com +0.0.0.0 angelinaashe.net +0.0.0.0 angelinaasheblog.com +0.0.0.0 angelinabamboo.com +0.0.0.0 angelinacrow.net +0.0.0.0 angelinacrow.org +0.0.0.0 angelinadevil.jouwpagina.nl +0.0.0.0 angelinajolie.abcpic.com +0.0.0.0 angelinajolie.forumfree.net +0.0.0.0 angelinajolie.nl +0.0.0.0 angelinalee.net +0.0.0.0 angelinalove.net +0.0.0.0 angelinarossi.com +0.0.0.0 angelinas-bodytalk.com +0.0.0.0 angelinas-cam.de +0.0.0.0 angelinas-heels.de +0.0.0.0 angelinavalentineblog.net +0.0.0.0 angelinavirgin.com +0.0.0.0 angelinax.fr.st +0.0.0.0 angelindevilsboots.org +0.0.0.0 angeline.webcindario.com +0.0.0.0 angelinna.free.fr +0.0.0.0 angelinoscoffee.com +0.0.0.0 angelion2.home.sapo.pt +0.0.0.0 angelique.arch.free.fr +0.0.0.0 angelique.net +0.0.0.0 angelique134.over-blog.com +0.0.0.0 angelique21.over-blog.com +0.0.0.0 angeliquejerone.com +0.0.0.0 angeliquekithos.com +0.0.0.0 angeliques.forumactif.net +0.0.0.0 angelitacosta.free.fr +0.0.0.0 angelitas.com.ar +0.0.0.0 angelitas.net +0.0.0.0 angelkiss.jp +0.0.0.0 angelkissedfeet.com +0.0.0.0 angell-summers.over-blog.com +0.0.0.0 angellafaith.com +0.0.0.0 angellong.com +0.0.0.0 angellsummers.com +0.0.0.0 angelmassage.fw.hu +0.0.0.0 angelmode.com +0.0.0.0 angelmodel.book.fr +0.0.0.0 angelmodel.info +0.0.0.0 angelmovies.com +0.0.0.0 angelmpegs.com +0.0.0.0 angelnicole.co.uk +0.0.0.0 angelochec.net +0.0.0.0 angeloflondon.com +0.0.0.0 angelofmalevolence.com +0.0.0.0 angelopetibatoo.free.fr +0.0.0.0 angelphoto.over-blog.com +0.0.0.0 angelphotos.dr.ag +0.0.0.0 angelplace.com +0.0.0.0 angels-and-demon.com +0.0.0.0 angels-archive.com +0.0.0.0 angels-bound.com +0.0.0.0 angels-devils4u.com +0.0.0.0 angels-feet.de +0.0.0.0 angels-from-asia.com +0.0.0.0 angels-heaven.fr.st +0.0.0.0 angels-in-ukraine.net +0.0.0.0 angels-of-london.com +0.0.0.0 angels-of-pain.de +0.0.0.0 angels-of-sin.com +0.0.0.0 angels-place.com +0.0.0.0 angels-sydney.over-blog.com +0.0.0.0 angels-tokyo.com +0.0.0.0 angels-videos.com +0.0.0.0 angels.altenpflege.board.de +0.0.0.0 angels.jp.land.to +0.0.0.0 angels.satyrslair.com +0.0.0.0 angels.us.tf +0.0.0.0 angels2u.co.uk +0.0.0.0 angels4you.co.uk +0.0.0.0 angels4youleeds.co.uk +0.0.0.0 angels4yousheffield.co.uk +0.0.0.0 angelsamazing.com +0.0.0.0 angelsanddaggers.com +0.0.0.0 angelscarebohol.com +0.0.0.0 angelscasting.net +0.0.0.0 angelsdemonsmasons.com +0.0.0.0 angelsdream.virtue.nu +0.0.0.0 angelsdublin.com +0.0.0.0 angelsexclusive.nl +0.0.0.0 angelsfeetsite.com +0.0.0.0 angelsfire.nl +0.0.0.0 angelsfirstaid.com +0.0.0.0 angelsgalaxy.int.tf +0.0.0.0 angelshellmouth.faithweb.com +0.0.0.0 angelshot.net +0.0.0.0 angelsinnmanali.com +0.0.0.0 angelsinsatin.com +0.0.0.0 angelsinwetts.cjb.net +0.0.0.0 angelslinks.com +0.0.0.0 angelslinks.net +0.0.0.0 angelslinks.org +0.0.0.0 angelsmist.com +0.0.0.0 angelsofalabama.com +0.0.0.0 angelsofamsterdam.com +0.0.0.0 angelsofamsterdam.nl +0.0.0.0 angelsofbeauty.fsn.net +0.0.0.0 angelsofblood.forumfree.net +0.0.0.0 angelsofdeath.info +0.0.0.0 angelsofindia.com +0.0.0.0 angelsoflondon.com +0.0.0.0 angelsofmemphis.com +0.0.0.0 angelsofmercy.org +0.0.0.0 angelsofneworleans.com +0.0.0.0 angelsofnight.com +0.0.0.0 angelsofthenight.co.uk +0.0.0.0 angelsofthenight.kostenloses-forum.be +0.0.0.0 angelsofuniverse.forumfree.net +0.0.0.0 angelsofwar.nl +0.0.0.0 angelsoi26.kt.fc2.com +0.0.0.0 angelsordevils.co.uk +0.0.0.0 angelsordevils.com +0.0.0.0 angelsouris.free.fr +0.0.0.0 angelsscort.com.mx +0.0.0.0 angelstolove.com +0.0.0.0 angelstpg.com +0.0.0.0 angelsunlimited.com +0.0.0.0 angelsupport.missioncollege.org +0.0.0.0 angelsweb.nl +0.0.0.0 angelswife.com +0.0.0.0 angelswifelovers.com +0.0.0.0 angeltel.net +0.0.0.0 angelusagi.envy.nu +0.0.0.0 angelvalentine.org +0.0.0.0 angelveil.org +0.0.0.0 angelwhite.extra.hu +0.0.0.0 angelwoods.com +0.0.0.0 angelys-club.fr +0.0.0.0 anicegoodboy.tumblr.com +0.0.0.0 animal-cartoons.com +0.0.0.0 animal6.net +0.0.0.0 animalrating.com +0.0.0.0 animals.takezoo.com +0.0.0.0 animalsex-planet.com +0.0.0.0 animatedpornblog.com +0.0.0.0 anime-angels.net +0.0.0.0 animediablo.com +0.0.0.0 animephile.com +0.0.0.0 animepornmov.com +0.0.0.0 ankaraescortbayan.net +0.0.0.0 ankaraliescort.org +0.0.0.0 ann-angel-1.com +0.0.0.0 ann-angel.com +0.0.0.0 anna-angel.com +0.0.0.0 annangel.com +0.0.0.0 annangel.fan.free.fr +0.0.0.0 annangel.net +0.0.0.0 annangel.org +0.0.0.0 annangelishot.com +0.0.0.0 annas-angels.co.uk +0.0.0.0 annasangels.co.uk +0.0.0.0 annasassets.com +0.0.0.0 annavirgin.com +0.0.0.0 annuaire-x.com +0.0.0.0 anony-sex.tumblr.com +0.0.0.0 anotherpornblog.tumblr.com +0.0.0.0 antarvasnapornvideos.com +0.0.0.0 antivirgins.com +0.0.0.0 anyporn.com +0.0.0.0 anysex.com +0.0.0.0 ao-putaria.tumblr.com +0.0.0.0 apetube.com +0.0.0.0 apina.biz +0.0.0.0 apinaporn.com +0.0.0.0 apornmovie.com +0.0.0.0 applefoam.angelfire.com +0.0.0.0 aquiwebcams.com +0.0.0.0 arab66.com +0.0.0.0 arabgfvideos.com +0.0.0.0 arabgirlsinthehood.info +0.0.0.0 arabialoveseats.info +0.0.0.0 arabianchicks.com +0.0.0.0 arabictopics.com +0.0.0.0 arabks.com +0.0.0.0 arabsexweb.com +0.0.0.0 arabvirgin.com +0.0.0.0 arabvirgins.com +0.0.0.0 arbkos.com +0.0.0.0 archangels.ws +0.0.0.0 archangelschool.org +0.0.0.0 ard.ihookup.com +0.0.0.0 arenaporno.com +0.0.0.0 arhangelsk.name +0.0.0.0 arkhangelskiy.com +0.0.0.0 arrobapay.com +0.0.0.0 artworks-blog.tumblr.com +0.0.0.0 arxhamster.com +0.0.0.0 asciipr0n.com +0.0.0.0 asertukko.angelfire.com +0.0.0.0 ashemaletube.com +0.0.0.0 ashemaletv.com +0.0.0.0 ashengineer1.tumblr.com +0.0.0.0 ashleymadison.com +0.0.0.0 asia-virgins.com +0.0.0.0 asiablue.com +0.0.0.0 asian.xxxcounter.com +0.0.0.0 asianbabesdatabase.com +0.0.0.0 asianbaes.tumblr.com +0.0.0.0 asianhumps.com +0.0.0.0 asianparade.com +0.0.0.0 asianplayboy.com +0.0.0.0 asiantubesex.com +0.0.0.0 asianxtv.com +0.0.0.0 askjolene.com +0.0.0.0 asktiava.com +0.0.0.0 asmhentai.com +0.0.0.0 ass-overdose.tumblr.com +0.0.0.0 ass1st.com +0.0.0.0 ass2waist.com +0.0.0.0 assandbuttfanclub.tumblr.com +0.0.0.0 assangels.com +0.0.0.0 assdumper.com +0.0.0.0 assesinpublicblogg.thumblogger.com +0.0.0.0 asso69110.org +0.0.0.0 asstomouthangels.ws +0.0.0.0 asstr.org +0.0.0.0 asstraffic.com +0.0.0.0 asstraffic.xlogz.com +0.0.0.0 assvirgin.com +0.0.0.0 assvirgins.com +0.0.0.0 assvirgins.net +0.0.0.0 astridsangelcash.com +0.0.0.0 astridsangels.com +0.0.0.0 ateentube.tv +0.0.0.0 athleticpleasure.tumblr.com +0.0.0.0 atk-archives.com +0.0.0.0 atkarchives.com +0.0.0.0 atkexotics.com +0.0.0.0 atkgirlfriends.com +0.0.0.0 atkhairy.com +0.0.0.0 atkmodels.com +0.0.0.0 atkpetites.com +0.0.0.0 atkpremium.com +0.0.0.0 atkpussies.com +0.0.0.0 atmmovieblog.angelfire.com +0.0.0.0 attractivesex.com +0.0.0.0 auctions.playboy.com +0.0.0.0 auntjudys.com +0.0.0.0 auntmia.com +0.0.0.0 austrian-angels.at +0.0.0.0 autolinkweb.com +0.0.0.0 avalaurenblog.com +0.0.0.0 avatarcash.com +0.0.0.0 avenida18.tumblr.com +0.0.0.0 avn.com +0.0.0.0 avseesee.com +0.0.0.0 awmads.com +0.0.0.0 awsum.me +0.0.0.0 ayanaangel.com +0.0.0.0 az7t1.com +0.0.0.0 az7t2.com +0.0.0.0 aziangals.com +0.0.0.0 azkempire.com +0.0.0.0 aztecaporno.com +0.0.0.0 b44.com +0.0.0.0 babe-lounge.com +0.0.0.0 babedump.com +0.0.0.0 babelogbook.com +0.0.0.0 babepedia.com +0.0.0.0 babesandstars.com +0.0.0.0 babesmachine.com +0.0.0.0 babesnetwork.com +0.0.0.0 babesonwebcams.com +0.0.0.0 babezblog.com +0.0.0.0 baby-angelesb.skyblog.com +0.0.0.0 baby-angelesb.skyrock.com +0.0.0.0 babygotaphatass.tumblr.com +0.0.0.0 backdoor.thumblogger.com +0.0.0.0 backseatbangers.com +0.0.0.0 badashley.com +0.0.0.0 badassangels.com +0.0.0.0 badbitchgifs.tumblr.com +0.0.0.0 baddieshumiliated.tumblr.com +0.0.0.0 badfishforums.com +0.0.0.0 badgirlsblog.com +0.0.0.0 badjojo.com +0.0.0.0 badoinkvr.com +0.0.0.0 badvirgin.com +0.0.0.0 badvirgins.com +0.0.0.0 baise-webcams.com +0.0.0.0 baisepartout.com +0.0.0.0 bak-itup.tumblr.com +0.0.0.0 balanced.gtsadsdistributed.com +0.0.0.0 ball-pain.tumblr.com +0.0.0.0 ballbustermx.tumblr.com +0.0.0.0 ballbusting-barbara.tumblr.com +0.0.0.0 ballbusting-chix.tumblr.com +0.0.0.0 ballbusting-germany.tumblr.com +0.0.0.0 ballbustingbitchesbrigade.tumblr.com +0.0.0.0 ballbustingcbt.tumblr.com +0.0.0.0 ballbustingdommes.tumblr.com +0.0.0.0 ballbustingpics.tumblr.com +0.0.0.0 ballbustingtorture.tumblr.com +0.0.0.0 ballbustingtube.com +0.0.0.0 ballerinabondagefairies.tumblr.com +0.0.0.0 baltictop.com +0.0.0.0 ban.erovideo.ru +0.0.0.0 bananabunny.com +0.0.0.0 banatdream.com +0.0.0.0 banditmovies.com +0.0.0.0 banduraangels.com +0.0.0.0 baneoftheangels.proboards106.com +0.0.0.0 bang.com +0.0.0.0 bangbros.com +0.0.0.0 bangbros1.com +0.0.0.0 bangbrosnetwork.bangbros1.com +0.0.0.0 bangbrosnetwork.com +0.0.0.0 bangbrosteenporn.com +0.0.0.0 bangbrothers.com +0.0.0.0 bangbus.com +0.0.0.0 bangbus.xlogz.com +0.0.0.0 bangxxxteens.com +0.0.0.0 bangyoulater.com +0.0.0.0 banjosack.tumblr.com +0.0.0.0 bankpower.tumblr.com +0.0.0.0 bannedcelebs.com +0.0.0.0 bannedsextapes.com +0.0.0.0 banner.celebrity-fakes.net +0.0.0.0 banner.czech-sex.cz +0.0.0.0 bannerout.com +0.0.0.0 banners.777-xxx.com +0.0.0.0 banners.adultrevenueservice.com +0.0.0.0 banners.amateurtour.com +0.0.0.0 banners.animeerotico.com +0.0.0.0 banners.bookofsex.com +0.0.0.0 banners.celebtaboo.com +0.0.0.0 banners.chicashumedas.com +0.0.0.0 banners.colegialasdesvirgadas.com +0.0.0.0 banners.eroadvertising.com +0.0.0.0 banners.fuckingdrunks.com +0.0.0.0 banners.hornywife.com +0.0.0.0 banners.lesbianascerdas.com +0.0.0.0 banners.passeilimitado.com +0.0.0.0 banners.prazerlesbico.com +0.0.0.0 banners.sotransexuais.com +0.0.0.0 banners.voyeurweb.com +0.0.0.0 banners2.eroadvertising.com +0.0.0.0 barbaruivo.tumblr.com +0.0.0.0 barefootvixens.com +0.0.0.0 barevirgins.com +0.0.0.0 basal.ca +0.0.0.0 bbp.juggcrew.com +0.0.0.0 bbsex.org +0.0.0.0 bbw.sexyads.com +0.0.0.0 bbwsexpicsmovies.com +0.0.0.0 bcfakes.com +0.0.0.0 bctapertadinhaa.tumblr.com +0.0.0.0 bdsmboard.org +0.0.0.0 bdsmcafe.com +0.0.0.0 bdsmlibrary.com +0.0.0.0 bdsmpichunter.com +0.0.0.0 bdsmstreak.com +0.0.0.0 bdsmtheory.com +0.0.0.0 bdsmxxxmovies.com +0.0.0.0 beachtoplist.com +0.0.0.0 beardysfilthemporium.tumblr.com +0.0.0.0 beat-pussy.tumblr.com +0.0.0.0 beautifulangels.com +0.0.0.0 beautifulass.sensualwriter.com +0.0.0.0 beautifullchicks.tumblr.com +0.0.0.0 beaverbattle.com +0.0.0.0 beeg.com +0.0.0.0 beemtube.com +0.0.0.0 beerandshots.com +0.0.0.0 befuck.com +0.0.0.0 bellebulle.tumblr.com +0.0.0.0 belloporno.it +0.0.0.0 benbigben7.tumblr.com +0.0.0.0 bertox.tumblr.com +0.0.0.0 best-paypornsites.com +0.0.0.0 best-virgins.com +0.0.0.0 bestangels.de +0.0.0.0 bestarabpicinthenet.info +0.0.0.0 bestarabtube.com +0.0.0.0 bestcrazyvideos.com +0.0.0.0 besteffinggifs.tumblr.com +0.0.0.0 besthotdates.com +0.0.0.0 bestlistofporn.com +0.0.0.0 bestphatchicks.com +0.0.0.0 bestpornever2014.tumblr.com +0.0.0.0 bestporngifs-ever.tumblr.com +0.0.0.0 bestporngifs.com +0.0.0.0 bestpornstardb.com +0.0.0.0 bestsexgiffer.tumblr.com +0.0.0.0 bestsexualpleasure.com +0.0.0.0 bestsexygifsontheweb.tumblr.com +0.0.0.0 betterfap.com +0.0.0.0 between-thy-sheets.tumblr.com +0.0.0.0 betweenu2.tumblr.com +0.0.0.0 bffs.com +0.0.0.0 bi-sexuall.tumblr.com +0.0.0.0 bibijonesanddillonharperrule.tumblr.com +0.0.0.0 bigbangempire.com +0.0.0.0 bigboobsalert.com +0.0.0.0 bigboobsfilm.com +0.0.0.0 bigboobsparadise.com +0.0.0.0 bigboobswebcams.com +0.0.0.0 bigbootygifs.tumblr.com +0.0.0.0 biggestboobguns.tumblr.com +0.0.0.0 biggested.tumblr.com +0.0.0.0 bigmchoy.tumblr.com +0.0.0.0 bigmouthfuls.com +0.0.0.0 bignatural.ws +0.0.0.0 bignaturalknockers.com +0.0.0.0 bignaturals-movies.com +0.0.0.0 bignaturals.com +0.0.0.0 bignaturals.de +0.0.0.0 bigtitangels.com +0.0.0.0 bigtits.com +0.0.0.0 bigtitsintightclothing.tumblr.com +0.0.0.0 bigtitslovess.tumblr.com +0.0.0.0 bigtitsonwebcams.com +0.0.0.0 biguy7.tumblr.com +0.0.0.0 bikiniporn.pics +0.0.0.0 billpics.com +0.0.0.0 bisexualtensions.tumblr.com +0.0.0.0 bitchdump.com +0.0.0.0 bitingass.tumblr.com +0.0.0.0 bizzarre.adult.directnic.com +0.0.0.0 black.xxxcounter.com +0.0.0.0 blackandshiny.com +0.0.0.0 blackangel-halle.de +0.0.0.0 blackangelica.com +0.0.0.0 blackangelvideo.com +0.0.0.0 blackassangels.com +0.0.0.0 blacked.com +0.0.0.0 blackgfs.com +0.0.0.0 blackvirgins.com +0.0.0.0 blackystars.com +0.0.0.0 blaze312.tumblr.com +0.0.0.0 bleedingvirgins.com +0.0.0.0 blitz-natursekt.de +0.0.0.0 blog.cartoonvalley.com +0.0.0.0 blog.ferronetwork.com +0.0.0.0 blog.freejuicywebcams.com +0.0.0.0 blog.gfrevenge.com +0.0.0.0 blog.yobt.com +0.0.0.0 blogangela.com +0.0.0.0 blogbang.com +0.0.0.0 blogbugs.org +0.0.0.0 blogs-list.com +0.0.0.0 blogtur.com +0.0.0.0 blondangel.de +0.0.0.0 blondangels.de +0.0.0.0 blondewebcams.com +0.0.0.0 blondexxxmag.com +0.0.0.0 bloodangels.com +0.0.0.0 bloodyvirgin.com +0.0.0.0 blow-jobs.me +0.0.0.0 blowingangels.com +0.0.0.0 blowingkisses.net +0.0.0.0 blueangel.nl +0.0.0.0 blueangel57.over-blog.com +0.0.0.0 bluewebcams.com +0.0.0.0 board.freeones.com +0.0.0.0 bob.crazyshit.com +0.0.0.0 bobiporn.com +0.0.0.0 bonabanners.co.uk +0.0.0.0 bondage-shock.com +0.0.0.0 bondage.adult.directnic.com +0.0.0.0 bondagecompanion.com +0.0.0.0 bondagefeed.tumblr.com +0.0.0.0 bondagegifslideshow.tumblr.com +0.0.0.0 bondageman.tumblr.com +0.0.0.0 bondagetube.tv +0.0.0.0 bondagewebcams.com +0.0.0.0 bonerthrob.tumblr.com +0.0.0.0 boobcritic.com +0.0.0.0 boobdrop.tumblr.com +0.0.0.0 boobieblog.com +0.0.0.0 boobies-daily.org +0.0.0.0 boobies.site +0.0.0.0 boobiesforus2.tumblr.com +0.0.0.0 boobs-4u.com +0.0.0.0 boobsaroundtheworld.com +0.0.0.0 boobsbouncing.tumblr.com +0.0.0.0 boobscategory.com +0.0.0.0 boobsinmotion.tumblr.com +0.0.0.0 boobsloverplace.tumblr.com +0.0.0.0 boobsrme1.tumblr.com +0.0.0.0 boobstr.com +0.0.0.0 boodigo.com +0.0.0.0 bookmarklinks.com +0.0.0.0 bookofsex.com +0.0.0.0 booty-walk.tumblr.com +0.0.0.0 bootycallfriends.com +0.0.0.0 bootyfix.com +0.0.0.0 bootyoftheday.co +0.0.0.0 bootyoptics.tumblr.com +0.0.0.0 bootytape.com +0.0.0.0 boquetei-ra.tumblr.com +0.0.0.0 born2bownedbyblack.tumblr.com +0.0.0.0 bos.so +0.0.0.0 bouncing-man.tumblr.com +0.0.0.0 boundandbanged.com +0.0.0.0 boxingbeanscbtblog.tumblr.com +0.0.0.0 boyfriendnetwork.com +0.0.0.0 boysfood.com +0.0.0.0 br.youporn.com +0.0.0.0 brandibelle.bangbros1.com +0.0.0.0 brandys-box.com +0.0.0.0 brasiltudoliberado.com +0.0.0.0 bravoteens.com +0.0.0.0 bravotube.net +0.0.0.0 bravsbookmarks.com +0.0.0.0 brazilvirgin.com +0.0.0.0 brazilvirgina.com +0.0.0.0 brazzers.com +0.0.0.0 brazzersnetwork.com +0.0.0.0 brdteengal.com +0.0.0.0 breathlessangel.com +0.0.0.0 briceangel.over-blog.com +0.0.0.0 brickhousebetty.net +0.0.0.0 brilliantboobsworld.tumblr.com +0.0.0.0 britishcoeds.com +0.0.0.0 britlascivious.tumblr.com +0.0.0.0 britneyvirgin.com +0.0.0.0 bronzeadultblogs.com +0.0.0.0 brothelangelsladies.com +0.0.0.0 brownbunnies.com +0.0.0.0 browneyedangel83.freewebpages.org +0.0.0.0 brunetteangel.com +0.0.0.0 brunetteangels.com +0.0.0.0 brutal-cock-ball-torture.tumblr.com +0.0.0.0 brutalviolence.com +0.0.0.0 btas.juggcrew.com +0.0.0.0 bubblebuttbonanza.com +0.0.0.0 bubblebuttsgalore.com +0.0.0.0 buck-angel.com +0.0.0.0 buckangel.blog-paradijs.com +0.0.0.0 buckangel.com +0.0.0.0 buckangel.maakjestart.nl +0.0.0.0 buckangel.nl +0.0.0.0 buckangelbucks.com +0.0.0.0 buckangelvod.com +0.0.0.0 bulktube.com +0.0.0.0 bullporn.com +0.0.0.0 bunnyteensmovies.com +0.0.0.0 burningangel.com +0.0.0.0 burningangel.net +0.0.0.0 burningcamel.com +0.0.0.0 burningcamel.org +0.0.0.0 bursa.escortgirl.asia +0.0.0.0 bursahaliyikamak.com +0.0.0.0 bursasporteam.com +0.0.0.0 buscadordewebcams.com +0.0.0.0 business-angel.info +0.0.0.0 bustnow.com +0.0.0.0 busty-and-hot.tumblr.com +0.0.0.0 busty-asian.org +0.0.0.0 bustyasians.site +0.0.0.0 bustygirlsblog.com +0.0.0.0 bustyvixen.net +0.0.0.0 buttgifs.com +0.0.0.0 buttnakedinthestreets.com +0.0.0.0 buttsinmotion.tumblr.com +0.0.0.0 buzzwebcams.com +0.0.0.0 bwlesbians.com +0.0.0.0 bx.pornotgp.net +0.0.0.0 byot.adultrevenueservice.com +0.0.0.0 c.urvy.org +0.0.0.0 c1.x-traceur.com +0.0.0.0 cadillacangels.com +0.0.0.0 cafedeangel.net +0.0.0.0 cagnaporno.com +0.0.0.0 cai-dee-boca.tumblr.com +0.0.0.0 caiunoxvideos.com.br +0.0.0.0 californiavirgins.com +0.0.0.0 calll-home.tumblr.com +0.0.0.0 callmeyourbbygirl.tumblr.com +0.0.0.0 cam4.com +0.0.0.0 camcaps.net +0.0.0.0 camcrush.com +0.0.0.0 camelcookie.com +0.0.0.0 camelmedia.net +0.0.0.0 camelstyle.net +0.0.0.0 camgasm.com +0.0.0.0 camplacelatinas.com +0.0.0.0 campreferral.angelfire.com +0.0.0.0 cams.com +0.0.0.0 camsangels.com +0.0.0.0 camshowdownloads.com +0.0.0.0 camshunt.com +0.0.0.0 camsoda.com +0.0.0.0 camster.com +0.0.0.0 camwhores.co +0.0.0.0 camwhores.tv +0.0.0.0 camworld.nl +0.0.0.0 camz.com +0.0.0.0 camzter.com +0.0.0.0 canalporno.com +0.0.0.0 canalwebcams.com +0.0.0.0 candidbeachangels.com +0.0.0.0 cantender.com +0.0.0.0 cantfitinbikeshorts.tumblr.com +0.0.0.0 cantstophentai.tumblr.com +0.0.0.0 captainramirez123.tumblr.com +0.0.0.0 captcrunch24.tumblr.com +0.0.0.0 captiveangels.com +0.0.0.0 cardsgate-cs.com +0.0.0.0 carlhardwick.com +0.0.0.0 carpediem.fr +0.0.0.0 cartoon-3x.com +0.0.0.0 cartoonpornvideos.com +0.0.0.0 cartoontube.com +0.0.0.0 cartoonvalley.com +0.0.0.0 carumbas.com +0.0.0.0 casalingheporno.it +0.0.0.0 cashangel.de +0.0.0.0 cassies-classy-lassies.thumblogger.com +0.0.0.0 cat-clothes.angelfire.com +0.0.0.0 cbentai.tumblr.com +0.0.0.0 cbird.sextracker.com +0.0.0.0 cbmb1.tumblr.com +0.0.0.0 cbt-fetish.tumblr.com +0.0.0.0 cbtextremeuk.tumblr.com +0.0.0.0 cbtforfun.tumblr.com +0.0.0.0 ccgals.com +0.0.0.0 ccleaner.com +0.0.0.0 cdn-i-am-bored.com +0.0.0.0 cdn.ftvgirls.com +0.0.0.0 cdn.mb.datingadzone.com +0.0.0.0 cdn.watchmygf.com +0.0.0.0 cdn1.premiumhdv.com +0.0.0.0 cdn2.ads.datinggold.com +0.0.0.0 cearalynch.tumblr.com +0.0.0.0 celeb.gate.cc +0.0.0.0 celebflix.us +0.0.0.0 celebritiesonvideo.thumblogger.com +0.0.0.0 celebrity-fakes.net +0.0.0.0 celebritywar.com +0.0.0.0 celebsking.com +0.0.0.0 celebsnudeworld.com +0.0.0.0 celebsroulette.com +0.0.0.0 celebsuncensored.com +0.0.0.0 celebtaboo.com +0.0.0.0 celebuzz.com +0.0.0.0 cesky-sex.cz +0.0.0.0 cfake.com +0.0.0.0 cfnmidol.com +0.0.0.0 champnewgameronline.angelfire.com +0.0.0.0 chan.sankakucomplex.com +0.0.0.0 changelingpress.com +0.0.0.0 changels.net +0.0.0.0 charlisangels.com +0.0.0.0 charming-angels.net +0.0.0.0 charnelz.tumblr.com +0.0.0.0 chastityjam.tumblr.com +0.0.0.0 chat-webcams.com +0.0.0.0 chat.adultfriendfinder.com +0.0.0.0 chatboxwebcams.com +0.0.0.0 chatischat.com +0.0.0.0 chatroulette.com +0.0.0.0 chaturbate.com +0.0.0.0 chaturbatetrans.com +0.0.0.0 chatzozo.com +0.0.0.0 cheapadultdvd.com +0.0.0.0 cheekybanners.com +0.0.0.0 cheerleader-webcams.com +0.0.0.0 cheggit.me +0.0.0.0 cherry-boobssex.tumblr.com +0.0.0.0 cherrynovelty.com +0.0.0.0 chezangelique.free.fr +0.0.0.0 chibiangel86.bravejournal.com +0.0.0.0 chicaangelical.com.ar +0.0.0.0 chicasconwebcams.com.ar +0.0.0.0 chicasenwebcams.com +0.0.0.0 chicashumedas.com +0.0.0.0 chicaswebcams.com +0.0.0.0 chickenbanners.com +0.0.0.0 chickenhost.com +0.0.0.0 chikcz.tumblr.com +0.0.0.0 chinese-angels.com +0.0.0.0 chinmaster.com +0.0.0.0 chloes-angels.com +0.0.0.0 chris.virginradioblog.fr +0.0.0.0 chrisangel.canalblog.com +0.0.0.0 christinaangel.com +0.0.0.0 chubby-teen.com +0.0.0.0 chumleaf.com +0.0.0.0 chunkyangels.com +0.0.0.0 chunkybutts.com +0.0.0.0 chunkytgp.net +0.0.0.0 chupaminhabct.tumblr.com +0.0.0.0 chupandocomhallspreto.tumblr.com +0.0.0.0 chupo-vc.tumblr.com +0.0.0.0 chyoa.com +0.0.0.0 cinemaden.com +0.0.0.0 cinextravadaz.blogs.allocine.fr +0.0.0.0 circleofxxx.com +0.0.0.0 citysex.com +0.0.0.0 clamsangels.com +0.0.0.0 classy-angel.com +0.0.0.0 classyangel.com +0.0.0.0 click.dtiserv2.com +0.0.0.0 click.revsharecash.com +0.0.0.0 click.xxxofferz.com +0.0.0.0 clicks.babylon-x.com +0.0.0.0 clickthru.aebn.net +0.0.0.0 clipcake.com +0.0.0.0 cliphunter.com +0.0.0.0 clit1.sex-tracker.com +0.0.0.0 clit1.sextracker.de +0.0.0.0 clit10.sex-tracker.com +0.0.0.0 clit10.sextracker.de +0.0.0.0 clit11.sex-tracker.com +0.0.0.0 clit11.sextracker.de +0.0.0.0 clit12.sex-tracker.com +0.0.0.0 clit12.sextracker.de +0.0.0.0 clit2.sex-tracker.com +0.0.0.0 clit2.sextracker.de +0.0.0.0 clit3.sex-tracker.com +0.0.0.0 clit3.sextracker.de +0.0.0.0 clit4.sex-tracker.com +0.0.0.0 clit4.sextracker.de +0.0.0.0 clit5.sex-tracker.com +0.0.0.0 clit5.sextracker.de +0.0.0.0 clit6.sex-tracker.com +0.0.0.0 clit6.sextracker.de +0.0.0.0 clit7.sex-tracker.com +0.0.0.0 clit7.sextracker.de +0.0.0.0 clit8.sex-tracker.com +0.0.0.0 clit8.sextracker.de +0.0.0.0 clit9.sex-tracker.com +0.0.0.0 clit9.sextracker.de +0.0.0.0 cliter.com +0.0.0.0 clitgames.com +0.0.0.0 cliti.com +0.0.0.0 clothedfemalesnudewomen.tumblr.com +0.0.0.0 club-angelinavalentine.com +0.0.0.0 club-ass.tumblr.com +0.0.0.0 club-evaangelina.com +0.0.0.0 club-virgins.com +0.0.0.0 clubaudriannaangel.com +0.0.0.0 clubbestangels.de +0.0.0.0 cluberosatlanta.com +0.0.0.0 clubevaangelina.net +0.0.0.0 clubrejal.com +0.0.0.0 clubseventeen.com +0.0.0.0 clubseventeenvideos.com +0.0.0.0 clubvirgins.com +0.0.0.0 cnnamador.com +0.0.0.0 cock-crazy.tumblr.com +0.0.0.0 cock-desire.tumblr.com +0.0.0.0 cockyeyedtwat.tumblr.com +0.0.0.0 cocogals.com +0.0.0.0 codecguide.com +0.0.0.0 coedcherry.com +0.0.0.0 colegialasdesvirgadas.com +0.0.0.0 colegialasdeverdad.com +0.0.0.0 collectionofbestporn +0.0.0.0 collectionofbestporn.com +0.0.0.0 collectionofbestporn.comvideoashlyn-rae-loves-her-sweet-pussy-fucked.html +0.0.0.0 college-teen-sex.com +0.0.0.0 college-webcams.com +0.0.0.0 collegegirlwebcams.com +0.0.0.0 collegerules.com +0.0.0.0 collegevirgins.com +0.0.0.0 collegewildparties.com +0.0.0.0 colliderporn.com +0.0.0.0 comicunivers.com +0.0.0.0 commetvidsnow.com +0.0.0.0 confessionangel.canalblog.com +0.0.0.0 conquerorofvirgins.com +0.0.0.0 content.adameve.com +0.0.0.0 content1.adameve.com +0.0.0.0 content2.adameve.com +0.0.0.0 content3.adameve.com +0.0.0.0 contents.sex-explorer.com +0.0.0.0 coomgirls.com +0.0.0.0 coopguy.tumblr.com +0.0.0.0 copyrait.angelfire.com +0.0.0.0 coqnu.com +0.0.0.0 coquine-angeline.net +0.0.0.0 corta-pra-18-sp.tumblr.com +0.0.0.0 corta-pra-18.tumblr.com +0.0.0.0 cougar-rencontre.net +0.0.0.0 cougarlife.com +0.0.0.0 cougarsandcream.com +0.0.0.0 count.fuckunion.com +0.0.0.0 counter1.sextracker.de +0.0.0.0 counter10.sextracker.de +0.0.0.0 counter11.sextracker.de +0.0.0.0 counter12.sextracker.de +0.0.0.0 counter2.sextracker.de +0.0.0.0 counter3.sextracker.de +0.0.0.0 counter4.sextracker.de +0.0.0.0 counter5.sextracker.de +0.0.0.0 counter6.sextracker.de +0.0.0.0 counter7.sextracker.de +0.0.0.0 counter8.sextracker.de +0.0.0.0 counter9.sextracker.de +0.0.0.0 counterimg1.adultrevenueservice.com +0.0.0.0 couplesseduceteens.com +0.0.0.0 courtneyvirgin.com +0.0.0.0 cousinherm.tumblr.com +0.0.0.0 crazyasiangfs.com +0.0.0.0 crazycollegegfs.com +0.0.0.0 crazydumper.com +0.0.0.0 crazyhotemoteens.tumblr.com +0.0.0.0 crazyshit.com +0.0.0.0 crazywebcams.com +0.0.0.0 crazyxxx3dworld.com +0.0.0.0 creamasia.adult.directnic.com +0.0.0.0 creamgoodies.com +0.0.0.0 creamyangels.com +0.0.0.0 crefviby.angelfire.com +0.0.0.0 creoads.com +0.0.0.0 crocotube.com +0.0.0.0 crookedfedora.tumblr.com +0.0.0.0 cryangel.com +0.0.0.0 cstarty.tumblr.com +0.0.0.0 ctc.japaneseanime.com +0.0.0.0 cuckold69.com +0.0.0.0 cum4all.tumblr.com +0.0.0.0 cumforcover.com +0.0.0.0 cumlouder.com +0.0.0.0 cummingwithconsequences.tumblr.com +0.0.0.0 cummypantyhose.com +0.0.0.0 cumonmybody.tumblr.com +0.0.0.0 cumonprintedpics.com +0.0.0.0 cumpleaser.com +0.0.0.0 cumridden.com +0.0.0.0 cumshotscenes.com +0.0.0.0 cumswap.net +0.0.0.0 cumwithfriends.tumblr.com +0.0.0.0 cunt-zz.tumblr.com +0.0.0.0 cuntest.com +0.0.0.0 cupofsingles.com +0.0.0.0 curvyangel.com +0.0.0.0 curvyerotic.com +0.0.0.0 custom.videosz.com +0.0.0.0 cute-virgins.net +0.0.0.0 cuteagexoxo.tumblr.com +0.0.0.0 cutegurlz.com +0.0.0.0 cuteincuffs.tumblr.com +0.0.0.0 cuterussianboys.com +0.0.0.0 cuteteenvideo.com +0.0.0.0 cutewebcams.com +0.0.0.0 cutiesinstockings.com +0.0.0.0 cutiesintights.com +0.0.0.0 cyberangels.org +0.0.0.0 cybercouple.tumblr.com +0.0.0.0 cybererotica.com +0.0.0.0 cybereroticamobile.com +0.0.0.0 cybertoplists.com +0.0.0.0 cynegetic.tumblr.com +0.0.0.0 cynicalangel.com +0.0.0.0 cz.pornhub.com +0.0.0.0 czech-teens.com +0.0.0.0 czech-virgins.com +0.0.0.0 czechav.com +0.0.0.0 czechfantasy.com +0.0.0.0 czechhd.net +0.0.0.0 czechvr.com +0.0.0.0 d2r2xsm2cbt.tumblr.com +0.0.0.0 dacash.com +0.0.0.0 daclick.com +0.0.0.0 daddyscumkittens.tumblr.com +0.0.0.0 daddystigerlily.tumblr.com +0.0.0.0 daddysworstnightmare.com +0.0.0.0 dafeet.thumblogger.com +0.0.0.0 daftporn.com +0.0.0.0 dailee.com +0.0.0.0 dailybasis.com +0.0.0.0 dakarlove.virginradioblog.fr +0.0.0.0 damimage.com +0.0.0.0 damnage.com +0.0.0.0 damnhellasskings.com +0.0.0.0 damnlinks.com +0.0.0.0 damselsandothersexyness.tumblr.com +0.0.0.0 dan81.com +0.0.0.0 dancefox.net +0.0.0.0 dancingbear.com +0.0.0.0 dangeloalicante.com +0.0.0.0 dangelopalace.com +0.0.0.0 danimiles.com +0.0.0.0 dansmovies.com +0.0.0.0 daphnerougeworld.tumblr.com +0.0.0.0 daporn.com +0.0.0.0 daporno.tumblr.com +0.0.0.0 dare-to-be-bare96.tumblr.com +0.0.0.0 daredorm.com +0.0.0.0 dark-angel.nl +0.0.0.0 darkangel-sm.de +0.0.0.0 darkangel.com +0.0.0.0 darkangellair.com +0.0.0.0 darkangelonline.nl +0.0.0.0 darkangels12.14.forumer.com +0.0.0.0 darkangelsuni52.jun.pl +0.0.0.0 darkcruisingay.tumblr.com +0.0.0.0 data-ero-advertising.com +0.0.0.0 dating-banners.com +0.0.0.0 dating.friendsearch.com +0.0.0.0 datingamateurs.com +0.0.0.0 daundhier.tumblr.com +0.0.0.0 davecummings.com +0.0.0.0 davidsangels.net +0.0.0.0 dbnaked.com +0.0.0.0 dddtits.com +0.0.0.0 ddfnetwork.com +0.0.0.0 ddorfprivat.de +0.0.0.0 ddvdja.angelfire.com +0.0.0.0 de.porn.com +0.0.0.0 de.pornhub.com +0.0.0.0 de.youporn.com +0.0.0.0 deep-in-me-please.tumblr.com +0.0.0.0 deesseangelina.free.fr +0.0.0.0 definebabe.com +0.0.0.0 definefetish.com +0.0.0.0 degrade-the-bitch.tumblr.com +0.0.0.0 delhisexchat.com +0.0.0.0 deluxebabes.com +0.0.0.0 depositodevideos.com.br +0.0.0.0 depravedangel.unblog.fr +0.0.0.0 depravedangels.com +0.0.0.0 dequatroprosexo.tumblr.com +0.0.0.0 der-wallstreet-trick.eu +0.0.0.0 desadesangels.com +0.0.0.0 descobertasdoprazer.tumblr.com +0.0.0.0 desibees.com +0.0.0.0 desihotpoint.com +0.0.0.0 desikahani.net +0.0.0.0 desipapa.com +0.0.0.0 desire-released.tumblr.com +0.0.0.0 desktopangels.net +0.0.0.0 destinyangel.net +0.0.0.0 deviantclip.com +0.0.0.0 devicebondage.com +0.0.0.0 devil-galleries.com +0.0.0.0 devils-angels.com +0.0.0.0 devirginize.com +0.0.0.0 devirginized.com +0.0.0.0 dex59.exmasters.com +0.0.0.0 dex75.exmasters.com +0.0.0.0 dgyjeic.angelfire.com +0.0.0.0 dia-traffic.com +0.0.0.0 dick-n-jane.com +0.0.0.0 dickievirgin.com +0.0.0.0 dickievirgin.org +0.0.0.0 dicktricks.com +0.0.0.0 digitalangelblog.com +0.0.0.0 digitalangeldollars.com +0.0.0.0 digitaldesire.com +0.0.0.0 digitalplayground.com +0.0.0.0 diksex.tumblr.com +0.0.0.0 dilf.com +0.0.0.0 dimosquit.tumblr.com +0.0.0.0 dinathumbs.com +0.0.0.0 dinotube.com +0.0.0.0 directgov-co-uk.9hz.com +0.0.0.0 direction-x.com +0.0.0.0 directmaster.tumblr.com +0.0.0.0 directorio-webcams.com +0.0.0.0 directoriowebcams.com +0.0.0.0 directtrafficlink.com +0.0.0.0 diredhead.tumblr.com +0.0.0.0 dirty101.com +0.0.0.0 dirtybay.tumblr.com +0.0.0.0 dirtybetty.tumblr.com +0.0.0.0 dirtybondagetgp.com +0.0.0.0 dirtydeniseworld.tumblr.com +0.0.0.0 dirtydirtyangels.com +0.0.0.0 dirtyfinder.com +0.0.0.0 dirtygifsnotmore.tumblr.com +0.0.0.0 dirtygifts.tumblr.com +0.0.0.0 dirtyhippysub.tumblr.com +0.0.0.0 dirtylesbo.com +0.0.0.0 dirtypornpics.tumblr.com +0.0.0.0 dirtypornvids.com +0.0.0.0 dirtyrottenwhore.com +0.0.0.0 dirtyroulette.com +0.0.0.0 dirtyshack.com +0.0.0.0 dirwebcams.com +0.0.0.0 disappointedvirginity.com +0.0.0.0 discreetangels.net +0.0.0.0 disney-xxx.net +0.0.0.0 dixiedonovanlive.tumblr.com +0.0.0.0 dla3hotbanat.info +0.0.0.0 dlisted.com +0.0.0.0 dmssapp.tumblr.com +0.0.0.0 dnvideos.com +0.0.0.0 doctor-adventures.xlogz.com +0.0.0.0 doctorvoluptua.com +0.0.0.0 dodaivirgin.fora.pl +0.0.0.0 dogdick.smackjeeves.com +0.0.0.0 dogfartnetwork.com +0.0.0.0 dogmeout.tumblr.com +0.0.0.0 doidaporsexo.tumblr.com +0.0.0.0 dollyvisha.tumblr.com +0.0.0.0 dolphin-angel-readings.com +0.0.0.0 dominate-me-pls.tumblr.com +0.0.0.0 dominationwebcams.com +0.0.0.0 dominawebcams.com +0.0.0.0 dommevee.tumblr.com +0.0.0.0 domofslaves.tumblr.com +0.0.0.0 donfreeporn.com +0.0.0.0 donkparty.com +0.0.0.0 dontstayvirgin.movielol.org +0.0.0.0 doublepenetrationvids.com +0.0.0.0 doubleviking.com +0.0.0.0 doujin-moe.us +0.0.0.0 doujins.com +0.0.0.0 download.cnet.com +0.0.0.0 drago99.com +0.0.0.0 drainednutz.tumblr.com +0.0.0.0 drchaoss.tumblr.com +0.0.0.0 dreamamateurs.com +0.0.0.0 dreamangelsny.com +0.0.0.0 dreambabes.eu +0.0.0.0 dreameskisehir.com +0.0.0.0 dreamgirlonline.com +0.0.0.0 dreammovies.com +0.0.0.0 drstrangelove.com +0.0.0.0 drtuber.com +0.0.0.0 drunkpichunter.com +0.0.0.0 drunkporn.us +0.0.0.0 drunksexygirls.com +0.0.0.0 dumbvirgins.com +0.0.0.0 dump.xxx +0.0.0.0 dumppix.com +0.0.0.0 dungeonvirgins.com +0.0.0.0 dutchangels.nl +0.0.0.0 dvangels.com +0.0.0.0 dvdboys.com +0.0.0.0 dvdtrailertube.com +0.0.0.0 dylansballs26.tumblr.com +0.0.0.0 e-orgasm.org +0.0.0.0 eastdown67.tumblr.com +0.0.0.0 easy.9hz.com +0.0.0.0 easypic.com +0.0.0.0 easysex.com +0.0.0.0 easysexdate.com +0.0.0.0 ebaumsworld.com +0.0.0.0 ebonypichunter.com +0.0.0.0 ebonywankbank.tumblr.com +0.0.0.0 ebonyxxxnsfw74982875937y.tumblr.com +0.0.0.0 eccie.net +0.0.0.0 edenfantasys.com +0.0.0.0 edgarsalas7928.tumblr.com +0.0.0.0 efukt.com +0.0.0.0 egbo.com +0.0.0.0 ejzbrokenangelz.com +0.0.0.0 ekyolou.angelfire.com +0.0.0.0 elangelito.com +0.0.0.0 elegantangel.com +0.0.0.0 elegantangelblog.com +0.0.0.0 elegantangelppv.com +0.0.0.0 elegantangelvod.com +0.0.0.0 elegantdirtyporn.tumblr.com +0.0.0.0 elenaangel.canalblog.com +0.0.0.0 elephanttube.com +0.0.0.0 elisitas.angelfire.com +0.0.0.0 elunesangels.com +0.0.0.0 emeraldporn.com +0.0.0.0 eminotobursa.com +0.0.0.0 emo-porn.com +0.0.0.0 emoandscenegirls.com +0.0.0.0 empflix.com +0.0.0.0 empireamateurs.com +0.0.0.0 empornium.me +0.0.0.0 en.gay-lounge.net +0.0.0.0 enature.net +0.0.0.0 enaturist.com +0.0.0.0 enjoragif.tumblr.com +0.0.0.0 enjoy3dporn.com +0.0.0.0 enjoyangels.com +0.0.0.0 entensity.net +0.0.0.0 enter.babesnetwork.com +0.0.0.0 enter.brazzersnetwork.com +0.0.0.0 enter.iknowthatgirl.com +0.0.0.0 enter.javhd.com +0.0.0.0 enter.mofosnetwork.com +0.0.0.0 enter.mommygotboobs.com +0.0.0.0 enter.sexproadventures.com +0.0.0.0 enter.teenslikeitbig.com +0.0.0.0 eporner.com +0.0.0.0 erinvirgin.com +0.0.0.0 erito.com +0.0.0.0 ero-love.com +0.0.0.0 eroadvertising.com +0.0.0.0 erodynamics.nl +0.0.0.0 erogarden.blogspot.com +0.0.0.0 erooups.com +0.0.0.0 eroprofile.com +0.0.0.0 eros.com +0.0.0.0 erosberry.com +0.0.0.0 erosblog.com +0.0.0.0 eroshare.com +0.0.0.0 eroswebcams.com +0.0.0.0 erotic-behavior.tumblr.com +0.0.0.0 erotic-endeavors.tumblr.com +0.0.0.0 erotic-pictures-blog.com +0.0.0.0 erotica-addiction.tumblr.com +0.0.0.0 erotica7.com +0.0.0.0 erotically-ridiculous.tumblr.com +0.0.0.0 eroticarabstories.info +0.0.0.0 eroticast.net +0.0.0.0 eroticbeauties.net +0.0.0.0 eroticdisney.com +0.0.0.0 erotici.angelcities.com +0.0.0.0 eroticity.net +0.0.0.0 eroticmatch.com +0.0.0.0 eroticmonkey.com +0.0.0.0 eroticsymphonies.com +0.0.0.0 erotikbaskent.tumblr.com +0.0.0.0 erotique-webcams.com +0.0.0.0 erotische-webcams.com +0.0.0.0 erotizer.info +0.0.0.0 erowebcams.com +0.0.0.0 eroxia.com +0.0.0.0 es.porn.com +0.0.0.0 es.pornhub.com +0.0.0.0 es.youporn.com +0.0.0.0 escort23.com +0.0.0.0 escortankarada.org +0.0.0.0 escortankarali.net +0.0.0.0 escortbayanankaratc.net +0.0.0.0 escortdirectory.com +0.0.0.0 escortguide.com +0.0.0.0 escortvips.net +0.0.0.0 escravadoprazer.tumblr.com +0.0.0.0 eskisehirhayal.com +0.0.0.0 eskisehiryenigun.com +0.0.0.0 essexbill.tumblr.com +0.0.0.0 estudiosexual.com +0.0.0.0 eswebcams.com +0.0.0.0 eternallyedged.tumblr.com +0.0.0.0 ethnicangel.com +0.0.0.0 eudelicia-elesafado.tumblr.com +0.0.0.0 euphoriaporn.com +0.0.0.0 euro-angels.com +0.0.0.0 eurogalz.com +0.0.0.0 eurogirlsescort.com +0.0.0.0 european-angels.com +0.0.0.0 europewebcams.com +0.0.0.0 europornstar.com +0.0.0.0 eva-angelina-1.com +0.0.0.0 eva-angelina-pics.com +0.0.0.0 eva-angelina.info +0.0.0.0 eva-angelina.net +0.0.0.0 evaangel.net +0.0.0.0 evaangelina-tube.com +0.0.0.0 evaangelina.canalblog.com +0.0.0.0 evaangelina.fr +0.0.0.0 evaangelina.org +0.0.0.0 evaangelina.ws +0.0.0.0 evaangelinablog.com +0.0.0.0 evaangelinablog.net +0.0.0.0 evaangelinaonline.com +0.0.0.0 evaangelinapics.com +0.0.0.0 evaangelinavideos.net +0.0.0.0 evaangelinax.com +0.0.0.0 evababy90.tumblr.com +0.0.0.0 evaevangelina.net +0.0.0.0 evangelicaloutpost.com +0.0.0.0 evangelicaloutreach.org +0.0.0.0 evangelineanderson.com +0.0.0.0 evangelinehaughney.com +0.0.0.0 evangelinelilly.free.fr +0.0.0.0 evangelio.com +0.0.0.0 evangelion-lemon.freehostia.com +0.0.0.0 evasiveangels.com +0.0.0.0 evavirgin.com +0.0.0.0 eve-angel.com +0.0.0.0 eveangel.com +0.0.0.0 eveangel.hu +0.0.0.0 eveangel.sensualwriter.com +0.0.0.0 eveangel.us +0.0.0.0 eveangelfreetour.com +0.0.0.0 eveangeli.free.fr +0.0.0.0 eveangelina.net +0.0.0.0 eveangelpic.com +0.0.0.0 everybodygethorny.tumblr.com +0.0.0.0 everyfetishyoucouldthinkof.tumblr.com +0.0.0.0 evilangel.com +0.0.0.0 evilangel.fr +0.0.0.0 evilangel.over-blog.com +0.0.0.0 evilangelcash.com +0.0.0.0 evilangeldirect.com +0.0.0.0 evilangellive.com +0.0.0.0 evilangelppv.com +0.0.0.0 evilangelvideo.com +0.0.0.0 ex1.exmasters.com +0.0.0.0 ex10.exmasters.com +0.0.0.0 ex11.exmasters.com +0.0.0.0 ex12.exmasters.com +0.0.0.0 ex13.exmasters.com +0.0.0.0 ex14.exmasters.com +0.0.0.0 ex2.exmasters.com +0.0.0.0 ex3.exmasters.com +0.0.0.0 ex4.exmasters.com +0.0.0.0 ex5.exmasters.com +0.0.0.0 ex6.exmasters.com +0.0.0.0 ex7.exmasters.com +0.0.0.0 ex8.exmasters.com +0.0.0.0 ex9.exmasters.com +0.0.0.0 excellentwebcams.com +0.0.0.0 exgecash.de +0.0.0.0 excittingteenbabes.tumblr.com +0.0.0.0 exclusive.bannedcelebs.com +0.0.0.0 exclusivepussy.com +0.0.0.0 execistern.tumblr.com +0.0.0.0 exgfphotos.com +0.0.0.0 exgfpics.com +0.0.0.0 exit.ptekcom.com +0.0.0.0 exit.zoodollars.com +0.0.0.0 exits.adultpaymaster.com +0.0.0.0 exquisiteangelz.com +0.0.0.0 exquisiteerotica.tumblr.com +0.0.0.0 exsentrik.tumblr.com +0.0.0.0 exteriorexpertsofvirginia.com +0.0.0.0 extremebig.com +0.0.0.0 extremetube.com +0.0.0.0 extrime-list.com +0.0.0.0 exwifesexbook.com +0.0.0.0 exxxtrasmall.com +0.0.0.0 eyehandy.com +0.0.0.0 ez-pornbabes.tumblr.com +0.0.0.0 ez5ez5xxx.info +0.0.0.0 ezazrakfriends.info +0.0.0.0 eztzvuzvuz.info +0.0.0.0 faaascu.angelfire.com +0.0.0.0 faapy.com +0.0.0.0 fablesofanhedonia.tumblr.com +0.0.0.0 facebook-girl.com +0.0.0.0 facebook-of-sex.com +0.0.0.0 facebook-pour-adulte.over-blog.fr +0.0.0.0 facebook.bi +0.0.0.0 facebookofporn.com +0.0.0.0 facebookofsex.over-blog.com +0.0.0.0 facebooksex.over-blog.com +0.0.0.0 facebooksexo.com +0.0.0.0 faceporn.com +0.0.0.0 facialsaregoodforskin.tumblr.com +0.0.0.0 faithvirgin.com +0.0.0.0 fakehub.com +0.0.0.0 fakethebitch.com +0.0.0.0 fakku.net +0.0.0.0 fallen-angels-production.de +0.0.0.0 fallenangelfuns.com +0.0.0.0 fallenangelproductions.com +0.0.0.0 fallenangelvideo.com +0.0.0.0 fallenvirgin.com +0.0.0.0 familystrokes.com +0.0.0.0 famous-babes.net +0.0.0.0 famous-people-nude.com +0.0.0.0 famousboard.com +0.0.0.0 fanlistings.angelic-trust.net +0.0.0.0 fantasti.cc +0.0.0.0 fantasy4you.info +0.0.0.0 fantasyhd.com +0.0.0.0 fantasywebcams.com +0.0.0.0 faontk.tumblr.com +0.0.0.0 fap1.com +0.0.0.0 fapd.com +0.0.0.0 fapdu.com +0.0.0.0 fapgay.com +0.0.0.0 fappers.org +0.0.0.0 fappingclub.com +0.0.0.0 fappingtogifs.tumblr.com +0.0.0.0 fappyness.com +0.0.0.0 fapset.com +0.0.0.0 fapteentube.com +0.0.0.0 faptube.com +0.0.0.0 faptv.com +0.0.0.0 fapulike.com +0.0.0.0 fapvidhd.com +0.0.0.0 farmingideas.tumblr.com +0.0.0.0 fartfantasyxxx.tumblr.com +0.0.0.0 fastsexdate.com +0.0.0.0 fastsurf.9hz.com +0.0.0.0 fatangel.com +0.0.0.0 fatbackmedia.com +0.0.0.0 fatbeurettess.tumblr.com +0.0.0.0 fatchickens.net +0.0.0.0 fatpichunter.com +0.0.0.0 fattyangels.com +0.0.0.0 favouritecash.com +0.0.0.0 fbbtop100.com +0.0.0.0 fcklady.tumblr.com +0.0.0.0 feetwebcams.com +0.0.0.0 felony-angel.blogdrive.com +0.0.0.0 felonyangel.com +0.0.0.0 femalecoming.com +0.0.0.0 femdom-stuff-world.tumblr.com +0.0.0.0 femdom-tube.com +0.0.0.0 femdom.sensualwriter.com +0.0.0.0 femdomblueballs.tumblr.com +0.0.0.0 femdomcc.com +0.0.0.0 femdomdraw.com +0.0.0.0 femdomfiles.tumblr.com +0.0.0.0 femdomgif.tumblr.com +0.0.0.0 femdomporn.site +0.0.0.0 femdomruinedorgasms.tumblr.com +0.0.0.0 femdomspotlight.tumblr.com +0.0.0.0 femdomworld.com +0.0.0.0 femjoyangels.com +0.0.0.0 feralsex.com +0.0.0.0 ferronetwork.com +0.0.0.0 fetisch-webcams.com +0.0.0.0 fetish.xxxcounter.com +0.0.0.0 fetishbabes.tumblr.com +0.0.0.0 fetishdollars.net +0.0.0.0 fetishfantasyfreak.tumblr.com +0.0.0.0 fetishforbeauty.com +0.0.0.0 fetishfreakwebcams.com +0.0.0.0 fetishgle.tumblr.com +0.0.0.0 fetishnetwork.com +0.0.0.0 fetishpapa.com +0.0.0.0 fetishshrine.com +0.0.0.0 fetishvideos.tumblr.com +0.0.0.0 fffrankk.tumblr.com +0.0.0.0 ffkk.me +0.0.0.0 fhg.dacash.com +0.0.0.0 fhg.dirty101.com +0.0.0.0 fhg.iknowthatgirl.com +0.0.0.0 fhg.lezbohoneys.com +0.0.0.0 fhg.lezcuties.com +0.0.0.0 fhg.stormmedia.com +0.0.0.0 figaitaliana.com +0.0.0.0 fightingangels.fsn.net +0.0.0.0 filediva.com +0.0.0.0 filefactory.com +0.0.0.0 filestube.com +0.0.0.0 filipinavirgin.net +0.0.0.0 filipinawebcams.com +0.0.0.0 fill.juicyads.com +0.0.0.0 filles-webcams.com +0.0.0.0 film-x-gratos.com +0.0.0.0 filmikiporno.tv +0.0.0.0 filmxxx.it +0.0.0.0 filthygifs.tumblr.com +0.0.0.0 finder-x.com +0.0.0.0 findtubes.com +0.0.0.0 fineartteens.com +0.0.0.0 finegirlsdailydeepthroat.tumblr.com +0.0.0.0 finevids.xxx +0.0.0.0 fioxeug.angelfire.com +0.0.0.0 first-mature.com +0.0.0.0 fisgonclub.com +0.0.0.0 fisherlicious.tumblr.com +0.0.0.0 fisting-maniacs.com +0.0.0.0 flagrasamadores.net +0.0.0.0 flashapp.xziptv.com +0.0.0.0 flashingblog.com +0.0.0.0 flashme2.tumblr.com +0.0.0.0 flashwebcams.com +0.0.0.0 flashybabes.com +0.0.0.0 flatchestedangels.com +0.0.0.0 flavinha.com +0.0.0.0 flawlessteenz.tumblr.com +0.0.0.0 fleetwoodfilmsltd.com +0.0.0.0 fleshbot.com +0.0.0.0 fleshhole.com +0.0.0.0 fleshlight.com +0.0.0.0 fleshlightgirls.com +0.0.0.0 fleshlightreviews.net +0.0.0.0 fling.com +0.0.0.0 flingtube.com +0.0.0.0 flyflv.com +0.0.0.0 flyingjizz.com +0.0.0.0 fncash.com +0.0.0.0 foaks.com +0.0.0.0 foo6bordelsonthenet.info +0.0.0.0 fookgle.com +0.0.0.0 footangels.com +0.0.0.0 footfetishchicks.com +0.0.0.0 footfootage.com +0.0.0.0 footjobdiary.com +0.0.0.0 fooxy.com +0.0.0.0 forcedorgasmdomination.tumblr.com +0.0.0.0 foreqew.angelfire.com +0.0.0.0 forgotten-angels.de +0.0.0.0 forgotten_dark_angel.tripod.com +0.0.0.0 forum.adultdvdtalk.com +0.0.0.0 forum.oneclickchicks.com +0.0.0.0 forum.phun.org +0.0.0.0 forum.xnxx.com +0.0.0.0 forum.yobt.com +0.0.0.0 forumophilia.com +0.0.0.0 forums.neswangy.net +0.0.0.0 forums.sexyandfunny.com +0.0.0.0 foto-bugil.tumblr.com +0.0.0.0 foto-porno.it +0.0.0.0 foxhq.com +0.0.0.0 foxporns.com +0.0.0.0 foxyreviews.com +0.0.0.0 fpfreegals.com +0.0.0.0 fr.porn.com +0.0.0.0 fr.pornhub.com +0.0.0.0 fr.wedoo.com +0.0.0.0 fr.youporn.com +0.0.0.0 franco.evangelista.free.fr +0.0.0.0 frathousefuckfest.com +0.0.0.0 frauenhasser.info +0.0.0.0 freakygirlsarethehottest.tumblr.com +0.0.0.0 free--webcams.com +0.0.0.0 free-asian-webcams.com +0.0.0.0 free-babes-webcams.com +0.0.0.0 free-famous-toons.com +0.0.0.0 free-gay-webcams.com +0.0.0.0 free-hardcoresex.org +0.0.0.0 free-lesbian-pic.in +0.0.0.0 free-nylon-porn.com +0.0.0.0 free-porn-galleries.biz +0.0.0.0 free-sex-cat.com +0.0.0.0 free-sex-sexy-gallery.net +0.0.0.0 free-the-nipple.tumblr.com +0.0.0.0 free-toplisten.at +0.0.0.0 free-webcams.com +0.0.0.0 free.angels-list.com +0.0.0.0 free.atkpremium.com +0.0.0.0 free.femdomdraw.com +0.0.0.0 free.fuckbook.cm +0.0.0.0 free.slavecomics.com +0.0.0.0 free.vidz.com +0.0.0.0 free18.net +0.0.0.0 freeadultmedia.com +0.0.0.0 freeadultsource.com +0.0.0.0 freeamateurstube.com +0.0.0.0 freeamatureporn.com +0.0.0.0 freeandeasyangels.homestead.com +0.0.0.0 freeatkgals.com +0.0.0.0 freebestsexstories.com +0.0.0.0 freeblogsearch.com +0.0.0.0 freecc.sex-explorer.com +0.0.0.0 freedailyvirgins.com +0.0.0.0 freefuckvidz.com +0.0.0.0 freehindisexstories.com +0.0.0.0 freehqsex.com +0.0.0.0 freeinterracialgalleries.com +0.0.0.0 freejav.us +0.0.0.0 freejpgseries.com +0.0.0.0 freejuicywebcams.com +0.0.0.0 freelive-webcams.com +0.0.0.0 freematureworld.com +0.0.0.0 freeones.com +0.0.0.0 freepicsandmovies.com +0.0.0.0 freepicsmovies.net +0.0.0.0 freeporn.com +0.0.0.0 freepornbr.com +0.0.0.0 freepornhq.xxx +0.0.0.0 freepornofreeporn.com +0.0.0.0 freepornsubmits.com +0.0.0.0 freesexdoor.com +0.0.0.0 freesexnavigator.com +0.0.0.0 freesexparadise.com +0.0.0.0 freesexyindians.com +0.0.0.0 freeshemalewebcams.com +0.0.0.0 freespanking.com.ar +0.0.0.0 freeviewmovies.com +0.0.0.0 freewebcams.com +0.0.0.0 freewebcams.com.au +0.0.0.0 freexxxpages.net +0.0.0.0 fresh-n-tender.com +0.0.0.0 freshangel.com +0.0.0.0 freshpornline.com +0.0.0.0 freshxxxclips.com +0.0.0.0 freudbox.com +0.0.0.0 frhsex.com +0.0.0.0 fritchy.com +0.0.0.0 frwebcams.com +0.0.0.0 ftop.ru +0.0.0.0 ftvblog.info +0.0.0.0 ftvgirls.com +0.0.0.0 fuck-babes.tumblr.com +0.0.0.0 fuck-me-till-the-end.tumblr.com +0.0.0.0 fuckbook.cm +0.0.0.0 fuckbook.com +0.0.0.0 fuckcksmxnxjs.tumblr.com +0.0.0.0 fuckedvirgingirls.com +0.0.0.0 fuckervids.com +0.0.0.0 fuckherass.net +0.0.0.0 fucking-good-porn.tumblr.com +0.0.0.0 fuckinsilly.com +0.0.0.0 fuckler.com +0.0.0.0 fucklikeagod.tumblr.com +0.0.0.0 fuckmaturewhore.com +0.0.0.0 fuckmyindiangf.com +0.0.0.0 fuckmymoistcunt.tumblr.com +0.0.0.0 fuckmymommyandme.com +0.0.0.0 fuckmysarah.tumblr.com +0.0.0.0 fucksluts.adult.directnic.com +0.0.0.0 fuckstarts.net +0.0.0.0 fucksucknswallow.tumblr.com +0.0.0.0 fuckteenpussy.net +0.0.0.0 fuckthatwasgreat.tumblr.com +0.0.0.0 fuckthegifs.tumblr.com +0.0.0.0 fucktheworld5150.tumblr.com +0.0.0.0 fucktube.com +0.0.0.0 fuckuh.com +0.0.0.0 fuckvideo.org +0.0.0.0 fuckyeahballbusting.tumblr.com +0.0.0.0 fuckyoucash.com +0.0.0.0 fudochi.angelfire.com +0.0.0.0 fukfantasi3s.tumblr.com +0.0.0.0 fullhdxxx.com +0.0.0.0 fullteensporn.com +0.0.0.0 fullxxxmovies.net +0.0.0.0 funpic.hu +0.0.0.0 funwebcams.com +0.0.0.0 fuq.com +0.0.0.0 fuqer.com +0.0.0.0 furious-angel.com +0.0.0.0 fuskator.com +0.0.0.0 futahentai.com +0.0.0.0 futanarizone.tumblr.com +0.0.0.0 fux.com +0.0.0.0 fuxybabes.com +0.0.0.0 fymeir.angelfire.com +0.0.0.0 g-o-z-a-r.tumblr.com +0.0.0.0 g.e-hentai.org +0.0.0.0 gabe6146.tumblr.com +0.0.0.0 gabrio.com +0.0.0.0 gaggedandtied.tumblr.com +0.0.0.0 galerie.olduvsen.cz +0.0.0.0 galleries.aboutgirlslove.com +0.0.0.0 galleries.aebn.net +0.0.0.0 galleries.analdildolesbians.com +0.0.0.0 galleries.bwlesbians.com +0.0.0.0 galleries.dacash.com +0.0.0.0 galleries.danimiles.com +0.0.0.0 galleries.elitedollars.com +0.0.0.0 galleries.fuckingdrunks.com +0.0.0.0 galleries.lesanal.com +0.0.0.0 galleries.mallcom.com +0.0.0.0 galleries.payserve.com +0.0.0.0 galleries.pimproll.com +0.0.0.0 galleries.realblacklesbians.com +0.0.0.0 galleries.sterlingcash.com +0.0.0.0 galleries.teensexmovs.com +0.0.0.0 galleries.titanime.com +0.0.0.0 galleries.videosz.com +0.0.0.0 galleries1.mastersitepass.com +0.0.0.0 galleries2.ftvcash.com +0.0.0.0 gallerygalore.net +0.0.0.0 gallfree.com +0.0.0.0 galls.maniacpass.com +0.0.0.0 gallys.gfrevenge.com +0.0.0.0 gals.teachtwinks.com +0.0.0.0 gamcore.com +0.0.0.0 gamelink.com +0.0.0.0 gameofporn.net +0.0.0.0 games.filestube.com +0.0.0.0 gamesofdesire.com +0.0.0.0 gangbanganal.com +0.0.0.0 gangbangsquad.com +0.0.0.0 gangster-angel.startertjes.nl +0.0.0.0 ganik97.tumblr.com +0.0.0.0 gapingangels.com +0.0.0.0 garrett95959595.tumblr.com +0.0.0.0 gatelevel.angelfire.com +0.0.0.0 gay-webcams.com +0.0.0.0 gay.xxxcounter.com +0.0.0.0 gayhitlist.com +0.0.0.0 gaymaletube.com +0.0.0.0 gaysexwebcams.com +0.0.0.0 gaysonwebcams.com +0.0.0.0 gayswebcams.com +0.0.0.0 gaytwinkwebcams.com +0.0.0.0 gaywebcams.com +0.0.0.0 gbcash.com +0.0.0.0 gdoeuut.angelfire.com +0.0.0.0 geempired.tumblr.com +0.0.0.0 gelbooru.com +0.0.0.0 genericporn.tumblr.com +0.0.0.0 gentlemansjack.tumblr.com +0.0.0.0 getbigvids.com +0.0.0.0 getfiredup4.tumblr.com +0.0.0.0 getfirefox.com +0.0.0.0 getnudies.com +0.0.0.0 gettinghardertoshowit.tumblr.com +0.0.0.0 gfleaks.com +0.0.0.0 gfrevenge.com +0.0.0.0 gfx2.slickcams.com +0.0.0.0 gfy-porn.com +0.0.0.0 ggurls.com +0.0.0.0 ghettotube.com +0.0.0.0 gibby666.tumblr.com +0.0.0.0 gif-porn.com +0.0.0.0 giffies.com +0.0.0.0 gifmeat.tumblr.com +0.0.0.0 gifmeporn-net.tumblr.com +0.0.0.0 gifporndaily.tumblr.com +0.0.0.0 gifpornheaven.tumblr.com +0.0.0.0 gifporntube.com +0.0.0.0 gifs-24.tumblr.com +0.0.0.0 gifs-of-god-nsfw.tumblr.com +0.0.0.0 gifsfor.com +0.0.0.0 gifshub.com +0.0.0.0 giftube.com +0.0.0.0 girlfriend-selfies.tumblr.com +0.0.0.0 girlfriendgalleries.net +0.0.0.0 girlfriendsfilms.com +0.0.0.0 girlfriendvideos.com +0.0.0.0 girlfriendvids.net +0.0.0.0 girlishcuriosity.tumblr.com +0.0.0.0 girlmovieit.tumblr.com +0.0.0.0 girlongirlong1rl.tumblr.com +0.0.0.0 girls-girls-girls-only.tumblr.com +0.0.0.0 girlscanner.com +0.0.0.0 girlsdoporn.com +0.0.0.0 girlsgirlsand-moregirls.tumblr.com +0.0.0.0 girlsgonewild.com +0.0.0.0 girlslovejizz.tumblr.com +0.0.0.0 girlsongirlstube.com +0.0.0.0 girlsontheknees.tumblr.com +0.0.0.0 girlsphotohunting.tumblr.com +0.0.0.0 girlsway.com +0.0.0.0 girlswithgirlsarehot.tumblr.com +0.0.0.0 girlycherrygalaxy.tumblr.com +0.0.0.0 girlygifporn.tumblr.com +0.0.0.0 givemepink.xlogz.com +0.0.0.0 gjuoloi.angelfire.com +0.0.0.0 glamour-tgp.com +0.0.0.0 glamourmilf.com +0.0.0.0 glamourmodelsdirectory.com +0.0.0.0 glossyangels.info +0.0.0.0 glxgroup.com +0.0.0.0 gmattsaki.tumblr.com +0.0.0.0 go-sexogostoso.tumblr.com +0.0.0.0 gobdsm.com +0.0.0.0 goddessblessyou2.thumblogger.com +0.0.0.0 godefloration.net +0.0.0.0 godsartnudes.com +0.0.0.0 gogoangels.com +0.0.0.0 goldhdtube.com +0.0.0.0 goldteenvideos.com +0.0.0.0 gonorar.com +0.0.0.0 goobenz.tumblr.com +0.0.0.0 goodcleansex.tumblr.com +0.0.0.0 gotowebcams.com +0.0.0.0 gotporn.com +0.0.0.0 gotwhatideserved.tumblr.com +0.0.0.0 gqigjgs.angelfire.com +0.0.0.0 gramponante.com +0.0.0.0 grandmasterscone.tumblr.com +0.0.0.0 grannyangel.com +0.0.0.0 graphics.cams.com +0.0.0.0 graphics.friendfinder.com +0.0.0.0 graphics.passion.com +0.0.0.0 gratuit.porn.fr +0.0.0.0 grayvee.com +0.0.0.0 grazzier.hopto.org +0.0.0.0 greatvirgins.com +0.0.0.0 greenangelonline.com +0.0.0.0 greenfox15.tumblr.com +0.0.0.0 gregorie.angelfire.com +0.0.0.0 groovybus.com +0.0.0.0 groupandsex.com +0.0.0.0 groups.filestube.com +0.0.0.0 grow-it-bigger.tumblr.com +0.0.0.0 grupomedicosanangel.com +0.0.0.0 gtaangels.net +0.0.0.0 guaranteedsexdate.com +0.0.0.0 guardalaporno.com +0.0.0.0 guarrasdelporno.xxx +0.0.0.0 guitarmaniac9405.tumblr.com +0.0.0.0 guterporn.xxx +0.0.0.0 gymnastsnude.com +0.0.0.0 h---o---t.tumblr.com +0.0.0.0 h-top.com +0.0.0.0 h2porn.com +0.0.0.0 haarige-angelegenheit.de +0.0.0.0 hacky-gif.tumblr.com +0.0.0.0 hairtostaywebcams.com +0.0.0.0 hairypichunter.com +0.0.0.0 hanime.tv +0.0.0.0 happy-porn.com +0.0.0.0 hard-tube-hd.com +0.0.0.0 hardanime.com +0.0.0.0 hardassed.com +0.0.0.0 hardasses.com +0.0.0.0 hardcartoon.com +0.0.0.0 hardcore.xxxcounter.com +0.0.0.0 hardcorefuckpics.tumblr.com +0.0.0.0 harddaddy.com +0.0.0.0 harddickproject.com +0.0.0.0 hardfreshmen.com +0.0.0.0 hardgirls.nl +0.0.0.0 hardhut.com +0.0.0.0 hardissimo.org +0.0.0.0 hardjpegs.com +0.0.0.0 hardlads.com +0.0.0.0 hardlatinavideos.com +0.0.0.0 hardlicks.com +0.0.0.0 hardnastygifs.tumblr.com +0.0.0.0 hardnstraight.com +0.0.0.0 hardsexpleasures.com +0.0.0.0 hardsextube.com +0.0.0.0 hardsu.net +0.0.0.0 hardtobuy.com +0.0.0.0 hardtv.com +0.0.0.0 hardvirgins.com +0.0.0.0 hardwayout.com +0.0.0.0 hardwomen.com +0.0.0.0 hardxtc.com +0.0.0.0 hardxxxclips.com +0.0.0.0 hardxxxvids.com +0.0.0.0 hardyoungporn.com +0.0.0.0 hazehim.com +0.0.0.0 hbobs-tube.com +0.0.0.0 hbrowse.com +0.0.0.0 hc0303.tumblr.com +0.0.0.0 hclips.com +0.0.0.0 hd-easyporn.com +0.0.0.0 hdhighresporn.tumblr.com +0.0.0.0 hdmmovies.sex +0.0.0.0 hdmovz.com +0.0.0.0 hdporn.net +0.0.0.0 hdpornclimb.com +0.0.0.0 hdpornclub.org +0.0.0.0 hdporner720.com +0.0.0.0 hdpornfull.com +0.0.0.0 hdpornmobilex.com +0.0.0.0 hdpornochief.com +0.0.0.0 hdpornstar.com +0.0.0.0 hdpornvideo.xxx +0.0.0.0 hdqualitymovies.com +0.0.0.0 hdxxx.me +0.0.0.0 hdzog.com +0.0.0.0 heartfeltangels.com +0.0.0.0 heartless-angels.discutfree.com +0.0.0.0 heaven666.org +0.0.0.0 heavenlytranny.com +0.0.0.0 heavensangelsreadings.com +0.0.0.0 hegixic.angelfire.com +0.0.0.0 hell-angel.com +0.0.0.0 hellporno.com +0.0.0.0 hentai-foundry.com +0.0.0.0 hentai-hole.tumblr.com +0.0.0.0 hentai-top100.com +0.0.0.0 hentai.ms +0.0.0.0 hentai.xxx +0.0.0.0 hentai2read.com +0.0.0.0 hentai2w.com +0.0.0.0 hentai4manga.com +0.0.0.0 hentaicrunch.com +0.0.0.0 hentaifit.com +0.0.0.0 hentaifromhell.org +0.0.0.0 hentaigasm.com +0.0.0.0 hentaihaven.org +0.0.0.0 hentaihere.com +0.0.0.0 hentailisting.com +0.0.0.0 hentaipassport.com +0.0.0.0 hentaiplay.net +0.0.0.0 hentairules.net +0.0.0.0 hentaischool.com +0.0.0.0 hentaiseeker.com +0.0.0.0 hentaistream.com +0.0.0.0 hentaitoonami.com +0.0.0.0 hentaivideoworld.com +0.0.0.0 hentaiweeb.com +0.0.0.0 hentaixtv.com +0.0.0.0 her69.net +0.0.0.0 heretocheeruup.tumblr.com +0.0.0.0 herfirstanalsex.com +0.0.0.0 herfirstbigcock.com +0.0.0.0 herfirstdv.biz +0.0.0.0 herfirstlesbiansex.com +0.0.0.0 herrin-angela.ch +0.0.0.0 herrin-angela.de +0.0.0.0 hesporn.com +0.0.0.0 hetero.xxxcounter.com +0.0.0.0 hetewebcams.com +0.0.0.0 heyculito.tumblr.com +0.0.0.0 hiddenwebcams.com +0.0.0.0 hide-porn.winsite.com +0.0.0.0 hidefporn.ws +0.0.0.0 hideip.9hz.com +0.0.0.0 highonsex.net +0.0.0.0 highschoolvirgin.com +0.0.0.0 highwaydude.angelfire.com +0.0.0.0 hipstertits.com +0.0.0.0 hirsutewebcams.com +0.0.0.0 his-ruined-orgasm.tumblr.com +0.0.0.0 hitahottie.com +0.0.0.0 hitx.xxxstatistics.com +0.0.0.0 hmrc-gov-uk.9hz.com +0.0.0.0 hobomovies.com +0.0.0.0 hogclips.com +0.0.0.0 holloporn.com +0.0.0.0 hollywoodlife.com +0.0.0.0 hollywoodtuna.com +0.0.0.0 holylol.com +0.0.0.0 holytaco.com +0.0.0.0 holywebcams.com +0.0.0.0 homegrownfreaks.net +0.0.0.0 homegrownvideo.com +0.0.0.0 homemadevids.net +0.0.0.0 homemoviestube.com +0.0.0.0 homepornvideotube.com +0.0.0.0 homevideoplace.com +0.0.0.0 homexfiles.com +0.0.0.0 homo6.com +0.0.0.0 homosrus.com +0.0.0.0 honeyvirgins.com +0.0.0.0 hoodamateurs.com +0.0.0.0 hookup.com +0.0.0.0 hoozurdaddy.tumblr.com +0.0.0.0 hopma002.tumblr.com +0.0.0.0 horade-prazer.tumblr.com +0.0.0.0 hornbunny.com +0.0.0.0 horndog-millionaire.tumblr.com +0.0.0.0 horny-katy.tumblr.com +0.0.0.0 horny-maker.tumblr.com +0.0.0.0 hornymatches.com +0.0.0.0 hornyncurvy.tumblr.com +0.0.0.0 hornypharaoh.com +0.0.0.0 hornysophie.tumblr.com +0.0.0.0 hornyspots.com +0.0.0.0 hornythoughts.tumblr.com +0.0.0.0 hornywhores.net +0.0.0.0 hornywhoreslovecock.tumblr.com +0.0.0.0 hornywife.com +0.0.0.0 hoseangel.com +0.0.0.0 hostave4.net +0.0.0.0 hosted.met-art.com +0.0.0.0 hosting01.hotchyx.com +0.0.0.0 hot-dailygirls.tumblr.com +0.0.0.0 hot-girls-suck-dick.tumblr.com +0.0.0.0 hot-lesbian-girls-on.tumblr.com +0.0.0.0 hot-porn-clips.com +0.0.0.0 hot-sexgifs.tumblr.com +0.0.0.0 hot-webcams.com +0.0.0.0 hot-yesmessenger.com +0.0.0.0 hotadultstuff.com +0.0.0.0 hotanalxxxpics.tumblr.com +0.0.0.0 hotarabchat.com +0.0.0.0 hotassholefever.thumblogger.com +0.0.0.0 hotbabespix.tumblr.com +0.0.0.0 hotbabeswithundercut.tumblr.com +0.0.0.0 hotbodies.thumblogger.com +0.0.0.0 hotboy42.tumblr.com +0.0.0.0 hotcams.com +0.0.0.0 hotcandyland.com +0.0.0.0 hotcartoonstore.com +0.0.0.0 hotchapatialbums.info +0.0.0.0 hotchickwebcams.com +0.0.0.0 hotchyx.com +0.0.0.0 hotclips24.com +0.0.0.0 hotdamnsam.com +0.0.0.0 hotelangel.co.jp +0.0.0.0 hotelmgp.com +0.0.0.0 hotfapfapgirls.tumblr.com +0.0.0.0 hotfetishwebcams.com +0.0.0.0 hotfreesex4all.com +0.0.0.0 hotfreewebcams.com +0.0.0.0 hotgfselfshots.tumblr.com +0.0.0.0 hotgirlcentral.com +0.0.0.0 hotgirlsfc.tumblr.com +0.0.0.0 hothothotpixxx.tumblr.com +0.0.0.0 hotmalepics.com +0.0.0.0 hotmasturbatingchicks.tumblr.com +0.0.0.0 hotmilfpictures.com +0.0.0.0 hotmomfree.com +0.0.0.0 hotmovs.com +0.0.0.0 hotnakedmoms.com +0.0.0.0 hotporndaily.tumblr.com +0.0.0.0 hotpornshow.com +0.0.0.0 hotsaunababes.info +0.0.0.0 hotscope.tv +0.0.0.0 hotshame.com +0.0.0.0 hotshemalewebcams.com +0.0.0.0 hotsologirlz.net +0.0.0.0 hotsouthindiansex.com +0.0.0.0 hotstunners.com +0.0.0.0 hottest-gif.tumblr.com +0.0.0.0 hottestfuckingporngifs.tumblr.com +0.0.0.0 hottestvids.tumblr.com +0.0.0.0 hottestville.tumblr.com +0.0.0.0 hottiesinheat.thumblogger.com +0.0.0.0 hottrimmedpussy.tumblr.com +0.0.0.0 hottystop.com +0.0.0.0 hotwettube.com +0.0.0.0 hotyoungnude.com +0.0.0.0 housewifebangers.com +0.0.0.0 housewifewebcams.com +0.0.0.0 hpiffnt.angelfire.com +0.0.0.0 hpjav.com +0.0.0.0 hq69.com +0.0.0.0 hqbabes.com +0.0.0.0 hqboobs.com +0.0.0.0 hqbutt.com +0.0.0.0 hqgal.com +0.0.0.0 hqonlinemovies.com +0.0.0.0 hqporner.com +0.0.0.0 hqporner.comstudiowow-girls +0.0.0.0 hqpornweb.com +0.0.0.0 hqprn.com +0.0.0.0 hqtgp.com +0.0.0.0 hqtube.com +0.0.0.0 hqualityporn.com +0.0.0.0 hqvirgins.com +0.0.0.0 hqyoungtube.com +0.0.0.0 hsvirgins.com +0.0.0.0 html.sxx.com +0.0.0.0 hugeboobsgalore.com +0.0.0.0 hugecockshotgirls.tumblr.com +0.0.0.0 hugetraffic.com +0.0.0.0 hughsangels.proboards27.com +0.0.0.0 hulahoopnaked.tumblr.com +0.0.0.0 humiliated-male.tumblr.com +0.0.0.0 humoron.com +0.0.0.0 humoronline.com +0.0.0.0 hungangels.com +0.0.0.0 hungarian-babes.com +0.0.0.0 huntedangels.com +0.0.0.0 hunting-for-bambi.com +0.0.0.0 hurbel.tumblr.com +0.0.0.0 hush-inspiration.tumblr.com +0.0.0.0 hushaccess.com +0.0.0.0 hushpass.com +0.0.0.0 hustlaz.com +0.0.0.0 hustler.com +0.0.0.0 hyperku.info +0.0.0.0 i-am-bored.com +0.0.0.0 i-likeitrough-ok.tumblr.com +0.0.0.0 i-want-to-fuckyou.tumblr.com +0.0.0.0 i.voffka.com +0.0.0.0 i3.fvporn.com +0.0.0.0 i4.fvporn.com +0.0.0.0 iafd.com +0.0.0.0 iamincognito45.tumblr.com +0.0.0.0 ibannerx.com +0.0.0.0 icams.com +0.0.0.0 icanhazchat.com +0.0.0.0 iceporn.com +0.0.0.0 ichan.org +0.0.0.0 icoodvd.com +0.0.0.0 icoonet.com +0.0.0.0 ifriends.net +0.0.0.0 ifwcash.com +0.0.0.0 ih4.gamecopyworld.com +0.0.0.0 ihookup.com +0.0.0.0 iknowthatgirl.com +0.0.0.0 ilike6996.tumblr.com +0.0.0.0 ilikeandloveallporn.tumblr.com +0.0.0.0 iliy-mineevyp8x.tumblr.com +0.0.0.0 ilovealisonangel.com +0.0.0.0 ilovebdsm.net +0.0.0.0 iloveboobsdaily.tumblr.com +0.0.0.0 ilovemixedwrestling.tumblr.com +0.0.0.0 ilovesafad3za.tumblr.com +0.0.0.0 ilovetsgirlstwinksbbc.tumblr.com +0.0.0.0 imagearn.com +0.0.0.0 imagebam.com +0.0.0.0 imagefap.com +0.0.0.0 imagepost.com +0.0.0.0 images.adster.com +0.0.0.0 images.brookeskye.com +0.0.0.0 images.galleries.pornpros.com +0.0.0.0 images.partie-privee.com +0.0.0.0 images.pimproll.com +0.0.0.0 images.sexsearch.com +0.0.0.0 images.streamray.com +0.0.0.0 images3.bustyvixen.net +0.0.0.0 imagevenue.com +0.0.0.0 imageweb.ws +0.0.0.0 imagezilla.net +0.0.0.0 imagezog.com +0.0.0.0 img.celeb.gate.cc +0.0.0.0 img.freexxxpages.net +0.0.0.0 img.gallfree.com +0.0.0.0 img.persiankitty.com +0.0.0.0 img.xziptv.com +0.0.0.0 img01.redtubefiles.com +0.0.0.0 img01.xziptv.com +0.0.0.0 img02.redtubefiles.com +0.0.0.0 img02.xziptv.com +0.0.0.0 img03.redtubefiles.com +0.0.0.0 img03.xziptv.com +0.0.0.0 img04.redtubefiles.com +0.0.0.0 img04.xziptv.com +0.0.0.0 img1.hotcartoonstore.com +0.0.0.0 img100.xvideos.com +0.0.0.0 img2.hotcartoonstore.com +0.0.0.0 img24.org +0.0.0.0 img3.hotcartoonstore.com +0.0.0.0 imgbox.com +0.0.0.0 imgtaxi.com +0.0.0.0 imgtornado.com +0.0.0.0 imlive.com +0.0.0.0 immxdzc.angelfire.com +0.0.0.0 imperiodefamosas.com +0.0.0.0 impornoaddict.tumblr.com +0.0.0.0 imzog.com +0.0.0.0 in.blondexxxmag.com +0.0.0.0 in.hardasses.com +0.0.0.0 inaturist.com +0.0.0.0 incestflix.com +0.0.0.0 incestqueen.tumblr.com +0.0.0.0 incognitopartyservice.com +0.0.0.0 incubeangel.over-blog.com +0.0.0.0 indapool.com +0.0.0.0 indeedy.tumblr.com +0.0.0.0 independent-angels.co.uk +0.0.0.0 indianangels.net +0.0.0.0 indiangfvideos.com +0.0.0.0 indianhiddencams.com +0.0.0.0 indianpharma.info +0.0.0.0 indianpichunter.com +0.0.0.0 indianpornvideos.com +0.0.0.0 indiansexmms.co +0.0.0.0 indiansexstories.net +0.0.0.0 indiansexxxtube.com +0.0.0.0 indienudes.com +0.0.0.0 inflamescabaret.tumblr.com +0.0.0.0 ingrid.angeloglou.free.fr +0.0.0.0 inmyshoes13.tumblr.com +0.0.0.0 innocent-beauty.com +0.0.0.0 innocenthentai.com +0.0.0.0 insanebooty.tumblr.com +0.0.0.0 insanecockbrothas.com +0.0.0.0 insideangels.forumcommunity.net +0.0.0.0 insideevilangel.com +0.0.0.0 instant-access.sex-explorer.com +0.0.0.0 instantfap.com +0.0.0.0 internetsbestsluts.tumblr.com +0.0.0.0 interracial-porn-gifs.tumblr.com +0.0.0.0 inthecrack.com +0.0.0.0 intimatewebcams.com +0.0.0.0 intoxicatingirls.tumblr.com +0.0.0.0 intporn.com +0.0.0.0 inxporn.com +0.0.0.0 ipadporns.xxx +0.0.0.0 iphide.9hz.com +0.0.0.0 ipornogratis.xxx +0.0.0.0 ipornovideos.xxx +0.0.0.0 iptorrents.com +0.0.0.0 irathur.tumblr.com +0.0.0.0 iron-jawed-angels.com +0.0.0.0 ironic-testicles.tumblr.com +0.0.0.0 irvirgins.deluxepass.com +0.0.0.0 isaboteadori.tumblr.com +0.0.0.0 iseekgirls.com +0.0.0.0 iseekyoung.com +0.0.0.0 isexychat.com +0.0.0.0 ishootporn.com +0.0.0.0 islivewebcams.com +0.0.0.0 it.porn.com +0.0.0.0 it.pornhub.com +0.0.0.0 it.youporn.com +0.0.0.0 italiahard.it +0.0.0.0 ithinkthatshot.com +0.0.0.0 itsallaboutfaces.tumblr.com +0.0.0.0 itsgonnahurt.com +0.0.0.0 itskelseyobsession.tumblr.com +0.0.0.0 iuehulb.angelfire.com +0.0.0.0 ivanafukalot.com +0.0.0.0 ivhunter.com +0.0.0.0 iwank.tv +0.0.0.0 iwantporn.net +0.0.0.0 iwanttocrushmyballs.tumblr.com +0.0.0.0 iwantu.com +0.0.0.0 iwillalwayslustyou.tumblr.com +0.0.0.0 ixior-nl.tumblr.com +0.0.0.0 ixtractor.com +0.0.0.0 ixxx.com +0.0.0.0 iyottube.com +0.0.0.0 izporn.net +0.0.0.0 jabcomix.com +0.0.0.0 jackboxharddrive.com +0.0.0.0 jackcollinsm.tumblr.com +0.0.0.0 janesguide.com +0.0.0.0 japan-whores.com +0.0.0.0 japanangels.com +0.0.0.0 japanese-porn-gif.tumblr.com +0.0.0.0 japanese-virgins.com +0.0.0.0 japaneseanime.com +0.0.0.0 japanxangels.com +0.0.0.0 jartna-fadaih.com +0.0.0.0 jartna.com +0.0.0.0 jasmin-webcams.com +0.0.0.0 jasmin.com +0.0.0.0 jasminsangels.com +0.0.0.0 jav247.net +0.0.0.0 jav789.com +0.0.0.0 javchan.me +0.0.0.0 javclub.net +0.0.0.0 javdude.com +0.0.0.0 javeu.com +0.0.0.0 javfree.org +0.0.0.0 javhd.com +0.0.0.0 javhd.today +0.0.0.0 javhd3x.com +0.0.0.0 javhdfree.net +0.0.0.0 javhq.net +0.0.0.0 javleak.com +0.0.0.0 javmobile.net +0.0.0.0 javsd.net +0.0.0.0 javstreams.me +0.0.0.0 javtasty.com +0.0.0.0 jb1341.tumblr.com +0.0.0.0 jbace1.tumblr.com +0.0.0.0 jdforum.net +0.0.0.0 jdownloader.org +0.0.0.0 jealoussissy.tumblr.com +0.0.0.0 jeeves28.tumblr.com +0.0.0.0 jennavirgin.com +0.0.0.0 jenniporn.com +0.0.0.0 jerk2it.com +0.0.0.0 jerkoknet.tumblr.com +0.0.0.0 jesse.9hz.com +0.0.0.0 jessfink.com +0.0.0.0 jessicavirgin.com +0.0.0.0 jessyjames85.tumblr.com +0.0.0.0 jet-set-angels.com +0.0.0.0 jgalz.net +0.0.0.0 jigglegifs.com +0.0.0.0 jiggleholic.com +0.0.0.0 jigglytitts.tumblr.com +0.0.0.0 jigolojigola.net +0.0.0.0 jizz.xxx +0.0.0.0 jizzboat.com +0.0.0.0 jizzbox.com +0.0.0.0 jizzbunker.com +0.0.0.0 jizzman.com +0.0.0.0 jizztubeaz.tumblr.com +0.0.0.0 jizztubeporn.com +0.0.0.0 jlist.com +0.0.0.0 joannaangel.com +0.0.0.0 joannaangelbucks.com +0.0.0.0 joesvirgins.com +0.0.0.0 join.18onlygirls.com +0.0.0.0 join.alljapanesepass.com +0.0.0.0 join.allofgfs.com +0.0.0.0 join.avidolz.com +0.0.0.0 join.crazyfetishpass.com +0.0.0.0 join.ddfnetwork.com +0.0.0.0 join.digitaldesire.com +0.0.0.0 join.digitalplayground.com +0.0.0.0 join.exxxtrasmall.com +0.0.0.0 join.foxyjacky.com +0.0.0.0 join.hookup.com +0.0.0.0 join.javhq.com +0.0.0.0 join.mycuteasian.com +0.0.0.0 join.myveryfirsttime.com +0.0.0.0 join.perfectgonzo.com +0.0.0.0 join.personalcams.com +0.0.0.0 join.playboy.com +0.0.0.0 join.playboy.tv +0.0.0.0 join.pornprosnetwork.com +0.0.0.0 join.puffynetwork.com +0.0.0.0 join.realsexdates.com +0.0.0.0 join.spizoo.com +0.0.0.0 join.teamskeet.com +0.0.0.0 join.teensdoporn.com +0.0.0.0 join.thestripperexperience.com +0.0.0.0 join.tiny4k.com +0.0.0.0 join.wickedpictures.com +0.0.0.0 jojos.sexypleasure.com +0.0.0.0 jolieangelina.free.fr +0.0.0.0 joliewebcams.com +0.0.0.0 jollywebcams.com +0.0.0.0 jovemexcitado.tumblr.com +0.0.0.0 joy-of-life.at +0.0.0.0 joyangeles.com +0.0.0.0 joyourself.com +0.0.0.0 joysporn.com +0.0.0.0 joywebcams.com +0.0.0.0 jp.porn.com +0.0.0.0 jp.pornhub.com +0.0.0.0 jp.youporn.com +0.0.0.0 jpangels.com +0.0.0.0 judeporn.com +0.0.0.0 judvouj.angelfire.com +0.0.0.0 jugesoya.angelfire.com +0.0.0.0 juggsarea.com +0.0.0.0 juiceadv.com +0.0.0.0 juicywebcams.com +0.0.0.0 julesjordan.com +0.0.0.0 just-hot-models-here-xxx.tumblr.com +0.0.0.0 justbarelylegal.com +0.0.0.0 justblowjobgifs.tumblr.com +0.0.0.0 justhookup.com +0.0.0.0 justicehentai.com +0.0.0.0 justjared.com +0.0.0.0 justmatureporn.com +0.0.0.0 justmouthfuls.com +0.0.0.0 justusboys.com +0.0.0.0 justusboys.net +0.0.0.0 jwswinging.tumblr.com +0.0.0.0 kadu-amadoras.tumblr.com +0.0.0.0 kagbz.com +0.0.0.0 kaotic.com +0.0.0.0 kaplog.com +0.0.0.0 karupsbabes.com +0.0.0.0 karupsgals.com +0.0.0.0 kaskoos.com +0.0.0.0 kateeowengif.tumblr.com +0.0.0.0 katestube.com +0.0.0.0 katys-hotpussy.tumblr.com +0.0.0.0 kazatube.com +0.0.0.0 keandra.com +0.0.0.0 keep2share.cc +0.0.0.0 keepersecurity.com +0.0.0.0 keezlive.com +0.0.0.0 keezmovies.com +0.0.0.0 kellyfind.com +0.0.0.0 kicknuts.tumblr.com +0.0.0.0 kickpom.tumblr.com +0.0.0.0 kidzilla.info +0.0.0.0 kievescortangels.com +0.0.0.0 killerj21.tumblr.com +0.0.0.0 killerpilze.virginradioblog.fr +0.0.0.0 kindgirls.com +0.0.0.0 kinggoochgifs.tumblr.com +0.0.0.0 kingpinmedia.net +0.0.0.0 kingspeach.tumblr.com +0.0.0.0 kink-fetish-filth.tumblr.com +0.0.0.0 kink.com +0.0.0.0 kinky-sensual.tumblr.com +0.0.0.0 kinkygurls.tumblr.com +0.0.0.0 kinkyrandombits.tumblr.com +0.0.0.0 kipafaqi.angelfire.com +0.0.0.0 kissingangels.deluxepass.com +0.0.0.0 kissteenclub.com +0.0.0.0 kitnkayboodle.comicgenesis.com +0.0.0.0 kittysangels.com +0.0.0.0 km-pics.phncdn.com +0.0.0.0 knigi-po-ginekologii-chitat.angelfire.com +0.0.0.0 koalascosplaybabes.tumblr.com +0.0.0.0 kodiefiles.nl +0.0.0.0 kolyomfilm.com +0.0.0.0 kontaktbox.de +0.0.0.0 koolhotsauce.angelfire.com +0.0.0.0 korean720.com +0.0.0.0 korriangel.com +0.0.0.0 kos3araby.com +0.0.0.0 kpanther.tumblr.com +0.0.0.0 krisltep.tumblr.com +0.0.0.0 krissylove.com +0.0.0.0 kuntfutube.com +0.0.0.0 l-m-c-x.tumblr.com +0.0.0.0 l-virgin.biz +0.0.0.0 l-virgin.com +0.0.0.0 l-virgin.info +0.0.0.0 l-virgin.us +0.0.0.0 l-virgin.ws +0.0.0.0 l-x-x-v-i-i-i.tumblr.com +0.0.0.0 la-xxx.com +0.0.0.0 labatidora.net +0.0.0.0 lacynylon.blogtur.com +0.0.0.0 ladies360.tumblr.com +0.0.0.0 ladiesofjuarez.com +0.0.0.0 ladycomfort.com.ar +0.0.0.0 ladylust.com +0.0.0.0 ladyofpornconnoisseur.tumblr.com +0.0.0.0 laineygossip.com +0.0.0.0 lanaporno.tumblr.com +0.0.0.0 langelul.nl +0.0.0.0 laotk.tumblr.com +0.0.0.0 largehdtube.comen +0.0.0.0 largeporntube.com +0.0.0.0 late-lust.tumblr.com +0.0.0.0 latenightwebcams.com +0.0.0.0 latestalisonangel.com +0.0.0.0 latexangel.com +0.0.0.0 latexangel.net +0.0.0.0 latexangelic.com +0.0.0.0 latin-angel.com +0.0.0.0 latin-webcams.com +0.0.0.0 latinacast.com +0.0.0.0 latinafucktour.com +0.0.0.0 latinasextapes.com +0.0.0.0 latinavirgins.com +0.0.0.0 latinexposure.com +0.0.0.0 latinovirgin.com +0.0.0.0 latintubeporn.com +0.0.0.0 laura-angel.com +0.0.0.0 lauraangel.multimania.com +0.0.0.0 lauraangelonline.com +0.0.0.0 laylasa5en.info +0.0.0.0 leakingclitty.tumblr.com +0.0.0.0 leche69.com +0.0.0.0 lector04.tumblr.com +0.0.0.0 lee1424.tumblr.com +0.0.0.0 leechporn.com +0.0.0.0 leftearthquakemusic.tumblr.com +0.0.0.0 legal-virgins.com +0.0.0.0 legendarylars.com +0.0.0.0 legionofborg.tumblr.com +0.0.0.0 lemonmov.com +0.0.0.0 lenaporn.net +0.0.0.0 leporno.org +0.0.0.0 lesanal.com +0.0.0.0 lesbian-daily.tumblr.com +0.0.0.0 lesbian-sins.tumblr.com +0.0.0.0 lesbian.xxxcounter.com +0.0.0.0 lesbian8.com +0.0.0.0 lesbianfanatics.com +0.0.0.0 lesbianlunchhour.com +0.0.0.0 lesbianpornvideos.com +0.0.0.0 lesbo-gifs.tumblr.com +0.0.0.0 leslieelwerbook95.tumblr.com +0.0.0.0 lessonofpassion.com +0.0.0.0 leswebcams.com +0.0.0.0 letigrecoda.tumblr.com +0.0.0.0 letme-fuck-you.tumblr.com +0.0.0.0 letsjerk.com +0.0.0.0 letterstoanangel.com +0.0.0.0 levelsex.com +0.0.0.0 lewild.tumblr.com +0.0.0.0 leyesmessenger.com +0.0.0.0 lezbohoneys.com +0.0.0.0 lezcuties.com +0.0.0.0 lfd993.tumblr.com +0.0.0.0 licentiousdesires.tumblr.com +0.0.0.0 lickaliciouschicks.tumblr.com +0.0.0.0 lietoblog.tumblr.com +0.0.0.0 life-of-lance.tumblr.com +0.0.0.0 lifeselector.com +0.0.0.0 lighthouseangels.net +0.0.0.0 lilangels4u.50megs.com +0.0.0.0 lilbabes.com +0.0.0.0 lilcdub2500.tumblr.com +0.0.0.0 lilieetangelina.free.fr +0.0.0.0 lindaevangelista.cjb.net +0.0.0.0 lindsaybum82.tumblr.com +0.0.0.0 lingeriesins.com +0.0.0.0 lingkilla.tumblr.com +0.0.0.0 link-o-rama.com +0.0.0.0 linkfame.com +0.0.0.0 links.pimproll.com +0.0.0.0 lipstixxx-noir.tumblr.com +0.0.0.0 lisaangeline.com +0.0.0.0 literotica.com +0.0.0.0 little-lupe.info +0.0.0.0 little-virgins.da.ru +0.0.0.0 littlefuckholes.com +0.0.0.0 littleteenvideo.com +0.0.0.0 littlethumbs.com +0.0.0.0 littlevirgin.com +0.0.0.0 littlevirgins04.ci.st +0.0.0.0 littlevirgins05.ci.st +0.0.0.0 littlevirgins05.fu.st +0.0.0.0 littlevirginvideos.com +0.0.0.0 live-free-webcams.com +0.0.0.0 live-lesbian-webcams.com +0.0.0.0 live-shows-webcams.com +0.0.0.0 live-yesmessenger.com +0.0.0.0 live.sex-explorer.com +0.0.0.0 live.wickedpictures.com +0.0.0.0 livecamfun.com +0.0.0.0 livegaywebcams.com +0.0.0.0 livejasmin-babes.com +0.0.0.0 livejasmin.net +0.0.0.0 livejasmin.tv +0.0.0.0 livejasminfetish.com +0.0.0.0 livejasminlatina.com +0.0.0.0 livejasminlesbian.com +0.0.0.0 livejasminwebcams.com +0.0.0.0 livematurewebcams.com +0.0.0.0 liveprivates.com +0.0.0.0 lives.sex-explorer.com +0.0.0.0 livesex.xpg.com.br +0.0.0.0 livesexasian.com +0.0.0.0 liveshemalewebcams.com +0.0.0.0 livestat.com +0.0.0.0 livetrannywebcams.com +0.0.0.0 livetubecams.com +0.0.0.0 livewebcams.com +0.0.0.0 livewebcams.com.au +0.0.0.0 lkatpis.angelfire.com +0.0.0.0 lneglecti.tumblr.com +0.0.0.0 loa6.com +0.0.0.0 lockedyuusui.tumblr.com +0.0.0.0 lolhentai.net +0.0.0.0 lollypopeauthor.tumblr.com +0.0.0.0 londonescortslist.net +0.0.0.0 lonestarnaughtygirls.com +0.0.0.0 longandwide.tumblr.com +0.0.0.0 longipongi.tumblr.com +0.0.0.0 longporn.com +0.0.0.0 lookformilf.com +0.0.0.0 lookordie.com +0.0.0.0 lookvirgin.com +0.0.0.0 losangeles.backpage.com +0.0.0.0 losangeles.metromix.com +0.0.0.0 losangelesbanners.com +0.0.0.0 losangelesmassage.net +0.0.0.0 losmejoresojetes.tumblr.com +0.0.0.0 lossofvirginity.com +0.0.0.0 lostangel.ws +0.0.0.0 lostmyvirginity.com +0.0.0.0 lostvirgin.chat.ru +0.0.0.0 lostvirgin.com +0.0.0.0 lotzawebcams.com +0.0.0.0 loungeangelina.tr.gg +0.0.0.0 love-angels-berlin.de +0.0.0.0 love-tits.tumblr.com +0.0.0.0 love.voffka.com +0.0.0.0 lovehomeporn.com +0.0.0.0 lovekicked.tumblr.com +0.0.0.0 lovely-virgins.com +0.0.0.0 lovenylons.com +0.0.0.0 loveshack.org +0.0.0.0 lovevoodoo.com +0.0.0.0 lrhmuyl.angelfire.com +0.0.0.0 lswebcams.com +0.0.0.0 lubeyourtube.com +0.0.0.0 luciemakesporn.com +0.0.0.0 lucifersdarkangel.co.uk +0.0.0.0 luckyvirginz.com +0.0.0.0 lupoporno.com +0.0.0.0 luscious.net +0.0.0.0 lushstories.com +0.0.0.0 lustpin.com +0.0.0.0 lustporngifs.tumblr.com +0.0.0.0 lustywebcams.com +0.0.0.0 lux-angels.com +0.0.0.0 lyrics.filestube.com +0.0.0.0 m-ulata.tumblr.com +0.0.0.0 m.cliphunter.com +0.0.0.0 m.eporner.com +0.0.0.0 m.fuckmymommyandme.com +0.0.0.0 m.sextvx.com +0.0.0.0 m.yobt.com +0.0.0.0 m0002.gamecopyworld.com +0.0.0.0 machovideo.com +0.0.0.0 madamezelda.smackjeeves.com +0.0.0.0 madporngifs.tumblr.com +0.0.0.0 madteenporno.com +0.0.0.0 madthumbs.com +0.0.0.0 maduraswebcams.com +0.0.0.0 magicmovies.com +0.0.0.0 magicwebcams.com +0.0.0.0 magnetic--blue.tumblr.com +0.0.0.0 magnushjelm.angelfire.com +0.0.0.0 makeangelskneel.com +0.0.0.0 malatyaescortlar.org +0.0.0.0 malatyaeskortlar.org +0.0.0.0 male-exposure.com +0.0.0.0 malewebcams.com +0.0.0.0 mandatory.com +0.0.0.0 mangelsdesigns.com +0.0.0.0 mangoangel.com +0.0.0.0 maniacpass.com +0.0.0.0 manos-heracleio.tumblr.com +0.0.0.0 manytitsandasses.tumblr.com +0.0.0.0 market1.the-adult-company.com +0.0.0.0 mart4angel.freeuk.com +0.0.0.0 marylovesporn.tumblr.com +0.0.0.0 masterreb.tumblr.com +0.0.0.0 mastersitepass.com +0.0.0.0 masterwanker.com +0.0.0.0 mastporm.tumblr.com +0.0.0.0 maswebcams.com +0.0.0.0 mature-maniacs.com +0.0.0.0 mature-sex-movies.com +0.0.0.0 mature-sex-video.com +0.0.0.0 mature-webcams.com +0.0.0.0 maturehills.com +0.0.0.0 maturetubeporn.com +0.0.0.0 maturewebcams.com +0.0.0.0 maxesangels.com +0.0.0.0 maxim.com +0.0.0.0 maxjizztube.com +0.0.0.0 maxsnudecelebritygifs.tumblr.com +0.0.0.0 maxxxhits.com +0.0.0.0 mayored.angelfire.com +0.0.0.0 mazolporn.com +0.0.0.0 mazopajas.tumblr.com +0.0.0.0 mb.smartmovies.net +0.0.0.0 mb.wendise.com +0.0.0.0 mbs.tube8live.com +0.0.0.0 mbs.youjizzlive.com +0.0.0.0 mcstories.com +0.0.0.0 meandmyasian.com +0.0.0.0 meandmylatina.com +0.0.0.0 meatbeerbabes.com +0.0.0.0 media.100200film.com +0.0.0.0 media.bestarabpicinthenet.info +0.0.0.0 media.camelmedia.net +0.0.0.0 media.clubrejal.com +0.0.0.0 media.fantasy4you.info +0.0.0.0 media.gfy-porn.com +0.0.0.0 media.hotarabchat.com +0.0.0.0 media.hotchapatialbums.info +0.0.0.0 media.inthecrack.com +0.0.0.0 media.joebucks.com +0.0.0.0 media.kolyomfilm.com +0.0.0.0 media.monliveshow.com +0.0.0.0 media.mot3atbestbordels.info +0.0.0.0 media.pileoffiles.com +0.0.0.0 media.rasazrak.info +0.0.0.0 media.sticking.com +0.0.0.0 media.wowporn.net +0.0.0.0 media.yalladownload.com +0.0.0.0 media.zebkbeer.com +0.0.0.0 media1.camelmedia.net +0.0.0.0 media2.flashmediaportal.com +0.0.0.0 media2.pileoffiles.com +0.0.0.0 mediadetective.com +0.0.0.0 meetav.com +0.0.0.0 meetlocals.com +0.0.0.0 megasesso.com +0.0.0.0 megaupload-xxx.com +0.0.0.0 megayoungsex.com +0.0.0.0 melissasdirtydiary.tumblr.com +0.0.0.0 mellowvirgins.com +0.0.0.0 members.abl-angels.deluxepass.com +0.0.0.0 members.cfnmidol.com +0.0.0.0 members.flashybabes.com +0.0.0.0 members.irvirgins.deluxepass.com +0.0.0.0 members.kissingangels.deluxepass.com +0.0.0.0 members.notanangel.deluxepass.com +0.0.0.0 members.realsexdates.com +0.0.0.0 memebase.com +0.0.0.0 men-in-pantyhose.com +0.0.0.0 menagea3.net +0.0.0.0 meningitis-angels.org +0.0.0.0 menshealth.com +0.0.0.0 menssexguide.com +0.0.0.0 menude.tumblr.com +0.0.0.0 merchant.xxxcounter.com +0.0.0.0 merry-angels-top.ma.cx +0.0.0.0 merryangels.com +0.0.0.0 merryangels.info +0.0.0.0 messyandgaping.tumblr.com +0.0.0.0 metametallic.tumblr.com +0.0.0.0 metangels.com +0.0.0.0 metaporn.com +0.0.0.0 mexicanvirgin.com +0.0.0.0 mhbakker.tumblr.com +0.0.0.0 mikangel.free.fr +0.0.0.0 mike7388.tumblr.com +0.0.0.0 miki151964.tumblr.com +0.0.0.0 mikouaa.angelfire.com +0.0.0.0 milanohotels.org +0.0.0.0 milfaholic.com +0.0.0.0 milfbondage.tumblr.com +0.0.0.0 milfseeker.com +0.0.0.0 milkyangels.com +0.0.0.0 milkydick.com +0.0.0.0 milkyway74.tumblr.com +0.0.0.0 milovana.com +0.0.0.0 milta1980.co.uk +0.0.0.0 miltoncage.tumblr.com +0.0.0.0 mimadinha--safada.tumblr.com +0.0.0.0 minxteens.tumblr.com +0.0.0.0 mirangelov.com +0.0.0.0 mirror-selfies.tumblr.com +0.0.0.0 mirrorgirls.com +0.0.0.0 misguidedangel.nu +0.0.0.0 miss-angelique.book.fr +0.0.0.0 miss-porno.ru +0.0.0.0 misshellenroxx.tumblr.com +0.0.0.0 missysixx69.tumblr.com +0.0.0.0 mistresswebcams.com +0.0.0.0 mixtermickey42033.tumblr.com +0.0.0.0 mixx.com +0.0.0.0 mkangels.co.uk +0.0.0.0 mlib.brazzers.com +0.0.0.0 mmaaxx.com +0.0.0.0 mmksir.tumblr.com +0.0.0.0 mnfclub.com +0.0.0.0 mofonetwork.net +0.0.0.0 mofos.com +0.0.0.0 mofosex.com +0.0.0.0 mofosnetwork.com +0.0.0.0 mogliescopata.com +0.0.0.0 moglietroia.it +0.0.0.0 molnijenosniy.tumblr.com +0.0.0.0 mom-video.com +0.0.0.0 mommygotboobs.com +0.0.0.0 mommyneedsmoney.com +0.0.0.0 momsbangteens.com +0.0.0.0 momsextube.xxx +0.0.0.0 mon-yesmessenger.com +0.0.0.0 monkeycock.net +0.0.0.0 monliveshow.com +0.0.0.0 monstersandangels.com +0.0.0.0 monzy.org +0.0.0.0 moonangel.com +0.0.0.0 moonangelcash.com +0.0.0.0 mooning24-7.tumblr.com +0.0.0.0 morefunforyou.com +0.0.0.0 moregonzo.com +0.0.0.0 moregonzo.xlogz.com +0.0.0.0 morena-seex.tumblr.com +0.0.0.0 moreporngif.tumblr.com +0.0.0.0 moresexo.tumblr.com +0.0.0.0 morewebcams.com +0.0.0.0 moronisangels.com +0.0.0.0 moshadron.tumblr.com +0.0.0.0 mostplays.com +0.0.0.0 mot3atbestbordels.info +0.0.0.0 motel69.com +0.0.0.0 motherless.com +0.0.0.0 motorbikeladies.info +0.0.0.0 movgalleries.cummypantyhose.com +0.0.0.0 movie2k.to +0.0.0.0 movieaccess.com +0.0.0.0 moviebox.com +0.0.0.0 moviedollars.com +0.0.0.0 moviefreaker.com +0.0.0.0 moviegalls1.teenburg.com +0.0.0.0 moviegalls1.teensexreality.com +0.0.0.0 moviegalls2.teenburg.com +0.0.0.0 moviemix.net +0.0.0.0 moviemonster.com +0.0.0.0 movies.toppornonline.com +0.0.0.0 movies4adults.com +0.0.0.0 moviesand.com +0.0.0.0 moviesexserver.com +0.0.0.0 moviesguy.com +0.0.0.0 moviezentral.com +0.0.0.0 movimentolouco.tumblr.com +0.0.0.0 mozazbnat.info +0.0.0.0 moztna.com +0.0.0.0 mp3mixx.com +0.0.0.0 mpmcash.com +0.0.0.0 mr-phallus.tumblr.com +0.0.0.0 mrscaro.virginradioblog.fr +0.0.0.0 mrskin.com +0.0.0.0 mrsnake.com +0.0.0.0 mrstiff.com +0.0.0.0 mrvideoporno.xxx +0.0.0.0 mrvideoscaseros.xxx +0.0.0.0 msbehaviour.co.uk +0.0.0.0 msxolne.angelfire.com +0.0.0.0 mulherescomcigarros.com +0.0.0.0 mulhollanddriveatnight.tumblr.com +0.0.0.0 multiplos-orgasmos.tumblr.com +0.0.0.0 muscleangels.com +0.0.0.0 muslimsexwebcams.com +0.0.0.0 muunprece.tumblr.com +0.0.0.0 muycerdas.xxx +0.0.0.0 muyzorras.com +0.0.0.0 mviakog.angelfire.com +0.0.0.0 mvp009.tumblr.com +0.0.0.0 my-angel-funs.com +0.0.0.0 my-erotic-girlfriends-photos-xxx.tumblr.com +0.0.0.0 my-erotic-models-pics-xxx.tumblr.com +0.0.0.0 my-hidden-secretz.tumblr.com +0.0.0.0 my-mistress-is-the-best.tumblr.com +0.0.0.0 my.srandel.com +0.0.0.0 my.sweet-angels.net +0.0.0.0 my18tube.com +0.0.0.0 myadultguide.net +0.0.0.0 myanalangel.com +0.0.0.0 mybdsmgf.com +0.0.0.0 mybestfriendporn.com +0.0.0.0 myblackangels.com +0.0.0.0 mycams.com +0.0.0.0 mydaughtersfuckingablackdude.com +0.0.0.0 mydirtyporngifs.tumblr.com +0.0.0.0 mydulcemadness.tumblr.com +0.0.0.0 myebonygf.com +0.0.0.0 myex.com +0.0.0.0 myfappening.org +0.0.0.0 myfreeblack.com +0.0.0.0 mygaysites.com +0.0.0.0 mygaywebcams.com +0.0.0.0 mygirlsperfect.tumblr.com +0.0.0.0 myhentai.tv +0.0.0.0 myhomeclip.com +0.0.0.0 myhotsluts.tumblr.com +0.0.0.0 myiplayground.com +0.0.0.0 myjizztube.com +0.0.0.0 mykindosexy.tumblr.com +0.0.0.0 mylesbogf.com +0.0.0.0 mylust.com +0.0.0.0 mymomsfuckingblackzilla.com +0.0.0.0 mynakedweb.com +0.0.0.0 mynationporn.com +0.0.0.0 mypleasuregirl.tumblr.com +0.0.0.0 mypornbible.com +0.0.0.0 myporngay.com +0.0.0.0 myporngifs.tumblr.com +0.0.0.0 mypornstarbook.net +0.0.0.0 mypreciousvirgins.com +0.0.0.0 mysexgames.com +0.0.0.0 mysexpin.tumblr.com +0.0.0.0 mystarlets.com +0.0.0.0 mystyquelounge.tumblr.com +0.0.0.0 mytrannycams.com +0.0.0.0 myvirginity.com +0.0.0.0 mywetdreaminvolvedtits.tumblr.com +0.0.0.0 mywifesex.net +0.0.0.0 myxvids.com +0.0.0.0 myxxxcentral.com +0.0.0.0 n-sex.net +0.0.0.0 n3neshofarfesh.info +0.0.0.0 naaedhooola.tumblr.com +0.0.0.0 naargumen.tumblr.com +0.0.0.0 nabdh-alm3ani.net +0.0.0.0 nadasissy.tumblr.com +0.0.0.0 nadiavirgin.com +0.0.0.0 nadiavirgin.net +0.0.0.0 naijaporn.xxx +0.0.0.0 naijaporntube.com +0.0.0.0 nailedhard.tv +0.0.0.0 nakdhoola.tumblr.com +0.0.0.0 nakedlivewebcams.com +0.0.0.0 nakednews.com +0.0.0.0 nakednudesgirls.tumblr.com +0.0.0.0 nakedonthestreets.com +0.0.0.0 nakedpornphotos.com +0.0.0.0 nakedteenporn.com +0.0.0.0 nakedtongues.tumblr.com +0.0.0.0 nakedundertaker.tumblr.com +0.0.0.0 nalex420.tumblr.com +0.0.0.0 nannygoat.smackjeeves.com +0.0.0.0 naoconto.com +0.0.0.0 naomiangel.com +0.0.0.0 nastydisney.com +0.0.0.0 nastypornostars.com +0.0.0.0 nathaliediangelo.com +0.0.0.0 nationass.tumblr.com +0.0.0.0 nats.castingcouch-hd.com +0.0.0.0 nats.goldloot.com +0.0.0.0 nats.netvideogirls.com +0.0.0.0 nats.virginoff.com +0.0.0.0 natur.nl +0.0.0.0 natural-angels.com +0.0.0.0 naturalangels.com +0.0.0.0 naturalangels01.wo.st +0.0.0.0 naturalangels26.wo.st +0.0.0.0 naturally-bouncy.tumblr.com +0.0.0.0 naturaltitmovies.com +0.0.0.0 naturalwondersoftheworld.com +0.0.0.0 naturalwonderz.com +0.0.0.0 naturistbeach.com +0.0.0.0 naturistcamp.com +0.0.0.0 naturiste.be +0.0.0.0 naturistonline.com +0.0.0.0 naturists.com +0.0.0.0 naturistville.com +0.0.0.0 natursekt-geil.com +0.0.0.0 natursekt.bz +0.0.0.0 natursekt.de +0.0.0.0 natursekt.nl +0.0.0.0 natursekt.tv +0.0.0.0 natursekt1a.net +0.0.0.0 natursekt24.com +0.0.0.0 natursektcam.de +0.0.0.0 natursektquelle.de +0.0.0.0 natursektweb.com +0.0.0.0 natursektweb.de +0.0.0.0 naughtiest-angels.com +0.0.0.0 naughty-his-and-hers.tumblr.com +0.0.0.0 naughty-hot-gif.tumblr.com +0.0.0.0 naughty-traffic.com +0.0.0.0 naughtyadult.tumblr.com +0.0.0.0 naughtyamerica.com +0.0.0.0 naughtyamericavr.com +0.0.0.0 naughtyblog.org +0.0.0.0 naughtymachinima.com +0.0.0.0 naughtypigtails.reelgalleries.com +0.0.0.0 naughtyreviews.com +0.0.0.0 naughtywebcams.com +0.0.0.0 ncc.sex-explorer.com +0.0.0.0 ndcontent.com +0.0.0.0 neangel.com +0.0.0.0 neathdporn.com +0.0.0.0 nedporno.com +0.0.0.0 needkinkysexx.tumblr.com +0.0.0.0 nemo-movies.com +0.0.0.0 neovirgins.com +0.0.0.0 nerd2extreme.tumblr.com +0.0.0.0 neswangy.net +0.0.0.0 netbulb.angelfire.com +0.0.0.0 netnet50.com +0.0.0.0 netphuck.com +0.0.0.0 netplayground.com +0.0.0.0 netpornsex.com +0.0.0.0 netvirgin.com +0.0.0.0 networkwestvirginia.com +0.0.0.0 neu.cash4members.com +0.0.0.0 never-too-much-sex.tumblr.com +0.0.0.0 nevercumalwaysedge.tumblr.com +0.0.0.0 new.livejasmin.com +0.0.0.0 newangelicseduction.com +0.0.0.0 newbienudes.com +0.0.0.0 newestxxx.com +0.0.0.0 newsfilter.org +0.0.0.0 newstats.sexlist.com +0.0.0.0 newvirgineveryday.com +0.0.0.0 newwebmaster.net +0.0.0.0 next-layers.com +0.0.0.0 nextdoorgrannies.co.uk +0.0.0.0 nextdoornikki.com +0.0.0.0 nextdoortease.com +0.0.0.0 nextpic.com +0.0.0.0 nfsx.com +0.0.0.0 nhentai.net +0.0.0.0 niarkman.tumblr.com +0.0.0.0 nicebuttnaughty.tumblr.com +0.0.0.0 nicepinkwarmpussy.tumblr.com +0.0.0.0 nichearena.com +0.0.0.0 nichewebcams.com +0.0.0.0 nicolegravesvideo.com +0.0.0.0 nifty.org +0.0.0.0 nightangel.com +0.0.0.0 nikicamsex.tumblr.com +0.0.0.0 ninavirgin.com +0.0.0.0 nineteenporn.com +0.0.0.0 nite2silent.tumblr.com +0.0.0.0 nl.porn.com +0.0.0.0 nl.pornhub.com +0.0.0.0 nl.youporn.com +0.0.0.0 nm.xxxeuropean.com +0.0.0.0 nnangels.com +0.0.0.0 nnwebcams.com +0.0.0.0 nomnoms34.tumblr.com +0.0.0.0 nonk.nonk.info +0.0.0.0 nonnudeballbusting.tumblr.com +0.0.0.0 nooditay.thumblogger.com +0.0.0.0 norskporno.xxx +0.0.0.0 northern-angels.co.uk +0.0.0.0 nostringsattached.com +0.0.0.0 not2muchnot2littlealilboudoir.tumblr.com +0.0.0.0 notanangel.deluxepass.com +0.0.0.0 notarangelo.com +0.0.0.0 notesonvirginia.com +0.0.0.0 nothingtoseehere000.tumblr.com +0.0.0.0 noveltrove.com +0.0.0.0 noviceamateurs.com +0.0.0.0 novinhagozada.com +0.0.0.0 novinhasanonimas.tumblr.com +0.0.0.0 novinhasdozap.com +0.0.0.0 novinhasdozapzap.com +0.0.0.0 novinhasmusa.tumblr.com +0.0.0.0 nownorthwestern.tumblr.com +0.0.0.0 nrvhomes.angelfire.com +0.0.0.0 ns4w.org +0.0.0.0 nsfw-nation.tumblr.com +0.0.0.0 nsfw-pics.com +0.0.0.0 nsfw-selfie.tumblr.com +0.0.0.0 nsfw-xx-x.tumblr.com +0.0.0.0 nsfwgalleryxx.tumblr.com +0.0.0.0 nsfwio.tumblr.com +0.0.0.0 nsfwjpg.com +0.0.0.0 nsfwonyourscreen.tumblr.com +0.0.0.0 nsfwphotography.tumblr.com +0.0.0.0 nsfwxxxgifs.tumblr.com +0.0.0.0 nsfwyoutube.com +0.0.0.0 nsgalleries.com +0.0.0.0 nubilefilms.com +0.0.0.0 nubiles-porn.com +0.0.0.0 nubiles-videos.com +0.0.0.0 nubiles.net +0.0.0.0 nubilesblog.com +0.0.0.0 nudecelebforum.com +0.0.0.0 nudecelebvideo.net +0.0.0.0 nudeflix.com +0.0.0.0 nudegalleries.org +0.0.0.0 nudennaked.tumblr.com +0.0.0.0 nudeselfiespics.com +0.0.0.0 nudesfromdownunder.com +0.0.0.0 nudeshall.com +0.0.0.0 nudesonline.com +0.0.0.0 nudespuri.com +0.0.0.0 nudeteenporn.me +0.0.0.0 nudeteenpornpics.com +0.0.0.0 nudevista.com +0.0.0.0 nudez.com +0.0.0.0 nudist.topamateurforum.com +0.0.0.0 nungav.com +0.0.0.0 nurglesnymphs.com +0.0.0.0 nurglestube.com +0.0.0.0 nutaku.net +0.0.0.0 nutcruchgirls.tumblr.com +0.0.0.0 nuttit.com +0.0.0.0 nuvid.com +0.0.0.0 nwsgifs.com +0.0.0.0 nxgx.com +0.0.0.0 nxtcomics.me +0.0.0.0 nycpass.angelfire.com +0.0.0.0 nylon-and-pantyhose.thumblogger.com +0.0.0.0 nylonclit.com +0.0.0.0 nyloner.com +0.0.0.0 nylonglamour.blogbugs.org +0.0.0.0 nylonglamour.thumblogger.com +0.0.0.0 nymphogirls.com +0.0.0.0 oascentral.alladultchannel.com +0.0.0.0 obedienceisearned.tumblr.com +0.0.0.0 oceangelina.canalblog.com +0.0.0.0 odawfq.angelfire.com +0.0.0.0 officesex101.com +0.0.0.0 offporn.com +0.0.0.0 oglaf.com +0.0.0.0 oguuril.angelfire.com +0.0.0.0 ohfree.net +0.0.0.0 oiledangels.com +0.0.0.0 old-virgins.info +0.0.0.0 old.smoder.com +0.0.0.0 oldconsolevideo.com +0.0.0.0 oldpichunter.com +0.0.0.0 oldpornsite.com +0.0.0.0 olduvsen.cz +0.0.0.0 olgasangels.net +0.0.0.0 omanko-exposure.com +0.0.0.0 omwex.com +0.0.0.0 oneclickwebcams.com +0.0.0.0 onegaysex.com +0.0.0.0 onegranny.com +0.0.0.0 onemilliongifs.tumblr.com +0.0.0.0 oneshemale.com +0.0.0.0 onewindedangels.creezvotreforum.com +0.0.0.0 onlineangels.com +0.0.0.0 onlineanime.org +0.0.0.0 onlinehotwebcams.com +0.0.0.0 onlinesuperheroes.com +0.0.0.0 only-passionate-girlfriends-here.tumblr.com +0.0.0.0 only-porn-models-here-xxx.tumblr.com +0.0.0.0 only-sexy-teens-here-xxx.tumblr.com +0.0.0.0 onlyankara.com +0.0.0.0 onlybestsex.com +0.0.0.0 onlybigmovies.com +0.0.0.0 onlyfatchiks.com +0.0.0.0 onlynylon.blogbugs.org +0.0.0.0 onlyshecums.tumblr.com +0.0.0.0 onmpeg.com +0.0.0.0 openx.filestube.com +0.0.0.0 opssgozeimuito.tumblr.com +0.0.0.0 opujem.com +0.0.0.0 oralgirlfriend.net +0.0.0.0 orgarsm-best-thing.tumblr.com +0.0.0.0 orgasm.com +0.0.0.0 orgasmes-ruines.tumblr.com +0.0.0.0 orgasmos-intensos.tumblr.com +0.0.0.0 orgasmruin.tumblr.com +0.0.0.0 orgiasreales.com +0.0.0.0 orientalangel.moonfruit.com +0.0.0.0 orientalangelsmovs.com +0.0.0.0 orientalvirgins.com +0.0.0.0 otty-hotties.com +0.0.0.0 ousaada69.tumblr.com +0.0.0.0 outinpublic.com +0.0.0.0 outlawedvirgin.com +0.0.0.0 overdistracted.tumblr.com +0.0.0.0 overthehillganglosangeles.org +0.0.0.0 overthumbs.com +0.0.0.0 ovriaxd.angelfire.com +0.0.0.0 oxotube.com +0.0.0.0 oyeloca.com +0.0.0.0 oyundas.org +0.0.0.0 p-angels.com +0.0.0.0 p-utariapontocom.tumblr.com +0.0.0.0 p.videosz.com +0.0.0.0 p0rntub3.net +0.0.0.0 p3rv3ct-gifs.tumblr.com +0.0.0.0 pacinocash.com +0.0.0.0 packfuck.com +0.0.0.0 pacoloca.angelfire.com +0.0.0.0 page-x.com +0.0.0.0 pages-angelfire.whowhere.com +0.0.0.0 paixaoasiatica.com +0.0.0.0 paixaogay.com +0.0.0.0 palevo.com +0.0.0.0 palimas.com +0.0.0.0 palmtube.com +0.0.0.0 pamela-sandersin.info +0.0.0.0 pamswebcams.com +0.0.0.0 pandamovie.net +0.0.0.0 pandemos.ccnwebcams.com +0.0.0.0 pantiehoseladies.blogtur.com +0.0.0.0 pantydirectory.com +0.0.0.0 pantyhosetv.net +0.0.0.0 panzertraffic.com +0.0.0.0 paparaco.me +0.0.0.0 paparazzifilth.com +0.0.0.0 paraisowebcams.com +0.0.0.0 paridaida.tumblr.com +0.0.0.0 partie-privee.com +0.0.0.0 passeilimitado.com +0.0.0.0 passion--xxx.tumblr.com +0.0.0.0 passion.com +0.0.0.0 pawg.site +0.0.0.0 pawn.se +0.0.0.0 pawrnography.tumblr.com +0.0.0.0 pbjjqx.angelfire.com +0.0.0.0 pcangel.com +0.0.0.0 peach-angel.com +0.0.0.0 peachangel.com +0.0.0.0 peachyforum.com +0.0.0.0 peekvids.com +0.0.0.0 pendejas.com.ar +0.0.0.0 penisbot.com +0.0.0.0 penix.fr +0.0.0.0 pepsaga.com +0.0.0.0 peqotif.angelfire.com +0.0.0.0 perezhilton.com +0.0.0.0 perfect-curves.tumblr.com +0.0.0.0 perfect10.com +0.0.0.0 perfectangels.org +0.0.0.0 perfectcuckold.tumblr.com +0.0.0.0 perfectdepravity.tumblr.com +0.0.0.0 perfectgirls.net +0.0.0.0 perfectnaked.com +0.0.0.0 perfectnudegirls.com +0.0.0.0 performance-angel.com +0.0.0.0 persian-slutwife.tumblr.com +0.0.0.0 persiankitty.com +0.0.0.0 persianwomen.info +0.0.0.0 personalcams.com +0.0.0.0 pertunda.com +0.0.0.0 pervclips.com +0.0.0.0 pervertedwebcams.com +0.0.0.0 pervertslut.com +0.0.0.0 pervnetwork.com +0.0.0.0 pervsonpatrol.com +0.0.0.0 pervygames.com +0.0.0.0 petardas.com +0.0.0.0 petardashd.com +0.0.0.0 petiteteenager.com +0.0.0.0 petras-angels.de +0.0.0.0 pgporn.top +0.0.0.0 ph-pics.phncdn.com +0.0.0.0 phallosdei.com +0.0.0.0 phatbydefinition.tumblr.com +0.0.0.0 phatwebcams.com +0.0.0.0 phicatube.net +0.0.0.0 phil-flash.com +0.0.0.0 phone-angel.de +0.0.0.0 phoneangels.com +0.0.0.0 phonevirgin.com +0.0.0.0 photo-angels.biz +0.0.0.0 photo.voffka.com +0.0.0.0 photonaturals.com +0.0.0.0 photos.cams.com +0.0.0.0 photos.freeones.com +0.0.0.0 photosex.biz +0.0.0.0 photosys.angelfire.com +0.0.0.0 photovirgins.com +0.0.0.0 phun.org +0.0.0.0 pic.aebn.net +0.0.0.0 picahottie.com +0.0.0.0 picgalleries.cummypantyhose.com +0.0.0.0 pichunter.com +0.0.0.0 picladies.com +0.0.0.0 pics.youjizz.com +0.0.0.0 pictoa.com +0.0.0.0 picxx.net +0.0.0.0 picxxnetwork.com +0.0.0.0 piggypainslut.smackjeeves.com +0.0.0.0 piglet-diaries.tumblr.com +0.0.0.0 pimpandhost.com +0.0.0.0 pimpwebcams.com +0.0.0.0 pin-up-angels.net +0.0.0.0 pinaccesscode.com +0.0.0.0 pinkbabes.net +0.0.0.0 pinkcherryaffiliate.com +0.0.0.0 pinkfineart.com +0.0.0.0 pinkrod.com +0.0.0.0 pinkvisualhdgalleries.com +0.0.0.0 pinkvisualpad.com +0.0.0.0 pinkwebcam.com +0.0.0.0 pinkworld.com +0.0.0.0 pinkytoy.com +0.0.0.0 pinporngifs.tumblr.com +0.0.0.0 piporno.com +0.0.0.0 piradinhas.com +0.0.0.0 pirocapretaba.tumblr.com +0.0.0.0 piwebcams.com +0.0.0.0 pix.sexyads.net +0.0.0.0 pix4dicks.com +0.0.0.0 pk5.net +0.0.0.0 pl.porn.com +0.0.0.0 pl.pornhub.com +0.0.0.0 pl.youporn.com +0.0.0.0 planet-katie.info +0.0.0.0 planetsexblogs.com +0.0.0.0 planetsuzy.org +0.0.0.0 plashporn.com +0.0.0.0 play-angel.com +0.0.0.0 play-boom.com +0.0.0.0 playblog.org +0.0.0.0 playblog.ws +0.0.0.0 playboy.bg +0.0.0.0 playboy.com +0.0.0.0 playboy.com.br +0.0.0.0 playboy.com.mx +0.0.0.0 playboy.com.tw +0.0.0.0 playboynet.playboy.com +0.0.0.0 playforceone.com +0.0.0.0 playindianporn.com +0.0.0.0 playingboy.com +0.0.0.0 playingmatures.com +0.0.0.0 playmatewebcams.com +0.0.0.0 playmatewebcams.streamray.com +0.0.0.0 playmymovie.com +0.0.0.0 playporngames.com +0.0.0.0 playsexgames.xxx +0.0.0.0 playwithme.com +0.0.0.0 pleasurecage.info +0.0.0.0 plib.brazzers.com +0.0.0.0 plib.juggcrew.com +0.0.0.0 plugin-x.com +0.0.0.0 plumpchicks.net +0.0.0.0 plumpersworld.com +0.0.0.0 plumpteens.net +0.0.0.0 plzbustme.tumblr.com +0.0.0.0 poisonangel.citymax.com +0.0.0.0 pokeherstars.com +0.0.0.0 polandtoday.org +0.0.0.0 polarpornhd.com +0.0.0.0 polish-angels.com +0.0.0.0 poopchuteprincess.tumblr.com +0.0.0.0 poopeegirls.com +0.0.0.0 popporn.com +0.0.0.0 porn-disney.com +0.0.0.0 porn-gif-overload.tumblr.com +0.0.0.0 porn-gif-tube.tumblr.com +0.0.0.0 porn-gifs-archive.tumblr.com +0.0.0.0 porn-n-hentai-bloging.tumblr.com +0.0.0.0 porn-space.com +0.0.0.0 porn-wanted.com +0.0.0.0 porn.com +0.0.0.0 porn.es +0.0.0.0 porn.hu +0.0.0.0 porn.it +0.0.0.0 porn.org +0.0.0.0 porn.to +0.0.0.0 porn.xxx +0.0.0.0 porn18sex.com +0.0.0.0 porn2.com +0.0.0.0 porn4ladies.tumblr.com +0.0.0.0 porn8.com +0.0.0.0 pornaccess.com +0.0.0.0 pornado-hotspot.tumblr.com +0.0.0.0 pornaf.com +0.0.0.0 pornalized.com +0.0.0.0 pornative.com +0.0.0.0 pornattitude.com +0.0.0.0 pornbb.org +0.0.0.0 pornbibi.com +0.0.0.0 pornbits.net +0.0.0.0 pornblade.comcategoryanal-porn +0.0.0.0 pornbraze.com +0.0.0.0 pornburst.xxx +0.0.0.0 porncash.de +0.0.0.0 porncash.tv +0.0.0.0 pornclub.com +0.0.0.0 porncomics.biz +0.0.0.0 porncomix.info +0.0.0.0 porncomixonline.com +0.0.0.0 porncor.com +0.0.0.0 porndex.com +0.0.0.0 porndig.com +0.0.0.0 porndiglesbian.com +0.0.0.0 porndish.com +0.0.0.0 porndisney.com +0.0.0.0 porndoe.com +0.0.0.0 porndoepremium.com +0.0.0.0 porndoepremium.comcategories +0.0.0.0 porndreamer.com +0.0.0.0 porneq.com +0.0.0.0 pornerbros.com +0.0.0.0 pornfine.tumblr.com +0.0.0.0 pornfun.com +0.0.0.0 porngalleriesz.com +0.0.0.0 porngames.com +0.0.0.0 porngif-paradise.tumblr.com +0.0.0.0 porngifaddict.tumblr.com +0.0.0.0 porngifbay.tumblr.com +0.0.0.0 porngifguy.tumblr.com +0.0.0.0 porngifmania.tumblr.com +0.0.0.0 porngifs.com +0.0.0.0 pornhan.com +0.0.0.0 pornhd.com +0.0.0.0 pornhd.xyz +0.0.0.0 pornhd3x.net +0.0.0.0 pornhd4k.com +0.0.0.0 pornheed.com +0.0.0.0 pornhost.com +0.0.0.0 pornhub.com +0.0.0.0 pornhubarab.com +0.0.0.0 pornhubb.top +0.0.0.0 pornhubcasino.com +0.0.0.0 pornhublive.com +0.0.0.0 pornhubshemale.com +0.0.0.0 pornication.com +0.0.0.0 pornicom.com +0.0.0.0 porniq.com +0.0.0.0 pornislikeairimportant.tumblr.com +0.0.0.0 pornjam.com +0.0.0.0 pornjog.com +0.0.0.0 pornkay.net +0.0.0.0 pornkino.to +0.0.0.0 pornktube.com +0.0.0.0 pornleech.com +0.0.0.0 pornloversdream.tumblr.com +0.0.0.0 pornmail.com +0.0.0.0 pornmaki.com +0.0.0.0 pornmaxim.com +0.0.0.0 pornmd.com +0.0.0.0 pornmustbebeautiful.tumblr.com +0.0.0.0 porno-disney.com +0.0.0.0 porno-maniac.net +0.0.0.0 porno-sutra.com +0.0.0.0 porno-teens-free.com +0.0.0.0 porno-videot.com +0.0.0.0 pornoamador.xxx +0.0.0.0 pornoamateurvip.com +0.0.0.0 pornoamatoriali.net +0.0.0.0 pornobanner.com +0.0.0.0 pornobw.tumblr.com +0.0.0.0 pornocaldo.it +0.0.0.0 pornocarioca.com +0.0.0.0 pornocolombia.com.co +0.0.0.0 pornodrome.tv +0.0.0.0 pornofica.net +0.0.0.0 pornofico.com +0.0.0.0 pornofolies.com +0.0.0.0 pornogasmo.tumblr.com +0.0.0.0 pornohotvideos.com +0.0.0.0 pornoid.com +0.0.0.0 pornoinitaliano.it +0.0.0.0 pornoinside.com +0.0.0.0 pornoitalia.it +0.0.0.0 pornoitaliane.it +0.0.0.0 pornoitaliano.com +0.0.0.0 pornoitaliano.eu +0.0.0.0 pornokarhu.com +0.0.0.0 pornokura.it +0.0.0.0 pornolaan.com +0.0.0.0 pornolab.net +0.0.0.0 pornolaba.com +0.0.0.0 pornolandia.xxx +0.0.0.0 pornomexicana.com.mx +0.0.0.0 pornomovies.com +0.0.0.0 pornoorzel.com +0.0.0.0 pornopics.co +0.0.0.0 pornopim.com +0.0.0.0 pornopin.me +0.0.0.0 pornorake.com +0.0.0.0 pornorama.com +0.0.0.0 pornorips.com +0.0.0.0 pornosvane.com +0.0.0.0 pornotorrent.com.br +0.0.0.0 pornototale.com +0.0.0.0 pornotrio.com +0.0.0.0 pornovideoshub.com +0.0.0.0 pornoxo.com +0.0.0.0 pornoxxx.it +0.0.0.0 pornoxxxclips.com +0.0.0.0 pornpics.com +0.0.0.0 pornpicsmovies.net +0.0.0.0 pornpin.com +0.0.0.0 pornplanner.com +0.0.0.0 pornprosnetwork.com +0.0.0.0 pornprox.com +0.0.0.0 pornrabbit.com +0.0.0.0 pornroxxx.com +0.0.0.0 pornsavant.com +0.0.0.0 pornsblr.tumblr.com +0.0.0.0 pornscrape.com +0.0.0.0 pornsharia.com +0.0.0.0 pornsharing.com +0.0.0.0 pornsia.com +0.0.0.0 pornsitechoice.com +0.0.0.0 pornstarbook.com +0.0.0.0 pornstarcompendium.com +0.0.0.0 pornstarslikeitbig.co.uk +0.0.0.0 pornstreams.eu +0.0.0.0 porntitan.com +0.0.0.0 porntracker.com +0.0.0.0 porntrex.com +0.0.0.0 porntube.com +0.0.0.0 porntube69.net +0.0.0.0 porntubedirect.info +0.0.0.0 porntubese.com +0.0.0.0 pornurl.pw +0.0.0.0 pornusers.com +0.0.0.0 pornvibe.org +0.0.0.0 pornvideos.com +0.0.0.0 pornvil.com +0.0.0.0 pornwaiter.com +0.0.0.0 pornwhite.com +0.0.0.0 pornworms.com +0.0.0.0 pornxs.com +0.0.0.0 pornyeah.com +0.0.0.0 pornzeus.com +0.0.0.0 portablesex.com +0.0.0.0 portaladelaide.com.br +0.0.0.0 portalangels.com.sapo.pt +0.0.0.0 poseparty.com +0.0.0.0 postimage.org +0.0.0.0 postyourgirls.com +0.0.0.0 potrr2.com +0.0.0.0 ppkario.tumblr.com +0.0.0.0 praetor1981.tumblr.com +0.0.0.0 praisemybigblackcock.tumblr.com +0.0.0.0 pratefuder.tumblr.com +0.0.0.0 prazererotico.tumblr.com +0.0.0.0 preggowebcams.com +0.0.0.0 premierimagehosting.com +0.0.0.0 premium.pervnetwork.com +0.0.0.0 premiumhdv.com +0.0.0.0 prendiporno.tv +0.0.0.0 pretty-angels.de +0.0.0.0 pretty-virgins.com +0.0.0.0 prettyvirgins.com +0.0.0.0 primebreasts.net +0.0.0.0 primecups.com +0.0.0.0 primecups.xlogz.com +0.0.0.0 primeskype.com +0.0.0.0 princesa-safada.tumblr.com +0.0.0.0 princessblueyez.com +0.0.0.0 private-angels.net +0.0.0.0 privatecams.ws +0.0.0.0 privatefeeds.com +0.0.0.0 privatelivewebcams.com +0.0.0.0 privatepornfilms.com +0.0.0.0 privatesangels.com +0.0.0.0 privatewebcams.com +0.0.0.0 pro-ana-angels.wetpaint.com +0.0.0.0 profiles.met-art.com +0.0.0.0 promo.aebn.net +0.0.0.0 promo.ashleyscandy.com +0.0.0.0 promo.cravingcarmen.com +0.0.0.0 promo.diddylicious.com +0.0.0.0 promo.heidiscandy.com +0.0.0.0 promo.karenloveskate.com +0.0.0.0 promo.moviemonster.com +0.0.0.0 promo.premiumpass.com +0.0.0.0 promo.shegotknockedup.com +0.0.0.0 promo.tristastevens.com +0.0.0.0 pron.tv +0.0.0.0 proporn.com +0.0.0.0 prosexxx.com +0.0.0.0 prostate-milking.tumblr.com +0.0.0.0 protizer.net +0.0.0.0 proud-but-never-satisfied.tumblr.com +0.0.0.0 proxy.poseparty.com +0.0.0.0 psbbanners.com +0.0.0.0 psychoticsexlife.tumblr.com +0.0.0.0 pt.porn.com +0.0.0.0 pt.pornhub.com +0.0.0.0 pt.youporn.com +0.0.0.0 public.porn.fr +0.0.0.0 publicexposurephotos.com +0.0.0.0 publicexposurepics.com +0.0.0.0 publicexposurepictures.com +0.0.0.0 publicpornhd.com +0.0.0.0 pubzone.virginradiothailand.com +0.0.0.0 pufisi.com +0.0.0.0 pulpo69.com +0.0.0.0 punchpin.com +0.0.0.0 punishteens.com +0.0.0.0 punky-boobster.tumblr.com +0.0.0.0 pure-angel.net +0.0.0.0 puredee.com +0.0.0.0 purefaces.com +0.0.0.0 purelynsfw.com +0.0.0.0 purematureporn.com +0.0.0.0 purepov.com +0.0.0.0 pussisex.com +0.0.0.0 pussy.com +0.0.0.0 pussy.org +0.0.0.0 pussybabes.net +0.0.0.0 pussycalor.com +0.0.0.0 pussyeasy.com +0.0.0.0 pussyharem.com +0.0.0.0 pussyinmymind.tumblr.com +0.0.0.0 pussymoms.com +0.0.0.0 pussypornpics.com +0.0.0.0 pussypush.com +0.0.0.0 pussyspace.com +0.0.0.0 pussytorrents.org +0.0.0.0 putaria-da-alta.tumblr.com +0.0.0.0 putariadanet.tumblr.com +0.0.0.0 putarialesbica.tumblr.com +0.0.0.0 putasconwebcams.com +0.0.0.0 putinhasafada.tumblr.com +0.0.0.0 putitasangelicales.com +0.0.0.0 qahkurm.angelfire.com +0.0.0.0 qoqoz.com +0.0.0.0 qualityfap.tumblr.com +0.0.0.0 qualitysextube.com +0.0.0.0 quewebcams.com +0.0.0.0 r.sex-toplista.zy.pl +0.0.0.0 rabbits3x.tumblr.com +0.0.0.0 rabbitsreviews.com +0.0.0.0 rainbowbooty.tumblr.com +0.0.0.0 ralouse.tumblr.com +0.0.0.0 ramiarkan.tumblr.com +0.0.0.0 random29.tumblr.com +0.0.0.0 rapid-xxx.com +0.0.0.0 rapidgator.net +0.0.0.0 rarbg.com +0.0.0.0 rarecandygirl.tumblr.com +0.0.0.0 rarescandals.xyz +0.0.0.0 rareteenporn.com +0.0.0.0 rasazrak.info +0.0.0.0 rashatemraa.com +0.0.0.0 ratchetny.tumblr.com +0.0.0.0 rateme.km.ru +0.0.0.0 ratiugle.tumblr.com +0.0.0.0 rawporn.org +0.0.0.0 rawporno.tumblr.com +0.0.0.0 rawtube.com +0.0.0.0 readindiansexstories.com +0.0.0.0 real-virgins.net +0.0.0.0 real-wife-stories.com +0.0.0.0 realandnatural.com +0.0.0.0 realblacklesbians.com +0.0.0.0 realdoll.com +0.0.0.0 realfatgirls.net +0.0.0.0 realgfporn.com +0.0.0.0 realgijoe.tumblr.com +0.0.0.0 realitykingsnetwork.com +0.0.0.0 realjapanesepornvideos.com +0.0.0.0 realporn.tumblr.com +0.0.0.0 realpussyluva.tumblr.com +0.0.0.0 realsexdates.com +0.0.0.0 realsexwebcams.com +0.0.0.0 realteengirlfriends.com +0.0.0.0 realteengirls.org +0.0.0.0 realvirgin.com +0.0.0.0 rebecca-loves-cock.tumblr.com +0.0.0.0 reblop.com +0.0.0.0 recordedwebcams.com +0.0.0.0 redangel.hu +0.0.0.0 redangels.se +0.0.0.0 redheadwebcams.com +0.0.0.0 redir.webshots.com +0.0.0.0 redlightcenter.com +0.0.0.0 redneek.com +0.0.0.0 redporn.net +0.0.0.0 redtube.com +0.0.0.0 redtubelesbian.com +0.0.0.0 reelgalleries.com +0.0.0.0 refinery29.com +0.0.0.0 regretfulmorning.com +0.0.0.0 rehgdia.angelfire.com +0.0.0.0 reihesg.angelfire.com +0.0.0.0 rejalsgays.info +0.0.0.0 relationship-resources.com +0.0.0.0 rencontres-webcams.com +0.0.0.0 returnofthefingtoons.tumblr.com +0.0.0.0 rexmag.com +0.0.0.0 rexxx.com +0.0.0.0 richardkern.com +0.0.0.0 richardsonmag.com +0.0.0.0 rideyourcamels.info +0.0.0.0 rijpevrouwenwebcams.com +0.0.0.0 rindaman123.tumblr.com +0.0.0.0 rivcams.com +0.0.0.0 rk.com +0.0.0.0 rnosh.com +0.0.0.0 ro89.com +0.0.0.0 rob89ben.tumblr.com +0.0.0.0 robsxxx.com +0.0.0.0 roccomovies.net +0.0.0.0 rockinamababes.tumblr.com +0.0.0.0 romancingyourwhore.tumblr.com +0.0.0.0 romcomics.com +0.0.0.0 ronnel75.tumblr.com +0.0.0.0 ronsangels.com +0.0.0.0 rosebuttboard.com +0.0.0.0 rosettastonecomic.com +0.0.0.0 rotanaz.com +0.0.0.0 roundandbrown.com +0.0.0.0 royalan1489.tumblr.com +0.0.0.0 royalbluemedia.com +0.0.0.0 rt.pornhub.com +0.0.0.0 rtalabel.org +0.0.0.0 ru-denial.tumblr.com +0.0.0.0 ru.porn.com +0.0.0.0 rubias19.com +0.0.0.0 rubmaps.com +0.0.0.0 rude.com +0.0.0.0 rudefuck.com +0.0.0.0 rudeteenporn.com +0.0.0.0 rufi22.tumblr.com +0.0.0.0 ruin-my-o.tumblr.com +0.0.0.0 ruinedcumshots.tumblr.com +0.0.0.0 ruinedorgasm.tumblr.com +0.0.0.0 ruinedorgasms.site +0.0.0.0 rule34.paheal.net +0.0.0.0 rule34.xxx +0.0.0.0 ruleporn.com +0.0.0.0 rumrunners.us +0.0.0.0 runawayangels.com +0.0.0.0 rusangels.net +0.0.0.0 russian-virgin.us +0.0.0.0 russianangels.com +0.0.0.0 russianangels.info +0.0.0.0 russianmistress.femdomworld.com +0.0.0.0 russianparadise.com +0.0.0.0 russianpornoxxx.com +0.0.0.0 russiantwinksecrets.com +0.0.0.0 russianvirginz.com +0.0.0.0 russianvirginz.info +0.0.0.0 s-angel.net +0.0.0.0 s-angels.com +0.0.0.0 s-e-x-o-l-a-n-d-i-a.tumblr.com +0.0.0.0 s-sexo.tumblr.com +0.0.0.0 s.angelo.over-blog.org +0.0.0.0 s3xads.com +0.0.0.0 s7lob.com +0.0.0.0 s7lob.net +0.0.0.0 sa7you.com +0.0.0.0 saccyclones.angelfire.com +0.0.0.0 sadistikvirgin.fr.st +0.0.0.0 saff.cc +0.0.0.0 saharanights.info +0.0.0.0 sakuralive.com +0.0.0.0 salamtakehoh.info +0.0.0.0 salasdewebcams.com +0.0.0.0 salopepoitrine.angelfire.com +0.0.0.0 sambaporno.com +0.0.0.0 sancdn.net +0.0.0.0 sandralatina.com +0.0.0.0 santasporngirls.com +0.0.0.0 sapphicangels.com +0.0.0.0 saraangell.com +0.0.0.0 sarahsnaughtyplace.tumblr.com +0.0.0.0 sashafucksdasha.com +0.0.0.0 sassy-angels.com +0.0.0.0 sassyangel.com +0.0.0.0 sativarose.xlogz.com +0.0.0.0 savannavirgin.com +0.0.0.0 saxumeda.angelfire.com +0.0.0.0 saythankyoumaster.tumblr.com +0.0.0.0 sboob.com +0.0.0.0 scatrina.com +0.0.0.0 scene-porn.com +0.0.0.0 schizogirl.blogs.allocine.fr +0.0.0.0 school-virgins.net +0.0.0.0 schoolofvirgins.com +0.0.0.0 score-video.com +0.0.0.0 scoreadate.com +0.0.0.0 scripts.adultcheck.com +0.0.0.0 sdc.com +0.0.0.0 sdfasdf.vangangelt.info +0.0.0.0 se.porn.com +0.0.0.0 sea-angels.ru +0.0.0.0 seaporn.org +0.0.0.0 searchingforavatar.tumblr.com +0.0.0.0 searchsexblogs.com +0.0.0.0 searchwebcams.com +0.0.0.0 searchxfind.com +0.0.0.0 seavirgin.com +0.0.0.0 secehira.angelfire.com +0.0.0.0 secretaryofficesex.tumblr.com +0.0.0.0 secretbehindporn.com +0.0.0.0 secretfriendswebcams.com +0.0.0.0 secretlittle.com +0.0.0.0 secretteenvideo.com +0.0.0.0 section7boobs.tumblr.com +0.0.0.0 secure.collegerules.com +0.0.0.0 secure.euro-angels.com +0.0.0.0 secure.hazehim.com +0.0.0.0 secure.hustler.com +0.0.0.0 secure.itsgonnahurt.com +0.0.0.0 secure.myanalangel.com +0.0.0.0 secure.outinpublic.com +0.0.0.0 secure.thegfnetwork.com +0.0.0.0 secure.twistysnetwork.com +0.0.0.0 secure.watchmygf.com +0.0.0.0 secure.watchmygf.net +0.0.0.0 secure.webpower.com +0.0.0.0 secure.wicked.com +0.0.0.0 secure1.stunningangels.com +0.0.0.0 seducedangel.com +0.0.0.0 seemygf.com +0.0.0.0 seeteenvideos.com +0.0.0.0 selfie-village.tumblr.com +0.0.0.0 selfiesamateurblog.tumblr.com +0.0.0.0 selfishselfies.tumblr.com +0.0.0.0 selfpicshotbabes.tumblr.com +0.0.0.0 selinakylsucks.tumblr.com +0.0.0.0 seniorhousingvirginabeach.com +0.0.0.0 senpai-kimochiii.tumblr.com +0.0.0.0 sensexion.com +0.0.0.0 sensual-kiss.tumblr.com +0.0.0.0 sensualcinderella.tumblr.com +0.0.0.0 sensualphonemistress.tumblr.com +0.0.0.0 sensualwriter.com +0.0.0.0 sentrypc.com +0.0.0.0 seo1.org +0.0.0.0 seoprofit.biz +0.0.0.0 serilobe.angelfire.com +0.0.0.0 serpornostes.tumblr.com +0.0.0.0 serviporno.com +0.0.0.0 sesso-gratis.info +0.0.0.0 seventeenvideo.com +0.0.0.0 sex-and-animals.com +0.0.0.0 sex-cubed.tumblr.com +0.0.0.0 sex-explorer.com +0.0.0.0 sex-gifs-bag.tumblr.com +0.0.0.0 sex-gifs-for-years.tumblr.com +0.0.0.0 sex-harder.tumblr.com +0.0.0.0 sex-maniacs.tumblr.com +0.0.0.0 sex-o-rgia.tumblr.com +0.0.0.0 sex-toplista.zy.pl +0.0.0.0 sex.com +0.0.0.0 sex2arab.com +0.0.0.0 sex2inc.com +0.0.0.0 sex3.com +0.0.0.0 sexangels.net +0.0.0.0 sexcess.net +0.0.0.0 sexcount.de +0.0.0.0 sexdating +0.0.0.0 sexdildoking.com +0.0.0.0 sexdisney.com +0.0.0.0 sexfangallery.tumblr.com +0.0.0.0 sexfans.org +0.0.0.0 sexfg.com +0.0.0.0 sexfind.com +0.0.0.0 sexforums.com +0.0.0.0 sexgalaxy.net +0.0.0.0 sexgangsters.com +0.0.0.0 sexgif-net.tumblr.com +0.0.0.0 sexgifbay.tumblr.com +0.0.0.0 sexhunter.x0.nl +0.0.0.0 sexicallysexical.tumblr.com +0.0.0.0 sexier.com +0.0.0.0 sexit.fr +0.0.0.0 sexix.net +0.0.0.0 sexiz.net +0.0.0.0 sexleech.com +0.0.0.0 sexloading.com +0.0.0.0 sexmaxx.com +0.0.0.0 sexmoney.com +0.0.0.0 sexo-sem-hora.tumblr.com +0.0.0.0 sexole.com +0.0.0.0 sexoteric.com +0.0.0.0 sexpeeper.com +0.0.0.0 sexporncaptions.tumblr.com +0.0.0.0 sexproadventures.com +0.0.0.0 sexsearchtgp.com +0.0.0.0 sexskype.za.pl +0.0.0.0 sexthing69.tumblr.com +0.0.0.0 sextingforum.net +0.0.0.0 sextop1.net +0.0.0.0 sextronix.com +0.0.0.0 sextube.desi +0.0.0.0 sextubehd.xxx +0.0.0.0 sextvx.com +0.0.0.0 sexu.com +0.0.0.0 sexualblondes.net +0.0.0.0 sexualpleasureguide.com +0.0.0.0 sexvid.xxx +0.0.0.0 sexworldgermany.tumblr.com +0.0.0.0 sexx-love-sex.tumblr.com +0.0.0.0 sexxxoul.tumblr.com +0.0.0.0 sexxxygirlsonly.tumblr.com +0.0.0.0 sexy-69-hum.tumblr.com +0.0.0.0 sexy-in-web.tumblr.com +0.0.0.0 sexy-xxx-gif.tumblr.com +0.0.0.0 sexy.fling.com +0.0.0.0 sexyads.com +0.0.0.0 sexyads.net +0.0.0.0 sexyandfunny.com +0.0.0.0 sexybitchbible.tumblr.com +0.0.0.0 sexybunnylove.com +0.0.0.0 sexycfnmballbustteasthandjob.tumblr.com +0.0.0.0 sexydenisemilani1.tumblr.com +0.0.0.0 sexyfashions.angelcities.com +0.0.0.0 sexyfuckgames.com +0.0.0.0 sexyfuckingmachines.tumblr.com +0.0.0.0 sexygifs-majkel.tumblr.com +0.0.0.0 sexygirlbutts.com +0.0.0.0 sexygorgeouswomen.com +0.0.0.0 sexyhumorgames.com +0.0.0.0 sexymaturethumbs.com +0.0.0.0 sexyoung.us +0.0.0.0 sexypornstargifs.tumblr.com +0.0.0.0 sexytout.com +0.0.0.0 sf1-1.yobt.com +0.0.0.0 sf1-2.yobt.com +0.0.0.0 sf1-3.yobt.com +0.0.0.0 sf1-4.yobt.com +0.0.0.0 sf1-5.yobt.com +0.0.0.0 sfb2-1.yobt.com +0.0.0.0 sfb2-2.yobt.com +0.0.0.0 sfb2-3.yobt.com +0.0.0.0 sfb2-4.yobt.com +0.0.0.0 sfb2-5.yobt.com +0.0.0.0 shabbyvirgins.com +0.0.0.0 shameless.com +0.0.0.0 shamelessangel.com +0.0.0.0 sharday.us +0.0.0.0 shared.juicybucks.com +0.0.0.0 shareporno.com +0.0.0.0 sharingwifes.tumblr.com +0.0.0.0 shavkunovayb4a.tumblr.com +0.0.0.0 sheballbustsforliving.tumblr.com +0.0.0.0 shefuckedmybully.tumblr.com +0.0.0.0 shegotass.info +0.0.0.0 sheisangel.com +0.0.0.0 shelbyvirgin.com +0.0.0.0 shemale-clubs.com +0.0.0.0 shemalebot.com +0.0.0.0 shemalemodelstube.com +0.0.0.0 shemalemovies.us +0.0.0.0 shemalepepper.com +0.0.0.0 shemaleswebcams.com +0.0.0.0 shemaletubevideos.com +0.0.0.0 shentai.org +0.0.0.0 shentai.xyz +0.0.0.0 sheposes.com +0.0.0.0 shesfreaky.com +0.0.0.0 shinangel9.free.fr +0.0.0.0 shinyangels.com +0.0.0.0 shivizeh.tumblr.com +0.0.0.0 shockingmovies.com +0.0.0.0 shooshtime.com +0.0.0.0 shopgiggles.com +0.0.0.0 showdeinfieles.com +0.0.0.0 showdewebcams.com.ar +0.0.0.0 showjav.com +0.0.0.0 showmenudes.com +0.0.0.0 showmewebcams.com +0.0.0.0 showwebcams.com +0.0.0.0 shuttur.com +0.0.0.0 shy-angels.over-blog.com +0.0.0.0 shy-virgins.com +0.0.0.0 shyguy3636.tumblr.com +0.0.0.0 shyteentube.com +0.0.0.0 shyvirgin.net +0.0.0.0 shyvirgins.com +0.0.0.0 sicflics.com +0.0.0.0 sideboobies.com +0.0.0.0 signup.hegre-art.com +0.0.0.0 signup.teamskeet.com +0.0.0.0 silkangels.com +0.0.0.0 silkyangels.com +0.0.0.0 simmo5018.tumblr.com +0.0.0.0 simonaaltimari.tumblr.com +0.0.0.0 simplenu.com +0.0.0.0 simply-hentai.com +0.0.0.0 sindystroker.tumblr.com +0.0.0.0 sinfulsexualdesire.tumblr.com +0.0.0.0 singlesadnetwork.com +0.0.0.0 sinisterangel.com +0.0.0.0 sinistercams.com +0.0.0.0 sinistercamslive.com +0.0.0.0 sinnandskinn.com +0.0.0.0 siska.tv +0.0.0.0 sislovesme.com +0.0.0.0 sissycedric.smackjeeves.com +0.0.0.0 site.img.4tube.com +0.0.0.0 siterips.org +0.0.0.0 sizzlinghotpix.tumblr.com +0.0.0.0 sksawi.info +0.0.0.0 skype.nexxen.cz +0.0.0.0 skypecam.com +0.0.0.0 skypecam.streamray.com +0.0.0.0 skypeofsex.over-blog.com +0.0.0.0 skypesex.over-blog.com +0.0.0.0 skypesex.ru +0.0.0.0 slaveballs.tumblr.com +0.0.0.0 slavecomics.com +0.0.0.0 slavestube.com +0.0.0.0 sleazstak.tumblr.com +0.0.0.0 sleazyangels.com +0.0.0.0 sleazyneasy.com +0.0.0.0 sleepingbitch.com +0.0.0.0 slickcams.com +0.0.0.0 slimythief.com +0.0.0.0 slothtraffic.com +0.0.0.0 slumsluts.net +0.0.0.0 slutload.com +0.0.0.0 slutroulette.com +0.0.0.0 sluttyred.com +0.0.0.0 slutwebcams.com +0.0.0.0 sly-little-minx.tumblr.com +0.0.0.0 smartmovies.net +0.0.0.0 smoking-hot-chicks.tumblr.com +0.0.0.0 smrd7.net +0.0.0.0 smu-t.tumblr.com +0.0.0.0 smut-planet.com +0.0.0.0 smutbdsm.com +0.0.0.0 smutsational.tumblr.com +0.0.0.0 smutty.com +0.0.0.0 smutwebcams.com +0.0.0.0 soaringoveryou.tumblr.com +0.0.0.0 socalmovies.com +0.0.0.0 social-media-porn.tumblr.com +0.0.0.0 socialsexnetwork.net +0.0.0.0 softcoretube.org +0.0.0.0 softpornmustdie.tumblr.com +0.0.0.0 software.filestube.com +0.0.0.0 sollunadivine.tumblr.com +0.0.0.0 solocazzienormi.com +0.0.0.0 sologirlguide.com +0.0.0.0 soloporno.xxx +0.0.0.0 solotouch.com +0.0.0.0 solowebcams.com.ar +0.0.0.0 somaiores-pinkpussy.tumblr.com +0.0.0.0 sophiassecrets.com +0.0.0.0 sotransexuais.com +0.0.0.0 sovujva.angelfire.com +0.0.0.0 spamfreeforums.com +0.0.0.0 spank-otk.com +0.0.0.0 spankbang +0.0.0.0 spankbang.com +0.0.0.0 spankingtube.com +0.0.0.0 spankoff-the-smoke.tumblr.com +0.0.0.0 spankwire.com +0.0.0.0 speedriven1.tumblr.com +0.0.0.0 spunkysheets.com +0.0.0.0 squirters0.thumblogger.com +0.0.0.0 squirtinggirlshub.tumblr.com +0.0.0.0 srandel.com +0.0.0.0 srfire8.tumblr.com +0.0.0.0 srta-sexo-afins.tumblr.com +0.0.0.0 srv2.frescoporno.com +0.0.0.0 sss828.welovecpa.com +0.0.0.0 st.virgin.net +0.0.0.0 st3.xhamster.com +0.0.0.0 start.9hz.com +0.0.0.0 stat.easydate.biz +0.0.0.0 static.ccnwebcams.com +0.0.0.0 static.contents.sex-explorer.com +0.0.0.0 static.filestube.com +0.0.0.0 static.gfx.slickcams.com +0.0.0.0 static.justhookup.com +0.0.0.0 static.kissteenclub.com +0.0.0.0 static.rarbg.com +0.0.0.0 static.sex-explorer.com +0.0.0.0 static.wickedcdn.com +0.0.0.0 static.xvideos.com +0.0.0.0 stats.adultrevenueservice.com +0.0.0.0 stats.boyfriendnetwork.com +0.0.0.0 stats.pimproll.com +0.0.0.0 statstools.porn.fr +0.0.0.0 statsv3.carpediem.fr +0.0.0.0 stcontent.premiumhdv.com +0.0.0.0 steamtraffic.com +0.0.0.0 steponmyballs.com +0.0.0.0 stickywebcams.com +0.0.0.0 stiffville.com +0.0.0.0 stileproject.com +0.0.0.0 stimul8tion4u.tumblr.com +0.0.0.0 stocking-divas.com +0.0.0.0 stocking-pages.com +0.0.0.0 stocking-porn.com +0.0.0.0 stoooone.tumblr.com +0.0.0.0 stooorage.com +0.0.0.0 store.playboy.com +0.0.0.0 storiesonline.net +0.0.0.0 straightboygalleries.com +0.0.0.0 strangeland.com +0.0.0.0 strangeland.net +0.0.0.0 strangeland.org +0.0.0.0 strangelove.com.au +0.0.0.0 strangewishes.com +0.0.0.0 stream.pussyharem.com +0.0.0.0 streamateasian.com +0.0.0.0 streamateebony.com +0.0.0.0 streamen.com +0.0.0.0 streaming.tv69.com +0.0.0.0 streamlivesex.com +0.0.0.0 streamsex.com +0.0.0.0 streamxxx.tv +0.0.0.0 streetblowjobs.com +0.0.0.0 stripchat.com +0.0.0.0 stripgalleries.net +0.0.0.0 studiofow.com +0.0.0.0 stufferdb.com +0.0.0.0 stunningangels.com +0.0.0.0 sua-ruivinha-safada.tumblr.com +0.0.0.0 suagosto-sa.tumblr.com +0.0.0.0 subirporno.com +0.0.0.0 sublimedirectory.com +0.0.0.0 submissed.com +0.0.0.0 submityourflicks.com +0.0.0.0 suburbansensations.tumblr.com +0.0.0.0 suburbanwebcams.com +0.0.0.0 sucarpeppergirls.info +0.0.0.0 sucksex.com +0.0.0.0 sugarangels.com +0.0.0.0 suicideangel.com +0.0.0.0 suicidegirls.tumblr.com +0.0.0.0 sultanswomen.com +0.0.0.0 sumptuousdaydreams.tumblr.com +0.0.0.0 sunny-thumbs.com +0.0.0.0 sunporn.com +0.0.0.0 sunporno.com +0.0.0.0 super-virgin.online-golie-skachat.info +0.0.0.0 superb-naked-gilrs.tumblr.com +0.0.0.0 superdeefox.tumblr.com +0.0.0.0 superhotwtf.tumblr.com +0.0.0.0 superporbbaa.ru +0.0.0.0 superspine79.tumblr.com +0.0.0.0 supertightvirgins.com +0.0.0.0 superwebcams.com +0.0.0.0 superzooi.com +0.0.0.0 surreal-visions.tumblr.com +0.0.0.0 svetlanapornblog.tumblr.com +0.0.0.0 swapfinder.com +0.0.0.0 swapsmut.com +0.0.0.0 swebcams.com +0.0.0.0 sweet-angels.com +0.0.0.0 sweet.sweet-angels.net +0.0.0.0 sweetandpussy.com +0.0.0.0 sweetangel.tv +0.0.0.0 sweetbabesblog.com +0.0.0.0 sweetbigshemalecock.tumblr.com +0.0.0.0 sweetdiscreet.com +0.0.0.0 sweethotteens.com +0.0.0.0 sweetkiss.me +0.0.0.0 sweetkrissy.com +0.0.0.0 sweetness-and-delight.tumblr.com +0.0.0.0 sweetofsex.tumblr.com +0.0.0.0 sweetshow.com +0.0.0.0 sweetvirgin.com +0.0.0.0 sweetvirgins.com +0.0.0.0 swinginsteve.tumblr.com +0.0.0.0 swissangels.ch +0.0.0.0 swolangedijk.angelfire.com +0.0.0.0 sxe-girls.tumblr.com +0.0.0.0 sxx.com +0.0.0.0 sybianvirgins.com +0.0.0.0 t-s-s-a.com +0.0.0.0 taboosex.club +0.0.0.0 tac.xcams.com +0.0.0.0 tainster.com +0.0.0.0 takezoo.com +0.0.0.0 tantoporno.com +0.0.0.0 taradosacana.tumblr.com +0.0.0.0 tastyangels.com +0.0.0.0 tatagirls.com +0.0.0.0 tats.cybererotica.com +0.0.0.0 taxidrivermovie.com +0.0.0.0 taxindecente.com +0.0.0.0 taylorbow.xlogz.com +0.0.0.0 tbhplsstaph.tumblr.com +0.0.0.0 tblop.com +0.0.0.0 tdarkangel.com +0.0.0.0 tds.extrime-list.com +0.0.0.0 teachtwinks.com +0.0.0.0 teamskeet.com +0.0.0.0 teasedanddenieddomination.tumblr.com +0.0.0.0 teasinganddenial.tumblr.com +0.0.0.0 teen-gay-boys.net +0.0.0.0 teen-mail.com +0.0.0.0 teen-make-selfies.tumblr.com +0.0.0.0 teen-porn.biz +0.0.0.0 teen-sex.tv +0.0.0.0 teen-tube.tv +0.0.0.0 teen.imlive.com +0.0.0.0 teen.xxxcounter.com +0.0.0.0 teenbookmark.com +0.0.0.0 teenburg.com +0.0.0.0 teencumdumpsters.com +0.0.0.0 teendaporn.com +0.0.0.0 teenextube.com +0.0.0.0 teenfucktory.com +0.0.0.0 teenfunzone.com +0.0.0.0 teengirlsporn.com +0.0.0.0 teengirlstub.com +0.0.0.0 teenhost.net +0.0.0.0 teenmegaworld.net +0.0.0.0 teenpicspussy.com +0.0.0.0 teenpies.com +0.0.0.0 teenporn00.com +0.0.0.0 teenpornb.com +0.0.0.0 teenporncloud.com +0.0.0.0 teenpornmovieshd.net +0.0.0.0 teenpornporn.com +0.0.0.0 teenpussy.tv +0.0.0.0 teens-list.net +0.0.0.0 teens-ok.com +0.0.0.0 teens.teenssites.net +0.0.0.0 teenscoreclub.com +0.0.0.0 teenselfpix.com +0.0.0.0 teensexmovs.com +0.0.0.0 teensexreality.com +0.0.0.0 teensforcash.com +0.0.0.0 teensgotboobs.net +0.0.0.0 teenshdtube.com +0.0.0.0 teenshorde.com +0.0.0.0 teensinasia.com +0.0.0.0 teenslikeitbig.com +0.0.0.0 teenslikeitbig.info +0.0.0.0 teensloveblackcocks.com +0.0.0.0 teensondicks.com +0.0.0.0 teensporn.net +0.0.0.0 teenssites.net +0.0.0.0 teensxxxvideoz.com +0.0.0.0 teentubexxxl.com +0.0.0.0 teeny.thumblogger.com +0.0.0.0 teenyblack.com +0.0.0.0 teenywebcams.com +0.0.0.0 tel.adult-arab.com +0.0.0.0 telefonsexpalast.de +0.0.0.0 temploangelina.com +0.0.0.0 temptingangels.org +0.0.0.0 tenderboys.net +0.0.0.0 tendervirgins.com +0.0.0.0 tenmilliongalleries.com +0.0.0.0 teqajopi.angelfire.com +0.0.0.0 tesao-vs-prazer.tumblr.com +0.0.0.0 teu-macho.tumblr.com +0.0.0.0 teufelchens.tv +0.0.0.0 tgirlmeat.com +0.0.0.0 tgirlp.tumblr.com +0.0.0.0 tgp.pornaccess.com +0.0.0.0 tgzleif.angelfire.com +0.0.0.0 thatsfucked.org +0.0.0.0 the-adult-company.com +0.0.0.0 the-erotic-collection-ru.tumblr.com +0.0.0.0 the-mezo.tumblr.com +0.0.0.0 the-pork.com +0.0.0.0 the-you-i-never-knew.tumblr.com +0.0.0.0 theamourangels.com +0.0.0.0 theangelina.com +0.0.0.0 theater.aebn.net +0.0.0.0 thebeautyoflust.tumblr.com +0.0.0.0 thebestblowjobgifs.tumblr.com +0.0.0.0 thebestpornvid.tumblr.com +0.0.0.0 thebreastpage.tumblr.com +0.0.0.0 theclassicporn.com +0.0.0.0 thecolorofangels.com +0.0.0.0 thedepravedmanor.tumblr.com +0.0.0.0 thefallenangels.webcindario.com +0.0.0.0 thefappening.so +0.0.0.0 thefappening.wiki +0.0.0.0 thefappening2015.com +0.0.0.0 thefappeningnew.com +0.0.0.0 thefreenude.com +0.0.0.0 thegfnetwork.com +0.0.0.0 thegifer.tumblr.com +0.0.0.0 thegootube.com +0.0.0.0 thehollywoodgossip.com +0.0.0.0 thehunteresssociety.tumblr.com +0.0.0.0 theindianporn.com +0.0.0.0 thejay1.tumblr.com +0.0.0.0 thelandofeuphoria.tumblr.com +0.0.0.0 themasturbatoreum.tumblr.com +0.0.0.0 themeetlocal.com +0.0.0.0 themoretheorgier.tumblr.com +0.0.0.0 thenewporn.com +0.0.0.0 thenipslip.com +0.0.0.0 thenude.eu +0.0.0.0 thenudeceleb.com +0.0.0.0 theotherside.adult.directnic.com +0.0.0.0 theporn1.com +0.0.0.0 theporndude.com +0.0.0.0 theporndudecom.tumblr.com +0.0.0.0 thepornlist.net +0.0.0.0 thepregnantsex.com +0.0.0.0 theprincessmadison.tumblr.com +0.0.0.0 theprofe25.tumblr.com +0.0.0.0 therealbobbybrown.tumblr.com +0.0.0.0 thesex-landia.tumblr.com +0.0.0.0 thesexcinema.com +0.0.0.0 thesocialsexnetwork.com +0.0.0.0 thespankingblog.com +0.0.0.0 thestrangeangels.com +0.0.0.0 thesuperficial.com +0.0.0.0 thesweetelite.tumblr.com +0.0.0.0 thetalkingcunt.nl +0.0.0.0 theteenbay.co +0.0.0.0 theunderall.tumblr.com +0.0.0.0 theybf.com +0.0.0.0 theyfuckwewatch.com +0.0.0.0 theync.com +0.0.0.0 theyxxx.com +0.0.0.0 thickbbwforum.com +0.0.0.0 thickdickricannyc.tumblr.com +0.0.0.0 thicknessdelux.tumblr.com +0.0.0.0 thirdmovies.com +0.0.0.0 this-is-a-blog-for-porn.tumblr.com +0.0.0.0 thisasianporn.tumblr.com +0.0.0.0 thisav.com +0.0.0.0 thisvid.com +0.0.0.0 thomasetvirginie.over-blog.com +0.0.0.0 thongsaroundtheworld.com +0.0.0.0 thrixxx.com +0.0.0.0 thumblogger.com +0.0.0.0 thumbs.1stmovieclub.net +0.0.0.0 thumbs.ah-me.com +0.0.0.0 thumbs.juggworld.com +0.0.0.0 thumbs.lonely-wolf.com +0.0.0.0 thumbs.myhomeclip.com +0.0.0.0 thumbsweek.com +0.0.0.0 thumbzilla.com +0.0.0.0 tiasenwebcams.com.ar +0.0.0.0 tiava.com +0.0.0.0 tiavasforum.com +0.0.0.0 tiavaswebcams.com +0.0.0.0 tibalkani.tumblr.com +0.0.0.0 ticklegasms.tumblr.com +0.0.0.0 tight-virgins.com +0.0.0.0 tightangels.com +0.0.0.0 tightteela.com +0.0.0.0 tightvirgins.com.ar +0.0.0.0 tim47802.tumblr.com +0.0.0.0 tinaangel.com +0.0.0.0 tiny-virginz.com +0.0.0.0 tiny4k.com +0.0.0.0 tinychat.com +0.0.0.0 tinyeve.net +0.0.0.0 tinylittlevirgin.com +0.0.0.0 tinynibbles.com +0.0.0.0 tinyvirgins.cjb.net +0.0.0.0 titepants.tumblr.com +0.0.0.0 titflicks.com +0.0.0.0 tits-and-ass-fan.tumblr.com +0.0.0.0 titsandass20.tumblr.com +0.0.0.0 titsbrew.sex2inc.com +0.0.0.0 titshits.com +0.0.0.0 titsthatjiggleabit.com +0.0.0.0 titten-kitty-natursekt.de +0.0.0.0 tittyfuckingftw.tumblr.com +0.0.0.0 tittylicious78.tumblr.com +0.0.0.0 tjoob.com +0.0.0.0 tlornas.tumblr.com +0.0.0.0 tmcallist.tumblr.com +0.0.0.0 tnaflix.com +0.0.0.0 todoporn.com +0.0.0.0 todowebcams.com +0.0.0.0 togtfo.com +0.0.0.0 tokyoangels.com +0.0.0.0 tokyoteenies.com +0.0.0.0 tommmmmmy.tumblr.com +0.0.0.0 tongues-wet-vagina.tumblr.com +0.0.0.0 tools.porn.fr +0.0.0.0 toonaddict.com +0.0.0.0 toonpass.com +0.0.0.0 toons-for-adult.com +0.0.0.0 tootrash.com +0.0.0.0 top-porn-sites.info +0.0.0.0 top.amateuralbum.net +0.0.0.0 top.angels-list.com +0.0.0.0 top.photo-angels.info +0.0.0.0 top.x--x--x.com +0.0.0.0 top1porn.com +0.0.0.0 topadult.ro +0.0.0.0 topadult10.com +0.0.0.0 topamateurforum.com +0.0.0.0 topamateursexvideos.com +0.0.0.0 topfreaks.com +0.0.0.0 topfreepornvideos.com +0.0.0.0 tophd.xxx +0.0.0.0 topheavywebcams.com +0.0.0.0 tophomevideos.com +0.0.0.0 toplistwebcams.com +0.0.0.0 topmodel_virginie.cmonbook.com +0.0.0.0 topmomvideos.com +0.0.0.0 topnotchwebcams.com +0.0.0.0 toppornblogs.com +0.0.0.0 toppornsites.com +0.0.0.0 toprealvideos.com +0.0.0.0 topsexart.com +0.0.0.0 topsites.naturalangels.com +0.0.0.0 topsites24.net +0.0.0.0 topsiteuri.ro +0.0.0.0 toptoonsites.com +0.0.0.0 topwebcams.com +0.0.0.0 torinoerotica.com +0.0.0.0 torontoangels.com +0.0.0.0 toroporno.com +0.0.0.0 torrentsgroup.com +0.0.0.0 torture.adult-extreme.com +0.0.0.0 totalexposure.com +0.0.0.0 totallynsfw.com +0.0.0.0 toteme.com +0.0.0.0 tour.cybererotica.com +0.0.0.0 tour.ihookup.com +0.0.0.0 tours.playboy.com +0.0.0.0 tours.webcams.com +0.0.0.0 tr.porn.com +0.0.0.0 tr.youporn.com +0.0.0.0 track.adultdialersolution.com +0.0.0.0 track.braincash.com +0.0.0.0 track.justhookup.com +0.0.0.0 track.pornaccess.com +0.0.0.0 tradehardlinks.com +0.0.0.0 tradgardshus.angelfire.com +0.0.0.0 trailerwmv.com +0.0.0.0 trampararam.net +0.0.0.0 tranceangel.startmee.nl +0.0.0.0 tranent.nl +0.0.0.0 tranny.com +0.0.0.0 trannypichunter.com +0.0.0.0 trannysurprise.com +0.0.0.0 trans-angelina.de +0.0.0.0 trans500.com +0.0.0.0 transexual-webcams.com +0.0.0.0 transladyboy.com +0.0.0.0 transsexualhut.com +0.0.0.0 travestisconwebcams.com +0.0.0.0 traxxxa.com +0.0.0.0 tray13me.tumblr.com +0.0.0.0 trial.sex-explorer.com +0.0.0.0 triplexangels.com +0.0.0.0 triplexposure.com +0.0.0.0 troiaitaliana.com +0.0.0.0 trueangels.com +0.0.0.0 truecash.com +0.0.0.0 truthordarepics.com +0.0.0.0 tryboobs.com +0.0.0.0 tryfap.tumblr.com +0.0.0.0 trymeout2.tumblr.com +0.0.0.0 tscumfetishx.tumblr.com +0.0.0.0 tsdreamangel.com +0.0.0.0 tuakcba.angelfire.com +0.0.0.0 tubaholic.com +0.0.0.0 tube.smoder.com +0.0.0.0 tube18.sex +0.0.0.0 tube18.xxx +0.0.0.0 tube555.com +0.0.0.0 tubeanalporn.com +0.0.0.0 tubedupe.com +0.0.0.0 tubegalore.com +0.0.0.0 tubegals.com +0.0.0.0 tubekitty.com +0.0.0.0 tubeon.com +0.0.0.0 tubepleasure.com +0.0.0.0 tubeporn.com +0.0.0.0 tubepornclassic.com +0.0.0.0 tubepornteen.com +0.0.0.0 tubeq.xxx +0.0.0.0 tubesafari.com +0.0.0.0 tubesimple.com +0.0.0.0 tubestack.com +0.0.0.0 tubeteencam.com +0.0.0.0 tubeteener.com +0.0.0.0 tubething.com +0.0.0.0 tubewolf.com +0.0.0.0 tuboff.com +0.0.0.0 tubxporn.com +0.0.0.0 tuccus.com +0.0.0.0 tukif.com +0.0.0.0 tumview.com +0.0.0.0 turbine25.tumblr.com +0.0.0.0 turbo-angels.forummotion.com +0.0.0.0 turnporn.com +0.0.0.0 tushy.com +0.0.0.0 tushyporn.net +0.0.0.0 tv69.com +0.0.0.0 tvclubtour.playboy.com +0.0.0.0 twatgod.com +0.0.0.0 twerk-girls.tumblr.com +0.0.0.0 twerkgifs.com +0.0.0.0 twerkgifs.tumblr.com +0.0.0.0 twerkgifsuncutxxx.tumblr.com +0.0.0.0 twilight-angels.com +0.0.0.0 twinksonwebcams.com +0.0.0.0 twistedblogs.com +0.0.0.0 twistys.com +0.0.0.0 twistysnetwork.com +0.0.0.0 twizporn.com +0.0.0.0 tyme2play.ucgalleries.com +0.0.0.0 tys-ties.tumblr.com +0.0.0.0 ucgalleries.com +0.0.0.0 uflash.tv +0.0.0.0 uk-webcams.com +0.0.0.0 ukn0wuwantit.tumblr.com +0.0.0.0 uknothatoneguy.tumblr.com +0.0.0.0 ultimattdoom.tumblr.com +0.0.0.0 ultimoaura04hd.tumblr.com +0.0.0.0 ultra-pornstars.com +0.0.0.0 ultrawebcams.com +0.0.0.0 ultrayoungsex.com +0.0.0.0 underboobed.com +0.0.0.0 underground1970.tumblr.com +0.0.0.0 unitedhomeporn.com +0.0.0.0 unitedtechguys.com +0.0.0.0 universallove7.tumblr.com +0.0.0.0 unpard-pervert-idos.tumblr.com +0.0.0.0 unscathedcorpse.blogspot.com +0.0.0.0 unshavedwebcams.com +0.0.0.0 unuzroe.angelfire.com +0.0.0.0 updatenationwide.9hz.com +0.0.0.0 updatetube.com +0.0.0.0 upforit.com +0.0.0.0 upforitnetworks.com +0.0.0.0 upornia.com +0.0.0.0 urge.info +0.0.0.0 urhentai.com +0.0.0.0 urlgalleries.net +0.0.0.0 usa-webcams.com +0.0.0.0 usasexlovers.com +0.0.0.0 usearchx.com +0.0.0.0 usedpanties.tumblr.com +0.0.0.0 uselessjunk.com +0.0.0.0 usercash.com +0.0.0.0 userporn.com +0.0.0.0 users.dacash.com +0.0.0.0 usexvideos.com +0.0.0.0 usualgirls.com +0.0.0.0 usvirgin.com +0.0.0.0 usvirgins.com +0.0.0.0 utherverse.com +0.0.0.0 v3.allurecash.net +0.0.0.0 va-ua.com +0.0.0.0 valentina-nappi.it +0.0.0.0 vampire-ass.tumblr.com +0.0.0.0 vanillafucker.tumblr.com +0.0.0.0 vemkeselambusa.tumblr.com +0.0.0.0 vemsentir-prazer.tumblr.com +0.0.0.0 veporn.net +0.0.0.0 veraezz.angelfire.com +0.0.0.0 verbalangels.com +0.0.0.0 veritiesandbald3rdash.tumblr.com +0.0.0.0 veronica-steam.tumblr.com +0.0.0.0 veronicasdiary.com +0.0.0.0 verwebcams.com +0.0.0.0 verydemotivational.memebase.com +0.0.0.0 veryspecialporn.tumblr.com +0.0.0.0 veryvirgin.com +0.0.0.0 viacrux.angelfire.com +0.0.0.0 viagra-shop.com.ua +0.0.0.0 vibrasian.com +0.0.0.0 vickyvirgin.com +0.0.0.0 vid2c.com +0.0.0.0 vidbang.com +0.0.0.0 video-angels.ru.tf +0.0.0.0 video-one.com +0.0.0.0 video-porno-gratuit.pornofolies.com +0.0.0.0 video-virgin.net +0.0.0.0 video-virgins.com +0.0.0.0 video.filestube.com +0.0.0.0 video69.ru +0.0.0.0 videoangels.com +0.0.0.0 videodirectory10.info +0.0.0.0 videolovesyou.com +0.0.0.0 videos2stars.com +0.0.0.0 videos666.com +0.0.0.0 videosexperts.com +0.0.0.0 videoso.withsex.com +0.0.0.0 videosywebcams.com +0.0.0.0 videosz.com +0.0.0.0 videovirgins.com +0.0.0.0 videowood.tv +0.0.0.0 vidxnet.com +0.0.0.0 vidz.com +0.0.0.0 vidz7.com +0.0.0.0 viewdesisex.com +0.0.0.0 vikiporn.com +0.0.0.0 villoumoristic.blogs.allocine.fr +0.0.0.0 vintage-erotica-forum.com +0.0.0.0 vintagepinupgirls.net +0.0.0.0 vipangelz.com +0.0.0.0 vipergirls.to +0.0.0.0 vipissy.com +0.0.0.0 viptube.com +0.0.0.0 virgin-cocks.com +0.0.0.0 virgin-coconut-oil.info +0.0.0.0 virgin-experience.com +0.0.0.0 virgin-films.com +0.0.0.0 virgin-international.de +0.0.0.0 virgin-movies.com +0.0.0.0 virgin-nubiles.com +0.0.0.0 virgin-paradise.com +0.0.0.0 virgin-paradize.com +0.0.0.0 virgin-pics.com +0.0.0.0 virgin-tv.tv +0.0.0.0 virgin-world.com +0.0.0.0 virgin.cjbb.net +0.0.0.0 virgin.inq.com +0.0.0.0 virgin.online-golie-skachat.info +0.0.0.0 virgin4free.com +0.0.0.0 virgin50.com +0.0.0.0 virgin66.freehostpage.com +0.0.0.0 virginalena.com +0.0.0.0 virginals.com +0.0.0.0 virginanime.com +0.0.0.0 virginass.com +0.0.0.0 virginbody.com +0.0.0.0 virgincards.com +0.0.0.0 virgincity.com +0.0.0.0 virginconfession.com +0.0.0.0 virgindot.com +0.0.0.0 virginfestival2008.com +0.0.0.0 virginfilms.com +0.0.0.0 virginfisters.net +0.0.0.0 virginfriend.info +0.0.0.0 virgingalactic.ca +0.0.0.0 virgingaming.com +0.0.0.0 virginhaven.com +0.0.0.0 virginhigh.com +0.0.0.0 virginhoney.com +0.0.0.0 virginhood.com +0.0.0.0 virginia-model.info +0.0.0.0 virginia-personals.com +0.0.0.0 virginia-the-model.book.fr +0.0.0.0 virginia.in +0.0.0.0 virginia.lover.free.fr +0.0.0.0 virginia.newmail.ru +0.0.0.0 virginiaannterrell.net +0.0.0.0 virginiabeachattorneyinfo.com +0.0.0.0 virginiablueridge.com +0.0.0.0 virginiadiocese.org +0.0.0.0 virginiasanden.deviantart.com +0.0.0.0 virginiasteger.com +0.0.0.0 virginiatechmurders.com +0.0.0.0 virginidad.com +0.0.0.0 virginidad.nl +0.0.0.0 virginie.daviaud.free.fr +0.0.0.0 virginie.efira.free.fr +0.0.0.0 virginie.efira.nue.online.fr +0.0.0.0 virginie.efira.online.fr +0.0.0.0 virginie.elfira.online.fr +0.0.0.0 virginie.et.karl.free.fr +0.0.0.0 virginie.ledoyen.online.fr +0.0.0.0 virginiecaprice.com +0.0.0.0 virginieh.cmonbook.com +0.0.0.0 virginietvsoumise.photo.doctissimo.fr +0.0.0.0 virgininterview.com +0.0.0.0 virginity.fun.ms +0.0.0.0 virginkitty.com +0.0.0.0 virginladies.com +0.0.0.0 virginlove.mistypark.com +0.0.0.0 virginmaleass.com +0.0.0.0 virginmedia.ed10.net +0.0.0.0 virginmedianet.com +0.0.0.0 virginmobile.fr +0.0.0.0 virginmobileringtones.weebly.com +0.0.0.0 virginnextdoor.com +0.0.0.0 virginoff.biz +0.0.0.0 virginoff.co.uk +0.0.0.0 virginoff.com +0.0.0.0 virginoff.com.ar +0.0.0.0 virginoff.info +0.0.0.0 virginopener.com +0.0.0.0 virginpalace.de +0.0.0.0 virginpass.com +0.0.0.0 virginpassword.com +0.0.0.0 virginphoto.com +0.0.0.0 virginplace.com +0.0.0.0 virginradio.fr +0.0.0.0 virginriches.com +0.0.0.0 virginriver.com +0.0.0.0 virgins-candid.com +0.0.0.0 virgins-club.com +0.0.0.0 virgins-off.com +0.0.0.0 virgins-x.com +0.0.0.0 virgins.allcj.com +0.0.0.0 virgins.fsn.net +0.0.0.0 virgins.info +0.0.0.0 virgins.org +0.0.0.0 virgins.pl +0.0.0.0 virgins19.com +0.0.0.0 virgins4free.com +0.0.0.0 virgins4freegold.com +0.0.0.0 virginsadist.com +0.0.0.0 virginsbbs.com +0.0.0.0 virginsblog.com +0.0.0.0 virginsclub.com +0.0.0.0 virginsclub.net +0.0.0.0 virginscrazy.com +0.0.0.0 virginsdontskydive.com +0.0.0.0 virginseries.com +0.0.0.0 virginsexstory.com +0.0.0.0 virginsexweb.com +0.0.0.0 virginsexx.com +0.0.0.0 virginsfresh.com +0.0.0.0 virginshack.com +0.0.0.0 virginshow.com +0.0.0.0 virginsisterdotcum.com +0.0.0.0 virginslits.com +0.0.0.0 virginsmag.com +0.0.0.0 virginsmania.com +0.0.0.0 virginsnack.com +0.0.0.0 virginsrus.com +0.0.0.0 virginstories.com +0.0.0.0 virginsuicide.com +0.0.0.0 virginsvids.com +0.0.0.0 virgintemple.com +0.0.0.0 virgintime.com +0.0.0.0 virgintwat.com +0.0.0.0 virginworld.mylivepage.ru +0.0.0.0 virginx.com +0.0.0.0 virginz.info +0.0.0.0 virginz.net +0.0.0.0 virginz.nl +0.0.0.0 virginz.tv +0.0.0.0 virginzinfo4.ye.st +0.0.0.0 virtuagirlhd.com +0.0.0.0 virtualrealporn.com +0.0.0.0 virtuangels.com +0.0.0.0 visodangelo.com +0.0.0.0 vivatube.com +0.0.0.0 vividceleb.com +0.0.0.0 vivud.com +0.0.0.0 vixen.com +0.0.0.0 viximporn.org +0.0.0.0 vjav.com +0.0.0.0 vlxll.tumblr.com +0.0.0.0 voayeurs.com +0.0.0.0 voffka.com +0.0.0.0 voglioporno.com +0.0.0.0 voktel.com +0.0.0.0 voluptuous.naturalwonderz.com +0.0.0.0 vou-te-fazer-sentir-prazer.tumblr.com +0.0.0.0 voyeurhit.com +0.0.0.0 voyeurpornweb.com +0.0.0.0 voyeurweb.com +0.0.0.0 vozer.voffka.com +0.0.0.0 vporn.com +0.0.0.0 vpornvideos.com +0.0.0.0 vrbangers.com +0.0.0.0 vuioirq.angelfire.com +0.0.0.0 walking-angel.com +0.0.0.0 wank.net +0.0.0.0 wankerhut.com +0.0.0.0 wankflix.com +0.0.0.0 wankoz.com +0.0.0.0 wankspider.com +0.0.0.0 wankz.com +0.0.0.0 wankzvr.com +0.0.0.0 wanttoneed.tumblr.com +0.0.0.0 war2kotshena.info +0.0.0.0 wastedamateurs.com +0.0.0.0 wasteland.com +0.0.0.0 watchersweb.com +0.0.0.0 watchindianporn.net +0.0.0.0 watchjavonline.com +0.0.0.0 watchmygf.com +0.0.0.0 watchmygf.me +0.0.0.0 watchmygirlfriend.gfpornvideos.com +0.0.0.0 watchmynewgf.com +0.0.0.0 watchporn.com +0.0.0.0 watchpornx.com +0.0.0.0 watchxxxfree.com +0.0.0.0 waytoomuchcum.tumblr.com +0.0.0.0 wbaiema.angelfire.com +0.0.0.0 wbfbyr.angelfire.com +0.0.0.0 we-want-nudity.tumblr.com +0.0.0.0 web-angels.de +0.0.0.0 webcampornblog.net +0.0.0.0 webcams.com +0.0.0.0 webcamsdancer.com +0.0.0.0 webcamtop100.com +0.0.0.0 webgirlsonline.net +0.0.0.0 webmasters.flipscash.com +0.0.0.0 webmasters.hugetraffic.com +0.0.0.0 wegifu.tumblr.com +0.0.0.0 welcome.ivanafukalot.com +0.0.0.0 welcome.sashafucksdasha.com +0.0.0.0 welivetogether.com +0.0.0.0 welovewatchporn.tumblr.com +0.0.0.0 weluvnsfw.tumblr.com +0.0.0.0 welve6.angelfire.com +0.0.0.0 wendise.com +0.0.0.0 wet-babe.com +0.0.0.0 wetandpissy.com +0.0.0.0 wetangels.com +0.0.0.0 wetchan.org +0.0.0.0 wetforsexxx.tumblr.com +0.0.0.0 wetplace.com +0.0.0.0 wetpussy.com +0.0.0.0 wetpussygames.com +0.0.0.0 wetvirgin.net +0.0.0.0 wetvirgins.com +0.0.0.0 wetwebcams.com +0.0.0.0 what-i-like-doing93.tumblr.com +0.0.0.0 whataporn.com +0.0.0.0 whatever-makes-my-dong-hard.tumblr.com +0.0.0.0 whatgetsy0u0ff.tumblr.com +0.0.0.0 whatpornsite.com +0.0.0.0 whatporntoday.com +0.0.0.0 whitneywisconsin.tumblr.com +0.0.0.0 wicked.com +0.0.0.0 wickedpictures.com +0.0.0.0 wickedwildwives.tumblr.com +0.0.0.0 wifepornpics.com +0.0.0.0 wifeysworld.ws +0.0.0.0 wikiangela.com +0.0.0.0 wild-teenz.com +0.0.0.0 wild1050.tumblr.com +0.0.0.0 wildebonylovers.com +0.0.0.0 wildfireextrem.tumblr.com +0.0.0.0 wildmatch.com +0.0.0.0 wildnudegirls.com +0.0.0.0 wildsugaray.tumblr.com +0.0.0.0 wildxangel.com +0.0.0.0 williamjamesxo.tumblr.com +0.0.0.0 winporn.com +0.0.0.0 wintermission.tumblr.com +0.0.0.0 wiredpussy.com +0.0.0.0 wisevirgin.com +0.0.0.0 wolrdteenparadise.com +0.0.0.0 women-fuck-men.tumblr.com +0.0.0.0 women-pickup.com +0.0.0.0 womenofplayboy.com +0.0.0.0 won.images.streamray.com +0.0.0.0 wooyeoh.angelfire.com +0.0.0.0 world4angelina.com +0.0.0.0 worlddatingforum.com +0.0.0.0 worldsex.com +0.0.0.0 worldwidewives.com +0.0.0.0 worthymoms.com +0.0.0.0 wowteenass.com +0.0.0.0 wqw.planetsuzy.org +0.0.0.0 wt.eroticmatch.com +0.0.0.0 wt.xxxcupid.com +0.0.0.0 wtfpeople.com +0.0.0.0 wts.sexrouter.net +0.0.0.0 wukme.tumblr.com +0.0.0.0 wunbuck.com +0.0.0.0 wvasilevcampers.krovatka.su +0.0.0.0 ww.angelswifelovers.com +0.0.0.0 ww1.massiveaccess-cartoonx.com +0.0.0.0 www-old.hugetraffic.com +0.0.0.0 www1.chickenhost.com +0.0.0.0 www16.japaneseanime.com +0.0.0.0 www2.barebree.com +0.0.0.0 www2.chickenhost.com +0.0.0.0 www2.unionfilesexchnges.su +0.0.0.0 www3.chickenhost.com +0.0.0.0 www4.chickenhost.com +0.0.0.0 www5.chickenhost.com +0.0.0.0 wwwalisonangel.com +0.0.0.0 wylinsneaky88.tumblr.com +0.0.0.0 x--x--x.com +0.0.0.0 x-bangbus.bangbros1.com +0.0.0.0 x-bigmouthfuls.bangbros1.com +0.0.0.0 x-bigtitsroundasses.bangbros1.com +0.0.0.0 x-curves01.tumblr.com +0.0.0.0 x-milflessons.bangbros1.com +0.0.0.0 x-milfsoup.bangbros1.com +0.0.0.0 x-preview.com +0.0.0.0 x-tugjobs.bangbros1.com +0.0.0.0 x-videoz.org +0.0.0.0 x.teenssites.net +0.0.0.0 x18.xxx +0.0.0.0 x3xtube.com +0.0.0.0 xachirpin.tumblr.com +0.0.0.0 xafohet.angelfire.com +0.0.0.0 xangels.canalblog.com +0.0.0.0 xanimeporn.com +0.0.0.0 xartmodels.com +0.0.0.0 xbabe.com +0.0.0.0 xbnat.com +0.0.0.0 xcafe.com +0.0.0.0 xcams.com +0.0.0.0 xdapaeq.angelfire.com +0.0.0.0 xdating.com +0.0.0.0 xfapzap.com +0.0.0.0 xfig.net +0.0.0.0 xfreehd.com +0.0.0.0 xgallsx.com +0.0.0.0 xhamster-teens.com +0.0.0.0 xhamster.com +0.0.0.0 xhamstercams.com +0.0.0.0 xhamsterhq.com +0.0.0.0 xhamsterlesbian.com +0.0.0.0 xhit.com +0.0.0.0 xhookups.com +0.0.0.0 xhqtube.com +0.0.0.0 xitalian.com +0.0.0.0 xkeezmovies.com +0.0.0.0 xkxempire.com +0.0.0.0 xl-porn.com +0.0.0.0 xl-toons.com +0.0.0.0 xlivewebcams.com +0.0.0.0 xlogz.com +0.0.0.0 xmissy.nl +0.0.0.0 xnprhl6qa.angelfire.com +0.0.0.0 xnxx.com +0.0.0.0 xogogo.com +0.0.0.0 xonline.vip +0.0.0.0 xossip.com +0.0.0.0 xoxojoannaangel.com +0.0.0.0 xpaja.net +0.0.0.0 xpee.com +0.0.0.0 xpornking.com +0.0.0.0 xpornz.com +0.0.0.0 xratedtracking.com +0.0.0.0 xsimduu.angelfire.com +0.0.0.0 xstigma.com +0.0.0.0 xtapes.to +0.0.0.0 xtheatre.net +0.0.0.0 xtoplist.com +0.0.0.0 xtoplists.com +0.0.0.0 xuk.ru +0.0.0.0 xvideohard.com +0.0.0.0 xvideos.com +0.0.0.0 xvideosx.com.br +0.0.0.0 xvirgins.com +0.0.0.0 xwebcams.com +0.0.0.0 xxparceroxx.xpg.com.br +0.0.0.0 xxvideoss.org +0.0.0.0 xxx-art.us +0.0.0.0 xxx-hd-teens.net +0.0.0.0 xxx-hd-tube.com +0.0.0.0 xxx-hitz.org +0.0.0.0 xxx-mom.com +0.0.0.0 xxx.com +0.0.0.0 xxx4live.com +0.0.0.0 xxxadultcinema.com +0.0.0.0 xxxaporn.com +0.0.0.0 xxxbannerswap.com +0.0.0.0 xxxbunker.com +0.0.0.0 xxxcosplaypics.com +0.0.0.0 xxxcosplaypics.tumblr.com +0.0.0.0 xxxcupid.com +0.0.0.0 xxxdating.com +0.0.0.0 xxxgifsource.tumblr.com +0.0.0.0 xxxhornymilfsluts.tumblr.com +0.0.0.0 xxxhotgifs.tumblr.com +0.0.0.0 xxxkingtube.com +0.0.0.0 xxxmalltheaters.tumblr.com +0.0.0.0 xxxonxxx.com +0.0.0.0 xxxpasswordsite.com +0.0.0.0 xxxpawn.com +0.0.0.0 xxxporndrawings.com +0.0.0.0 xxxpornsgifsxxx.tumblr.com +0.0.0.0 xxxsalteexxx.tumblr.com +0.0.0.0 xxxsexxx.tumblr.com +0.0.0.0 xxxstreams.eu +0.0.0.0 xxxstreams.org +0.0.0.0 xxxtubedot.com +0.0.0.0 xxxvideoporno.it +0.0.0.0 xxxvogue.net +0.0.0.0 xxxwebtraffic.com +0.0.0.0 xxxx-porn.tumblr.com +0.0.0.0 xxxxnsfwultra.tumblr.com +0.0.0.0 xxxylive.com +0.0.0.0 xxxymovies.com +0.0.0.0 xyzcomics.com +0.0.0.0 xyztraffic.com +0.0.0.0 yalladownload.com +0.0.0.0 yallainternethotnights.info +0.0.0.0 yanks.com +0.0.0.0 yaoislash.virginradioblog.fr +0.0.0.0 yasalambanat.info +0.0.0.0 yasukeji.angelfire.com +0.0.0.0 yazum.com +0.0.0.0 yellowrose53.tumblr.com +0.0.0.0 yemzuho.angelfire.com +0.0.0.0 yeptube.com +0.0.0.0 yes.xxx +0.0.0.0 yesforsexxxappeal.tumblr.com +0.0.0.0 yesmessenger.com +0.0.0.0 yesmessenger.eu +0.0.0.0 yesmessenger.hu +0.0.0.0 yesorgasmcontrol.tumblr.com +0.0.0.0 yespornplease.com +0.0.0.0 yetisblog.com +0.0.0.0 yezzclips.com +0.0.0.0 ygxiewp.angelfire.com +0.0.0.0 yobt.com +0.0.0.0 yobt.tv +0.0.0.0 yobtcams.com +0.0.0.0 yobtdvd.com +0.0.0.0 yobthd.com +0.0.0.0 yobtlive.com +0.0.0.0 yoloselfie.com +0.0.0.0 yoslut.com +0.0.0.0 youanmeme.tumblr.com +0.0.0.0 youav.com +0.0.0.0 youhavetofaponthesebeforeyoudie.tumblr.com +0.0.0.0 youhdporno.com +0.0.0.0 youho.com +0.0.0.0 youjizz.com +0.0.0.0 young-and-virgin.com +0.0.0.0 young-girlfriends.com +0.0.0.0 youngandhorny.com +0.0.0.0 youngandready.com +0.0.0.0 youngbusty.com +0.0.0.0 youngfuck.xyz +0.0.0.0 youngheaven.com +0.0.0.0 youngmovieclips.com +0.0.0.0 youngpornpictures.com +0.0.0.0 youngpornvideos.com +0.0.0.0 youngsex.club +0.0.0.0 youngsex.me +0.0.0.0 youngsex.org +0.0.0.0 youngsexhub.com +0.0.0.0 youngsexmoviez.com +0.0.0.0 youngteensexhd.com +0.0.0.0 youngthroats.com +0.0.0.0 youngtubemovies.com +0.0.0.0 youngxxxvideoz.com +0.0.0.0 youporn.com +0.0.0.0 youporn.lc +0.0.0.0 youpornbook.com +0.0.0.0 youpornhd.co +0.0.0.0 youpornmate.com +0.0.0.0 youpornru.com +0.0.0.0 youpunish.com +0.0.0.0 your-bootylover-stuff.tumblr.com +0.0.0.0 your-daily-girl.com +0.0.0.0 youramateurporn.com +0.0.0.0 yourdailygirls.com +0.0.0.0 yourdailypornstars.com +0.0.0.0 yourdailypornvideos.com +0.0.0.0 yourdarkqueenisis.tumblr.com +0.0.0.0 yourdirtymind.com +0.0.0.0 yourfreeporn.tv +0.0.0.0 yourfreeporn.us +0.0.0.0 yourfuckbook.com +0.0.0.0 yourlust.com +0.0.0.0 yourlustmedia.com +0.0.0.0 yourlustmovies.com +0.0.0.0 yourporn.sexy +0.0.0.0 yourpornjizz.com +0.0.0.0 yoursexwebcams.com +0.0.0.0 youupornhub.com +0.0.0.0 youx.xxx +0.0.0.0 yporn.tv +0.0.0.0 ysporn.com +0.0.0.0 ytaakk.angelfire.com +0.0.0.0 yteenporn.com +0.0.0.0 yumedream.netangels.ru +0.0.0.0 yumm.net +0.0.0.0 yummy-cummy.ccnwebcams.com +0.0.0.0 yuotubeporno.tripod.com +0.0.0.0 yuvutu.com +0.0.0.0 ywebcams.com +0.0.0.0 za3ror.com +0.0.0.0 zasians.com +0.0.0.0 zebkbeer.com +0.0.0.0 zendog2121.tumblr.com +0.0.0.0 zevera.com +0.0.0.0 zimbio.com +0.0.0.0 zloeradio.net +0.0.0.0 zmature.com +0.0.0.0 zoig.com +0.0.0.0 zonawebcams.com +0.0.0.0 zonewebcams.com +0.0.0.0 zoo-fuck.net +0.0.0.0 zoodollars.com +0.0.0.0 zoomgirls.net +0.0.0.0 zooporntube365.tripod.com +0.0.0.0 zoosextv.com +0.0.0.0 zorglist.com +0.0.0.0 zossip.com +0.0.0.0 ztod.com +0.0.0.0 zuzandra.com +0.0.0.0 zzcartoon.com +0.0.0.0 zzgays.com +# Porn hosts + +# Updated May 10, 2016 + + + +0.0.0.0 www.007angels.com +0.0.0.0 www.00webcams.com +0.0.0.0 www.100200film.com +0.0.0.0 www.100amateurvideos.com +0.0.0.0 www.101sexsecret.com +0.0.0.0 www.110percentnatural.com +0.0.0.0 www.18-teen-xxx.com +0.0.0.0 www.18andabused.tv +0.0.0.0 www.18eighteenz.com +0.0.0.0 www.18porno.tv +0.0.0.0 www.18tubehd.com +0.0.0.0 www.18yearsold.com +0.0.0.0 www.18yo.pics +0.0.0.0 www.19angels.net +0.0.0.0 www.1on1sexwebcams.com +0.0.0.0 www.1sexsex.com +0.0.0.0 www.1st-virgin.com +0.0.0.0 www.1stmovieclub.net +0.0.0.0 www.1virgins.net +0.0.0.0 www.2001positions.com +0.0.0.0 www.21x.org +0.0.0.0 www.2bigtobetrue.com +0.0.0.0 www.2damnhot.com +0.0.0.0 www.2gfx.com +0.0.0.0 www.2virgins.com +0.0.0.0 www.300webcams.com +0.0.0.0 www.321webcams.com +0.0.0.0 www.3angelsvideo.com +0.0.0.0 www.3at3ot.com +0.0.0.0 www.3movs.com +0.0.0.0 www.3redangels.com +0.0.0.0 www.3sex.com +0.0.0.0 www.3thehardway.nl +0.0.0.0 www.3virgin.com +0.0.0.0 www.3x.ro +0.0.0.0 www.3xtraffic.com +0.0.0.0 www.40best.com +0.0.0.0 www.4affiliate.net +0.0.0.0 www.4desiz.blogspot.com +0.0.0.0 www.4sex4.com +0.0.0.0 www.4sexwebcams.com +0.0.0.0 www.4tube.com +0.0.0.0 www.5fing.com +0.0.0.0 www.5starangels.com +0.0.0.0 www.69-webcams.com +0.0.0.0 www.6eez.net +0.0.0.0 www.7virgin.com +0.0.0.0 www.88cum.com +0.0.0.0 www.8maturepornmovies.com +0.0.0.0 www.8muses.com +0.0.0.0 www.8teenxxx.com +0.0.0.0 www.91porn.com +0.0.0.0 www.99cams.com +0.0.0.0 www.99webcams.com +0.0.0.0 www.9hz.com +0.0.0.0 www.a4w.cc +0.0.0.0 www.aaronsangels.com +0.0.0.0 www.abbywinters.com +0.0.0.0 www.aboutangelinajolie.com +0.0.0.0 www.aboutgirlslove.com +0.0.0.0 www.aboutsexxx.com +0.0.0.0 www.abrutis.com +0.0.0.0 www.absolute-live.com +0.0.0.0 www.adamandeve.com +0.0.0.0 www.adameve.com +0.0.0.0 www.adressesx.com +0.0.0.0 www.adriana-sage.org +0.0.0.0 www.adsgangsta.com +0.0.0.0 www.adult-adv.com +0.0.0.0 www.adult-arab.com +0.0.0.0 www.adult-banner-ads.com +0.0.0.0 www.adult-clips.us +0.0.0.0 www.adult-dating-ads.com +0.0.0.0 www.adult-extreme.com +0.0.0.0 www.adult-models.org +0.0.0.0 www.adult-profit-files.com +0.0.0.0 www.adult-profit-files2.com +0.0.0.0 www.adult-targeted-traffic.com +0.0.0.0 www.adultads.biz +0.0.0.0 www.adultadworld.com +0.0.0.0 www.adultbanners.co.uk +0.0.0.0 www.adultbay.org +0.0.0.0 www.adultcashtraffic.com +0.0.0.0 www.adultcomix.biz +0.0.0.0 www.adultdialersolution.com +0.0.0.0 www.adultdvdhits.com +0.0.0.0 www.adultfriendfinders.com +0.0.0.0 www.adultfriendfinders.net +0.0.0.0 www.adultfriendfinders.us +0.0.0.0 www.adultfriendfinderz.com +0.0.0.0 www.adultfriendsearch.com +0.0.0.0 www.adulthostedblogs.com +0.0.0.0 www.adultmoda.com +0.0.0.0 www.adultmoviegroup.com +0.0.0.0 www.adultpopunders.com +0.0.0.0 www.adultrevenueservice.com +0.0.0.0 www.adultscandy.com +0.0.0.0 www.adulttrafficads.com +0.0.0.0 www.adultvideosteens.com +0.0.0.0 www.adultwebmastersonline.com +0.0.0.0 www.advertx.net +0.0.0.0 www.aebn.net +0.0.0.0 www.affairsclub.com +0.0.0.0 www.affiliation-int.com +0.0.0.0 www.agangels.net +0.0.0.0 www.agentur-angelina.de +0.0.0.0 www.agnesangel.com +0.0.0.0 www.ah-me.com +0.0.0.0 www.akibaangels.com +0.0.0.0 www.alcuda.com +0.0.0.0 www.alexa-xxx.com +0.0.0.0 www.alexisvirgin.com +0.0.0.0 www.alfamina.com +0.0.0.0 www.alison-angel-1.com +0.0.0.0 www.alison-angel.biz +0.0.0.0 www.alison-angel.org +0.0.0.0 www.alisonangel.at +0.0.0.0 www.alisonangel.cc +0.0.0.0 www.alisonangel.com +0.0.0.0 www.alisonangel.fr +0.0.0.0 www.alisonangelmovie.com +0.0.0.0 www.alisonangelrocks.com +0.0.0.0 www.alisonangelzone.com +0.0.0.0 www.alivegirls.com +0.0.0.0 www.allevaangelina.com +0.0.0.0 www.allfordrocher.com +0.0.0.0 www.allgaybdsm.com +0.0.0.0 www.allhotcams.com +0.0.0.0 www.allinternal.com +0.0.0.0 www.allisonangel.com +0.0.0.0 www.allisonangel.info +0.0.0.0 www.allisonsangels.com +0.0.0.0 www.allisonvirgin.com +0.0.0.0 www.allsexblogs.com +0.0.0.0 www.allteeens.com +0.0.0.0 www.allvirgins.com +0.0.0.0 www.almostvirgins.com +0.0.0.0 www.alohatube.com +0.0.0.0 www.alotporn.com +0.0.0.0 www.alphaporno.com +0.0.0.0 www.alsangel.com +0.0.0.0 www.alsangels.com +0.0.0.0 www.alsscan.com +0.0.0.0 www.alsscanangels.com +0.0.0.0 www.alt-angel.com +0.0.0.0 www.alt.com +0.0.0.0 www.altingramfiyati.org +0.0.0.0 www.amabitch.com +0.0.0.0 www.amaland.com +0.0.0.0 www.amamilfs.com +0.0.0.0 www.amateur-porn-links.com +0.0.0.0 www.amateuralbum.net +0.0.0.0 www.amateurcool.com +0.0.0.0 www.amateurdevils.com +0.0.0.0 www.amateurdumper.com +0.0.0.0 www.amateurfarm.net +0.0.0.0 www.amateurgalls.com +0.0.0.0 www.amateurmatch.com +0.0.0.0 www.amateurmpeg.net +0.0.0.0 www.amateurs-gone-wild.com +0.0.0.0 www.amateurseite.com +0.0.0.0 www.amateursexpert.com +0.0.0.0 www.amateursexy.net +0.0.0.0 www.amazingsexx.com +0.0.0.0 www.americanvirgins.net +0.0.0.0 www.amorix.biz +0.0.0.0 www.amourangels.com +0.0.0.0 www.amourangels.eu +0.0.0.0 www.amsterdam-webcams.com +0.0.0.0 www.amsterdamned.com +0.0.0.0 www.amsterdamnightlife.com +0.0.0.0 www.amyvirgin.com +0.0.0.0 www.anal-webcams.com +0.0.0.0 www.analdildolesbians.com +0.0.0.0 www.analdin.com +0.0.0.0 www.anawjarrate.info +0.0.0.0 www.angel-anime.com +0.0.0.0 www.angel-archives.com +0.0.0.0 www.angel-cassidy.net +0.0.0.0 www.angel-collection.com +0.0.0.0 www.angel-companions.co.uk +0.0.0.0 www.angel-dana.net.tc +0.0.0.0 www.angel-dark.org +0.0.0.0 www.angel-delite.co.uk +0.0.0.0 www.angel-exhib.com +0.0.0.0 www.angel-of-heels.com +0.0.0.0 www.angel-picpost.com +0.0.0.0 www.angel-search.com +0.0.0.0 www.angel-wave.com +0.0.0.0 www.angel-x.com +0.0.0.0 www.angel.ne.jp +0.0.0.0 www.angel.se +0.0.0.0 www.angel20.com +0.0.0.0 www.angel4christyb.com +0.0.0.0 www.angel4host.com +0.0.0.0 www.angela-devi.net +0.0.0.0 www.angela-taylor.org +0.0.0.0 www.angela.nl +0.0.0.0 www.angela.nu +0.0.0.0 www.angela2000.de +0.0.0.0 www.angela21.com +0.0.0.0 www.angelaandrews.com +0.0.0.0 www.angelaathomas.com +0.0.0.0 www.angelacappetta.com +0.0.0.0 www.angeladevi.com +0.0.0.0 www.angelagrant.com +0.0.0.0 www.angelalittle.net +0.0.0.0 www.angelamelini.com +0.0.0.0 www.angelarchives.com +0.0.0.0 www.angelaryan.com +0.0.0.0 www.angelas-sin-city.com +0.0.0.0 www.angelas-team.de +0.0.0.0 www.angelasalvagno.com +0.0.0.0 www.angelasavage.com +0.0.0.0 www.angelascloset.com +0.0.0.0 www.angelass.com +0.0.0.0 www.angelasummers.com +0.0.0.0 www.angelataylor.org +0.0.0.0 www.angelatiger.com +0.0.0.0 www.angelbabedebs.com +0.0.0.0 www.angelband.org +0.0.0.0 www.angelbaseball.com +0.0.0.0 www.angelbodywear.com +0.0.0.0 www.angelbust.com +0.0.0.0 www.angelbutton.com +0.0.0.0 www.angelbutton.info +0.0.0.0 www.angelcam.nl +0.0.0.0 www.angelcassidey.com +0.0.0.0 www.angelcassidy.com +0.0.0.0 www.angelcasting.net +0.0.0.0 www.angelcharmswizard.com +0.0.0.0 www.angelchic.com +0.0.0.0 www.angelclip.info +0.0.0.0 www.angelclub.cz +0.0.0.0 www.angelcrack.com +0.0.0.0 www.angelcream.com +0.0.0.0 www.angeldark.nl +0.0.0.0 www.angeldarkhoney.com +0.0.0.0 www.angeldarkmovies.com +0.0.0.0 www.angeldarkvideos.com +0.0.0.0 www.angelday.info +0.0.0.0 www.angeldesign.org +0.0.0.0 www.angeldollars.com +0.0.0.0 www.angeldust24.com +0.0.0.0 www.angele-coquine.com +0.0.0.0 www.angelelle.com +0.0.0.0 www.angelesangelwitch.com +0.0.0.0 www.angelesbuenos.com.ar +0.0.0.0 www.angelescitysexguide.com +0.0.0.0 www.angelesurbanos.com +0.0.0.0 www.angeleyes.ca +0.0.0.0 www.angelface.hu +0.0.0.0 www.angelfier.com +0.0.0.0 www.angelfotostudio.com +0.0.0.0 www.angelfuns.net.tf +0.0.0.0 www.angelglam.com +0.0.0.0 www.angelheat.com +0.0.0.0 www.angelhousematernityhome.net +0.0.0.0 www.angelicabella.com +0.0.0.0 www.angelicablack.net +0.0.0.0 www.angelicaheart.com +0.0.0.0 www.angelicales.com +0.0.0.0 www.angelicasin.com +0.0.0.0 www.angelicasin.net +0.0.0.0 www.angelicfilms.com +0.0.0.0 www.angelicmichele.com +0.0.0.0 www.angelicmusick.com +0.0.0.0 www.angelicumalumni.com +0.0.0.0 www.angelie.com +0.0.0.0 www.angelika-club.com +0.0.0.0 www.angelika.de +0.0.0.0 www.angelika.net +0.0.0.0 www.angelikaminsk.com +0.0.0.0 www.angelina-and-friends.com +0.0.0.0 www.angelina-and-friends.eu +0.0.0.0 www.angelina-croft.com +0.0.0.0 www.angelina-jolie-nue.com +0.0.0.0 www.angelina.cz +0.0.0.0 www.angelina.de +0.0.0.0 www.angelinaamour.com +0.0.0.0 www.angelinaashe.com +0.0.0.0 www.angelinaashe.net +0.0.0.0 www.angelinaasheblog.com +0.0.0.0 www.angelinabamboo.com +0.0.0.0 www.angelinacrow.net +0.0.0.0 www.angelinacrow.org +0.0.0.0 www.angelinajolie.nl +0.0.0.0 www.angelinalee.net +0.0.0.0 www.angelinalove.net +0.0.0.0 www.angelinarossi.com +0.0.0.0 www.angelinas-bodytalk.com +0.0.0.0 www.angelinas-cam.de +0.0.0.0 www.angelinas-heels.de +0.0.0.0 www.angelinavalentineblog.net +0.0.0.0 www.angelinavirgin.com +0.0.0.0 www.angelindevilsboots.org +0.0.0.0 www.angelinoscoffee.com +0.0.0.0 www.angelique.net +0.0.0.0 www.angeliquejerone.com +0.0.0.0 www.angeliquekithos.com +0.0.0.0 www.angelitas.com.ar +0.0.0.0 www.angelitas.net +0.0.0.0 www.angelkiss.jp +0.0.0.0 www.angelkissedfeet.com +0.0.0.0 www.angellafaith.com +0.0.0.0 www.angellong.com +0.0.0.0 www.angellsummers.com +0.0.0.0 www.angelmode.com +0.0.0.0 www.angelmodel.info +0.0.0.0 www.angelmovies.com +0.0.0.0 www.angelmpegs.com +0.0.0.0 www.angelnicole.co.uk +0.0.0.0 www.angelochec.net +0.0.0.0 www.angeloflondon.com +0.0.0.0 www.angelofmalevolence.com +0.0.0.0 www.angelplace.com +0.0.0.0 www.angels-and-demon.com +0.0.0.0 www.angels-archive.com +0.0.0.0 www.angels-bound.com +0.0.0.0 www.angels-devils4u.com +0.0.0.0 www.angels-feet.de +0.0.0.0 www.angels-from-asia.com +0.0.0.0 www.angels-in-ukraine.net +0.0.0.0 www.angels-of-london.com +0.0.0.0 www.angels-of-pain.de +0.0.0.0 www.angels-of-sin.com +0.0.0.0 www.angels-place.com +0.0.0.0 www.angels-tokyo.com +0.0.0.0 www.angels-videos.com +0.0.0.0 www.angels2u.co.uk +0.0.0.0 www.angels4you.co.uk +0.0.0.0 www.angels4youleeds.co.uk +0.0.0.0 www.angels4yousheffield.co.uk +0.0.0.0 www.angelsamazing.com +0.0.0.0 www.angelsanddaggers.com +0.0.0.0 www.angelscarebohol.com +0.0.0.0 www.angelscasting.net +0.0.0.0 www.angelsdemonsmasons.com +0.0.0.0 www.angelsdublin.com +0.0.0.0 www.angelsexclusive.nl +0.0.0.0 www.angelsfeetsite.com +0.0.0.0 www.angelsfire.nl +0.0.0.0 www.angelsfirstaid.com +0.0.0.0 www.angelshot.net +0.0.0.0 www.angelsinnmanali.com +0.0.0.0 www.angelsinsatin.com +0.0.0.0 www.angelslinks.com +0.0.0.0 www.angelslinks.net +0.0.0.0 www.angelslinks.org +0.0.0.0 www.angelsmist.com +0.0.0.0 www.angelsofalabama.com +0.0.0.0 www.angelsofamsterdam.com +0.0.0.0 www.angelsofamsterdam.nl +0.0.0.0 www.angelsofdeath.info +0.0.0.0 www.angelsofindia.com +0.0.0.0 www.angelsoflondon.com +0.0.0.0 www.angelsofmemphis.com +0.0.0.0 www.angelsofmercy.org +0.0.0.0 www.angelsofneworleans.com +0.0.0.0 www.angelsofnight.com +0.0.0.0 www.angelsofthenight.co.uk +0.0.0.0 www.angelsofwar.nl +0.0.0.0 www.angelsordevils.co.uk +0.0.0.0 www.angelsordevils.com +0.0.0.0 www.angelsscort.com.mx +0.0.0.0 www.angelstolove.com +0.0.0.0 www.angelstpg.com +0.0.0.0 www.angelsunlimited.com +0.0.0.0 www.angelsweb.nl +0.0.0.0 www.angelswife.com +0.0.0.0 www.angelswifelovers.com +0.0.0.0 www.angeltel.net +0.0.0.0 www.angelvalentine.org +0.0.0.0 www.angelveil.org +0.0.0.0 www.angelwoods.com +0.0.0.0 www.angelys-club.fr +0.0.0.0 www.animal-cartoons.com +0.0.0.0 www.animal6.net +0.0.0.0 www.animalrating.com +0.0.0.0 www.animalsex-planet.com +0.0.0.0 www.anime-angels.net +0.0.0.0 www.animediablo.com +0.0.0.0 www.animepornmov.com +0.0.0.0 www.ankaraescortbayan.net +0.0.0.0 www.ankaraliescort.org +0.0.0.0 www.ann-angel-1.com +0.0.0.0 www.ann-angel.com +0.0.0.0 www.anna-angel.com +0.0.0.0 www.annangel.com +0.0.0.0 www.annangel.net +0.0.0.0 www.annangel.org +0.0.0.0 www.annangelishot.com +0.0.0.0 www.annas-angels.co.uk +0.0.0.0 www.annasangels.co.uk +0.0.0.0 www.annasassets.com +0.0.0.0 www.annavirgin.com +0.0.0.0 www.annuaire-x.com +0.0.0.0 www.antivirgins.com +0.0.0.0 www.apornmovie.com +0.0.0.0 www.aquiwebcams.com +0.0.0.0 www.arab66.com +0.0.0.0 www.arabgirlsinthehood.info +0.0.0.0 www.arabialoveseats.info +0.0.0.0 www.arabictopics.com +0.0.0.0 www.arabks.com +0.0.0.0 www.arabvirgin.com +0.0.0.0 www.arabvirgins.com +0.0.0.0 www.arbkos.com +0.0.0.0 www.archangels.ws +0.0.0.0 www.archangelschool.org +0.0.0.0 www.arenaporno.com +0.0.0.0 www.arhangelsk.name +0.0.0.0 www.arkhangelskiy.com +0.0.0.0 www.arrobapay.com +0.0.0.0 www.arxhamster.com +0.0.0.0 www.asia-virgins.com +0.0.0.0 www.asiablue.com +0.0.0.0 www.asianparade.com +0.0.0.0 www.asianplayboy.com +0.0.0.0 www.asianxtv.com +0.0.0.0 www.asktiava.com +0.0.0.0 www.ass1st.com +0.0.0.0 www.ass2waist.com +0.0.0.0 www.assangels.com +0.0.0.0 www.assdumper.com +0.0.0.0 www.asso69110.org +0.0.0.0 www.asstomouthangels.ws +0.0.0.0 www.asstr.org +0.0.0.0 www.asstraffic.com +0.0.0.0 www.assvirgin.com +0.0.0.0 www.assvirgins.com +0.0.0.0 www.assvirgins.net +0.0.0.0 www.astridsangelcash.com +0.0.0.0 www.astridsangels.com +0.0.0.0 www.atk-archives.com +0.0.0.0 www.atkarchives.com +0.0.0.0 www.atkexotics.com +0.0.0.0 www.atkgirlfriends.com +0.0.0.0 www.atkhairy.com +0.0.0.0 www.atkmodels.com +0.0.0.0 www.atkpetites.com +0.0.0.0 www.atkpremium.com +0.0.0.0 www.atkpussies.com +0.0.0.0 www.attractivesex.com +0.0.0.0 www.auntjudys.com +0.0.0.0 www.auntmia.com +0.0.0.0 www.austrian-angels.at +0.0.0.0 www.autolinkweb.com +0.0.0.0 www.avalaurenblog.com +0.0.0.0 www.avatarcash.com +0.0.0.0 www.avseesee.com +0.0.0.0 www.awempire.com +0.0.0.0 www.ayanaangel.com +0.0.0.0 www.az7t1.com +0.0.0.0 www.az7t2.com +0.0.0.0 www.aziangals.com +0.0.0.0 www.azkempire.com +0.0.0.0 www.b44.com +0.0.0.0 www.babedump.com +0.0.0.0 www.babelogbook.com +0.0.0.0 www.babesandstars.com +0.0.0.0 www.babesmachine.com +0.0.0.0 www.babesonwebcams.com +0.0.0.0 www.babezblog.com +0.0.0.0 www.backseatbangers.com +0.0.0.0 www.badassangels.com +0.0.0.0 www.badvirgin.com +0.0.0.0 www.badvirgins.com +0.0.0.0 www.baise-webcams.com +0.0.0.0 www.baisepartout.com +0.0.0.0 www.ballbustingtube.com +0.0.0.0 www.baltictop.com +0.0.0.0 www.bananabunny.com +0.0.0.0 www.banatdream.com +0.0.0.0 www.banditmovies.com +0.0.0.0 www.banduraangels.com +0.0.0.0 www.bangbros1.com +0.0.0.0 www.bangbrosteenporn.com +0.0.0.0 www.bangxxxteens.com +0.0.0.0 www.bangyoulater.com +0.0.0.0 www.bannedcelebs.com +0.0.0.0 www.bannerout.com +0.0.0.0 www.barefootvixens.com +0.0.0.0 www.barevirgins.com +0.0.0.0 www.basal.ca +0.0.0.0 www.bbwsexpicsmovies.com +0.0.0.0 www.bcfakes.com +0.0.0.0 www.bdsmlibrary.com +0.0.0.0 www.bdsmpichunter.com +0.0.0.0 www.bdsmstreak.com +0.0.0.0 www.bdsmtheory.com +0.0.0.0 www.bdsmxxxmovies.com +0.0.0.0 www.beachtoplist.com +0.0.0.0 www.beautifulangels.com +0.0.0.0 www.beerandshots.com +0.0.0.0 www.befuck.com +0.0.0.0 www.best-virgins.com +0.0.0.0 www.bestangels.de +0.0.0.0 www.bestarabpicinthenet.info +0.0.0.0 www.bestarabtube.com +0.0.0.0 www.bestcrazyvideos.com +0.0.0.0 www.besthotdates.com +0.0.0.0 www.bestphatchicks.com +0.0.0.0 www.bestsexualpleasure.com +0.0.0.0 www.bigboobswebcams.com +0.0.0.0 www.bignatural.ws +0.0.0.0 www.bignaturalknockers.com +0.0.0.0 www.bignaturals-movies.com +0.0.0.0 www.bignaturals.com +0.0.0.0 www.bignaturals.de +0.0.0.0 www.bigtitangels.com +0.0.0.0 www.bigtits.com +0.0.0.0 www.bigtitsonwebcams.com +0.0.0.0 www.billpics.com +0.0.0.0 www.bitchdump.com +0.0.0.0 www.blackandshiny.com +0.0.0.0 www.blackangel-halle.de +0.0.0.0 www.blackangelica.com +0.0.0.0 www.blackangelvideo.com +0.0.0.0 www.blackassangels.com +0.0.0.0 www.blackvirgins.com +0.0.0.0 www.blackystars.com +0.0.0.0 www.bleedingvirgins.com +0.0.0.0 www.blitz-natursekt.de +0.0.0.0 www.blogangela.com +0.0.0.0 www.blogbang.com +0.0.0.0 www.blogbugs.org +0.0.0.0 www.blogs-list.com +0.0.0.0 www.blogtur.com +0.0.0.0 www.blondangel.de +0.0.0.0 www.blondangels.de +0.0.0.0 www.blondewebcams.com +0.0.0.0 www.blondexxxmag.com +0.0.0.0 www.bloodangels.com +0.0.0.0 www.bloodyvirgin.com +0.0.0.0 www.blowingangels.com +0.0.0.0 www.blowingkisses.net +0.0.0.0 www.blueangel.nl +0.0.0.0 www.bluewebcams.com +0.0.0.0 www.bobiporn.com +0.0.0.0 www.bonabanners.co.uk +0.0.0.0 www.bondagecompanion.com +0.0.0.0 www.bondagewebcams.com +0.0.0.0 www.boobs-4u.com +0.0.0.0 www.boobscategory.com +0.0.0.0 www.bookmarklinks.com +0.0.0.0 www.bookofsex.com +0.0.0.0 www.bootycallfriends.com +0.0.0.0 www.bootyoftheday.co +0.0.0.0 www.bootytape.com +0.0.0.0 www.boundandbanged.com +0.0.0.0 www.boyfriendnetwork.com +0.0.0.0 www.boysfood.com +0.0.0.0 www.brandys-box.com +0.0.0.0 www.bravoteens.com +0.0.0.0 www.bravotube.net +0.0.0.0 www.bravsbookmarks.com +0.0.0.0 www.brazilvirgin.com +0.0.0.0 www.brazilvirgina.com +0.0.0.0 www.brazzers.com +0.0.0.0 www.brazzersnetwork.com +0.0.0.0 www.brdteengal.com +0.0.0.0 www.breathlessangel.com +0.0.0.0 www.brickhousebetty.net +0.0.0.0 www.britishcoeds.com +0.0.0.0 www.britneyvirgin.com +0.0.0.0 www.bronzeadultblogs.com +0.0.0.0 www.brothelangelsladies.com +0.0.0.0 www.brunetteangel.com +0.0.0.0 www.brunetteangels.com +0.0.0.0 www.brutalviolence.com +0.0.0.0 www.bubblebuttsgalore.com +0.0.0.0 www.buck-angel.com +0.0.0.0 www.buckangel.com +0.0.0.0 www.buckangel.nl +0.0.0.0 www.buckangelbucks.com +0.0.0.0 www.buckangelvod.com +0.0.0.0 www.bunny-net.com +0.0.0.0 www.bunnyteensmovies.com +0.0.0.0 www.burningangel.com +0.0.0.0 www.burningangel.net +0.0.0.0 www.burningcamel.com +0.0.0.0 www.burningcamel.org +0.0.0.0 www.bursahaliyikamak.com +0.0.0.0 www.bursasporteam.com +0.0.0.0 www.buscadordewebcams.com +0.0.0.0 www.business-angel.info +0.0.0.0 www.busty-asian.org +0.0.0.0 www.bustyvixen.net +0.0.0.0 www.buttnakedinthestreets.com +0.0.0.0 www.buzzwebcams.com +0.0.0.0 www.bwlesbians.com +0.0.0.0 www.cadillacangels.com +0.0.0.0 www.cafedeangel.net +0.0.0.0 www.californiavirgins.com +0.0.0.0 www.cam4.com +0.0.0.0 www.camelcookie.com +0.0.0.0 www.camelmedia.net +0.0.0.0 www.camelstyle.net +0.0.0.0 www.cams.com +0.0.0.0 www.camsangels.com +0.0.0.0 www.camshunt.com +0.0.0.0 www.camworld.nl +0.0.0.0 www.camz.com +0.0.0.0 www.camzter.com +0.0.0.0 www.canalwebcams.com +0.0.0.0 www.candidbeachangels.com +0.0.0.0 www.cantender.com +0.0.0.0 www.captiveangels.com +0.0.0.0 www.cardsgate-cs.com +0.0.0.0 www.carlhardwick.com +0.0.0.0 www.carpediem.fr +0.0.0.0 www.cartoon-3x.com +0.0.0.0 www.cartoonpornvideos.com +0.0.0.0 www.cartoontube.com +0.0.0.0 www.cartoonvalley.com +0.0.0.0 www.carumbas.com +0.0.0.0 www.cashangel.de +0.0.0.0 www.ccgals.com +0.0.0.0 cdn-www.i-am-bored.com +0.0.0.0 www.celebflix.us +0.0.0.0 www.celebrity-fakes.net +0.0.0.0 www.celebritywar.com +0.0.0.0 www.celebsking.com +0.0.0.0 www.celebtaboo.com +0.0.0.0 www.celebuzz.com +0.0.0.0 www.cfake.com +0.0.0.0 www.cfnmidol.com +0.0.0.0 www.changelingpress.com +0.0.0.0 www.changels.net +0.0.0.0 www.charlisangels.com +0.0.0.0 www.charming-angels.net +0.0.0.0 www.chat-webcams.com +0.0.0.0 www.chatboxwebcams.com +0.0.0.0 www.chatischat.com +0.0.0.0 www.chatroulette.com +0.0.0.0 www.chaturbate.com +0.0.0.0 www.chatzozo.com +0.0.0.0 www.cheapadultdvd.com +0.0.0.0 www.cheerleader-webcams.com +0.0.0.0 www.cherrynovelty.com +0.0.0.0 www.chicaangelical.com.ar +0.0.0.0 www.chicasconwebcams.com.ar +0.0.0.0 www.chicasenwebcams.com +0.0.0.0 www.chicashumedas.com +0.0.0.0 www.chicaswebcams.com +0.0.0.0 www.chickenbanners.com +0.0.0.0 www.chickenhost.com +0.0.0.0 www.chinese-angels.com +0.0.0.0 www.chinmaster.com +0.0.0.0 www.chloes-angels.com +0.0.0.0 www.christinaangel.com +0.0.0.0 www.chubby-teen.com +0.0.0.0 www.chunkyangels.com +0.0.0.0 www.chunkybutts.com +0.0.0.0 www.chunkytgp.net +0.0.0.0 www.cinemaden.com +0.0.0.0 www.circleofxxx.com +0.0.0.0 www.citysex.com +0.0.0.0 www.clamsangels.com +0.0.0.0 www.classy-angel.com +0.0.0.0 www.classyangel.com +0.0.0.0 www.clipcake.com +0.0.0.0 www.cliphunter.com +0.0.0.0 www.cliter.com +0.0.0.0 www.clitgames.com +0.0.0.0 www.cliti.com +0.0.0.0 www.club-angelinavalentine.com +0.0.0.0 www.club-evaangelina.com +0.0.0.0 www.club-virgins.com +0.0.0.0 www.clubaudriannaangel.com +0.0.0.0 www.clubbestangels.de +0.0.0.0 www.cluberosatlanta.com +0.0.0.0 www.clubevaangelina.net +0.0.0.0 www.clubrejal.com +0.0.0.0 www.clubseventeen.com +0.0.0.0 www.clubseventeenvideos.com +0.0.0.0 www.clubvirgins.com +0.0.0.0 www.cnnamador.com +0.0.0.0 www.cocogals.com +0.0.0.0 www.coedcherry.com +0.0.0.0 www.colegialasdesvirgadas.com +0.0.0.0 www.collectionofbestporn.com +0.0.0.0 www.college-teen-sex.com +0.0.0.0 www.college-webcams.com +0.0.0.0 www.collegegirlwebcams.com +0.0.0.0 www.collegerules.com +0.0.0.0 www.collegevirgins.com +0.0.0.0 www.collegewildparties.com +0.0.0.0 www.commetvidsnow.com +0.0.0.0 www.conquerorofvirgins.com +0.0.0.0 www.coquine-angeline.net +0.0.0.0 www.cougar-rencontre.net +0.0.0.0 www.cougarsandcream.com +0.0.0.0 www.couplesseduceteens.com +0.0.0.0 www.courtneyvirgin.com +0.0.0.0 www.crazydumper.com +0.0.0.0 www.crazyshit.com +0.0.0.0 www.crazywebcams.com +0.0.0.0 www.creamgoodies.com +0.0.0.0 www.creamyangels.com +0.0.0.0 www.creoads.com +0.0.0.0 www.cryangel.com +0.0.0.0 www.cumforcover.com +0.0.0.0 www.cummypantyhose.com +0.0.0.0 www.cumpleaser.com +0.0.0.0 www.cumridden.com +0.0.0.0 www.cumshotscenes.com +0.0.0.0 www.cumswap.net +0.0.0.0 www.cupofsingles.com +0.0.0.0 www.curvyangel.com +0.0.0.0 www.cute-virgins.net +0.0.0.0 www.cutegurlz.com +0.0.0.0 www.cuterussianboys.com +0.0.0.0 www.cuteteenvideo.com +0.0.0.0 www.cutewebcams.com +0.0.0.0 www.cutiesinstockings.com +0.0.0.0 www.cutiesintights.com +0.0.0.0 www.cyberangels.org +0.0.0.0 www.cybererotica.com +0.0.0.0 www.cybereroticamobile.com +0.0.0.0 www.cybertoplists.com +0.0.0.0 www.cynicalangel.com +0.0.0.0 www.czech-teens.com +0.0.0.0 www.czech-virgins.com +0.0.0.0 www.czechfantasy.com +0.0.0.0 www.dacash.com +0.0.0.0 www.daclick.com +0.0.0.0 www.daddysworstnightmare.com +0.0.0.0 www.daftporn.com +0.0.0.0 www.dailybasis.com +0.0.0.0 www.damnage.com +0.0.0.0 www.damnhellasskings.com +0.0.0.0 www.damnlinks.com +0.0.0.0 www.dan81.com +0.0.0.0 www.dancefox.net +0.0.0.0 www.dancingbear.com +0.0.0.0 www.dangeloalicante.com +0.0.0.0 www.dangelopalace.com +0.0.0.0 www.danimiles.com +0.0.0.0 www.daporn.com +0.0.0.0 www.daredorm.com +0.0.0.0 www.dark-angel.nl +0.0.0.0 www.darkangel-sm.de +0.0.0.0 www.darkangel.com +0.0.0.0 www.darkangellair.com +0.0.0.0 www.darkangelonline.nl +0.0.0.0 www.data-ero-advertising.com +0.0.0.0 www.datingamateurs.com +0.0.0.0 www.davecummings.com +0.0.0.0 www.davidsangels.net +0.0.0.0 www.ddorfprivat.de +0.0.0.0 www.definebabe.com +0.0.0.0 www.definefetish.com +0.0.0.0 www.depositodevideos.com.br +0.0.0.0 www.depravedangels.com +0.0.0.0 www.der-wallstreet-trick.eu +0.0.0.0 www.desadesangels.com +0.0.0.0 www.desihotpoint.com +0.0.0.0 www.desktopangels.net +0.0.0.0 www.destinyangel.net +0.0.0.0 www.deviantclip.com +0.0.0.0 www.devicebondage.com +0.0.0.0 www.devil-galleries.com +0.0.0.0 www.devils-angels.com +0.0.0.0 www.devirginize.com +0.0.0.0 www.devirginized.com +0.0.0.0 www.dickievirgin.com +0.0.0.0 www.dickievirgin.org +0.0.0.0 www.dicktricks.com +0.0.0.0 www.digitalangelblog.com +0.0.0.0 www.digitalangeldollars.com +0.0.0.0 www.digitaldesire.com +0.0.0.0 www.dilf.com +0.0.0.0 www.dinathumbs.com +0.0.0.0 www.direction-x.com +0.0.0.0 www.directorio-webcams.com +0.0.0.0 www.directoriowebcams.com +0.0.0.0 www.directtrafficlink.com +0.0.0.0 www.dirty101.com +0.0.0.0 www.dirtybondagetgp.com +0.0.0.0 www.dirtyfinder.com +0.0.0.0 www.dirtylesbo.com +0.0.0.0 www.dirtypornvids.com +0.0.0.0 www.dirtyroulette.com +0.0.0.0 www.dirtyshack.com +0.0.0.0 www.dirwebcams.com +0.0.0.0 www.disappointedvirginity.com +0.0.0.0 www.discreetangels.net +0.0.0.0 www.disney-xxx.net +0.0.0.0 www.dla3hotbanat.info +0.0.0.0 www.dlisted.com +0.0.0.0 www.dnvideos.com +0.0.0.0 www.dolphin-angel-readings.com +0.0.0.0 www.domainplayersclub.com +0.0.0.0 www.dominationwebcams.com +0.0.0.0 www.dominawebcams.com +0.0.0.0 www.doublepenetrationvids.com +0.0.0.0 www.doublepimp.com +0.0.0.0 www.doubleviking.com +0.0.0.0 www.drago99.com +0.0.0.0 www.dreamamateurs.com +0.0.0.0 www.dreamangelsny.com +0.0.0.0 www.dreameskisehir.com +0.0.0.0 www.dreamgirlonline.com +0.0.0.0 www.dreammovies.com +0.0.0.0 www.drstrangelove.com +0.0.0.0 www.drtuber.com +0.0.0.0 www.drunkpichunter.com +0.0.0.0 www.drunkporn.us +0.0.0.0 www.drunksexygirls.com +0.0.0.0 www.dumbvirgins.com +0.0.0.0 www.dump.xxx +0.0.0.0 www.dungeonvirgins.com +0.0.0.0 www.dutchangels.nl +0.0.0.0 www.dvangels.com +0.0.0.0 www.dvdboys.com +0.0.0.0 www.e-orgasm.org +0.0.0.0 www.easypic.com +0.0.0.0 www.easysexdate.com +0.0.0.0 www.ebonypichunter.com +0.0.0.0 www.efukt.com +0.0.0.0 www.egbo.com +0.0.0.0 www.ehho.com +0.0.0.0 www.ejzbrokenangelz.com +0.0.0.0 www.elangelito.com +0.0.0.0 www.elegantangel.com +0.0.0.0 www.elegantangelblog.com +0.0.0.0 www.elegantangelppv.com +0.0.0.0 www.elegantangelvod.com +0.0.0.0 www.elitedollars.com +0.0.0.0 www.elunesangels.com +0.0.0.0 www.eminotobursa.com +0.0.0.0 www.empireamateurs.com +0.0.0.0 www.enature.net +0.0.0.0 www.enaturist.com +0.0.0.0 www.enjoyangels.com +0.0.0.0 www.entensity.net +0.0.0.0 www.eporner.com +0.0.0.0 www.erinvirgin.com +0.0.0.0 www.ero-advertising.com +0.0.0.0 www.eroadvertising.com +0.0.0.0 www.erooups.com +0.0.0.0 www.eros.com +0.0.0.0 www.eroshare.com +0.0.0.0 www.eroswebcams.com +0.0.0.0 www.erotic-pictures-blog.com +0.0.0.0 www.eroticarabstories.info +0.0.0.0 www.eroticdisney.com +0.0.0.0 www.eroticmatch.com +0.0.0.0 www.erotique-webcams.com +0.0.0.0 www.erotische-webcams.com +0.0.0.0 www.erotizer.info +0.0.0.0 www.erowebcams.com +0.0.0.0 www.eroxia.com +0.0.0.0 www.escort23.com +0.0.0.0 www.escortankarada.org +0.0.0.0 www.escortankarali.net +0.0.0.0 www.escortbayanankaratc.net +0.0.0.0 www.eskisehirhayal.com +0.0.0.0 www.eskisehiryenigun.com +0.0.0.0 www.estudiosexual.com +0.0.0.0 www.eswebcams.com +0.0.0.0 www.ethnicangel.com +0.0.0.0 www.euphoriaporn.com +0.0.0.0 www.euro-angels.com +0.0.0.0 www.eurogalz.com +0.0.0.0 www.eurogirlsescort.com +0.0.0.0 www.european-angels.com +0.0.0.0 www.europewebcams.com +0.0.0.0 www.europornstar.com +0.0.0.0 www.eva-angelina-1.com +0.0.0.0 www.eva-angelina-pics.com +0.0.0.0 www.eva-angelina.info +0.0.0.0 www.eva-angelina.net +0.0.0.0 www.evaangel.net +0.0.0.0 www.evaangelina-tube.com +0.0.0.0 www.evaangelina.fr +0.0.0.0 www.evaangelina.org +0.0.0.0 www.evaangelina.ws +0.0.0.0 www.evaangelinablog.com +0.0.0.0 www.evaangelinablog.net +0.0.0.0 www.evaangelinaonline.com +0.0.0.0 www.evaangelinapics.com +0.0.0.0 www.evaangelinavideos.net +0.0.0.0 www.evaangelinax.com +0.0.0.0 www.evaevangelina.net +0.0.0.0 www.evangelicaloutpost.com +0.0.0.0 www.evangelicaloutreach.org +0.0.0.0 www.evangelineanderson.com +0.0.0.0 www.evangelinehaughney.com +0.0.0.0 www.evangelio.com +0.0.0.0 www.evasiveangels.com +0.0.0.0 www.evavirgin.com +0.0.0.0 www.eve-angel.com +0.0.0.0 www.eveangel.com +0.0.0.0 www.eveangel.hu +0.0.0.0 www.eveangel.us +0.0.0.0 www.eveangelfreetour.com +0.0.0.0 www.eveangelina.net +0.0.0.0 www.eveangelpic.com +0.0.0.0 www.evilangel.com +0.0.0.0 www.evilangel.fr +0.0.0.0 www.evilangelcash.com +0.0.0.0 www.evilangeldirect.com +0.0.0.0 www.evilangelppv.com +0.0.0.0 www.evilangelvideo.com +0.0.0.0 www.excellentwebcams.com +0.0.0.0 www.exchangecash.de +0.0.0.0 www.exclusivepussy.com +0.0.0.0 www.exgfsbucks.com +0.0.0.0 www.exquisiteangelz.com +0.0.0.0 www.exteriorexpertsofvirginia.com +0.0.0.0 www.extremebig.com +0.0.0.0 www.extremetracking.com +0.0.0.0 www.extremetube.com +0.0.0.0 www.extrime-list.com +0.0.0.0 www.exwifesexbook.com +0.0.0.0 www.ez5ez5xxx.info +0.0.0.0 www.ezazrakfriends.info +0.0.0.0 www.eztzvuzvuz.info +0.0.0.0 www.facebook-girl.com +0.0.0.0 www.facebook-of-sex.com +0.0.0.0 www.facebook.bi +0.0.0.0 www.facebookofporn.com +0.0.0.0 www.facebooksexo.com +0.0.0.0 www.faceporn.com +0.0.0.0 www.faithvirgin.com +0.0.0.0 www.fakethebitch.com +0.0.0.0 www.fallen-angels-production.de +0.0.0.0 www.fallenangelfuns.com +0.0.0.0 www.fallenangelproductions.com +0.0.0.0 www.fallenangelvideo.com +0.0.0.0 www.fallenvirgin.com +0.0.0.0 www.famous-people-nude.com +0.0.0.0 www.famousboard.com +0.0.0.0 www.fantasy4you.info +0.0.0.0 www.fantasywebcams.com +0.0.0.0 www.faptube.com +0.0.0.0 www.fapvidhd.com +0.0.0.0 www.fastsexdate.com +0.0.0.0 www.fatangel.com +0.0.0.0 www.fatbackmedia.com +0.0.0.0 www.fatchickens.net +0.0.0.0 www.fatpichunter.com +0.0.0.0 www.fattyangels.com +0.0.0.0 www.favouritecash.com +0.0.0.0 www.fbbtop100.com +0.0.0.0 www.felonyangel.com +0.0.0.0 www.femdomdraw.com +0.0.0.0 www.femdomworld.com +0.0.0.0 www.femjoyangels.com +0.0.0.0 www.feralsex.com +0.0.0.0 www.ferronetwork.com +0.0.0.0 www.fetisch-webcams.com +0.0.0.0 www.fetishdollars.net +0.0.0.0 www.fetishfreakwebcams.com +0.0.0.0 www.fetishpapa.com +0.0.0.0 www.fetishshrine.com +0.0.0.0 www.figaitaliana.com +0.0.0.0 www.filestube.com +0.0.0.0 www.filipinavirgin.net +0.0.0.0 www.filipinawebcams.com +0.0.0.0 www.filles-webcams.com +0.0.0.0 www.film-x-gratos.com +0.0.0.0 www.finder-x.com +0.0.0.0 www.findtubes.com +0.0.0.0 www.finevids.xxx +0.0.0.0 www.first-mature.com +0.0.0.0 www.fisgonclub.com +0.0.0.0 www.fisting-maniacs.com +0.0.0.0 www.flagrasamadores.net +0.0.0.0 www.flashmediaportal.com +0.0.0.0 www.flashwebcams.com +0.0.0.0 www.flashybabes.com +0.0.0.0 www.flatchestedangels.com +0.0.0.0 www.flavinha.com +0.0.0.0 www.fleetwoodfilmsltd.com +0.0.0.0 www.fleshbot.com +0.0.0.0 www.fleshlight.com +0.0.0.0 www.fleshlightgirls.com +0.0.0.0 www.fleshlightreviews.net +0.0.0.0 www.fling.com +0.0.0.0 www.flirt4free.com +0.0.0.0 www.flyflv.com +0.0.0.0 www.flyingjizz.com +0.0.0.0 www.foaks.com +0.0.0.0 www.foo6bordelsonthenet.info +0.0.0.0 www.footangels.com +0.0.0.0 www.footfetishchicks.com +0.0.0.0 www.footfootage.com +0.0.0.0 www.footjobdiary.com +0.0.0.0 www.fooxy.com +0.0.0.0 www.forgotten-angels.de +0.0.0.0 www.forumophilia.com +0.0.0.0 www.foxporns.com +0.0.0.0 foxtube.com +0.0.0.0 www.foxtube.com +0.0.0.0 www.foxyreviews.com +0.0.0.0 www.fpfreegals.com +0.0.0.0 www.fr.youporn.com +0.0.0.0 www.frathousefuckfest.com +0.0.0.0 www.frauenhasser.info +0.0.0.0 www.free-asian-webcams.com +0.0.0.0 www.free-babes-webcams.com +0.0.0.0 www.free-famous-toons.com +0.0.0.0 www.free-gay-webcams.com +0.0.0.0 www.free-lesbian-pic.in +0.0.0.0 www.free-nylon-porn.com +0.0.0.0 www.free-porn-galleries.biz +0.0.0.0 www.free-sex-cat.com +0.0.0.0 www.free-sex-sexy-gallery.net +0.0.0.0 www.free-webcams.com +0.0.0.0 www.free18.net +0.0.0.0 www.freeadultmedia.com +0.0.0.0 www.freeamatureporn.com +0.0.0.0 www.freeatkgals.com +0.0.0.0 www.freebestsexstories.com +0.0.0.0 www.freeblogsearch.com +0.0.0.0 www.freedailyvirgins.com +0.0.0.0 www.freefuckvidz.com +0.0.0.0 www.freehqsex.com +0.0.0.0 www.freeinterracialgalleries.com +0.0.0.0 www.freejpgseries.com +0.0.0.0 www.freejuicywebcams.com +0.0.0.0 www.freelive-webcams.com +0.0.0.0 www.freematureworld.com +0.0.0.0 www.freepicsandmovies.com +0.0.0.0 www.freepicsmovies.net +0.0.0.0 www.freeporn.com +0.0.0.0 www.freepornhq.xxx +0.0.0.0 www.freepornofreeporn.com +0.0.0.0 www.freesexdoor.com +0.0.0.0 www.freesexnavigator.com +0.0.0.0 www.freesexparadise.com +0.0.0.0 www.freeshemalewebcams.com +0.0.0.0 www.freeviewmovies.com +0.0.0.0 www.freewebcams.com +0.0.0.0 www.freewebcams.com.au +0.0.0.0 www.freexxxpages.net +0.0.0.0 www.fresh-n-tender.com +0.0.0.0 www.freshangel.com +0.0.0.0 www.freshpornline.com +0.0.0.0 www.freshxxxclips.com +0.0.0.0 www.frhsex.com +0.0.0.0 www.fritchy.com +0.0.0.0 www.frwebcams.com +0.0.0.0 www.ftvblog.info +0.0.0.0 www.ftvgirls.com +0.0.0.0 www.fuckbook.cm +0.0.0.0 www.fuckbook.com +0.0.0.0 www.fuckedvirgingirls.com +0.0.0.0 fuckingawesome.com +0.0.0.0 www.fuckingawesome.com +0.0.0.0 www.fuckervids.com +0.0.0.0 www.fuckherass.net +0.0.0.0 www.fuckinsilly.com +0.0.0.0 www.fuckmaturewhore.com +0.0.0.0 www.fuckmymommyandme.com +0.0.0.0 www.fuckstarts.net +0.0.0.0 www.fuckteenpussy.net +0.0.0.0 www.fuckvideo.org +0.0.0.0 www.fuckyoucash.com +0.0.0.0 www.fullhdxxx.com +0.0.0.0 www.fullteensporn.com +0.0.0.0 www.funwebcams.com +0.0.0.0 www.fuq.com +0.0.0.0 www.furious-angel.com +0.0.0.0 www.fuskator.com +0.0.0.0 www.fux.com +0.0.0.0 www.fuxybabes.com +0.0.0.0 www.gabrio.com +0.0.0.0 www.gallfree.com +0.0.0.0 www.gamelink.com +0.0.0.0 www.gangbanganal.com +0.0.0.0 www.gangbangsquad.com +0.0.0.0 www.gapingangels.com +0.0.0.0 www.gay-webcams.com +0.0.0.0 www.gayhitlist.com +0.0.0.0 www.gaysexwebcams.com +0.0.0.0 www.gaysonwebcams.com +0.0.0.0 www.gayswebcams.com +0.0.0.0 www.gaytube.com +0.0.0.0 www.gaytwinkwebcams.com +0.0.0.0 www.gaywebcams.com +0.0.0.0 www.gelbooru.com +0.0.0.0 www.getbigvids.com +0.0.0.0 www.gfrevenge.com +0.0.0.0 www.ghettotube.com +0.0.0.0 www.gifporntube.com +0.0.0.0 www.girlfriendgalleries.net +0.0.0.0 www.girlfriendvideos.com +0.0.0.0 www.girlfriendvids.net +0.0.0.0 www.girlscanner.com +0.0.0.0 www.girlsgonewild.com +0.0.0.0 www.glamour-tgp.com +0.0.0.0 www.glamourmilf.com +0.0.0.0 www.glamourmodelsdirectory.com +0.0.0.0 www.glossyangels.info +0.0.0.0 www.godefloration.net +0.0.0.0 www.gogoangels.com +0.0.0.0 www.goldhdtube.com +0.0.0.0 www.goldteenvideos.com +0.0.0.0 www.gonorar.com +0.0.0.0 www.gotowebcams.com +0.0.0.0 www.gotporn.com +0.0.0.0 www.grannyangel.com +0.0.0.0 www.grayvee.com +0.0.0.0 www.greatvirgins.com +0.0.0.0 www.greenangelonline.com +0.0.0.0 www.groovybus.com +0.0.0.0 www.groupandsex.com +0.0.0.0 www.grupomedicosanangel.com +0.0.0.0 www.gtaangels.net +0.0.0.0 www.guaranteedsexdate.com +0.0.0.0 www.h-top.com +0.0.0.0 www.h2porn.com +0.0.0.0 www.haarige-angelegenheit.de +0.0.0.0 www.hairtostaywebcams.com +0.0.0.0 www.hairypichunter.com +0.0.0.0 www.hardanime.com +0.0.0.0 www.hardassed.com +0.0.0.0 www.hardasses.com +0.0.0.0 www.hardcartoon.com +0.0.0.0 www.hardcorepornparty.com +0.0.0.0 www.harddaddy.com +0.0.0.0 www.harddickproject.com +0.0.0.0 www.hardfreshmen.com +0.0.0.0 www.hardgirls.nl +0.0.0.0 www.hardhut.com +0.0.0.0 www.hardissimo.org +0.0.0.0 www.hardjpegs.com +0.0.0.0 www.hardlads.com +0.0.0.0 www.hardlatinavideos.com +0.0.0.0 www.hardlicks.com +0.0.0.0 www.hardnstraight.com +0.0.0.0 www.hardsexpleasures.com +0.0.0.0 www.hardsextube.com +0.0.0.0 www.hardsu.net +0.0.0.0 www.hardtobuy.com +0.0.0.0 www.hardtv.com +0.0.0.0 www.hardvirgins.com +0.0.0.0 www.hardwayout.com +0.0.0.0 www.hardwomen.com +0.0.0.0 www.hardxtc.com +0.0.0.0 www.hazehim.com +0.0.0.0 www.hbrowse.com +0.0.0.0 www.hclips.com +0.0.0.0 www.hdmmovies.sex +0.0.0.0 www.hdmovz.com +0.0.0.0 www.hdpornclimb.com +0.0.0.0 www.hdpornvideo.xxx +0.0.0.0 www.hdqualitymovies.com +0.0.0.0 www.hdzog.com +0.0.0.0 www.heartfeltangels.com +0.0.0.0 www.heaven666.org +0.0.0.0 www.heavenlytranny.com +0.0.0.0 www.heavensangelsreadings.com +0.0.0.0 www.hell-angel.com +0.0.0.0 www.hentai-top100.com +0.0.0.0 www.hentai.ms +0.0.0.0 www.hentailisting.com +0.0.0.0 www.hentaiseeker.com +0.0.0.0 www.hentaistream.com +0.0.0.0 www.hentaitoonami.com +0.0.0.0 www.herfirstanalsex.com +0.0.0.0 www.herfirstbigcock.com +0.0.0.0 www.herfirstdv.biz +0.0.0.0 www.herfirstlesbiansex.com +0.0.0.0 www.herrin-angela.ch +0.0.0.0 www.herrin-angela.de +0.0.0.0 www.hetewebcams.com +0.0.0.0 www.hiddenwebcams.com +0.0.0.0 www.hidefporn.ws +0.0.0.0 www.highschoolvirgin.com +0.0.0.0 www.hirsutewebcams.com +0.0.0.0 www.hitahottie.com +0.0.0.0 www.hobomovies.com +0.0.0.0 www.holloporn.com +0.0.0.0 www.hollywoodtuna.com +0.0.0.0 www.holylol.com +0.0.0.0 www.holytaco.com +0.0.0.0 www.holywebcams.com +0.0.0.0 www.homemadevids.net +0.0.0.0 www.homemoviestube.com +0.0.0.0 www.homepornvideotube.com +0.0.0.0 www.homevideoplace.com +0.0.0.0 www.homexfiles.com +0.0.0.0 www.homo6.com +0.0.0.0 www.homosrus.com +0.0.0.0 www.honeyvirgins.com +0.0.0.0 www.hoodamateurs.com +0.0.0.0 www.hookup.com +0.0.0.0 www.hornbunny.com +0.0.0.0 www.hornypharaoh.com +0.0.0.0 www.hornyspots.com +0.0.0.0 www.hornywhores.net +0.0.0.0 www.hornywife.com +0.0.0.0 www.hoseangel.com +0.0.0.0 www.hostave4.net +0.0.0.0 www.hot-porn-clips.com +0.0.0.0 www.hot-webcams.com +0.0.0.0 www.hot-yesmessenger.com +0.0.0.0 www.hotadultstuff.com +0.0.0.0 www.hotarabchat.com +0.0.0.0 www.hotcams.com +0.0.0.0 www.hotcartoonstore.com +0.0.0.0 www.hotchapatialbums.info +0.0.0.0 www.hotchickwebcams.com +0.0.0.0 www.hotchyx.com +0.0.0.0 www.hotdamnsam.com +0.0.0.0 www.hotelangel.co.jp +0.0.0.0 www.hotelmgp.com +0.0.0.0 www.hotfetishwebcams.com +0.0.0.0 www.hotfreesex4all.com +0.0.0.0 www.hotfreewebcams.com +0.0.0.0 www.hotgirlcentral.com +0.0.0.0 www.hotmalepics.com +0.0.0.0 www.hotmilfpictures.com +0.0.0.0 www.hotmomfree.com +0.0.0.0 www.hotnakedmoms.com +0.0.0.0 www.hotpornshow.com +0.0.0.0 www.hotsaunababes.info +0.0.0.0 www.hotshame.com +0.0.0.0 www.hotshemalewebcams.com +0.0.0.0 www.hotsologirlz.net +0.0.0.0 www.hotstunners.com +0.0.0.0 www.hotwettube.com +0.0.0.0 www.housewifebangers.com +0.0.0.0 www.housewifewebcams.com +0.0.0.0 www.hqbutt.com +0.0.0.0 www.hqgal.com +0.0.0.0 www.hqonlinemovies.com +0.0.0.0 www.hqpornweb.com +0.0.0.0 www.hqtube.com +0.0.0.0 www.hqualityporn.com +0.0.0.0 www.hqvirgins.com +0.0.0.0 www.hsvirgins.com +0.0.0.0 bobs-tube.com +0.0.0.0 www.empflix.com +0.0.0.0 www.francodirect.com +0.0.0.0 www.hdpornt.com +0.0.0.0 www.mofozxxx.com +0.0.0.0 www.hugeboobsgalore.com +0.0.0.0 www.hugetraffic.com +0.0.0.0 www.humoron.com +0.0.0.0 www.humoronline.com +0.0.0.0 www.hungangels.com +0.0.0.0 www.hungarian-babes.com +0.0.0.0 www.huntedangels.com +0.0.0.0 www.hunting-for-bambi.com +0.0.0.0 www.hushaccess.com +0.0.0.0 www.hushpass.com +0.0.0.0 www.hyperku.info +0.0.0.0 www.i-am-bored.com +0.0.0.0 www.iafd.com +0.0.0.0 www.ibannerx.com +0.0.0.0 www.icams.com +0.0.0.0 www.iceporn.com +0.0.0.0 www.ichan.org +0.0.0.0 www.icoodvd.com +0.0.0.0 www.icoonet.com +0.0.0.0 www.ifwcash.com +0.0.0.0 www.ihookup.com +0.0.0.0 www.iknowthatgirl.com +0.0.0.0 www.ilovealisonangel.com +0.0.0.0 www.ilovebdsm.net +0.0.0.0 www.imagebam.com +0.0.0.0 imagechan.com +0.0.0.0 www.imagechan.com +0.0.0.0 www.imagefap.com +0.0.0.0 www.imagevenue.com +0.0.0.0 www.imagezilla.net +0.0.0.0 www.imgbox.com +0.0.0.0 www.imlive.com +0.0.0.0 www.imperiodefamosas.com +0.0.0.0 www.inaturist.com +0.0.0.0 www.incestflix.com +0.0.0.0 www.incognitopartyservice.com +0.0.0.0 www.indapool.com +0.0.0.0 www.independent-angels.co.uk +0.0.0.0 www.indianangels.net +0.0.0.0 www.indianpharma.info +0.0.0.0 www.indianpichunter.com +0.0.0.0 www.innocent-beauty.com +0.0.0.0 www.innocenthentai.com +0.0.0.0 www.insanecockbrothas.com +0.0.0.0 www.insideevilangel.com +0.0.0.0 www.inthecrack.com +0.0.0.0 www.intimatewebcams.com +0.0.0.0 www.intporn.com +0.0.0.0 www.ipadporns.xxx +0.0.0.0 www.iron-jawed-angels.com +0.0.0.0 www.islivewebcams.com +0.0.0.0 www.italiahard.it +0.0.0.0 www.itsgonnahurt.com +0.0.0.0 www.ivanafukalot.com +0.0.0.0 www.iwank.tv +0.0.0.0 www.iwantu.com +0.0.0.0 www.ixtractor.com +0.0.0.0 www.ixxx.com +0.0.0.0 www.jackboxharddrive.com +0.0.0.0 www.janesguide.com +0.0.0.0 www.japanangels.com +0.0.0.0 www.japanese-virgins.com +0.0.0.0 www.japaneseanime.com +0.0.0.0 www.japanxangels.com +0.0.0.0 www.jartna-fadaih.com +0.0.0.0 www.jartna.com +0.0.0.0 www.jasmin-webcams.com +0.0.0.0 www.jasminsangels.com +0.0.0.0 www.javhq.net +0.0.0.0 www.jdownloader.org +0.0.0.0 www.jennavirgin.com +0.0.0.0 www.jenniporn.com +0.0.0.0 www.jerk2it.com +0.0.0.0 www.jessicavirgin.com +0.0.0.0 www.jet-set-angels.com +0.0.0.0 www.jgalz.net +0.0.0.0 www.jigolojigola.net +0.0.0.0 www.jizzboat.com +0.0.0.0 www.joannaangel.com +0.0.0.0 www.joannaangelbucks.com +0.0.0.0 www.joesvirgins.com +0.0.0.0 www.join4free.com +0.0.0.0 www.joliewebcams.com +0.0.0.0 www.jollywebcams.com +0.0.0.0 www.joy-of-life.at +0.0.0.0 www.joyangeles.com +0.0.0.0 www.joywebcams.com +0.0.0.0 www.jpangels.com +0.0.0.0 www.juggsarea.com +0.0.0.0 www.juicywebcams.com +0.0.0.0 www.justbarelylegal.com +0.0.0.0 www.justjared.com +0.0.0.0 www.justmatureporn.com +0.0.0.0 www.justmouthfuls.com +0.0.0.0 www.justusboys.net +0.0.0.0 www.kagbz.com +0.0.0.0 www.kaotic.com +0.0.0.0 www.karupsbabes.com +0.0.0.0 www.karupsgals.com +0.0.0.0 www.kaskoos.com +0.0.0.0 www.katestube.com +0.0.0.0 www.keezlive.com +0.0.0.0 www.keezmovies.com +0.0.0.0 www.kidzilla.info +0.0.0.0 www.kievescortangels.com +0.0.0.0 www.kingpinmedia.net +0.0.0.0 www.kissteenclub.com +0.0.0.0 www.kittysangels.com +0.0.0.0 www.kolyomfilm.com +0.0.0.0 www.kontaktbox.de +0.0.0.0 www.korriangel.com +0.0.0.0 www.kos3araby.com +0.0.0.0 www.krissylove.com +0.0.0.0 www.l-virgin.biz +0.0.0.0 www.l-virgin.com +0.0.0.0 www.l-virgin.info +0.0.0.0 www.l-virgin.us +0.0.0.0 www.l-virgin.ws +0.0.0.0 www.ladiesofjuarez.com +0.0.0.0 www.ladycomfort.com.ar +0.0.0.0 www.ladylust.com +0.0.0.0 www.langelul.nl +0.0.0.0 www.latenightwebcams.com +0.0.0.0 www.latestalisonangel.com +0.0.0.0 www.latexangel.com +0.0.0.0 www.latexangel.net +0.0.0.0 www.latexangelic.com +0.0.0.0 www.latin-angel.com +0.0.0.0 www.latin-webcams.com +0.0.0.0 www.latinavirgins.com +0.0.0.0 www.latinexposure.com +0.0.0.0 www.latinovirgin.com +0.0.0.0 www.laura-angel.com +0.0.0.0 www.lauraangelonline.com +0.0.0.0 www.laylasa5en.info +0.0.0.0 www.legal-virgins.com +0.0.0.0 www.legendarylars.com +0.0.0.0 www.lemonmov.com +0.0.0.0 www.lesanal.com +0.0.0.0 www.lesbianfanatics.com +0.0.0.0 www.lesbianlunchhour.com +0.0.0.0 www.lesbianpornvideos.com +0.0.0.0 www.leswebcams.com +0.0.0.0 www.letsjerk.com +0.0.0.0 www.letterstoanangel.com +0.0.0.0 www.leyesmessenger.com +0.0.0.0 www.lezbohoneys.com +0.0.0.0 www.lezcuties.com +0.0.0.0 www.lifeselector.com +0.0.0.0 www.lighthouseangels.net +0.0.0.0 www.lilbabes.com +0.0.0.0 www.lingeriesins.com +0.0.0.0 www.linksexchange.net +0.0.0.0 www.lisaangeline.com +0.0.0.0 www.little-lupe.info +0.0.0.0 www.littlefuckholes.com +0.0.0.0 www.littleteenvideo.com +0.0.0.0 www.littlevirgin.com +0.0.0.0 www.littlevirginvideos.com +0.0.0.0 www.live-free-webcams.com +0.0.0.0 www.live-lesbian-webcams.com +0.0.0.0 www.live-shows-webcams.com +0.0.0.0 www.live-yesmessenger.com +0.0.0.0 www.livecams.nl +0.0.0.0 www.livegaywebcams.com +0.0.0.0 www.livejasmin-babes.com +0.0.0.0 www.livejasmin.net +0.0.0.0 www.livejasmin.tv +0.0.0.0 www.livejasminwebcams.com +0.0.0.0 www.livematurewebcams.com +0.0.0.0 www.livesex.xpg.com.br +0.0.0.0 www.liveshemalewebcams.com +0.0.0.0 www.livetrannywebcams.com +0.0.0.0 www.livetubecams.com +0.0.0.0 www.livewebcams.com +0.0.0.0 www.livewebcams.com.au +0.0.0.0 www.loa6.com +0.0.0.0 www.londonescortslist.net +0.0.0.0 www.lonestarnaughtygirls.com +0.0.0.0 www.lookformilf.com +0.0.0.0 www.lookordie.com +0.0.0.0 www.lookvirgin.com +0.0.0.0 www.losangelesbanners.com +0.0.0.0 www.losangelesmassage.net +0.0.0.0 www.lossofvirginity.com +0.0.0.0 www.lostangel.ws +0.0.0.0 www.lostmyvirginity.com +0.0.0.0 www.lostvirgin.com +0.0.0.0 www.lotzawebcams.com +0.0.0.0 www.love-angels-berlin.de +0.0.0.0 www.lovely-virgins.com +0.0.0.0 www.lovenylons.com +0.0.0.0 www.loveshack.org +0.0.0.0 www.lovevoodoo.com +0.0.0.0 www.lswebcams.com +0.0.0.0 www.lubeyourtube.com +0.0.0.0 www.lucifersdarkangel.co.uk +0.0.0.0 www.luckyvirginz.com +0.0.0.0 www.luscious.net +0.0.0.0 www.lustywebcams.com +0.0.0.0 www.lux-angels.com +0.0.0.0 www.madthumbs.com +0.0.0.0 www.maduraswebcams.com +0.0.0.0 www.magicmovies.com +0.0.0.0 www.magicwebcams.com +0.0.0.0 www.makeangelskneel.com +0.0.0.0 www.malatyaescortlar.org +0.0.0.0 www.malatyaeskortlar.org +0.0.0.0 www.male-exposure.com +0.0.0.0 www.malewebcams.com +0.0.0.0 www.mangelsdesigns.com +0.0.0.0 www.mangoangel.com +0.0.0.0 www.maniacpass.com +0.0.0.0 www.mastersitepass.com +0.0.0.0 www.masterwanker.com +0.0.0.0 www.maswebcams.com +0.0.0.0 www.mature-maniacs.com +0.0.0.0 www.mature-sex-movies.com +0.0.0.0 www.mature-sex-video.com +0.0.0.0 www.maturehills.com +0.0.0.0 www.maturewebcams.com +0.0.0.0 www.maxesangels.com +0.0.0.0 www.mcstories.com +0.0.0.0 www.mdnhinc.com +0.0.0.0 www.meetlocals.com +0.0.0.0 www.megaupload-xxx.com +0.0.0.0 www.megayoungsex.com +0.0.0.0 www.mellowvirgins.com +0.0.0.0 www.memebase.com +0.0.0.0 www.men-in-pantyhose.com +0.0.0.0 www.meningitis-angels.org +0.0.0.0 www.menssexguide.com +0.0.0.0 www.merryangels.com +0.0.0.0 www.merryangels.info +0.0.0.0 www.metangels.com +0.0.0.0 www.metaporn.com +0.0.0.0 www.mexicanvirgin.com +0.0.0.0 www.milanohotels.org +0.0.0.0 www.milfseeker.com +0.0.0.0 www.milkyangels.com +0.0.0.0 www.milta1980.co.uk +0.0.0.0 www.mirangelov.com +0.0.0.0 www.mirrorgirls.com +0.0.0.0 www.misguidedangel.nu +0.0.0.0 www.miss-porno.ru +0.0.0.0 www.mistresswebcams.com +0.0.0.0 www.mixx.com +0.0.0.0 www.mkangels.co.uk +0.0.0.0 www.mofonetwork.net +0.0.0.0 www.mofos.com +0.0.0.0 www.mofosex.com +0.0.0.0 www.mom-video.com +0.0.0.0 www.mommygotboobs.com +0.0.0.0 www.mommyneedsmoney.com +0.0.0.0 www.momsextube.xxx +0.0.0.0 www.mon-yesmessenger.com +0.0.0.0 www.monkeycock.net +0.0.0.0 www.monliveshow.com +0.0.0.0 www.monstersandangels.com +0.0.0.0 www.moonangel.com +0.0.0.0 www.moonangelcash.com +0.0.0.0 www.moregonzo.com +0.0.0.0 www.morewebcams.com +0.0.0.0 www.moronisangels.com +0.0.0.0 www.mostplays.com +0.0.0.0 www.mot3atbestbordels.info +0.0.0.0 www.motel69.com +0.0.0.0 www.motherless.com +0.0.0.0 www.motorbikeladies.info +0.0.0.0 www.movie2k.to +0.0.0.0 www.movieaccess.com +0.0.0.0 www.moviebox.com +0.0.0.0 www.moviedollars.com +0.0.0.0 www.moviefreaker.com +0.0.0.0 www.moviemix.net +0.0.0.0 www.moviemonster.com +0.0.0.0 www.movies4adults.com +0.0.0.0 www.moviesexserver.com +0.0.0.0 www.moviezentral.com +0.0.0.0 www.mozazbnat.info +0.0.0.0 www.moztna.com +0.0.0.0 www.mp3mixx.com +0.0.0.0 www.mpmcash.com +0.0.0.0 www.msbehaviour.co.uk +0.0.0.0 www.mulherescomcigarros.com +0.0.0.0 www.muscleangels.com +0.0.0.0 www.muslimsexwebcams.com +0.0.0.0 www.my-angel-funs.com +0.0.0.0 www.myadultguide.net +0.0.0.0 www.myanalangel.com +0.0.0.0 www.myblackangels.com +0.0.0.0 www.mycams.com +0.0.0.0 www.mydaughtersfuckingablackdude.com +0.0.0.0 www.myex.com +0.0.0.0 www.mygaywebcams.com +0.0.0.0 www.myhentai.tv +0.0.0.0 www.myhomeclip.com +0.0.0.0 www.myiplayground.com +0.0.0.0 www.myjizztube.com +0.0.0.0 www.mymomsfuckingblackzilla.com +0.0.0.0 www.mynakedweb.com +0.0.0.0 www.mypreciousvirgins.com +0.0.0.0 www.mystarlets.com +0.0.0.0 www.myvirginity.com +0.0.0.0 www.myxvids.com +0.0.0.0 www.n-sex.net +0.0.0.0 www.n3neshofarfesh.info +0.0.0.0 www.nabdh-alm3ani.net +0.0.0.0 www.nadiavirgin.com +0.0.0.0 www.nadiavirgin.net +0.0.0.0 www.nailedhard.tv +0.0.0.0 www.nakedlivewebcams.com +0.0.0.0 www.nakedpornphotos.com +0.0.0.0 www.nakedteenporn.com +0.0.0.0 www.naomiangel.com +0.0.0.0 www.nastydisney.com +0.0.0.0 www.nathaliediangelo.com +0.0.0.0 www.natur.nl +0.0.0.0 www.natural-angels.com +0.0.0.0 www.naturalangels.com +0.0.0.0 www.naturaltitmovies.com +0.0.0.0 www.naturalwondersoftheworld.com +0.0.0.0 www.naturalwonderz.com +0.0.0.0 www.naturistbeach.com +0.0.0.0 www.naturistcamp.com +0.0.0.0 www.naturiste.be +0.0.0.0 www.naturistonline.com +0.0.0.0 www.naturists.com +0.0.0.0 www.naturistville.com +0.0.0.0 www.natursekt-geil.com +0.0.0.0 www.natursekt.bz +0.0.0.0 www.natursekt.de +0.0.0.0 www.natursekt.nl +0.0.0.0 www.natursekt.tv +0.0.0.0 www.natursekt1a.net +0.0.0.0 www.natursekt24.com +0.0.0.0 www.natursektcam.de +0.0.0.0 www.natursektquelle.de +0.0.0.0 www.natursektweb.com +0.0.0.0 www.natursektweb.de +0.0.0.0 www.naughtiest-angels.com +0.0.0.0 www.naughtyadserve.com +0.0.0.0 www.naughtyamerica.com +0.0.0.0 www.naughtywebcams.com +0.0.0.0 www.ndcontent.com +0.0.0.0 www.neangel.com +0.0.0.0 www.nemo-movies.com +0.0.0.0 www.neovirgins.com +0.0.0.0 www.neswangy.net +0.0.0.0 www.netnet50.com +0.0.0.0 www.netphuck.com +0.0.0.0 www.netplayground.com +0.0.0.0 www.netvirgin.com +0.0.0.0 www.networkwestvirginia.com +0.0.0.0 www.newangelicseduction.com +0.0.0.0 www.newsfilter.org +0.0.0.0 www.newvirgineveryday.com +0.0.0.0 www.newwebmaster.net +0.0.0.0 www.next-layers.com +0.0.0.0 www.nextdoorgrannies.co.uk +0.0.0.0 www.nextdoornikki.com +0.0.0.0 www.nextpic.com +0.0.0.0 www.nfsx.com +0.0.0.0 www.nichearena.com +0.0.0.0 www.nichewebcams.com +0.0.0.0 www.nicolegravesvideo.com +0.0.0.0 www.nifty.org +0.0.0.0 www.nightangel.com +0.0.0.0 www.ninavirgin.com +0.0.0.0 www.nineteenporn.com +0.0.0.0 www.nnangels.com +0.0.0.0 www.nnwebcams.com +0.0.0.0 www.northern-angels.co.uk +0.0.0.0 www.notarangelo.com +0.0.0.0 www.notesonvirginia.com +0.0.0.0 www.noviceamateurs.com +0.0.0.0 www.ns4w.org +0.0.0.0 www.nsgalleries.com +0.0.0.0 www.nubiles-videos.com +0.0.0.0 www.nubiles.net +0.0.0.0 www.nudebeachgalleries.net +0.0.0.0 www.nudeflix.com +0.0.0.0 www.nudegalleries.org +0.0.0.0 www.nudesonline.com +0.0.0.0 www.nudeteenpornpics.com +0.0.0.0 www.nudevista.com +0.0.0.0 www.nuvid.com +0.0.0.0 www.nxtcomics.me +0.0.0.0 www.nylonclit.com +0.0.0.0 www.nyloner.com +0.0.0.0 www.nymphogirls.com +0.0.0.0 www.ocxxx.com +0.0.0.0 www.officesex101.com +0.0.0.0 www.offporn.com +0.0.0.0 www.oiledangels.com +0.0.0.0 www.old-virgins.info +0.0.0.0 www.oldconsolevideo.com +0.0.0.0 www.oldpichunter.com +0.0.0.0 www.oldpornsite.com +0.0.0.0 www.olduvsen.cz +0.0.0.0 www.olgasangels.net +0.0.0.0 www.omanko-exposure.com +0.0.0.0 www.omegle.com +0.0.0.0 www.omwex.com +0.0.0.0 www.oneclickwebcams.com +0.0.0.0 www.onegaysex.com +0.0.0.0 www.onegranny.com +0.0.0.0 www.oneshemale.com +0.0.0.0 www.onlineangels.com +0.0.0.0 www.onlinehotwebcams.com +0.0.0.0 www.onlinesuperheroes.com +0.0.0.0 www.onlyankara.com +0.0.0.0 www.onlybestsex.com +0.0.0.0 www.onlybigmovies.com +0.0.0.0 www.onlyfatchiks.com +0.0.0.0 www.onmpeg.com +0.0.0.0 www.oralgirlfriend.net +0.0.0.0 www.orgasm.com +0.0.0.0 www.orgiasreales.com +0.0.0.0 www.orientalangelsmovs.com +0.0.0.0 www.orientalvirgins.com +0.0.0.0 www.outinpublic.com +0.0.0.0 www.outlawedvirgin.com +0.0.0.0 www.outpersonals.com +0.0.0.0 www.outporn.com +0.0.0.0 www.overthehillganglosangeles.org +0.0.0.0 www.oxcash.com +0.0.0.0 www.oyundas.org +0.0.0.0 www.p-angels.com +0.0.0.0 www.pacinocash.com +0.0.0.0 www.packfuck.com +0.0.0.0 www.page-x.com +0.0.0.0 www.paixaoasiatica.com +0.0.0.0 www.paixaogay.com +0.0.0.0 www.pamela-sandersin.info +0.0.0.0 www.pamswebcams.com +0.0.0.0 www.pantydirectory.com +0.0.0.0 www.pantyhosetv.net +0.0.0.0 www.panzertraffic.com +0.0.0.0 www.paparazzifilth.com +0.0.0.0 www.paraisowebcams.com +0.0.0.0 www.partie-privee.com +0.0.0.0 www.passeilimitado.com +0.0.0.0 www.passion.com +0.0.0.0 www.paulsnetwork.com +0.0.0.0 www.payserve.com +0.0.0.0 www.pcangel.com +0.0.0.0 www.peach-angel.com +0.0.0.0 www.peachangel.com +0.0.0.0 www.peekvids.com +0.0.0.0 www.penisbot.com +0.0.0.0 www.penix.fr +0.0.0.0 www.perezhilton.com +0.0.0.0 www.perfect10.com +0.0.0.0 www.perfectangels.org +0.0.0.0 www.perfectgirls.net +0.0.0.0 www.perfectnudegirls.com +0.0.0.0 www.performance-angel.com +0.0.0.0 www.persiankitty.com +0.0.0.0 www.persianwomen.info +0.0.0.0 www.personalcams.com +0.0.0.0 www.pertunda.com +0.0.0.0 www.pervclips.com +0.0.0.0 www.pervertedwebcams.com +0.0.0.0 www.pervnetwork.com +0.0.0.0 www.pervygames.com +0.0.0.0 www.petras-angels.de +0.0.0.0 www.pgporn.top +0.0.0.0 www.phallosdei.com +0.0.0.0 www.phatwebcams.com +0.0.0.0 www.phil-flash.com +0.0.0.0 www.phone-angel.de +0.0.0.0 www.phoneangels.com +0.0.0.0 www.phonevirgin.com +0.0.0.0 www.photo-angels.biz +0.0.0.0 www.photo.voffka.com +0.0.0.0 www.photonaturals.com +0.0.0.0 www.photosex.biz +0.0.0.0 www.photovirgins.com +0.0.0.0 www.picahottie.com +0.0.0.0 www.pichunter.com +0.0.0.0 www.picladies.com +0.0.0.0 www.pictoa.com +0.0.0.0 www.picxx.net +0.0.0.0 www.picxxnetwork.com +0.0.0.0 pigward.com +0.0.0.0 www.pigward.com +0.0.0.0 www.pimpandhost.com +0.0.0.0 www.pimproll.com +0.0.0.0 www.pimpwebcams.com +0.0.0.0 www.pin-up-angels.net +0.0.0.0 www.pinaccesscode.com +0.0.0.0 www.pinkbabes.net +0.0.0.0 www.pinkrod.com +0.0.0.0 www.pinkvisualhdgalleries.com +0.0.0.0 www.pinkvisualpad.com +0.0.0.0 www.pinkwebcam.com +0.0.0.0 www.pinkytoy.com +0.0.0.0 www.piporno.com +0.0.0.0 www.piradinhas.com +0.0.0.0 www.piwebcams.com +0.0.0.0 www.pix4dicks.com +0.0.0.0 www.planet-katie.info +0.0.0.0 www.planetsexblogs.com +0.0.0.0 www.planetsuzy.org +0.0.0.0 www.play-angel.com +0.0.0.0 www.play-boom.com +0.0.0.0 www.playblog.org +0.0.0.0 www.playblog.ws +0.0.0.0 www.playboy.bg +0.0.0.0 www.playboy.com +0.0.0.0 www.playboy.com.br +0.0.0.0 www.playboy.com.mx +0.0.0.0 www.playboy.com.tw +0.0.0.0 www.playingboy.com +0.0.0.0 www.playingmatures.com +0.0.0.0 www.playmatewebcams.com +0.0.0.0 www.playmymovie.com +0.0.0.0 www.pleasurecage.info +0.0.0.0 www.plugin-x.com +0.0.0.0 www.plumpchicks.net +0.0.0.0 www.plumpersworld.com +0.0.0.0 www.plumpteens.net +0.0.0.0 www.pokeherstars.com +0.0.0.0 www.polandtoday.org +0.0.0.0 www.polarpornhd.com +0.0.0.0 www.polish-angels.com +0.0.0.0 www.popander.mobi +0.0.0.0 www.popcash.net +0.0.0.0 www.porn-disney.com +0.0.0.0 www.porn.com +0.0.0.0 www.porn.es +0.0.0.0 www.porn.hu +0.0.0.0 www.porn.org +0.0.0.0 www.porn.to +0.0.0.0 www.porn.xxx +0.0.0.0 www.porn18sex.com +0.0.0.0 www.porn2.com +0.0.0.0 www.pornaccess.com +0.0.0.0 pornaddik.com +0.0.0.0 www.pornaddik.com +0.0.0.0 www.pornalized.com +0.0.0.0 www.pornattitude.com +0.0.0.0 www.pornbibi.com +0.0.0.0 www.pornburst.xxx +0.0.0.0 www.porncash.de +0.0.0.0 www.porncash.tv +0.0.0.0 www.pornclub.com +0.0.0.0 www.porndig.com +0.0.0.0 www.porndisney.com +0.0.0.0 www.porndreamer.com +0.0.0.0 www.porneq.com +0.0.0.0 www.pornerbros.com +0.0.0.0 pornfapr.com +0.0.0.0 www.pornfapr.com +0.0.0.0 www.porngalleriesz.com +0.0.0.0 www.pornhd.com +0.0.0.0 www.pornhd.xyz +0.0.0.0 www.pornhost.com +0.0.0.0 www.pornhub.com +0.0.0.0 www.pornhubb.top +0.0.0.0 www.pornhublive.com +0.0.0.0 www.pornicom.com +0.0.0.0 www.pornmail.com +0.0.0.0 www.pornmaxim.com +0.0.0.0 www.pornmd.com +0.0.0.0 www.porno-disney.com +0.0.0.0 www.porno-teens-free.com +0.0.0.0 www.pornobanner.com +0.0.0.0 www.pornofolies.com +0.0.0.0 www.pornohotvideos.com +0.0.0.0 www.pornoid.com +0.0.0.0 www.pornoinside.com +0.0.0.0 www.pornoitalia.it +0.0.0.0 www.pornolab.net +0.0.0.0 www.pornolaba.com +0.0.0.0 www.pornolandia.xxx +0.0.0.0 www.pornomovies.com +0.0.0.0 www.pornopim.com +0.0.0.0 www.pornopin.me +0.0.0.0 www.pornorama.com +0.0.0.0 www.pornoxo.com +0.0.0.0 www.pornoxxxclips.com +0.0.0.0 www.pornpics.com +0.0.0.0 www.pornpicsmovies.net +0.0.0.0 www.pornroxxx.com +0.0.0.0 www.pornstarslikeitbig.co.uk +0.0.0.0 www.porntracker.com +0.0.0.0 www.porntube.com +0.0.0.0 www.porntube69.net +0.0.0.0 www.porntubedirect.info +0.0.0.0 www.pornurl.pw +0.0.0.0 www.pornvideos.com +0.0.0.0 www.pornvil.com +0.0.0.0 www.pornwhite.com +0.0.0.0 www.pornworms.com +0.0.0.0 www.pornyeah.com +0.0.0.0 www.pornzeus.com +0.0.0.0 www.portaladelaide.com.br +0.0.0.0 www.poseparty.com +0.0.0.0 www.postimage.org +0.0.0.0 www.preggowebcams.com +0.0.0.0 www.premierimagehosting.com +0.0.0.0 www.premiumhdv.com +0.0.0.0 www.pretty-angels.de +0.0.0.0 www.pretty-virgins.com +0.0.0.0 www.prettyvirgins.com +0.0.0.0 www.primebreasts.net +0.0.0.0 www.primecups.com +0.0.0.0 www.primeskype.com +0.0.0.0 www.princessblueyez.com +0.0.0.0 www.private-angels.net +0.0.0.0 www.privatecams.ws +0.0.0.0 www.privatelivewebcams.com +0.0.0.0 www.privatesangels.com +0.0.0.0 www.privatewebcams.com +0.0.0.0 www.proporn.com +0.0.0.0 www.prosexxx.com +0.0.0.0 www.protizer.net +0.0.0.0 www.psbbanners.com +0.0.0.0 www.publicexposurephotos.com +0.0.0.0 www.publicexposurepics.com +0.0.0.0 www.publicexposurepictures.com +0.0.0.0 www.pufisi.com +0.0.0.0 www.punchpin.com +0.0.0.0 www.pure-angel.net +0.0.0.0 www.puredee.com +0.0.0.0 www.purefaces.com +0.0.0.0 www.purefuck.com +0.0.0.0 www.purepov.com +0.0.0.0 www.pussisex.com +0.0.0.0 www.pussy.com +0.0.0.0 www.pussy.org +0.0.0.0 www.pussybabes.net +0.0.0.0 www.pussycalor.com +0.0.0.0 www.pussyeasy.com +0.0.0.0 www.pussyharem.com +0.0.0.0 www.pussymoms.com +0.0.0.0 www.pussypornpics.com +0.0.0.0 www.pussyspace.com +0.0.0.0 www.putasconwebcams.com +0.0.0.0 www.putitasangelicales.com +0.0.0.0 www.qualityporn.biz +0.0.0.0 www.qualitysextube.com +0.0.0.0 www.quewebcams.com +0.0.0.0 www.rabbitsreviews.com +0.0.0.0 www.rapid-xxx.com +0.0.0.0 www.rarbg.com +0.0.0.0 www.rasazrak.info +0.0.0.0 www.rashatemraa.com +0.0.0.0 www.rawporn.org +0.0.0.0 www.rawtube.com +0.0.0.0 www.real-virgins.net +0.0.0.0 www.real-wife-stories.com +0.0.0.0 www.realandnatural.com +0.0.0.0 www.realblacklesbians.com +0.0.0.0 www.realfatgirls.net +0.0.0.0 www.realitykings.com +0.0.0.0 www.realitykingsnetwork.com +0.0.0.0 www.realsexdates.com +0.0.0.0 www.realsexwebcams.com +0.0.0.0 www.realteengirlfriends.com +0.0.0.0 www.realvirgin.com +0.0.0.0 www.recordedwebcams.com +0.0.0.0 www.redangel.hu +0.0.0.0 www.redangels.se +0.0.0.0 www.redheadwebcams.com +0.0.0.0 www.redlightcenter.com +0.0.0.0 www.redtube.com +0.0.0.0 www.reelgalleries.com +0.0.0.0 www.refinery29.com +0.0.0.0 www.rejalsgays.info +0.0.0.0 www.relationship-resources.com +0.0.0.0 www.rencontres-webcams.com +0.0.0.0 www.rexmag.com +0.0.0.0 www.richardkern.com +0.0.0.0 www.rideyourcamels.info +0.0.0.0 www.rijpevrouwenwebcams.com +0.0.0.0 www.rk.com +0.0.0.0 www.rnosh.com +0.0.0.0 www.roccomovies.net +0.0.0.0 www.ronsangels.com +0.0.0.0 www.rotanaz.com +0.0.0.0 www.royalbluemedia.com +0.0.0.0 www.ru-traffic.com +0.0.0.0 www.rudefuck.com +0.0.0.0 www.rumrunners.us +0.0.0.0 www.runawayangels.com +0.0.0.0 www.rusangels.net +0.0.0.0 www.russian-virgin.us +0.0.0.0 www.russianangels.com +0.0.0.0 www.russianangels.info +0.0.0.0 www.russianparadise.com +0.0.0.0 www.russianpornoxxx.com +0.0.0.0 www.russiantwinksecrets.com +0.0.0.0 www.russianvirginz.com +0.0.0.0 www.russianvirginz.info +0.0.0.0 www.s-angel.net +0.0.0.0 www.s-angels.com +0.0.0.0 www.s3xads.com +0.0.0.0 www.s7lob.com +0.0.0.0 www.s7lob.net +0.0.0.0 www.sa7you.com +0.0.0.0 www.saharanights.info +0.0.0.0 www.salamtakehoh.info +0.0.0.0 www.salasdewebcams.com +0.0.0.0 www.sancdn.net +0.0.0.0 www.sandralatina.com +0.0.0.0 www.sapphicangels.com +0.0.0.0 www.saraangell.com +0.0.0.0 www.sashafucksdasha.com +0.0.0.0 www.sassy-angels.com +0.0.0.0 www.sassyangel.com +0.0.0.0 www.savannavirgin.com +0.0.0.0 www.sboob.com +0.0.0.0 www.scatrina.com +0.0.0.0 www.school-virgins.net +0.0.0.0 www.schoolofvirgins.com +0.0.0.0 www.score-video.com +0.0.0.0 www.sdc.com +0.0.0.0 www.sea-angels.ru +0.0.0.0 www.searchsexblogs.com +0.0.0.0 www.searchwebcams.com +0.0.0.0 www.searchxfind.com +0.0.0.0 www.seavirgin.com +0.0.0.0 www.secretfriendswebcams.com +0.0.0.0 www.secretlittle.com +0.0.0.0 www.secretteenvideo.com +0.0.0.0 www.seducedangel.com +0.0.0.0 www.seemygf.com +0.0.0.0 www.seniorhousingvirginabeach.com +0.0.0.0 www.sensexion.com +0.0.0.0 www.sensualwriter.com +0.0.0.0 www.seo1.org +0.0.0.0 www.seoprofit.biz +0.0.0.0 www.sesso-gratis.info +0.0.0.0 www.seventeenvideo.com +0.0.0.0 www.sex-and-animals.com +0.0.0.0 www.sex-explorer.com +0.0.0.0 www.sex-tracker.com +0.0.0.0 www.sex-tracker.de +0.0.0.0 www.sex-watch.com +0.0.0.0 www.sex.com +0.0.0.0 www.sex2inc.com +0.0.0.0 www.sexad.net +0.0.0.0 www.sexangels.net +0.0.0.0 www.sexcess.net +0.0.0.0 www.sexcounter.com +0.0.0.0 www.sexdildoking.com +0.0.0.0 www.sexdisney.com +0.0.0.0 www.sexfg.com +0.0.0.0 www.sexleech.com +0.0.0.0 www.sexlist.com +0.0.0.0 www.sexmaxx.com +0.0.0.0 www.sexole.com +0.0.0.0 www.sexpeeper.com +0.0.0.0 www.sexproadventures.com +0.0.0.0 www.sexsearch.com +0.0.0.0 www.sexsearchtgp.com +0.0.0.0 www.sexskype.za.pl +0.0.0.0 www.sextubehd.xxx +0.0.0.0 www.sextvx.com +0.0.0.0 www.sexualblondes.net +0.0.0.0 www.sexualpleasureguide.com +0.0.0.0 www.sexvid.xxx +0.0.0.0 www.sexyads.com +0.0.0.0 www.sexyandfunny.com +0.0.0.0 www.sexybunnylove.com +0.0.0.0 www.sexygirlbutts.com +0.0.0.0 www.sexyhumorgames.com +0.0.0.0 www.sexymaturethumbs.com +0.0.0.0 www.sexyoung.us +0.0.0.0 www.sexytout.com +0.0.0.0 www.sexzoznamka.eu +0.0.0.0 www.shabbyvirgins.com +0.0.0.0 www.shamelessangel.com +0.0.0.0 www.sharday.us +0.0.0.0 www.shareporno.com +0.0.0.0 www.shegotass.info +0.0.0.0 www.sheisangel.com +0.0.0.0 www.shelbyvirgin.com +0.0.0.0 www.shemale-clubs.com +0.0.0.0 www.shemalebot.com +0.0.0.0 www.shemalemovies.us +0.0.0.0 www.shemalepepper.com +0.0.0.0 www.shemaleswebcams.com +0.0.0.0 www.shesfreaky.com +0.0.0.0 www.shinyangels.com +0.0.0.0 www.shopgiggles.com +0.0.0.0 showbeauty.com +0.0.0.0 www.showbeauty.com +0.0.0.0 www.showdeinfieles.com +0.0.0.0 www.showdewebcams.com.ar +0.0.0.0 www.showmewebcams.com +0.0.0.0 www.showwebcams.com +0.0.0.0 www.shy-virgins.com +0.0.0.0 www.shyvirgin.net +0.0.0.0 www.shyvirgins.com +0.0.0.0 www.sicflics.com +0.0.0.0 www.silkangels.com +0.0.0.0 www.silkyangels.com +0.0.0.0 www.sinisterangel.com +0.0.0.0 www.sinistercams.com +0.0.0.0 www.sinistercamslive.com +0.0.0.0 www.siska.tv +0.0.0.0 www.sksawi.info +0.0.0.0 www.skypecam.com +0.0.0.0 www.skypesex.ru +0.0.0.0 www.slavecomics.com +0.0.0.0 www.slavestube.com +0.0.0.0 www.sleazyangels.com +0.0.0.0 www.sleazyneasy.com +0.0.0.0 www.sleepingbitch.com +0.0.0.0 www.slickcams.com +0.0.0.0 www.slothtraffic.com +0.0.0.0 www.slumsluts.net +0.0.0.0 www.slutload.com +0.0.0.0 www.smartmovies.net +0.0.0.0 www.smrd7.net +0.0.0.0 www.smut-planet.com +0.0.0.0 www.smutbdsm.com +0.0.0.0 www.smutwebcams.com +0.0.0.0 www.socalmovies.com +0.0.0.0 www.socialsexnetwork.net +0.0.0.0 www.solocazzienormi.com +0.0.0.0 www.sologirlguide.com +0.0.0.0 www.solotouch.com +0.0.0.0 www.solowebcams.com.ar +0.0.0.0 www.sophiassecrets.com +0.0.0.0 www.sotransexuais.com +0.0.0.0 www.spankbang.com +0.0.0.0 www.spankingtube.com +0.0.0.0 www.spankwire.com +0.0.0.0 www.spunkysheets.com +0.0.0.0 www.srandel.com +0.0.0.0 www.stepnation.com +0.0.0.0 www.stickywebcams.com +0.0.0.0 www.stileproject.com +0.0.0.0 www.stocking-divas.com +0.0.0.0 www.stocking-pages.com +0.0.0.0 www.stocking-porn.com +0.0.0.0 www.stooorage.com +0.0.0.0 www.straightboygalleries.com +0.0.0.0 www.strangeland.com +0.0.0.0 www.strangeland.net +0.0.0.0 www.strangeland.org +0.0.0.0 www.strangelove.com.au +0.0.0.0 www.strangewishes.com +0.0.0.0 www.streamlivesex.com +0.0.0.0 www.streamsex.com +0.0.0.0 www.stripgalleries.net +0.0.0.0 www.stunningangels.com +0.0.0.0 www.sublimedirectory.com +0.0.0.0 www.submityourflicks.com +0.0.0.0 www.suburbanwebcams.com +0.0.0.0 www.sucarpeppergirls.info +0.0.0.0 www.sucksex.com +0.0.0.0 www.sugarangels.com +0.0.0.0 www.suicideangel.com +0.0.0.0 www.sultanswomen.com +0.0.0.0 www.sunny-thumbs.com +0.0.0.0 www.sunporn.com +0.0.0.0 www.sunporno.com +0.0.0.0 www.supertightvirgins.com +0.0.0.0 www.superwebcams.com +0.0.0.0 www.swapfinder.com +0.0.0.0 www.swebcams.com +0.0.0.0 www.sweet-angels.com +0.0.0.0 www.sweetangel.tv +0.0.0.0 www.sweetdiscreet.com +0.0.0.0 www.sweethotteens.com +0.0.0.0 www.sweetkiss.me +0.0.0.0 www.sweetkrissy.com +0.0.0.0 www.sweetshow.com +0.0.0.0 www.sweetvirgin.com +0.0.0.0 www.sweetvirgins.com +0.0.0.0 www.swissangels.ch +0.0.0.0 www.sxx.com +0.0.0.0 www.sybianvirgins.com +0.0.0.0 www.taboosex.club +0.0.0.0 www.takezoo.com +0.0.0.0 www.tastyangels.com +0.0.0.0 www.tatagirls.com +0.0.0.0 www.taxindecente.com +0.0.0.0 www.tblop.com +0.0.0.0 www.tdarkangel.com +0.0.0.0 www.teachtwinks.com +0.0.0.0 www.teen-gay-boys.net +0.0.0.0 www.teen-mail.com +0.0.0.0 www.teenbookmark.com +0.0.0.0 www.teenburg.com +0.0.0.0 www.teencumdumpsters.com +0.0.0.0 www.teendaporn.com +0.0.0.0 www.teenfucktory.com +0.0.0.0 www.teenfunzone.com +0.0.0.0 www.teengirlsporn.com +0.0.0.0 www.teengirlstub.com +0.0.0.0 www.teenhost.net +0.0.0.0 www.teenpicspussy.com +0.0.0.0 www.teenporn00.com +0.0.0.0 www.teenpornmovieshd.net +0.0.0.0 www.teens-list.net +0.0.0.0 www.teens24h.com +0.0.0.0 www.teenscoreclub.com +0.0.0.0 www.teensexmovs.com +0.0.0.0 www.teensexreality.com +0.0.0.0 www.teensforcash.com +0.0.0.0 www.teensgotboobs.net +0.0.0.0 www.teenshorde.com +0.0.0.0 www.teenslikeitbig.com +0.0.0.0 www.teenslikeitbig.info +0.0.0.0 www.teensondicks.com +0.0.0.0 www.teenssites.net +0.0.0.0 www.teensxxxvideoz.com +0.0.0.0 www.teenywebcams.com +0.0.0.0 www.telefonsexpalast.de +0.0.0.0 www.temploangelina.com +0.0.0.0 www.temptingangels.org +0.0.0.0 www.tenderboys.net +0.0.0.0 www.tendervirgins.com +0.0.0.0 www.tenmilliongalleries.com +0.0.0.0 www.tgirlmeat.com +0.0.0.0 www.tgptraffic.biz +0.0.0.0 www.thatsfucked.org +0.0.0.0 www.the-adult-company.com +0.0.0.0 www.theamourangels.com +0.0.0.0 www.theangelina.com +0.0.0.0 www.thecolorofangels.com +0.0.0.0 www.thefreenude.com +0.0.0.0 www.themeetlocal.com +0.0.0.0 www.thenewporn.com +0.0.0.0 www.thenipslip.com +0.0.0.0 www.theporn1.com +0.0.0.0 www.thepornlist.net +0.0.0.0 www.thepregnantsex.com +0.0.0.0 www.thestrangeangels.com +0.0.0.0 www.thesuperficial.com +0.0.0.0 www.theteenbay.co +0.0.0.0 www.theybf.com +0.0.0.0 www.thickbbwforum.com +0.0.0.0 www.thirdmovies.com +0.0.0.0 www.thisav.com +0.0.0.0 www.thisvid.com +0.0.0.0 www.thrixxx.com +0.0.0.0 www.thumblogger.com +0.0.0.0 www.thumbsweek.com +0.0.0.0 www.thumbzilla.com +0.0.0.0 www.tiasenwebcams.com.ar +0.0.0.0 www.tiavaswebcams.com +0.0.0.0 www.tight-virgins.com +0.0.0.0 www.tightangels.com +0.0.0.0 www.tightteela.com +0.0.0.0 www.tightvirgins.com.ar +0.0.0.0 www.tinaangel.com +0.0.0.0 www.tiny-virginz.com +0.0.0.0 www.tinychat.com +0.0.0.0 www.tinylittlevirgin.com +0.0.0.0 www.titflicks.com +0.0.0.0 www.titten-kitty-natursekt.de +0.0.0.0 www.tnaflix.com +0.0.0.0 www.todoporn.com +0.0.0.0 www.todowebcams.com +0.0.0.0 www.tokyoangels.com +0.0.0.0 www.toonaddict.com +0.0.0.0 www.toons-for-adult.com +0.0.0.0 www.tootrash.com +0.0.0.0 www.top-porn-sites.info +0.0.0.0 www.topadult10.com +0.0.0.0 www.topamateurforum.com +0.0.0.0 www.topamateursexvideos.com +0.0.0.0 www.topbucks.com +0.0.0.0 www.topfreaks.com +0.0.0.0 www.topheavywebcams.com +0.0.0.0 www.tophomevideos.com +0.0.0.0 www.toplistwebcams.com +0.0.0.0 www.topmomvideos.com +0.0.0.0 www.topnotchwebcams.com +0.0.0.0 www.topsexart.com +0.0.0.0 www.toptoonsites.com +0.0.0.0 www.topwebcams.com +0.0.0.0 www.torontoangels.com +0.0.0.0 www.totalexposure.com +0.0.0.0 www.toteme.com +0.0.0.0 www.tr-af.com +0.0.0.0 www.tradehardlinks.com +0.0.0.0 www.traffic.ru +0.0.0.0 www.trafficholder.com +0.0.0.0 www.trailerwmv.com +0.0.0.0 www.trampararam.net +0.0.0.0 www.tranent.nl +0.0.0.0 www.trannypichunter.com +0.0.0.0 www.trans-angelina.de +0.0.0.0 www.transexual-webcams.com +0.0.0.0 www.transladyboy.com +0.0.0.0 www.transsexualhut.com +0.0.0.0 www.travestisconwebcams.com +0.0.0.0 www.triplexangels.com +0.0.0.0 www.triplexposure.com +0.0.0.0 www.trueangels.com +0.0.0.0 www.truecash.com +0.0.0.0 www.tryboobs.com +0.0.0.0 www.tsdreamangel.com +0.0.0.0 www.tube18.sex +0.0.0.0 www.tube8.com +0.0.0.0 www.tubeanalporn.com +0.0.0.0 www.tubegalore.com +0.0.0.0 www.tubekitty.com +0.0.0.0 www.tubeon.com +0.0.0.0 www.tubepornteen.com +0.0.0.0 www.tubewolf.com +0.0.0.0 www.tuboff.com +0.0.0.0 www.tuccus.com +0.0.0.0 www.tushyporn.net +0.0.0.0 www.tv69.com +0.0.0.0 www.twatgod.com +0.0.0.0 www.twilight-angels.com +0.0.0.0 www.twinksonwebcams.com +0.0.0.0 www.twistedblogs.com +0.0.0.0 www.txxx.com +0.0.0.0 www.ucgalleries.com +0.0.0.0 www.uk-webcams.com +0.0.0.0 www.ultra-pornstars.com +0.0.0.0 www.ultrawebcams.com +0.0.0.0 www.ultrayoungsex.com +0.0.0.0 www.unitedtechguys.com +0.0.0.0 www.unshavedwebcams.com +0.0.0.0 www.upforit.com +0.0.0.0 www.upforitnetworks.com +0.0.0.0 www.usa-webcams.com +0.0.0.0 www.usasexlovers.com +0.0.0.0 www.usearchx.com +0.0.0.0 www.usercash.com +0.0.0.0 www.usexvideos.com +0.0.0.0 www.usualgirls.com +0.0.0.0 www.usvirgin.com +0.0.0.0 www.usvirgins.com +0.0.0.0 www.utherverse.com +0.0.0.0 www.va-ua.com +0.0.0.0 www.veporn.net +0.0.0.0 www.verbalangels.com +0.0.0.0 www.veronicasdiary.com +0.0.0.0 www.verwebcams.com +0.0.0.0 www.veryvirgin.com +0.0.0.0 www.vette-porno.nl +0.0.0.0 www.viagra-shop.com.ua +0.0.0.0 www.vibrasian.com +0.0.0.0 www.vickyvirgin.com +0.0.0.0 www.vid2c.com +0.0.0.0 www.vidbang.com +0.0.0.0 www.video-virgin.net +0.0.0.0 www.video-virgins.com +0.0.0.0 www.video69.ru +0.0.0.0 www.videoangels.com +0.0.0.0 www.videodirectory10.info +0.0.0.0 www.videos2stars.com +0.0.0.0 www.videos666.com +0.0.0.0 www.videosexperts.com +0.0.0.0 www.videosywebcams.com +0.0.0.0 www.videosz.com +0.0.0.0 www.videovirgins.com +0.0.0.0 www.vidz.com +0.0.0.0 www.vikiporn.com +0.0.0.0 www.vipangelz.com +0.0.0.0 www.vipissy.com +0.0.0.0 www.viptube.com +0.0.0.0 www.virgin-cocks.com +0.0.0.0 www.virgin-coconut-oil.info +0.0.0.0 www.virgin-experience.com +0.0.0.0 www.virgin-films.com +0.0.0.0 www.virgin-international.de +0.0.0.0 www.virgin-movies.com +0.0.0.0 www.virgin-nubiles.com +0.0.0.0 www.virgin-paradise.com +0.0.0.0 www.virgin-paradize.com +0.0.0.0 www.virgin-pics.com +0.0.0.0 www.virgin-tv.tv +0.0.0.0 www.virgin-world.com +0.0.0.0 www.virgin4free.com +0.0.0.0 www.virgin50.com +0.0.0.0 www.virginalena.com +0.0.0.0 www.virginals.com +0.0.0.0 www.virginanime.com +0.0.0.0 www.virginass.com +0.0.0.0 www.virginbody.com +0.0.0.0 www.virgincards.com +0.0.0.0 www.virgincity.com +0.0.0.0 www.virginconfession.com +0.0.0.0 www.virgindot.com +0.0.0.0 www.virginfestival2008.com +0.0.0.0 www.virginfilms.com +0.0.0.0 www.virginfisters.net +0.0.0.0 www.virginfriend.info +0.0.0.0 www.virgingalactic.ca +0.0.0.0 www.virgingaming.com +0.0.0.0 www.virginhaven.com +0.0.0.0 www.virginhigh.com +0.0.0.0 www.virginhoney.com +0.0.0.0 www.virginhood.com +0.0.0.0 www.virginia-model.info +0.0.0.0 www.virginia-personals.com +0.0.0.0 www.virginia.in +0.0.0.0 www.virginiaannterrell.net +0.0.0.0 www.virginiabeachattorneyinfo.com +0.0.0.0 www.virginiablueridge.com +0.0.0.0 www.virginiadiocese.org +0.0.0.0 www.virginiasteger.com +0.0.0.0 www.virginiatechmurders.com +0.0.0.0 www.virginidad.com +0.0.0.0 www.virginidad.nl +0.0.0.0 www.virginiecaprice.com +0.0.0.0 www.virgininterview.com +0.0.0.0 www.virginkitty.com +0.0.0.0 www.virginladies.com +0.0.0.0 www.virginmaleass.com +0.0.0.0 www.virginmedianet.com +0.0.0.0 www.virginmobile.fr +0.0.0.0 www.virginnextdoor.com +0.0.0.0 www.virginoff.biz +0.0.0.0 www.virginoff.co.uk +0.0.0.0 www.virginoff.com +0.0.0.0 www.virginoff.com.ar +0.0.0.0 www.virginoff.info +0.0.0.0 www.virginopener.com +0.0.0.0 www.virginpalace.de +0.0.0.0 www.virginpass.com +0.0.0.0 www.virginpassword.com +0.0.0.0 www.virginphoto.com +0.0.0.0 www.virginplace.com +0.0.0.0 www.virginradio.fr +0.0.0.0 www.virginriches.com +0.0.0.0 www.virginriver.com +0.0.0.0 www.virgins-candid.com +0.0.0.0 www.virgins-club.com +0.0.0.0 www.virgins-off.com +0.0.0.0 www.virgins-x.com +0.0.0.0 www.virgins.info +0.0.0.0 www.virgins.org +0.0.0.0 www.virgins.pl +0.0.0.0 www.virgins19.com +0.0.0.0 www.virgins4free.com +0.0.0.0 www.virgins4freegold.com +0.0.0.0 www.virginsadist.com +0.0.0.0 www.virginsbbs.com +0.0.0.0 www.virginsblog.com +0.0.0.0 www.virginsclub.com +0.0.0.0 www.virginsclub.net +0.0.0.0 www.virginscrazy.com +0.0.0.0 www.virginsdontskydive.com +0.0.0.0 www.virginseries.com +0.0.0.0 www.virginsexstory.com +0.0.0.0 www.virginsexweb.com +0.0.0.0 www.virginsexx.com +0.0.0.0 www.virginsfresh.com +0.0.0.0 www.virginshack.com +0.0.0.0 www.virginshow.com +0.0.0.0 www.virginsisterdotcum.com +0.0.0.0 www.virginslits.com +0.0.0.0 www.virginsmag.com +0.0.0.0 www.virginsmania.com +0.0.0.0 www.virginsnack.com +0.0.0.0 www.virginsrus.com +0.0.0.0 www.virginstories.com +0.0.0.0 www.virginsuicide.com +0.0.0.0 www.virginsvids.com +0.0.0.0 www.virgintemple.com +0.0.0.0 www.virgintime.com +0.0.0.0 www.virgintwat.com +0.0.0.0 www.virginx.com +0.0.0.0 www.virginz.info +0.0.0.0 www.virginz.net +0.0.0.0 www.virginz.nl +0.0.0.0 www.virginz.tv +0.0.0.0 www.virtuagirlhd.com +0.0.0.0 www.virtuangels.com +0.0.0.0 www.visodangelo.com +0.0.0.0 www.vivatube.com +0.0.0.0 www.viximporn.org +0.0.0.0 www.vjav.com +0.0.0.0 www.voffka.com +0.0.0.0 www.voktel.com +0.0.0.0 www.voyeurpornweb.com +0.0.0.0 www.voyeurweb.com +0.0.0.0 www.vporn.com +0.0.0.0 www.walking-angel.com +0.0.0.0 www.wank.net +0.0.0.0 www.wankerhut.com +0.0.0.0 www.wankoz.com +0.0.0.0 www.wankz.com +0.0.0.0 www.wankzvr.com +0.0.0.0 www.war2kotshena.info +0.0.0.0 www.wastedamateurs.com +0.0.0.0 www.watchmygf.com +0.0.0.0 www.watchmygf.me +0.0.0.0 www.watchmygf.net +0.0.0.0 www.watchmynewgf.com +0.0.0.0 www.watchporn.com +0.0.0.0 www.web-angels.de +0.0.0.0 www.webcams.com +0.0.0.0 www.webcamsdancer.com +0.0.0.0 www.webcamtop100.com +0.0.0.0 www.webtraffic.se +0.0.0.0 www.wendise.com +0.0.0.0 www.wetangels.com +0.0.0.0 www.wetchan.org +0.0.0.0 www.wetplace.com +0.0.0.0 www.wetvirgin.net +0.0.0.0 www.wetvirgins.com +0.0.0.0 www.wetwebcams.com +0.0.0.0 www.whataporn.com +0.0.0.0 www.whatpornsite.com +0.0.0.0 www.wicked.com +0.0.0.0 www.wickedpictures.com +0.0.0.0 www.wifeysworld.ws +0.0.0.0 www.wikiangela.com +0.0.0.0 www.wild-teenz.com +0.0.0.0 www.wildebonylovers.com +0.0.0.0 www.wildxangel.com +0.0.0.0 www.winporn.com +0.0.0.0 www.wiredpussy.com +0.0.0.0 www.wisevirgin.com +0.0.0.0 www.wolrdteenparadise.com +0.0.0.0 www.women-pickup.com +0.0.0.0 www.womenofplayboy.com +0.0.0.0 www.world4angelina.com +0.0.0.0 www.worlddatingforum.com +0.0.0.0 www.worldsex.com +0.0.0.0 www.worthymoms.com +0.0.0.0 www.wtfpeople.com +0.0.0.0 www.wunbuck.com +0.0.0.0 www.wwwalisonangel.com +0.0.0.0 www.x--x--x.com +0.0.0.0 www.x-preview.com +0.0.0.0 www.x-traceur.com +0.0.0.0 www.x-videoz.org +0.0.0.0 www.x3xtube.com +0.0.0.0 www.xanimeporn.com +0.0.0.0 www.xdating.com +0.0.0.0 www.xfig.net +0.0.0.0 www.xfuckbook.com +0.0.0.0 www.xgallsx.com +0.0.0.0 www.xhamster.com +0.0.0.0 www.xhamstercams.com +0.0.0.0 www.xhamsterhq.com +0.0.0.0 www.xhit.com +0.0.0.0 www.xkxempire.com +0.0.0.0 www.xl-toons.com +0.0.0.0 www.xlivewebcams.com +0.0.0.0 www.xlogz.com +0.0.0.0 www.xnxx.com +0.0.0.0 www.xossip.com +0.0.0.0 xoteens.com +0.0.0.0 im1.xoteens.com +0.0.0.0 www.xoteens.com +0.0.0.0 www.xoxojoannaangel.com +0.0.0.0 www.xponsor.com +0.0.0.0 www.xpornking.com +0.0.0.0 www.xratedtracking.com +0.0.0.0 www.xstigma.com +0.0.0.0 www.xtapes.to +0.0.0.0 www.xtheatre.net +0.0.0.0 www.xtoplist.com +0.0.0.0 www.xtoplists.com +0.0.0.0 www.xvideos.com +0.0.0.0 www.xvirgins.com +0.0.0.0 www.xwebcams.com +0.0.0.0 www.xxparceroxx.xpg.com.br +0.0.0.0 www.xxx-art.us +0.0.0.0 www.xxx-hd-teens.net +0.0.0.0 www.xxx-hitz.org +0.0.0.0 www.xxx-mom.com +0.0.0.0 www.xxx-r.com +0.0.0.0 www.xxx.com +0.0.0.0 www.xxx4live.com +0.0.0.0 www.xxxadultcinema.com +0.0.0.0 www.xxxbunker.com +0.0.0.0 www.xxxcupid.com +0.0.0.0 www.xxxonxxx.com +0.0.0.0 www.xxxpasswordsite.com +0.0.0.0 www.xxxreactor.com +0.0.0.0 www.xxxvogue.net +0.0.0.0 www.xxxylive.com +0.0.0.0 www.xxxymovies.com +0.0.0.0 www.yalladownload.com +0.0.0.0 www.yallainternethotnights.info +0.0.0.0 www.yanks.com +0.0.0.0 www.yasalambanat.info +0.0.0.0 www.yeptube.com +0.0.0.0 www.yesmessenger.com +0.0.0.0 www.yesmessenger.eu +0.0.0.0 www.yesmessenger.hu +0.0.0.0 www.yetisblog.com +0.0.0.0 www.yobt.com +0.0.0.0 www.yobt.tv +0.0.0.0 www.yobtcams.com +0.0.0.0 www.yobtdvd.com +0.0.0.0 www.yobthd.com +0.0.0.0 www.yobtlive.com +0.0.0.0 www.yoslut.com +0.0.0.0 www.youjizz.com +0.0.0.0 www.young-and-virgin.com +0.0.0.0 www.young-girlfriends.com +0.0.0.0 www.youngandhorny.com +0.0.0.0 www.youngandready.com +0.0.0.0 www.youngbusty.com +0.0.0.0 www.youngmovieclips.com +0.0.0.0 www.youngpornpictures.com +0.0.0.0 www.youngpornvideos.com +0.0.0.0 www.youngsex.club +0.0.0.0 www.youngsexmoviez.com +0.0.0.0 www.youngthroats.com +0.0.0.0 www.youngxxxvideoz.com +0.0.0.0 www.youporn.com +0.0.0.0 www.youpornmate.com +0.0.0.0 www.youramateurporn.com +0.0.0.0 www.yoursexwebcams.com +0.0.0.0 www.youx.xxx +0.0.0.0 www.yumm.net +0.0.0.0 www.yuvutu.com +0.0.0.0 www.ywebcams.com +0.0.0.0 www.za3ror.com +0.0.0.0 www.zasians.com +0.0.0.0 www.zbiornik.com +0.0.0.0 www.zebkbeer.com +0.0.0.0 www.zhirok.com +0.0.0.0 www.zloeradio.net +0.0.0.0 www.zmature.com +0.0.0.0 www.zonawebcams.com +0.0.0.0 www.zonewebcams.com +0.0.0.0 www.zoo-fuck.net +0.0.0.0 www.zoodollars.com +0.0.0.0 www.zoomgirls.net +0.0.0.0 www.zoosextv.com +0.0.0.0 www.zorglist.com +0.0.0.0 www.ztod.com +0.0.0.0 www.zzcartoon.com + +# pinterest + +0.0.0.0 pinterest.com +0.0.0.0 www.pinterest.com +0.0.0.0 s-passets-cache-ak0.pinimg.com diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..d39f3a8 --- /dev/null +++ b/install.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +# Install needed programs + +pacman -Sy --noconfirm networkmanager network-manager-applet networkmanager-openvpn neovim sway swaylock swayidle waybar egl-wayland imv swaybg xorg-server-xwayland qt5-wayland wl-clipboard dbus tmux htop bemenu mupdf mpd ncmpcpp mpc mpv mplayer mako cronie grim slop ffmpeg w3m youtube-dl youtube-viewer newsboat wget curl gimp inkscape gcc make fontconfig pkg-config fakeroot lxappearance papirus-icon-theme alsa-utils pulseaudio imagemagick ntfs-3g unzip unrar gnome-themes-standard gtk-engine-murrine telegram-desktop qt5ct r udisks2 perl-term-readline-gnu transmission-cli python-pynvim python-pip calcurse acpi acpid gnupg noto-fonts-cjk powerline-fonts python-pygit2 polkit polkit-gnome zathura zathura-pdf-mupdf zathura-djvu gst-libav vifm blueman bluez acpilight powertop + +# Copy system config files +cp system/sudoers /etc/ +cp systemd/hotspot.service /etc/systemd/system/ +cp systemd/startupsound.service /etc/systemd/system/ + +# Install AUR helper +cd /tmp +git clone https://aur.archlinux.org/yay.git +cd yay +makepkg -si + +yay -S --noconfirm ttf-symbola stig pam-gnupg mutt-wizard-git ncmpamixer + +# Laptop +pacman -S --noconfirm xf86-video-intel + +systemctl enable NetworkManager +systemctl start NetworkManager diff --git a/laptop/90-backlight.rules b/laptop/90-backlight.rules new file mode 100644 index 0000000..2612365 --- /dev/null +++ b/laptop/90-backlight.rules @@ -0,0 +1,7 @@ +# Allow video group to control backlight and leds +SUBSYSTEM=="backlight", ACTION=="add", \ + RUN+="/bin/chgrp video /sys/class/backlight/%k/brightness", \ + RUN+="/bin/chmod g+w /sys/class/backlight/%k/brightness" +SUBSYSTEM=="leds", ACTION=="add", KERNEL=="*::kbd_backlight", \ + RUN+="/bin/chgrp video /sys/class/leds/%k/brightness", \ + RUN+="/bin/chmod g+w /sys/class/leds/%k/brightness" diff --git a/laptop/lid-button b/laptop/lid-button new file mode 100644 index 0000000..e2a381d --- /dev/null +++ b/laptop/lid-button @@ -0,0 +1,2 @@ +event=button/lid +action=/etc/acpi/actions/lid-button.sh %e diff --git a/laptop/lid-button.sh b/laptop/lid-button.sh new file mode 100755 index 0000000..601af5a --- /dev/null +++ b/laptop/lid-button.sh @@ -0,0 +1,15 @@ +#!/bin/sh +case "$3" in + close) + logger "LID close on custom"; + if [ "$(ps cax | grep i3)" ]; then + su yaroslav -c "DISPLAY=:0 i3 exec 'i3session suspend'" + else + systemctl suspend + fi + ;; + open) + logger "LID open on custom" ;; + *) + logger "LID undefined action $1" ;; +esac diff --git a/laptop/logind.conf b/laptop/logind.conf new file mode 100644 index 0000000..0e2c94f --- /dev/null +++ b/laptop/logind.conf @@ -0,0 +1,37 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# Entries in this file show the compile time defaults. +# You can change settings by editing this file. +# Defaults can be restored by simply deleting this file. +# +# See logind.conf(5) for details. + +[Login] +#NAutoVTs=6 +#ReserveVT=6 +#KillUserProcesses=no +#KillOnlyUsers= +#KillExcludeUsers=root +#InhibitDelayMaxSec=5 +#HandlePowerKey=poweroff +#HandleSuspendKey=suspend +#HandleHibernateKey=hibernate +HandleLidSwitch=ignore +HandleLidSwitchExternalPower=ignore +#HandleLidSwitchDocked=ignore +#PowerKeyIgnoreInhibited=no +#SuspendKeyIgnoreInhibited=no +#HibernateKeyIgnoreInhibited=no +#LidSwitchIgnoreInhibited=yes +#HoldoffTimeoutSec=30s +#IdleAction=ignore +#IdleActionSec=30min +#RuntimeDirectorySize=10% +#RemoveIPC=yes +#InhibitorsMax=8192 +#SessionsMax=8192 diff --git a/laptop/pmsetup.sh b/laptop/pmsetup.sh new file mode 100755 index 0000000..be75384 --- /dev/null +++ b/laptop/pmsetup.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# Meant to be executed just once after system install + +cp powertune /bin/powertune +cp powertune.service /etc/systemd/system/ +cp 90-backlight.rules /etc/udev/rules.conf.d/ +sudo systemctl start powertune + +# Disable everything from being able to wake up the computer except for the lid +for x in $(find /sys -name wakeup) ; do if [ "$(cat $x)" == "enabled" ]; then echo 'disabled' >> $x; fi; done +echo LID | tee /proc/acpi/wakeup + +# lid +cp logind.conf /etc/systemd/ +cp lidbutton /etc/acpi/events/ +cp lidbutton.sh /etc/acpi/actions/ diff --git a/laptop/powertune b/laptop/powertune new file mode 100755 index 0000000..f113000 --- /dev/null +++ b/laptop/powertune @@ -0,0 +1,5 @@ +#!/bin/sh + +/usr/bin/powertop --auto-tune +for x in $(find /sys -name wakeup) ; do if [ "$(cat $x)" == "enabled" ]; then echo 'disabled' >> $x; fi; done +echo LID | /usr/bin/tee /proc/acpi/wakeup diff --git a/laptop/powertune.service b/laptop/powertune.service new file mode 100644 index 0000000..0d7c3ca --- /dev/null +++ b/laptop/powertune.service @@ -0,0 +1,11 @@ +[Unit] +Description=Tune system's power management + +[Service] +User=root +Group=root +ExecStart=/bin/powertune + +[Install] +Alias=powertune.service +WantedBy=multi-user.target diff --git a/system/sudoers b/system/sudoers new file mode 100644 index 0000000..77c71b0 --- /dev/null +++ b/system/sudoers @@ -0,0 +1,101 @@ +## sudoers file. +## +## This file MUST be edited with the 'visudo' command as root. +## Failure to use 'visudo' may result in syntax or file permission errors +## that prevent sudo from running. +## +## See the sudoers man page for the details on how to write a sudoers file. +## + +## +## Host alias specification +## +## Groups of machines. These may include host names (optionally with wildcards), +## IP addresses, network numbers or netgroups. +# Host_Alias WEBSERVERS = www1, www2, www3 + +## +## User alias specification +## +## Groups of users. These may consist of user names, uids, Unix groups, +## or netgroups. +# User_Alias ADMINS = millert, dowdy, mikef + +## +## Cmnd alias specification +## +## Groups of commands. Often used to group related commands together. +# Cmnd_Alias PROCESSES = /usr/bin/nice, /bin/kill, /usr/bin/renice, \ +# /usr/bin/pkill, /usr/bin/top +# Cmnd_Alias REBOOT = /sbin/halt, /sbin/reboot, /sbin/poweroff + +## +## Defaults specification +## +## You may wish to keep some of the following environment variables +## when running commands via sudo. +## +## Locale settings +# Defaults env_keep += "LANG LANGUAGE LINGUAS LC_* _XKB_CHARSET" +## +## Run X applications through sudo; HOME is used to find the +## .Xauthority file. Note that other programs use HOME to find +## configuration files and this may lead to privilege escalation! +# Defaults env_keep += "HOME" +## +## X11 resource path settings +# Defaults env_keep += "XAPPLRESDIR XFILESEARCHPATH XUSERFILESEARCHPATH" +## +## Desktop path settings +# Defaults env_keep += "QTDIR KDEDIR" +## +## Allow sudo-run commands to inherit the callers' ConsoleKit session +# Defaults env_keep += "XDG_SESSION_COOKIE" +## +## Uncomment to enable special input methods. Care should be taken as +## this may allow users to subvert the command being run via sudo. +# Defaults env_keep += "XMODIFIERS GTK_IM_MODULE QT_IM_MODULE QT_IM_SWITCHER" +## +## Uncomment to use a hard-coded PATH instead of the user's to find commands +# Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" +## +## Uncomment to send mail if the user does not enter the correct password. +# Defaults mail_badpass +## +## Uncomment to enable logging of a command's output, except for +## sudoreplay and reboot. Use sudoreplay to play back logged sessions. +# Defaults log_output +# Defaults!/usr/bin/sudoreplay !log_output +# Defaults!/usr/local/bin/sudoreplay !log_output +# Defaults!REBOOT !log_output + +## +## Runas alias specification +## + +## +## User privilege specification +## +root ALL=(ALL) ALL + +## Uncomment to allow members of group wheel to execute any command +%wheel ALL=(ALL) ALL + +## Run some commands without a password +%wheel ALL=(ALL) NOPASSWD: /usr/bin/pacman -Sy + +## Same thing without a password +# %wheel ALL=(ALL) NOPASSWD: ALL + +## Uncomment to allow members of group sudo to execute any command +# %sudo ALL=(ALL) ALL + +## Uncomment to allow any user to run sudo if they know the password +## of the user they are running the command as (root by default). +# Defaults targetpw # Ask for the password of the target user +# ALL ALL=(ALL) ALL # WARNING: only use this together with 'Defaults targetpw' + +## Read drop-in files from /etc/sudoers.d +## (the '#' here does not indicate a comment) +#includedir /etc/sudoers.d + diff --git a/systemd/hotspot.service b/systemd/hotspot.service new file mode 100644 index 0000000..4fcda21 --- /dev/null +++ b/systemd/hotspot.service @@ -0,0 +1,11 @@ +[Unit] +Description=Nobody tells me how to use my internet >:( + +[Service] +User=root +Group=root +ExecStart=/usr/bin/sysctl net.ipv4.ip_default_ttl=65 + +[Install] +Alias=hotspot.service +WantedBy=multi-user.target diff --git a/systemd/startupsound.service b/systemd/startupsound.service new file mode 100644 index 0000000..f1b4a16 --- /dev/null +++ b/systemd/startupsound.service @@ -0,0 +1,9 @@ +[Unit] +Description=Play Startup Sound + +[Service] +ExecStart=/usr/bin/mplayer /home/yaroslav/.soundalerts/start.ogg + +[Install] +Alias=startupsound.service +WantedBy=sound.target |