diff --git a/compile/01-Scummv.sh b/compile/01-Scummv.sh new file mode 100755 index 0000000..af1c529 --- /dev/null +++ b/compile/01-Scummv.sh @@ -0,0 +1,61 @@ +#!/bin/bash +# Fanta +# Script bash para compilar la última versión de scummvm en Debian + +d="/tmp/scummvm" + +if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit +fi + +# Debian 9 +cat /etc/issue | grep "Debian GNU/Linux 9" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi + +# Debian 10 +cat /etc/issue | grep "Debian GNU/Linux 10" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi + +# Debian 11 +cat /etc/issue | grep "Debian GNU/Linux 11" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi + +# Debian 12 +cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi + +# Debian forky/sid +cat /etc/issue | grep "Debian GNU/Linux forky/sid" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi + +# Linux Mint 21.2 +cat /etc/issue | grep "Linux Mint 21.2 Victoria" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install -y g++:amd64 make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg-turbo8-dev libjpeg-dev libjpeg62-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libglew-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev + git clone -b master --depth 1 "https://github.com/scummvm/scummvm.git" $d ; cd $d + ./configure --enable-all-engines --disable-discord --enable-plugins --enable-profiling + make clean ; make -j$(nproc); make install +fi + + + diff --git a/compile/02-dosbox-x.sh b/compile/02-dosbox-x.sh new file mode 100755 index 0000000..6c853c8 --- /dev/null +++ b/compile/02-dosbox-x.sh @@ -0,0 +1,40 @@ +#!/bin/bash +# Fanta +# Script para compilar la versión más reciente de dosbox-x en Debian + +d="/tmp/dosbox-x" +mkdir $d + +if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit +fi + +# Debian 10 +cat /etc/issue | grep "Debian GNU/Linux 10" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice58 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra58 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y + git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d + bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d +fi + +# Debian 11 +cat /etc/issue | grep "Debian GNU/Linux 11" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice58 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra58 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y + git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d + bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d +fi + +# Debian 12 +cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice59 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra59 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y + git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d + bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d +fi + +# Linux Mint 21.2 +cat /etc/issue | grep "Linux Mint 21.2 Victoria" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt install automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice58 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra58 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y + git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d + bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d +fi + diff --git a/compile/03-mednafen.sh b/compile/03-mednafen.sh new file mode 100755 index 0000000..3c90ec4 --- /dev/null +++ b/compile/03-mednafen.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# Fanta +# Script para compilar mednafen en Debian + +d="/tmp/mednafen" + +if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit +fi + +rm -rf $d ; mkdir -p $d + +# Debian GNU/Linux 9 +cat /etc/issue | grep "Debian GNU/Linux 9" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt install -y libasound2-dev libflac-dev libsdl2-dev gcc make zlib1g-dev build-essential pkg-config + lastVersion=$(wget -q "https://mednafen.github.io/releases" -O - | tr "<" "\n" | grep -i "tar.xz" | grep -v "server" | grep -iv "unstable" | head -1 | cut -d "\"" -f 2) + lastVersionNameFile=$(echo "$lastVersion" | cut -d "/" -f 4) + lastVersionUrl="https://mednafen.github.io$lastVersion" + wget -q "$lastVersionUrl" -O $d/$lastVersionNameFile + cd $d + tar xfvJ $lastVersionNameFile + cd mednafen + ./configure --enable-debugger + make -j$(nproc) + make install +fi + +# Debian GNU/Linux 11 +cat /etc/issue | grep "Debian GNU/Linux 11" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt install -y libasound2-dev libflac-dev libsdl2-dev gcc make zlib1g-dev build-essential pkg-config + lastVersion=$(wget -q "https://mednafen.github.io/releases" -O - | tr "<" "\n" | grep -i "tar.xz" | grep -v "server" | grep -iv "unstable" | head -1 | cut -d "\"" -f 2) + lastVersionNameFile=$(echo "$lastVersion" | cut -d "/" -f 4) + lastVersionUrl="https://mednafen.github.io$lastVersion" + wget -q "$lastVersionUrl" -O $d/$lastVersionNameFile + cd $d + tar xfvJ $lastVersionNameFile + cd mednafen + ./configure --enable-debugger + make -j$(nproc) + make install +fi + +# Debian GNU/Linux 12 +cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt install -y libasound2-dev libflac-dev libsdl2-dev gcc make zlib1g-dev build-essential pkg-config + lastVersion=$(wget -q "https://mednafen.github.io/releases" -O - | tr "<" "\n" | grep -i "tar.xz" | grep -v "server" | grep -iv "unstable" | head -1 | cut -d "\"" -f 2) + lastVersionNameFile=$(echo "$lastVersion" | cut -d "/" -f 4) + lastVersionUrl="https://mednafen.github.io$lastVersion" + wget -q "$lastVersionUrl" -O $d/$lastVersionNameFile + cd $d + tar xfvJ $lastVersionNameFile + cd mednafen + ./configure --enable-debugger + make -j$(nproc) + make install +fi diff --git a/compile/04-love2d.sh b/compile/04-love2d.sh new file mode 100755 index 0000000..36c783c --- /dev/null +++ b/compile/04-love2d.sh @@ -0,0 +1,76 @@ +#!/bin/bash +# Fanta +# Script para compilar love2d última versión en Debian + +d="/tmp/love2d" + +if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit +fi + +rm -rf $d ; mkdir -p $d +cd $d + + +# Debian 11 +cat /etc/issue | grep "Debian GNU/Linux 11" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt install -y git gcc g++ make cmake lua5.4 libgl1-mesa-dev libfreetype6-dev libmodplug-dev libopenal-dev libsdl2-dev libtheora-dev libvorbis-dev libmpg123-dev libluajit-5.1-dev + repositorio="https://github.com/love2d/love" + git clone "$repositorio" + cd love + lastVersion=$(git tag --list --sort=-taggerdate | tail -1) + cd .. + rm -rf love + git clone $repositorio -b $lastVersion + cd love + mkdir -p build + cd build + cmake .. + make -j$(nproc) + cp -pRv love /usr/local/bin/ + chmod +x /usr/local/bin/love + love +fi + +# Debian 12 +cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt install -y git gcc g++ make cmake lua5.4 libgl1-mesa-dev libfreetype6-dev libmodplug-dev libopenal-dev libsdl2-dev libtheora-dev libvorbis-dev libmpg123-dev libluajit-5.1-dev + + repositorio="https://github.com/love2d/love" + git clone "$repositorio" + cd love + lastVersion=$(git tag --list --sort=-taggerdate | tail -1) + cd .. + rm -rf love + git clone $repositorio -b $lastVersion + cd love + mkdir -p build + cd build + cmake .. + make -j$(nproc) + cp -pRv love /usr/local/bin/ + chmod +x /usr/local/bin/love + love +fi + +# Ubuntu 22.04.4 +cat /etc/issue | grep "Ubuntu 22.04.4 LTS" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt install -y git gcc g++ make cmake lua5.4 libgl1-mesa-dev libfreetype6-dev libmodplug-dev libopenal-dev libsdl2-dev libtheora-dev libvorbis-dev libmpg123-dev libluajit-5.1-dev + + repositorio="https://github.com/love2d/love" + git clone "$repositorio" + cd love + lastVersion=$(git tag --list --sort=-taggerdate | tail -1) + cd .. + rm -rf love + git clone $repositorio -b $lastVersion + cd love + mkdir -p build + cd build + cmake .. + make -j$(nproc) + cp -pRv love /usr/local/bin/ + chmod +x /usr/local/bin/love + love +fi diff --git a/compile/05-qemu.sh b/compile/05-qemu.sh new file mode 100755 index 0000000..dc3c40b --- /dev/null +++ b/compile/05-qemu.sh @@ -0,0 +1,51 @@ +#!/bin/bash +# Fanta +# Script para compilar la versión más reciente de qemu en Debian + +d="/tmp/qemu" +rm -rf $d + +if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit +fi + +# Debian 11 +cat /etc/issue | grep "Debian GNU/Linux 11" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt remove qemu* --purge -y ; apt install make git bison python3 python3-pkgconfig ninja-build gcc libvdeplug-dev libvte-2.91-dev libxen-dev liblzo2-dev pkg-config libglib2.0-dev libpixman-1-dev libdw-dev libudev-dev libfuse-dev libpmem-dev sparse libdaxctl-dev libgcrypt20-dev libgvnc-1.0-0 acpica-tools python3-sphinx python3-sphinx-rtd-theme libssh-dev sysprof libglusterfs-dev qemu-keymaps libtasn1-6-dev libcrypto++-dev nettle-dev nettle-bin libcapstone-dev libiscsi-dev libnfs-dev libtasn1-6-dev libbpf-dev libsnappy-dev libseccomp-dev libbz2-dev liblzf-dev libnuma-dev libzstd-dev libusb-dev libusb-1.0-0-dev libvirglrenderer-dev libcap-ng-dev libcurl4-openssl-dev libsdl2-dev libsdl2-image-dev libslirp-dev libpam0g-dev libsasl2-dev sndio-tools multipath-tools liburing-dev libghc-nettle-dev libcmocka-dev mingw-w64-x86-64-dev mingw-w64-common mingw-w64 cmake libfuse3-dev libu2f-host-dev libu2f-server-dev libjson-c-dev gcovr libpam-u2f libcpuinfo-dev python3-venv -y + git clone --recursive https://git.qemu.org/git/qemu.git $d ; cd $d + ./configure --target-list=i386-softmmu,x86_64-softmmu --enable-block-drv-whitelist-in-tools --enable-strip --enable-debug-tcg --enable-gcov --enable-gprof --enable-membarrier --disable-fuzzing --enable-modules --enable-qom-cast-debug --enable-lto --enable-debug + make -j$(nproc) + make install + qemu-system-x86_64 --version +fi + +# Debian 12 +cat /etc/issue | grep "Debian GNU/Linux 12" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt remove qemu* --purge -y ; apt install make git bison python3 python3-pkgconfig ninja-build gcc libvdeplug-dev libvte-2.91-dev libxen-dev liblzo2-dev pkg-config libglib2.0-dev libpixman-1-dev libdw-dev libudev-dev libfuse-dev libpmem-dev sparse libdaxctl-dev libgcrypt20-dev libgvnc-1.0-0 acpica-tools python3-sphinx python3-sphinx-rtd-theme libssh-dev sysprof libglusterfs-dev qemu-keymaps libtasn1-6-dev libcrypto++-dev nettle-dev nettle-bin libcapstone-dev libiscsi-dev libnfs-dev libtasn1-6-dev libbpf-dev libsnappy-dev libseccomp-dev libbz2-dev liblzf-dev libnuma-dev libzstd-dev libusb-dev libusb-1.0-0-dev libvirglrenderer-dev libcap-ng-dev libcurl4-openssl-dev libsdl2-dev libsdl2-image-dev libslirp-dev libpam0g-dev libsasl2-dev sndio-tools multipath-tools liburing-dev libghc-nettle-dev libcmocka-dev mingw-w64-x86-64-dev mingw-w64-common mingw-w64 cmake libfuse3-dev libu2f-host-dev libu2f-server-dev libjson-c-dev gcovr libpam-u2f libcpuinfo-dev python3-venv -y + git clone --recursive https://git.qemu.org/git/qemu.git $d ; cd $d + ./configure --target-list=i386-softmmu,x86_64-softmmu --enable-block-drv-whitelist-in-tools --enable-strip --enable-debug-tcg --enable-gcov --enable-gprof --enable-membarrier --disable-fuzzing --enable-modules --enable-qom-cast-debug --enable-lto --enable-debug + make -j$(nproc) + make install + qemu-system-x86_64 --version +fi + +# Linux Mint 21.2 +cat /etc/issue | grep "Linux Mint 21.2 Victoria" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt remove qemu* --purge -y ; apt install make git bison python3 python3-pkgconfig ninja-build gcc libvdeplug-dev libvte-2.91-dev libxen-dev liblzo2-dev pkg-config libglib2.0-dev libpixman-1-dev libdw-dev libudev-dev libfuse-dev libpmem-dev sparse libdaxctl-dev libgcrypt20-dev libgvnc-1.0-0 acpica-tools python3-sphinx python3-sphinx-rtd-theme libssh-dev sysprof libglusterfs-dev qemu-keymaps libtasn1-6-dev libcrypto++-dev nettle-dev nettle-bin libcapstone-dev libiscsi-dev libnfs-dev libtasn1-6-dev libbpf-dev libsnappy-dev libseccomp-dev libbz2-dev liblzf-dev libnuma-dev libzstd-dev libusb-dev libusb-1.0-0-dev libvirglrenderer-dev libcap-ng-dev libcurl4-openssl-dev libsdl2-dev libsdl2-image-dev libslirp-dev libpam0g-dev libsasl2-dev sndio-tools multipath-tools liburing-dev libghc-nettle-dev libcmocka-dev mingw-w64-x86-64-dev mingw-w64-common mingw-w64 cmake libfuse3-dev libu2f-host-dev libu2f-server-dev libjson-c-dev gcovr libpam-u2f libcpuinfo-dev python3-venv -y + git clone --recursive https://git.qemu.org/git/qemu.git $d ; cd $d + ./configure --target-list=i386-softmmu,x86_64-softmmu --enable-block-drv-whitelist-in-tools --enable-strip --enable-debug-tcg --enable-gcov --enable-membarrier --disable-fuzzing --enable-modules --enable-qom-cast-debug --enable-lto --enable-debug + make -j$(nproc) + make install + qemu-system-x86_64 --version +fi + +# Ubuntu 22.04.3 +cat /etc/issue | grep "Ubuntu 22.04.3 LTS" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y ; apt remove qemu* --purge -y ; apt install make git bison python3 python3-pkgconfig ninja-build gcc libvdeplug-dev libvte-2.91-dev libxen-dev liblzo2-dev pkg-config libglib2.0-dev libpixman-1-dev libdw-dev libudev-dev libfuse-dev libpmem-dev sparse libdaxctl-dev libgcrypt20-dev libgvnc-1.0-0 acpica-tools python3-sphinx python3-sphinx-rtd-theme libssh-dev sysprof libglusterfs-dev qemu-keymaps libtasn1-6-dev libcrypto++-dev nettle-dev nettle-bin libcapstone-dev libiscsi-dev libnfs-dev libtasn1-6-dev libbpf-dev libsnappy-dev libseccomp-dev libbz2-dev liblzf-dev libnuma-dev libzstd-dev libusb-dev libusb-1.0-0-dev libvirglrenderer-dev libcap-ng-dev libcurl4-openssl-dev libsdl2-dev libsdl2-image-dev libslirp-dev libpam0g-dev libsasl2-dev sndio-tools multipath-tools liburing-dev libghc-nettle-dev libcmocka-dev mingw-w64-x86-64-dev mingw-w64-common mingw-w64 cmake libfuse3-dev libu2f-host-dev libu2f-server-dev libjson-c-dev gcovr libpam-u2f libcpuinfo-dev python3-venv -y + git clone --recursive https://git.qemu.org/git/qemu.git $d ; cd $d + ./configure --target-list=i386-softmmu,x86_64-softmmu --enable-block-drv-whitelist-in-tools --enable-strip --enable-debug-tcg --enable-gcov --enable-gprof --enable-membarrier --disable-fuzzing --enable-modules --enable-qom-cast-debug --enable-lto --enable-debug + make -j$(nproc) + make install + qemu-system-x86_64 --version +fi diff --git a/compile/06-opentomb b/compile/06-opentomb new file mode 100755 index 0000000..a34e401 --- /dev/null +++ b/compile/06-opentomb @@ -0,0 +1,25 @@ +#!/bin/bash +# Fanta +# Script para compilar la versión más reciente de opentomb + +d="/tmp/OpenTomb" + +if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit +fi + +# Linux Mint 21.2 +rm -rf $d +cat /etc/issue | grep "Linux Mint 21.2 Victoria" 1>/dev/null ; if [ "$?" -ne 1 ]; then + apt update -y && apt -y install cmake gcc g++ libopenal-dev libpthread-stubs0-dev libboost-thread-dev libsdl2-dev libglu1-mesa-dev zlib1g-dev libpng-dev ffmpeg git lua5.4 + git clone https://github.com/opentomb/OpenTomb $d + cd $d + mkdir build + cd build + cmake .. + make + cp -pRv OpenTomb /usr/bin/ + chmod +x /usr/bin/OpenTomb +fi + diff --git a/compile/07-clamav.sh b/compile/07-clamav.sh new file mode 100755 index 0000000..95f6539 --- /dev/null +++ b/compile/07-clamav.sh @@ -0,0 +1,53 @@ +#!/bin/bash +gitRepo="https://github.com/Cisco-Talos/clamav" + +function who { + if [ "$(whoami)" != "root" ]; then + echo "[+] Checking root user" + echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit + fi +} + +function installDependenciesDebian11 { + apt-get update -y && apt-get install -y gcc make pkg-config python3 python3-pip python3-pytest valgrind check libbz2-dev libcurl4-openssl-dev libjson-c-dev libmilter-dev libncurses5-dev libpcre2-dev libssl-dev libxml2-dev zlib1g-dev cargo rustc git cmake librust-flate2* curl +} + +function installDependenciesUbuntu22044LTS { + apt-get update -y && apt-get install -y gcc make pkg-config python3 python3-pip python3-pytest valgrind check libbz2-dev libcurl4-openssl-dev libjson-c-dev libmilter-dev libncurses5-dev libpcre2-dev libssl-dev libxml2-dev zlib1g-dev cargo rustc git cmake librust-flate2* curl +} + + +function getLastVersion() { + git clone "$gitRepo" /var/tmp/clamav + cd /var/tmp/clamav + git fetch --all --tags + lastClamavVersion=$(git describe | cut -d "-" -f 2) + rm -rf /var/tmp/clamav + cd /var/tmp/ + wget -q "https://www.clamav.net/downloads/production/clamav-$lastClamavVersion.tar.gz" -O /var/tmp/clamav-$lastClamavVersion.tar.gz + tar xfvz /var/tmp/clamav-$lastClamavVersion.tar.gz + cd /var/tmp/clamav-$lastClamavVersion +} + +function compileLastVersion() { + mkdir -p build + cd build + cmake .. -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_INSTALL_LIBDIR=lib -D APP_CONFIG_DIRECTORY=/etc/clamav -D DATABASE_DIRECTORY=/var/lib/clamav -D ENABLE_JSON_SHARED=OFF + cmake --build . + ctest + cmake --build . --target install +} + +function main() { + # Debian 11 + cat /etc/issue | grep "Debian GNU/Linux 11" 1>/dev/null ; if [ "$?" -ne 1 ]; then + who ; installDependenciesDebian11 ; getLastVersion ; compileLastVersion + fi + + # Ubuntu 22.04.4 LTS + cat /etc/issue | grep "Ubuntu 22.04.4 LTS" 1>/dev/null ; if [ "$?" -ne 1 ]; then + who ; installDependenciesUbuntu22044LTS ; getLastVersion ; compileLastVersion + fi +} + +main diff --git a/compile/LICENSE b/compile/LICENSE new file mode 100755 index 0000000..0c97efd --- /dev/null +++ b/compile/LICENSE @@ -0,0 +1,235 @@ +GNU AFFERO GENERAL PUBLIC LICENSE +Version 3, 19 November 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + + Preamble + +The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. + +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 them 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. + +Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. + +A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. + +The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. + +An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. + +The precise terms and conditions for copying, distribution and modification follow. + + TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU Affero General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the Program. + +To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey 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; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Remote Network Interaction; Use with the GNU General Public License. + +Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. + +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the GNU Affero 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 that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. + +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. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +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 state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . diff --git a/compile/README.md b/compile/README.md new file mode 100755 index 0000000..032819a --- /dev/null +++ b/compile/README.md @@ -0,0 +1,9 @@ +# compile + +Scripts en bash que uso para compilar algunos programas: + +## 01-scummvm - para compilar la última versión de Scummvm +## 02-dosbox-x - para compilar la última versión de dosbox-x +## 03-mednafen - para compilar la última versión de mednafen +## 04-love2d - para compilar la última versión de Love 2D engine Lua +## 05-qemu diff --git a/creditos/LICENSE b/creditos/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/creditos/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/creditos/README.md b/creditos/README.md new file mode 100644 index 0000000..790d9fa --- /dev/null +++ b/creditos/README.md @@ -0,0 +1,3 @@ +# creditos + +Script para mostrar al final de un streaming la gente que se ha pasado por allí \ No newline at end of file diff --git a/creditos/creditos b/creditos/creditos new file mode 100755 index 0000000..d23e7bc --- /dev/null +++ b/creditos/creditos @@ -0,0 +1,32 @@ +#!/bin/bash +login="56knews" +tmpFile="/tmp/.viewers.tmp" +viewersFile="/tmp/viewers.txt" +rm -rf $tmpFile $viewersFile + +function main(){ + while : + do + getViewers + getModerators + getBroadcaster + sleep 60 + done +} + +function getViewers(){ + curl -s -X GET "https://tmi.twitch.tv/group/user/$login/chatters" | jq .chatters | jq .viewers | grep -i "\"" | cut -d "\"" -f 2 >> $tmpFile + cat $tmpFile | sort -u > $viewersFile +} + +function getModerators(){ + curl -s -X GET "https://tmi.twitch.tv/group/user/$login/chatters" | jq .chatters | jq .moderators | grep -i "\"" | cut -d "\"" -f 2 >> $tmpFile + cat $tmpFile | sort -u > $viewersFile +} + +function getBroadcaster(){ + curl -s -X GET "https://tmi.twitch.tv/group/user/$login/chatters" | jq .chatters | jq .broadcaster | grep -i "\"" | cut -d "\"" -f 2 >> $tmpFile + cat $tmpFile | sort -u > $viewersFile +} + +main diff --git a/doom2binary/LICENSE b/doom2binary/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/doom2binary/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/doom2binary/README.md b/doom2binary/README.md new file mode 100644 index 0000000..f113263 --- /dev/null +++ b/doom2binary/README.md @@ -0,0 +1,3 @@ +# doom2binary + +Doom1 --> tar -> xz -> b64 -> 1000110101 \ No newline at end of file diff --git a/doom2binary/doom2bin.sh b/doom2binary/doom2bin.sh new file mode 100755 index 0000000..7ee5ecf --- /dev/null +++ b/doom2binary/doom2bin.sh @@ -0,0 +1,42 @@ +#!/bin/bash +urlDoom="https://distro.ibiblio.org/slitaz/sources/packages/d/doom1.wad" + +main(){ + downloadDoom + compressDoom + encode2Base64Doom + encode2BinaryDoom +} + +downloadDoom(){ + echo "[+] Downloading doom1.wad . Please wait." + wget -q -nc -O doom1.wad "$urlDoom" + echo " doom1.wad size: $(stat -c %s doom1.wad)" +} + +compressDoom(){ + echo "[+] Compressing doom1.wad.tar.xz . Please wait." + tar cfJ doom1.wad.tar.xz doom1.wad + echo " doom1.wad.tar.xz size: $(stat -c %s doom1.wad.tar.xz)" +} + +encode2Base64Doom(){ + echo "[+] Encoding to base64 doom1.wad.tar.xz.b64 . Please wait." + base64 doom1.wad.tar.xz > doom1.wad.tar.xz.b64 + echo " doom1.wad.tar.xz.b64 size: $(stat -c %s doom1.wad.tar.xz.b64)" +} + +encode2BinaryDoom(){ + echo "[+] Encoding to binary doom1.wad.tar.xz.b64.bin . Please wait." + > doom1.wad.tar.xz.b64.bin + sleep 2 + while read line + do + echo $line | xxd -b -g 100 -c 100 | cut -d " " -f 2 | tee -a doom1.wad.tar.xz.b64.bin + done < doom1.wad.tar.xz.b64 + echo " doom1.wad.tar.xz.b64.bin size: $(stat -c %s doom1.wad.tar.xz.b64.bin)" + +} + + +main diff --git a/doom2binary/receive.arduino.ino b/doom2binary/receive.arduino.ino new file mode 100644 index 0000000..805fea7 --- /dev/null +++ b/doom2binary/receive.arduino.ino @@ -0,0 +1,15 @@ +#include + +RCSwitch mySwitch = RCSwitch(); + +void setup() { + Serial.begin(9600); + mySwitch.enableReceive(0); // Receiver on interrupt 0 => that is pin #2 +} + +void loop() { + if (mySwitch.available()) { + output(mySwitch.getReceivedValue(), mySwitch.getReceivedBitlength(), mySwitch.getReceivedDelay(), mySwitch.getReceivedRawdata(),mySwitch.getReceivedProtocol()); + mySwitch.resetAvailable(); + } +} diff --git a/doom2binary/send.arduino.ino b/doom2binary/send.arduino.ino new file mode 100644 index 0000000..2ddaeaf --- /dev/null +++ b/doom2binary/send.arduino.ino @@ -0,0 +1,19 @@ +#include + +RCSwitch mySwitch = RCSwitch(); + +void setup() { + + Serial.begin(9600); + + // Transmitter is connected to Arduino Pin #10 + mySwitch.enableTransmit(10); + +} + +void loop() { + + /* using binary code */ + mySwitch.send("01100101 01111000 01101010"); + delay(100); +} diff --git a/fdd/LICENSE b/fdd/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/fdd/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/fdd/README.md b/fdd/README.md new file mode 100644 index 0000000..a1b0fb0 --- /dev/null +++ b/fdd/README.md @@ -0,0 +1,9 @@ +# FDD - Fanta Dos Disks + +FDD sirve para disfrutar de juegos de MSDOS desde tu distro GNU+Linux y poder ejecutar el que quieres jugar desde la línea de comandos. +Surge de la necesidad de poder disfrutar en cualquier ordenador con GNU+Linux de juegos para MSDOS sin mucho trabajo. + +* El lado cliente: [README.md](http://git.56k.es/fanta/fdd/src/branch/master/fdd_client/README.md) +* El lado server: [README.md](http://git.56k.es/fanta/fdd/src/branch/master/fdd_server/README.md) + +Con utilizar el cliente es suficiente para jugar. Montarte ya el server es otra cosa. diff --git a/fdd/fdd_client/.gitignore b/fdd/fdd_client/.gitignore new file mode 100644 index 0000000..b820e04 --- /dev/null +++ b/fdd/fdd_client/.gitignore @@ -0,0 +1,2 @@ +imgs +imgs/fdd_client.jpg diff --git a/fdd/fdd_client/LICENSE b/fdd/fdd_client/LICENSE new file mode 100644 index 0000000..1c31cfe --- /dev/null +++ b/fdd/fdd_client/LICENSE @@ -0,0 +1,5 @@ +"THE BEER-WARE LICENSE" (Revision 42): + + wrote this file. As long as you retain this notice you can +do whatever you want with this stuff. If we meet some day, and you think this +stuff is worth it, you can buy me a beer in return Fanta. diff --git a/fdd/fdd_client/README.md b/fdd/fdd_client/README.md new file mode 100644 index 0000000..4ce6846 --- /dev/null +++ b/fdd/fdd_client/README.md @@ -0,0 +1,41 @@ +# FDD - Fanta Dos Disks - client + +FDD son 2 partes. Una parte es el lado cliente y otra el lado server. +Esta parte es el **cliente**. + +Se puede instalar en el sistema así: + +``` +$ git clone "http://git.56k.es/fanta/fdd/" +$ cd fdd/fdd_client/ +$ chmod +x fdd +$ rm -rf ~/.fdd +# cp -pRv fdd /usr/local/bin/ +$ fdd +``` + +Lo ejecutamos por primera vez para que obtenga los archivos *.dos + +![alt fdd first time](http://git.56k.es/fanta/fdd/raw/branch/master/fdd_client/imgs/fdd_client.jpg) + +Los guardará en el directorio ~/.fdd + +Finalmente añadimos ese directorio al PATH así: + +``` +echo "export PATH=$PATH:~/.fdd" >> ~/.bashrc +source ~/.bashrc +``` + +Y ya podemos disfrutar de los juegos escribiendo dos- y pulsando TABULADOR. + +![alt dos games](http://git.56k.es/fanta/fdd/raw/branch/master/fdd_client/imgs/dos_disks.jpg) + +**NOTA:** wget sha256sum dosbox y git son dependencias para que esto funcione. + +**Formas de contacto:** + +* Email: fanta@56k.es ( 0x6C69C2F7 ) +* XMPP: 56k@conversations.im +* Fediverse: @fanta@mastodon.madrid +* Twitter: @Es56k diff --git a/fdd/fdd_client/fdd b/fdd/fdd_client/fdd new file mode 100755 index 0000000..ce70274 --- /dev/null +++ b/fdd/fdd_client/fdd @@ -0,0 +1,43 @@ +#!/bin/bash +# FDD - Fanta Dos Disks +# fanta + +repository="http://fanta.56k.es/fdd/fdd_server" +indexFile="archive.lst" +app=(wget sha256sum dosbox) + +if [ "$(id -u)" == 0 ]; then echo "don't run this as root my friend"; exit; fi +[ -z "$(whereis -b ${app[0]} | awk {'print$2'})" ] && echo "wget - Maybe it is not installed on the system. Sorry but I can't continue." && exit +[ -z "$(whereis -b ${app[1]} | awk {'print$2'})" ] && echo "sha256sum - Maybe it is not installed on the system. Sorry but I can't continue." && exit +[ -z "$(whereis -b ${app[2]} | awk {'print$2'})" ] && echo "dosbox - Maybe it is not installed on the system. Sorry but I can't continue." && exit +[ -z "$(readlink -e "~/.fdd")" ] && mkdir -p ~/.fdd + +# Update local DOS disks list +wget -q "$repository/$indexFile" -O ~/.fdd/$indexFile + +echo " " +echo "8 8888888888 8 888888888o. 8 888888888o. " +echo "8 8888 8 8888 \`^888. 8 8888 \`^888. " +echo "8 8888 8 8888 \`88. 8 8888 \`88." +echo "8 8888 8 8888 \`88 8 8888 \`88" +echo "8 888888888888 8 8888 88 8 8888 88" +echo "8 8888 8 8888 88 8 8888 88" +echo "8 8888 8 8888 ,88 8 8888 ,88" +echo "8 8888 8 8888 ,88' 8 8888 ,88'" +echo "8 8888 8 8888 ,o88P' 8 8888 ,o88P' " +echo "8 8888 ANTA 8 888888888P' OS 8 888888888P' ISKS" +echo " " + +while read -r disk +do + nameDisk=$(echo "$disk" | cut -d ";" -f 2) + shaSum=$(echo "$disk" | cut -d ";" -f 1) + [ -z "$(readlink -e ~/.fdd/$nameDisk)" ] && echo -en "+ $nameDisk\t" && wget -q "$repository/archive/$nameDisk" -O ~/.fdd/$nameDisk && echo -en "$(du -h ~/.fdd/$nameDisk | awk {'print$1'})" && res=$(if [ "$shaSum" == "$(sha256sum ~/.fdd/$nameDisk | cut -d " " -f 1)" ]; then echo -en "\t[OK]\t$shaSum\n"; fi) && echo "$res" && tar xfz ~/.fdd/$nameDisk -C ~/.fdd/ && ln -s ~/.fdd/$(echo $nameDisk | cut -d . -f 1)/dos-$(echo $nameDisk | cut -d "." -f 1) ~/.fdd/dos-$(echo $nameDisk | tr '[:upper:]' '[:lower:]' | cut -d "." -f 1) +done < ~/.fdd/$indexFile + +echo " " +ls -1 ~/.fdd/ | grep -iv "archive.lst" | grep -i "dos-" | cut -d "." -f 1 | sort -u + +fddPath=~/.fdd + +echo -en "\nAdd to the PATH $fddPath\n\n" diff --git a/fdd/fdd_server/LICENSE b/fdd/fdd_server/LICENSE new file mode 100644 index 0000000..926a054 --- /dev/null +++ b/fdd/fdd_server/LICENSE @@ -0,0 +1,5 @@ +"THE BEER-WARE LICENSE" (Revision 42): + + wrote this file. As long as you retain this notice you can +do whatever you want with this stuff. If we meet some day, and you think this +stuff is worth it, you can buy me a beer in return Fanta diff --git a/fdd/fdd_server/README.md b/fdd/fdd_server/README.md new file mode 100644 index 0000000..bee3707 --- /dev/null +++ b/fdd/fdd_server/README.md @@ -0,0 +1,14 @@ +# FDD - Fanta Dos Disks - server + +FDD son 2 partes. Una parte es el lado cliente y otra el lado server. +Esta parte va en el **server**. + +Se ha de clonar en una zona accesible publicamente mediante un servidor web. Ejemplo en /var/www/ . + +Basicamente clona el repo y haz publica la zona del directorio fdd_server . + +``` +$ git clone "http://git.56k.es/fanta/fdd/" +``` + +Y basicamente con eso ya lo tienes. Luego si quieres actualizar por si existen nuevos archivos *.dos pues revisas si existe novedad en el repo git. diff --git a/fdd/fdd_server/archive.lst b/fdd/fdd_server/archive.lst new file mode 100644 index 0000000..af3df06 --- /dev/null +++ b/fdd/fdd_server/archive.lst @@ -0,0 +1,38 @@ +ffe218a864644bc6476c90683b06e4a67cbb5060e667983cc5220e9efa0a14e0;aloneitd.dos +85f58914021089cb36d4bc6ded172b651fe2d6794027babe7d82f9f03fece1d0;heretic.dos +90d1da7e740064a86f0a039894335d531abde255327b1c4e5459780d77ce4fa7;loom.dos +a86e5291f7de1ee1b0a97952bc1480dd578c26bfe77d918f5408e2386fb574ec;lsl1.dos +d7fb6cdb04cb9b980e1a1c9c55d63aa4473401d57b70533ab1689668c78cc70b;lsl2.dos +7526e0f07924ee669013159a9526f5a7b2ae259d31dadcefa1cc2f32748be91c;wolf3d.dos +48f7a2bdd8e1264720103cfc16b98f3f88ecb38e966093cf4e0768f28702575b;pirates.dos +67053431d0708254d0abfc9d2f28b7ef89282133de4ab0b1c53313d86fd36fa8;monkey1.dos +8115c79af033bf8018e6b2b1a2deeb692271969867877eb13db84536bca3224d;indiana1.dos +b3538a91b52abfb375b68513658848c3a5bc802afdccbf473b1c4b8721141fc0;lore.dos +c8746a485a794d92b0484e96292fb95a4adcca3c152e32a17a85abfcef58ce21;simon1.dos +4be4e26bd069258c66ffb1b212265993804a3f7c393c5951d9b05b08dff6c177;gobliins.dos +31933c55e5e09e4a441161ac93164b758a3d4c36323b7a0fe0306be31f8ead94;enchantia.dos +74c7c59340e4809dcf96d16f5398a56e84c49e4e230c7b1675718ce8e3d89513;arena.dos +ddb4b430058c0f3ca48f0376e25af91d5bb1c0fc80e8cf6a3db1eb7e3d32cb89;doom.dos +d255dc8c7a10a7fe4b9b6a9b5e8db2b095b241656041c2ada04bbe36c054b100;cruise.dos +a126c36224736185f78d0f5531d967e9734cbf51140cddbfff6f49c763ab16f8;darkseed.dos +3cac828f5c98557d6e2cd67061c3e7597999ba2411effcf311978f25ac7419c8;quake.dos +fdeadb2f377baa7aa025d787320c360b85c825cea389f7c136a54d40047c9238;descent.dos +cc80abb84a3cfbe400e044e4c3ab380ec8f6a29642048640f38e141e914944f4;kq5.dos +811ca8a75d6b313c63df3b3b8434bce22c0b88eaf24ef641f4be6a3f34e59361;story2.dos +686224692a37af32a0922b6250400698459f13029f964ee768fb7595f25da36d;hexen.dos +990e8a4779ab9bac998b34211e0ba741d9d74de858237543336e9ea4c3b55607;maniac.dos +19a293f3ba9dc39acae1297de314181fd0ded45792b0ba973971d566a775085c;monkey2.dos +ed2af45121240e2b30a462d37b33adad8dd9067540829aec2eaaedafb4b789ff;mk1.dos +4e141658d04e17acf3de8caf3db9ed9427872ab075648a98d9a891672425cfc4;waxwork.dos +e255156721cb86390cd14d6bbaf17bf2eeb42280798cf807980a45927f535060;amazon.dos +4a1c3be0fcbfe209b8cece29620b36797b552cd7e72ce3eda39e3021a575fb49;chess.dos +b1b1e89faec487ad239373d2b1b4f210def9ff2f11351037697af4f1aa72c15e;dott.dos +2a850b235acec0504dd90278d064671e0814cd9a749d368ac54b9badffc31957;colonize.dos +3f8b04f35b011fb971bf5c3982cae72825b6db2045342459a77fe1b8c9e4fe17;shadowlands.dos +b550f7a5755a9052e4104793cf5ee7644cd1d0c31caf056d71515160c24a9318;igor.dos +4d69bf2f56e243382fbb8c2556e3b0d0c88dc8e7f5cef213f54e944463241165;ultima6.dos +dfe60a8fbf63aa7e332263cddb55451d7111b827e8208fb0b524ff313ed8766b;maupiti.dos +3f5cb94de42f94b6cec68488d2c31f025193b263a0fa7eb89661f26e8eb270cf;eagleeye.dos +4c64b3e6ba5f88fcfbde7eaa3d8947da14168b899eb37cc67df5142b3c6afc84;redhell.dos +750891922ea6dfe0288ab2ab5c05f2c269032c4b4f1be5996e4c385a05bc3b03;startrek25.dos +11dcd8fca40b588efc1cc466a139aa5e98abfbbad906f1e38cd90a57e660323c;kq6.dos diff --git a/fdd/fdd_server/archive/aloneitd.dos b/fdd/fdd_server/archive/aloneitd.dos new file mode 100644 index 0000000..4572a56 Binary files /dev/null and b/fdd/fdd_server/archive/aloneitd.dos differ diff --git a/fdd/fdd_server/archive/amazon.dos b/fdd/fdd_server/archive/amazon.dos new file mode 100644 index 0000000..ea7d774 Binary files /dev/null and b/fdd/fdd_server/archive/amazon.dos differ diff --git a/fdd/fdd_server/archive/arena.dos b/fdd/fdd_server/archive/arena.dos new file mode 100644 index 0000000..dd828f2 Binary files /dev/null and b/fdd/fdd_server/archive/arena.dos differ diff --git a/fdd/fdd_server/archive/chess.dos b/fdd/fdd_server/archive/chess.dos new file mode 100644 index 0000000..b3b1612 Binary files /dev/null and b/fdd/fdd_server/archive/chess.dos differ diff --git a/fdd/fdd_server/archive/colonize.dos b/fdd/fdd_server/archive/colonize.dos new file mode 100644 index 0000000..2061d30 Binary files /dev/null and b/fdd/fdd_server/archive/colonize.dos differ diff --git a/fdd/fdd_server/archive/cruise.dos b/fdd/fdd_server/archive/cruise.dos new file mode 100644 index 0000000..bafb17d Binary files /dev/null and b/fdd/fdd_server/archive/cruise.dos differ diff --git a/fdd/fdd_server/archive/darkseed.dos b/fdd/fdd_server/archive/darkseed.dos new file mode 100644 index 0000000..ae16db2 Binary files /dev/null and b/fdd/fdd_server/archive/darkseed.dos differ diff --git a/fdd/fdd_server/archive/descent.dos b/fdd/fdd_server/archive/descent.dos new file mode 100644 index 0000000..5f5816c Binary files /dev/null and b/fdd/fdd_server/archive/descent.dos differ diff --git a/fdd/fdd_server/archive/doom.dos b/fdd/fdd_server/archive/doom.dos new file mode 100644 index 0000000..2d88db9 Binary files /dev/null and b/fdd/fdd_server/archive/doom.dos differ diff --git a/fdd/fdd_server/archive/dott.dos b/fdd/fdd_server/archive/dott.dos new file mode 100644 index 0000000..09f49d0 Binary files /dev/null and b/fdd/fdd_server/archive/dott.dos differ diff --git a/fdd/fdd_server/archive/eagleeye.dos b/fdd/fdd_server/archive/eagleeye.dos new file mode 100644 index 0000000..38e1ea9 Binary files /dev/null and b/fdd/fdd_server/archive/eagleeye.dos differ diff --git a/fdd/fdd_server/archive/enchantia.dos b/fdd/fdd_server/archive/enchantia.dos new file mode 100644 index 0000000..3338e0c Binary files /dev/null and b/fdd/fdd_server/archive/enchantia.dos differ diff --git a/fdd/fdd_server/archive/gobliins.dos b/fdd/fdd_server/archive/gobliins.dos new file mode 100644 index 0000000..d3a07ce Binary files /dev/null and b/fdd/fdd_server/archive/gobliins.dos differ diff --git a/fdd/fdd_server/archive/heretic.dos b/fdd/fdd_server/archive/heretic.dos new file mode 100644 index 0000000..4dee13c Binary files /dev/null and b/fdd/fdd_server/archive/heretic.dos differ diff --git a/fdd/fdd_server/archive/hexen.dos b/fdd/fdd_server/archive/hexen.dos new file mode 100644 index 0000000..0db4edf Binary files /dev/null and b/fdd/fdd_server/archive/hexen.dos differ diff --git a/fdd/fdd_server/archive/igor.dos b/fdd/fdd_server/archive/igor.dos new file mode 100644 index 0000000..d2b961e Binary files /dev/null and b/fdd/fdd_server/archive/igor.dos differ diff --git a/fdd/fdd_server/archive/indiana1.dos b/fdd/fdd_server/archive/indiana1.dos new file mode 100644 index 0000000..1d3cdd1 Binary files /dev/null and b/fdd/fdd_server/archive/indiana1.dos differ diff --git a/fdd/fdd_server/archive/kq5.dos b/fdd/fdd_server/archive/kq5.dos new file mode 100644 index 0000000..604325b Binary files /dev/null and b/fdd/fdd_server/archive/kq5.dos differ diff --git a/fdd/fdd_server/archive/kq6.dos b/fdd/fdd_server/archive/kq6.dos new file mode 100644 index 0000000..c623e59 Binary files /dev/null and b/fdd/fdd_server/archive/kq6.dos differ diff --git a/fdd/fdd_server/archive/loom.dos b/fdd/fdd_server/archive/loom.dos new file mode 100644 index 0000000..a430109 Binary files /dev/null and b/fdd/fdd_server/archive/loom.dos differ diff --git a/fdd/fdd_server/archive/lore.dos b/fdd/fdd_server/archive/lore.dos new file mode 100644 index 0000000..8b6ea1f Binary files /dev/null and b/fdd/fdd_server/archive/lore.dos differ diff --git a/fdd/fdd_server/archive/lsl1.dos b/fdd/fdd_server/archive/lsl1.dos new file mode 100644 index 0000000..a8d3098 Binary files /dev/null and b/fdd/fdd_server/archive/lsl1.dos differ diff --git a/fdd/fdd_server/archive/lsl2.dos b/fdd/fdd_server/archive/lsl2.dos new file mode 100644 index 0000000..6069fb5 Binary files /dev/null and b/fdd/fdd_server/archive/lsl2.dos differ diff --git a/fdd/fdd_server/archive/maniac.dos b/fdd/fdd_server/archive/maniac.dos new file mode 100644 index 0000000..03e1a56 Binary files /dev/null and b/fdd/fdd_server/archive/maniac.dos differ diff --git a/fdd/fdd_server/archive/maupiti.dos b/fdd/fdd_server/archive/maupiti.dos new file mode 100644 index 0000000..8e69af9 Binary files /dev/null and b/fdd/fdd_server/archive/maupiti.dos differ diff --git a/fdd/fdd_server/archive/mk1.dos b/fdd/fdd_server/archive/mk1.dos new file mode 100644 index 0000000..6f3389c Binary files /dev/null and b/fdd/fdd_server/archive/mk1.dos differ diff --git a/fdd/fdd_server/archive/monkey1.dos b/fdd/fdd_server/archive/monkey1.dos new file mode 100644 index 0000000..c66c1cc Binary files /dev/null and b/fdd/fdd_server/archive/monkey1.dos differ diff --git a/fdd/fdd_server/archive/monkey2.dos b/fdd/fdd_server/archive/monkey2.dos new file mode 100644 index 0000000..0873c35 Binary files /dev/null and b/fdd/fdd_server/archive/monkey2.dos differ diff --git a/fdd/fdd_server/archive/pirates.dos b/fdd/fdd_server/archive/pirates.dos new file mode 100644 index 0000000..2f85d00 Binary files /dev/null and b/fdd/fdd_server/archive/pirates.dos differ diff --git a/fdd/fdd_server/archive/quake.dos b/fdd/fdd_server/archive/quake.dos new file mode 100644 index 0000000..243f3b4 Binary files /dev/null and b/fdd/fdd_server/archive/quake.dos differ diff --git a/fdd/fdd_server/archive/redhell.dos b/fdd/fdd_server/archive/redhell.dos new file mode 100644 index 0000000..46ed596 Binary files /dev/null and b/fdd/fdd_server/archive/redhell.dos differ diff --git a/fdd/fdd_server/archive/shadowlands.dos b/fdd/fdd_server/archive/shadowlands.dos new file mode 100644 index 0000000..1fe7bcf Binary files /dev/null and b/fdd/fdd_server/archive/shadowlands.dos differ diff --git a/fdd/fdd_server/archive/simon1.dos b/fdd/fdd_server/archive/simon1.dos new file mode 100644 index 0000000..696d9ca Binary files /dev/null and b/fdd/fdd_server/archive/simon1.dos differ diff --git a/fdd/fdd_server/archive/startrek25.dos b/fdd/fdd_server/archive/startrek25.dos new file mode 100644 index 0000000..f55afce Binary files /dev/null and b/fdd/fdd_server/archive/startrek25.dos differ diff --git a/fdd/fdd_server/archive/story2.dos b/fdd/fdd_server/archive/story2.dos new file mode 100644 index 0000000..198c54e Binary files /dev/null and b/fdd/fdd_server/archive/story2.dos differ diff --git a/fdd/fdd_server/archive/ultima6.dos b/fdd/fdd_server/archive/ultima6.dos new file mode 100644 index 0000000..a3e3b65 Binary files /dev/null and b/fdd/fdd_server/archive/ultima6.dos differ diff --git a/fdd/fdd_server/archive/waxwork.dos b/fdd/fdd_server/archive/waxwork.dos new file mode 100644 index 0000000..b6ea275 Binary files /dev/null and b/fdd/fdd_server/archive/waxwork.dos differ diff --git a/fdd/fdd_server/archive/wolf3d.dos b/fdd/fdd_server/archive/wolf3d.dos new file mode 100644 index 0000000..0c3da50 Binary files /dev/null and b/fdd/fdd_server/archive/wolf3d.dos differ diff --git a/find_wordle/wordle.sh b/find_wordle/wordle.sh new file mode 100755 index 0000000..2d4c717 --- /dev/null +++ b/find_wordle/wordle.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# fanta +# Helper script to find words in the spanish worlde version +wordList="words-es.txt" + +function showError(){ + echo "[Error] $1" +} + +if [ -z "$1" ]; then + showError "Example: wordle.sh n..io (The dots are the unknown characters)" +else + if [ $(echo -n "$1" | wc -m) -le 5 ]; then + grep -iEw "$1" $wordList + # la salida tendria que ser de palabras solamente con 5 caracteres + else + showError "Too many characters my friend. They must be 5" + fi +fi diff --git a/find_wordle/words-es.txt b/find_wordle/words-es.txt new file mode 100644 index 0000000..ca9819d --- /dev/null +++ b/find_wordle/words-es.txt @@ -0,0 +1,56064 @@ + +# +# con este listado. Si no es así, visite 03/May/2022 +# Script sencillo para subir un archivo a un server ftp +# Permite tambien borrar un archivo y descargarlo +# Ejemplos: +# +# Upload a file example: curlFTP -u /var/backups/vzdump-qemu-109-2022_05_03-01_47_35.vma.lzo +# Remove remote file example: curlFTP -r vzdump-qemu-109-2022_05_03-01_47_35.vma.lzo +# Download a file example: curlFTP -d vzdump-qemu-109-2022_05_03-01_47_35.vma.lzo + +user="" +passwd="" +ftpHost="" +mode="$1" # -d -u -r +file="$2" + +function main(){ + checkCurl + checkFTP + checkMode +} + +function checkCurl(){ + [ -z "$(whereis -b curl | awk {'print$2'})" ] && echo "curl - Maybe it is not installed on the system. Sorry but I can't continue." && exit +} + +function checkFTP(){ + ftpProtocol=$(curl -V | grep -i "Protocols" | tr " " "\n" | grep -w ftp) + if [ $ftpProtocol != "ftp" ]; then echo "Please compile curl with ftp protocol support"; exit; fi +} + +function checkMode(){ + [ -z "$mode" ] && echo -e "Please specifies an option: -d -u -r\n -d download a file\n -u upload a file\n -r remove a file" && exit + if [ $mode == "-u" ] ; then checkFile; fi + if [ $mode == "-u" ] ; then uploadFile ; fi + if [ $mode == "-r" ] ; then removeRemoteFile ; fi + if [ $mode == "-d" ] ; then downloadFile ; fi +} + +function checkFile(){ + [ -z "$file" ] && echo -e "Please specifies a filename." && exit + if [ -f "$file" ]; then echo "File: $file"; else echo "i can't find the file [ $file ] in that path"; exit; fi +} + +function uploadFile(){ + curl -T "$file" ftp://"$user":"$passwd"@"$ftpHost"/ +} + +function downloadFile(){ + curl --output $file ftp://"$user":"$passwd"@"$ftpHost"/"$file" +} + +function removeRemoteFile(){ + curl -u "$user:$passwd" --quote "DELE $file" ftp://"$ftpHost" +} + +main diff --git a/g/LICENSE b/g/LICENSE new file mode 100644 index 0000000..d41c0bd --- /dev/null +++ b/g/LICENSE @@ -0,0 +1,232 @@ +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. 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 them 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 prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. 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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +“This License” refers to version 3 of the GNU General Public License. + +“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. + +To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. + +A “covered work” means either the unmodified Program or a work based on the Program. + +To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. + +A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey 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; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. +A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. + +A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. +If 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 convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +14. Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU 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 that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. +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. + +16. Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + +17. Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +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 state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your program's commands might be different; for a GUI interface, you would use an “about box”. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/g/README.md b/g/README.md new file mode 100644 index 0000000..feb8cab --- /dev/null +++ b/g/README.md @@ -0,0 +1,5 @@ +# g + +g es un script que utilizo para guardar en una base de datos sqlite3 los juegos que me he pasado. Es muy sencilla y sirve para recopilar pocos datos, poder listarlos y eliminarlos si te has confundido. + +Está escrit en bash. \ No newline at end of file diff --git a/g/g b/g/g new file mode 100644 index 0000000..c306fbf --- /dev/null +++ b/g/g @@ -0,0 +1,62 @@ +#!/bin/bash +# fanta +# Dependences: sqlite3 + +user=$(whoami) +dbDir="$HOME/.g" +dbName="games.db" +opt="$1" +version="0.1" + +function who { if [ "$(whoami)" = "root" ]; then exit; fi } + +function checkDBDir { if [ ! -d "$dbDir" ]; then mkdir -p "$dbDir"; fi } + +function createDBStructure { + echo "CREATE TABLE IF NOT EXISTS GAMES (ID INTEGER PRIMARY KEY, NAME TEXT, YEAR TEXT, MONTH TEXT, PLATFORM TEXT);" | sqlite3 "$dbDir/$dbName" +} + +function checkDBFile { if [ ! -f "$dbDir/$dbName" ]; then createDBStructure; fi } + +function helpGames { + echo -e "g $version - fanta \n" + echo "-h Show this help" + echo "-l List Games" + echo "-a Add Games" + echo -e "-d Del Games\n" +} + +function addGames { + read -p "Nombre del Juego: " nameGame + read -p "Año: " anoGame + read -p "Mes: " mesGame + read -p "Plataforma: " plataformaGame + echo "INSERT INTO GAMES (NAME,YEAR,MONTH,PLATFORM) VALUES ('$nameGame','$anoGame','$mesGame','$plataformaGame');" | sqlite3 "$dbDir/$dbName" +} + +function delGames { + read -p "ID del Juego: " idGame + echo "DELETE FROM GAMES WHERE ID = $idGame;" | sqlite3 "$dbDir/$dbName" +} + +function listGames { + echo "SELECT * FROM GAMES" | sqlite3 "$dbDir/$dbName" +} + + +function checkOpt { + if [ -z "$opt" ]; then helpGames; fi + if [ "$opt" = "-h" ]; then helpGames; fi + if [ "$opt" = "-l" ]; then listGames; fi + if [ "$opt" = "-a" ]; then addGames; fi + if [ "$opt" = "-d" ]; then delGames; fi +} + +function main() { + who + checkDBDir + checkDBFile + checkOpt +} + +main diff --git a/laurabow2-stream-obs-scummvm_autoscene/LICENSE b/laurabow2-stream-obs-scummvm_autoscene/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/laurabow2-stream-obs-scummvm_autoscene/README.md b/laurabow2-stream-obs-scummvm_autoscene/README.md new file mode 100644 index 0000000..468f8e4 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/README.md @@ -0,0 +1,3 @@ +# LAURABOW2-stream-obs-scummvm_autoScene + +Cambia automaticamente de escena en OBS mientras juegas a Laura Bow 2 con Scummvm. \ No newline at end of file diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/Manual Generico de Sierra.pdf b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/Manual Generico de Sierra.pdf new file mode 100644 index 0000000..f8a8765 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/Manual Generico de Sierra.pdf differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Claves.pdf b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Claves.pdf new file mode 100644 index 0000000..843d5c6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Claves.pdf differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Guia de Instalacion CD.pdf b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Guia de Instalacion CD.pdf new file mode 100644 index 0000000..431d8c0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Guia de Instalacion CD.pdf differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Hintbook [EN].pdf b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Hintbook [EN].pdf new file mode 100644 index 0000000..0a5ae51 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Hintbook [EN].pdf differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Instrucciones Adicionales.pdf b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Instrucciones Adicionales.pdf new file mode 100644 index 0000000..a55f19c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Instrucciones Adicionales.pdf differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Invitacion Museo.pdf b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Invitacion Museo.pdf new file mode 100644 index 0000000..f97d171 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/DOCS/The Dagger of Amon Ra - Invitacion Museo.pdf differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/0.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/0.FON new file mode 100644 index 0000000..a485f03 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/0.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/0.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/0.msg new file mode 100644 index 0000000..9889049 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/0.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1.FON new file mode 100644 index 0000000..299e6f1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/10.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/10.FON new file mode 100644 index 0000000..dc67fb2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/10.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/10.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/10.msg new file mode 100644 index 0000000..21c67be Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/10.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/100.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/100.msg new file mode 100644 index 0000000..3766178 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/100.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/110.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/110.msg new file mode 100644 index 0000000..eee10dc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/110.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/120.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/120.msg new file mode 100644 index 0000000..5283fb9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/120.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1207.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1207.FON new file mode 100644 index 0000000..2182af2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1207.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/13.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/13.msg new file mode 100644 index 0000000..0e4093d Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/13.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1350.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1350.msg new file mode 100644 index 0000000..882fd7f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1350.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/140.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/140.msg new file mode 100644 index 0000000..df14ba9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/140.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1440.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1440.msg new file mode 100644 index 0000000..fbb62ee Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1440.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1450.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1450.msg new file mode 100644 index 0000000..1283cbb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1450.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1490.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1490.msg new file mode 100644 index 0000000..dc25c6f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1490.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/15.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/15.msg new file mode 100644 index 0000000..0393c96 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/15.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1500.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1500.msg new file mode 100644 index 0000000..7a930b2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1500.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/151.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/151.V56 new file mode 100644 index 0000000..681aa94 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/151.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1510.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1510.msg new file mode 100644 index 0000000..a1cc12c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1510.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1520.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1520.msg new file mode 100644 index 0000000..ae60228 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1520.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/155.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/155.msg new file mode 100644 index 0000000..22d7970 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/155.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1550.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1550.msg new file mode 100644 index 0000000..bb548b7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1550.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1560.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1560.msg new file mode 100644 index 0000000..92f6277 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1560.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/16.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/16.msg new file mode 100644 index 0000000..c1ad60b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/16.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/160.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/160.msg new file mode 100644 index 0000000..ac47c7a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/160.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1600.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1600.msg new file mode 100644 index 0000000..93600fe Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1600.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/18.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/18.msg new file mode 100644 index 0000000..2fa25b3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/18.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/180.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/180.msg new file mode 100644 index 0000000..474a49a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/180.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1880.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1880.msg new file mode 100644 index 0000000..4204904 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1880.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1882.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1882.msg new file mode 100644 index 0000000..cd91a8a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1882.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1883.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1883.msg new file mode 100644 index 0000000..236f4cb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1883.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1884.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1884.msg new file mode 100644 index 0000000..89db6fa Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1884.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1885.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1885.msg new file mode 100644 index 0000000..828a7ca Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1885.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1886.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1886.msg new file mode 100644 index 0000000..6105e5a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1886.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1887.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1887.msg new file mode 100644 index 0000000..f79fe31 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1887.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1888.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1888.msg new file mode 100644 index 0000000..59a6f94 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1888.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1889.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1889.msg new file mode 100644 index 0000000..2f66c36 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1889.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1890.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1890.msg new file mode 100644 index 0000000..084e8a7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1890.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1891.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1891.msg new file mode 100644 index 0000000..d3b2baa Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1891.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1892.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1892.msg new file mode 100644 index 0000000..aa0b61a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1892.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1893.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1893.msg new file mode 100644 index 0000000..5a3caab Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1893.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1894.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1894.msg new file mode 100644 index 0000000..43f6dad Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1894.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/19.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/19.msg new file mode 100644 index 0000000..37ae1f6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/19.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/190.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/190.msg new file mode 100644 index 0000000..093a4a9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/190.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1900.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1900.FON new file mode 100644 index 0000000..c2acebb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/1900.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/20.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/20.msg new file mode 100644 index 0000000..0df0d7e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/20.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/210.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/210.msg new file mode 100644 index 0000000..efac162 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/210.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2107.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2107.FON new file mode 100644 index 0000000..e245d2c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2107.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2108.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2108.FON new file mode 100644 index 0000000..9d543a0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2108.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/220.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/220.msg new file mode 100644 index 0000000..6f48cff Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/220.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/230.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/230.msg new file mode 100644 index 0000000..6f8aaf4 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/230.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/235.v56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/235.v56 new file mode 100644 index 0000000..7895aff Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/235.v56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/24.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/24.msg new file mode 100644 index 0000000..3d547b4 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/24.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/240.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/240.msg new file mode 100644 index 0000000..ede960d Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/240.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2407.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2407.FON new file mode 100644 index 0000000..f0cda4e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2407.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/250.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/250.msg new file mode 100644 index 0000000..aecd844 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/250.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2510.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2510.FON new file mode 100644 index 0000000..52c2656 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/2510.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/26.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/26.V56 new file mode 100644 index 0000000..98b9dab Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/26.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/26.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/26.msg new file mode 100644 index 0000000..d943342 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/26.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/260.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/260.msg new file mode 100644 index 0000000..56cde77 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/260.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/270.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/270.msg new file mode 100644 index 0000000..d348ae7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/270.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/280.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/280.msg new file mode 100644 index 0000000..aac0f11 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/280.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/290.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/290.msg new file mode 100644 index 0000000..cca5695 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/290.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/295.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/295.msg new file mode 100644 index 0000000..0f58244 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/295.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/300.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/300.msg new file mode 100644 index 0000000..5bbb267 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/300.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/310.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/310.msg new file mode 100644 index 0000000..363c5d3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/310.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/320.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/320.msg new file mode 100644 index 0000000..a30ec99 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/320.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/330.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/330.msg new file mode 100644 index 0000000..a5e0b44 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/330.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/335.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/335.msg new file mode 100644 index 0000000..46bc2a2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/335.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/340.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/340.msg new file mode 100644 index 0000000..2bccccc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/340.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/350.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/350.msg new file mode 100644 index 0000000..d44264e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/350.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/355.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/355.msg new file mode 100644 index 0000000..d68d5f1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/355.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/360.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/360.msg new file mode 100644 index 0000000..7539765 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/360.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/370.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/370.msg new file mode 100644 index 0000000..992a610 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/370.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/400.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/400.msg new file mode 100644 index 0000000..4604d12 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/400.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/4115.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/4115.FON new file mode 100644 index 0000000..1332168 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/4115.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/420.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/420.msg new file mode 100644 index 0000000..5f969f6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/420.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/430.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/430.msg new file mode 100644 index 0000000..f45e128 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/430.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/435.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/435.msg new file mode 100644 index 0000000..b1e1159 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/435.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/440.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/440.msg new file mode 100644 index 0000000..6c3e630 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/440.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/448.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/448.msg new file mode 100644 index 0000000..a1b35e3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/448.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/450.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/450.msg new file mode 100644 index 0000000..2643b76 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/450.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/454.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/454.msg new file mode 100644 index 0000000..ef72103 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/454.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/455.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/455.msg new file mode 100644 index 0000000..12b72dc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/455.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/460.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/460.msg new file mode 100644 index 0000000..87baeb6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/460.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/480.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/480.msg new file mode 100644 index 0000000..bc7490a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/480.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/490.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/490.msg new file mode 100644 index 0000000..8965eda Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/490.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/500.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/500.msg new file mode 100644 index 0000000..3b5cc0a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/500.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/510.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/510.msg new file mode 100644 index 0000000..35560c6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/510.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/520.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/520.V56 new file mode 100644 index 0000000..e629c0c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/520.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/520.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/520.msg new file mode 100644 index 0000000..36080f0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/520.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/525.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/525.msg new file mode 100644 index 0000000..2dd9fb1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/525.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/530.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/530.msg new file mode 100644 index 0000000..37fcf8f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/530.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/550.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/550.msg new file mode 100644 index 0000000..4d910cb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/550.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/560.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/560.msg new file mode 100644 index 0000000..86770b7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/560.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/561.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/561.msg new file mode 100644 index 0000000..40c2b04 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/561.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/562.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/562.V56 new file mode 100644 index 0000000..6b29fe6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/562.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/562.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/562.msg new file mode 100644 index 0000000..c183d13 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/562.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/563.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/563.V56 new file mode 100644 index 0000000..44d78a1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/563.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/6.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/6.V56 new file mode 100644 index 0000000..2fe400c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/6.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/60.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/60.FON new file mode 100644 index 0000000..676d266 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/60.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/600.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/600.msg new file mode 100644 index 0000000..6159f57 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/600.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/61.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/61.FON new file mode 100644 index 0000000..a37aa9f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/61.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/610.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/610.msg new file mode 100644 index 0000000..a605e2e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/610.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/620.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/620.msg new file mode 100644 index 0000000..35cda9f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/620.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/630.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/630.msg new file mode 100644 index 0000000..fba9cce Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/630.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/640.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/640.V56 new file mode 100644 index 0000000..e882c76 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/640.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/640.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/640.msg new file mode 100644 index 0000000..e482f7d Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/640.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/650.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/650.msg new file mode 100644 index 0000000..c037625 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/650.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/660.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/660.msg new file mode 100644 index 0000000..977b4b0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/660.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/69.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/69.FON new file mode 100644 index 0000000..b66bd08 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/69.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/700.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/700.msg new file mode 100644 index 0000000..0890ad6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/700.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/710.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/710.msg new file mode 100644 index 0000000..596989a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/710.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/715.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/715.msg new file mode 100644 index 0000000..c4b47ec Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/715.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/720.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/720.msg new file mode 100644 index 0000000..ada135b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/720.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/730.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/730.msg new file mode 100644 index 0000000..c7ec90f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/730.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/740.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/740.msg new file mode 100644 index 0000000..a67bee1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/740.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/750.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/750.msg new file mode 100644 index 0000000..6e795b5 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/750.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/760.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/760.V56 new file mode 100644 index 0000000..82015a0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/760.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/770.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/770.msg new file mode 100644 index 0000000..3b985d1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/770.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/775.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/775.msg new file mode 100644 index 0000000..ecf64d5 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/775.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/785.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/785.msg new file mode 100644 index 0000000..5ab7135 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/785.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/790.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/790.msg new file mode 100644 index 0000000..6a0c805 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/790.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/791.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/791.V56 new file mode 100644 index 0000000..ee1c2c0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/791.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/8000.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/8000.V56 new file mode 100644 index 0000000..38cde3a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/8000.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/851.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/851.V56 new file mode 100644 index 0000000..ac70efb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/851.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/857.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/857.V56 new file mode 100644 index 0000000..42317d7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/857.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/91.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/91.msg new file mode 100644 index 0000000..053c39e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/91.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/954.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/954.msg new file mode 100644 index 0000000..685460b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/954.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/99.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/99.msg new file mode 100644 index 0000000..91451a7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/99.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/990.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/990.V56 new file mode 100644 index 0000000..97a8eea Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/990.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/990.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/990.msg new file mode 100644 index 0000000..ad5a3a3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/990.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/992.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/992.V56 new file mode 100644 index 0000000..f48c7c9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/992.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/994.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/994.msg new file mode 100644 index 0000000..baf8951 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/994.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/995.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/995.V56 new file mode 100644 index 0000000..d878439 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/995.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/999.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/999.FON new file mode 100644 index 0000000..7839a98 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/999.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/MT32_CONTROL.ROM b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/MT32_CONTROL.ROM new file mode 100644 index 0000000..4927958 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/MT32_CONTROL.ROM differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/MT32_PCM.ROM b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/MT32_PCM.ROM new file mode 100644 index 0000000..20a5e5a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS/MT32_PCM.ROM differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/0.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/0.FON new file mode 100644 index 0000000..a485f03 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/0.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/0.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/0.msg new file mode 100644 index 0000000..9889049 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/0.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1.FON new file mode 100644 index 0000000..299e6f1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/10.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/10.FON new file mode 100644 index 0000000..dc67fb2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/10.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/10.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/10.msg new file mode 100644 index 0000000..21c67be Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/10.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/100.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/100.msg new file mode 100644 index 0000000..3766178 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/100.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/110.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/110.msg new file mode 100644 index 0000000..eee10dc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/110.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/120.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/120.msg new file mode 100644 index 0000000..5283fb9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/120.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1207.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1207.FON new file mode 100644 index 0000000..2182af2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1207.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/13.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/13.msg new file mode 100644 index 0000000..0e4093d Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/13.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1350.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1350.msg new file mode 100644 index 0000000..882fd7f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1350.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/140.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/140.msg new file mode 100644 index 0000000..df14ba9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/140.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1440.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1440.msg new file mode 100644 index 0000000..fbb62ee Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1440.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1450.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1450.msg new file mode 100644 index 0000000..1283cbb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1450.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1490.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1490.msg new file mode 100644 index 0000000..dc25c6f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1490.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/15.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/15.msg new file mode 100644 index 0000000..0393c96 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/15.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1500.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1500.msg new file mode 100644 index 0000000..7a930b2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1500.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/151.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/151.V56 new file mode 100644 index 0000000..681aa94 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/151.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1510.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1510.msg new file mode 100644 index 0000000..a1cc12c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1510.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1520.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1520.msg new file mode 100644 index 0000000..ae60228 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1520.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/155.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/155.msg new file mode 100644 index 0000000..22d7970 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/155.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1550.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1550.msg new file mode 100644 index 0000000..bb548b7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1550.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1560.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1560.msg new file mode 100644 index 0000000..92f6277 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1560.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/16.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/16.msg new file mode 100644 index 0000000..c1ad60b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/16.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/160.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/160.msg new file mode 100644 index 0000000..ac47c7a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/160.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1600.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1600.msg new file mode 100644 index 0000000..93600fe Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1600.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/18.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/18.msg new file mode 100644 index 0000000..2fa25b3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/18.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/180.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/180.msg new file mode 100644 index 0000000..474a49a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/180.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1880.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1880.msg new file mode 100644 index 0000000..4204904 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1880.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1882.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1882.msg new file mode 100644 index 0000000..cd91a8a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1882.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1883.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1883.msg new file mode 100644 index 0000000..236f4cb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1883.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1884.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1884.msg new file mode 100644 index 0000000..89db6fa Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1884.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1885.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1885.msg new file mode 100644 index 0000000..828a7ca Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1885.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1886.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1886.msg new file mode 100644 index 0000000..6105e5a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1886.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1887.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1887.msg new file mode 100644 index 0000000..f79fe31 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1887.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1888.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1888.msg new file mode 100644 index 0000000..59a6f94 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1888.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1889.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1889.msg new file mode 100644 index 0000000..2f66c36 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1889.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1890.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1890.msg new file mode 100644 index 0000000..084e8a7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1890.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1891.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1891.msg new file mode 100644 index 0000000..d3b2baa Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1891.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1892.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1892.msg new file mode 100644 index 0000000..aa0b61a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1892.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1893.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1893.msg new file mode 100644 index 0000000..5a3caab Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1893.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1894.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1894.msg new file mode 100644 index 0000000..43f6dad Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1894.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/19.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/19.msg new file mode 100644 index 0000000..37ae1f6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/19.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/190.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/190.msg new file mode 100644 index 0000000..093a4a9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/190.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1900.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1900.FON new file mode 100644 index 0000000..c2acebb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/1900.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/20.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/20.msg new file mode 100644 index 0000000..0df0d7e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/20.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/210.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/210.msg new file mode 100644 index 0000000..efac162 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/210.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2107.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2107.FON new file mode 100644 index 0000000..e245d2c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2107.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2108.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2108.FON new file mode 100644 index 0000000..9d543a0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2108.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/220.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/220.msg new file mode 100644 index 0000000..6f48cff Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/220.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/230.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/230.msg new file mode 100644 index 0000000..6f8aaf4 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/230.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/235.v56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/235.v56 new file mode 100644 index 0000000..7895aff Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/235.v56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/24.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/24.msg new file mode 100644 index 0000000..3d547b4 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/24.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/240.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/240.msg new file mode 100644 index 0000000..ede960d Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/240.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2407.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2407.FON new file mode 100644 index 0000000..f0cda4e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2407.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/250.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/250.msg new file mode 100644 index 0000000..aecd844 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/250.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2510.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2510.FON new file mode 100644 index 0000000..52c2656 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/2510.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/26.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/26.V56 new file mode 100644 index 0000000..98b9dab Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/26.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/26.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/26.msg new file mode 100644 index 0000000..d943342 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/26.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/260.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/260.msg new file mode 100644 index 0000000..56cde77 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/260.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/270.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/270.msg new file mode 100644 index 0000000..d348ae7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/270.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/280.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/280.msg new file mode 100644 index 0000000..aac0f11 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/280.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/290.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/290.msg new file mode 100644 index 0000000..cca5695 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/290.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/295.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/295.msg new file mode 100644 index 0000000..0f58244 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/295.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/300.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/300.msg new file mode 100644 index 0000000..5bbb267 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/300.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/310.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/310.msg new file mode 100644 index 0000000..363c5d3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/310.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/320.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/320.msg new file mode 100644 index 0000000..a30ec99 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/320.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/330.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/330.msg new file mode 100644 index 0000000..a5e0b44 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/330.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/335.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/335.msg new file mode 100644 index 0000000..46bc2a2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/335.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/340.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/340.msg new file mode 100644 index 0000000..2bccccc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/340.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/350.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/350.msg new file mode 100644 index 0000000..d44264e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/350.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/355.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/355.msg new file mode 100644 index 0000000..d68d5f1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/355.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/360.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/360.msg new file mode 100644 index 0000000..7539765 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/360.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/370.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/370.msg new file mode 100644 index 0000000..992a610 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/370.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/400.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/400.msg new file mode 100644 index 0000000..4604d12 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/400.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/4115.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/4115.FON new file mode 100644 index 0000000..1332168 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/4115.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/420.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/420.msg new file mode 100644 index 0000000..5f969f6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/420.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/430.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/430.msg new file mode 100644 index 0000000..f45e128 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/430.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/435.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/435.msg new file mode 100644 index 0000000..b1e1159 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/435.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/440.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/440.msg new file mode 100644 index 0000000..6c3e630 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/440.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/448.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/448.msg new file mode 100644 index 0000000..a1b35e3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/448.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/450.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/450.msg new file mode 100644 index 0000000..2643b76 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/450.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/454.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/454.msg new file mode 100644 index 0000000..ef72103 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/454.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/455.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/455.msg new file mode 100644 index 0000000..12b72dc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/455.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/460.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/460.msg new file mode 100644 index 0000000..87baeb6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/460.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/480.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/480.msg new file mode 100644 index 0000000..bc7490a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/480.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/490.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/490.msg new file mode 100644 index 0000000..8965eda Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/490.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/500.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/500.msg new file mode 100644 index 0000000..3b5cc0a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/500.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/510.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/510.msg new file mode 100644 index 0000000..35560c6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/510.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/520.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/520.V56 new file mode 100644 index 0000000..e629c0c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/520.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/520.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/520.msg new file mode 100644 index 0000000..36080f0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/520.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/525.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/525.msg new file mode 100644 index 0000000..2dd9fb1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/525.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/530.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/530.msg new file mode 100644 index 0000000..37fcf8f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/530.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/550.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/550.msg new file mode 100644 index 0000000..4d910cb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/550.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/560.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/560.msg new file mode 100644 index 0000000..86770b7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/560.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/561.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/561.msg new file mode 100644 index 0000000..40c2b04 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/561.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/562.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/562.V56 new file mode 100644 index 0000000..6b29fe6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/562.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/562.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/562.msg new file mode 100644 index 0000000..c183d13 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/562.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/563.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/563.V56 new file mode 100644 index 0000000..44d78a1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/563.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/6.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/6.V56 new file mode 100644 index 0000000..2fe400c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/6.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/60.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/60.FON new file mode 100644 index 0000000..676d266 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/60.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/600.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/600.msg new file mode 100644 index 0000000..6159f57 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/600.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/61.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/61.FON new file mode 100644 index 0000000..a37aa9f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/61.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/610.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/610.msg new file mode 100644 index 0000000..a605e2e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/610.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/620.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/620.msg new file mode 100644 index 0000000..35cda9f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/620.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/630.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/630.msg new file mode 100644 index 0000000..fba9cce Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/630.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/640.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/640.V56 new file mode 100644 index 0000000..e882c76 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/640.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/640.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/640.msg new file mode 100644 index 0000000..e482f7d Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/640.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/650.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/650.msg new file mode 100644 index 0000000..c037625 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/650.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/660.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/660.msg new file mode 100644 index 0000000..977b4b0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/660.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/69.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/69.FON new file mode 100644 index 0000000..b66bd08 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/69.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/700.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/700.msg new file mode 100644 index 0000000..0890ad6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/700.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/710.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/710.msg new file mode 100644 index 0000000..596989a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/710.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/715.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/715.msg new file mode 100644 index 0000000..c4b47ec Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/715.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/720.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/720.msg new file mode 100644 index 0000000..ada135b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/720.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/730.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/730.msg new file mode 100644 index 0000000..c7ec90f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/730.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/740.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/740.msg new file mode 100644 index 0000000..a67bee1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/740.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/750.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/750.msg new file mode 100644 index 0000000..6e795b5 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/750.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/760.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/760.V56 new file mode 100644 index 0000000..82015a0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/760.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/770.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/770.msg new file mode 100644 index 0000000..3b985d1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/770.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/775.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/775.msg new file mode 100644 index 0000000..ecf64d5 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/775.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/785.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/785.msg new file mode 100644 index 0000000..5ab7135 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/785.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/790.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/790.msg new file mode 100644 index 0000000..6a0c805 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/790.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/791.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/791.V56 new file mode 100644 index 0000000..ee1c2c0 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/791.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/8000.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/8000.V56 new file mode 100644 index 0000000..38cde3a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/8000.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/851.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/851.V56 new file mode 100644 index 0000000..ac70efb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/851.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/857.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/857.V56 new file mode 100644 index 0000000..42317d7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/857.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/91.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/91.msg new file mode 100644 index 0000000..053c39e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/91.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/954.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/954.msg new file mode 100644 index 0000000..685460b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/954.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/99.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/99.msg new file mode 100644 index 0000000..91451a7 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/99.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/990.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/990.V56 new file mode 100644 index 0000000..97a8eea Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/990.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/990.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/990.msg new file mode 100644 index 0000000..ad5a3a3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/990.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/992.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/992.V56 new file mode 100644 index 0000000..f48c7c9 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/992.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/994.msg b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/994.msg new file mode 100644 index 0000000..baf8951 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/994.msg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/995.V56 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/995.V56 new file mode 100644 index 0000000..d878439 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/995.V56 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/999.FON b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/999.FON new file mode 100644 index 0000000..7839a98 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/999.FON differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/111.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/111.AUD new file mode 100644 index 0000000..494337e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/111.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/281.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/281.AUD new file mode 100644 index 0000000..3bfcffb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/281.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/282.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/282.AUD new file mode 100644 index 0000000..e6f3462 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/282.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/292.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/292.AUD new file mode 100644 index 0000000..23a0203 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/292.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/312.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/312.AUD new file mode 100644 index 0000000..605cf8c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/312.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/40.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/40.AUD new file mode 100644 index 0000000..e3243bf Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/40.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/41.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/41.AUD new file mode 100644 index 0000000..7a59b46 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/41.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/42.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/42.AUD new file mode 100644 index 0000000..43f1923 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/42.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/430.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/430.AUD new file mode 100644 index 0000000..44309fd Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/430.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/44.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/44.AUD new file mode 100644 index 0000000..2f83beb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/44.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/440.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/440.AUD new file mode 100644 index 0000000..f99e097 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/440.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/441.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/441.AUD new file mode 100644 index 0000000..160919c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/441.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/443.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/443.AUD new file mode 100644 index 0000000..6a6edb8 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/443.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/444.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/444.AUD new file mode 100644 index 0000000..36676f3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/444.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/445.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/445.AUD new file mode 100644 index 0000000..6f1e68c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/445.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/45.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/45.AUD new file mode 100644 index 0000000..92bfb03 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/45.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/452.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/452.AUD new file mode 100644 index 0000000..a271036 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/452.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/453.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/453.AUD new file mode 100644 index 0000000..71c6036 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/453.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/455.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/455.AUD new file mode 100644 index 0000000..2952f71 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/455.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/46.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/46.AUD new file mode 100644 index 0000000..2f83beb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/46.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/460.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/460.AUD new file mode 100644 index 0000000..70e7051 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/460.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/462.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/462.AUD new file mode 100644 index 0000000..2030985 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/462.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/47.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/47.AUD new file mode 100644 index 0000000..92bfb03 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/47.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/48.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/48.AUD new file mode 100644 index 0000000..54f6b34 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/48.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/480.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/480.AUD new file mode 100644 index 0000000..96aba7c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/480.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/481.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/481.AUD new file mode 100644 index 0000000..77a3b55 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/481.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/49.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/49.AUD new file mode 100644 index 0000000..6cc5e2c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/49.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/490.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/490.AUD new file mode 100644 index 0000000..2919de5 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/490.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/500.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/500.AUD new file mode 100644 index 0000000..48ed548 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/500.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/501.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/501.AUD new file mode 100644 index 0000000..c25badf Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/501.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/51.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/51.AUD new file mode 100644 index 0000000..9980e92 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/51.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/52.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/52.AUD new file mode 100644 index 0000000..e75a5da Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/52.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/522.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/522.AUD new file mode 100644 index 0000000..0c23b42 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/522.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/523.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/523.AUD new file mode 100644 index 0000000..cb55600 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/523.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/54.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/54.AUD new file mode 100644 index 0000000..f1d2cb1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/54.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/543.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/543.AUD new file mode 100644 index 0000000..0161a00 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/543.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/555.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/555.AUD new file mode 100644 index 0000000..ec872a1 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/555.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/556.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/556.AUD new file mode 100644 index 0000000..30854ad Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/556.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/560.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/560.AUD new file mode 100644 index 0000000..2a67629 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/560.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/561.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/561.AUD new file mode 100644 index 0000000..2e17c0c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/561.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/566.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/566.AUD new file mode 100644 index 0000000..f2a40ea Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/566.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/600.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/600.AUD new file mode 100644 index 0000000..b99c1bb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/600.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/612.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/612.AUD new file mode 100644 index 0000000..ed4e48f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/612.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/631.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/631.AUD new file mode 100644 index 0000000..42e79cb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/631.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/632.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/632.AUD new file mode 100644 index 0000000..576a0ed Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/632.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/633.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/633.AUD new file mode 100644 index 0000000..c37b5bb Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/633.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/634.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/634.AUD new file mode 100644 index 0000000..3ed3c6f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/634.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/635.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/635.AUD new file mode 100644 index 0000000..75ed51e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/635.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/640.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/640.AUD new file mode 100644 index 0000000..0be68bc Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/640.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/641.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/641.AUD new file mode 100644 index 0000000..6c70a80 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/641.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/651.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/651.AUD new file mode 100644 index 0000000..a29a02e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/651.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/652.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/652.AUD new file mode 100644 index 0000000..0072e7e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/652.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/654.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/654.AUD new file mode 100644 index 0000000..5bd695e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/654.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/700.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/700.AUD new file mode 100644 index 0000000..8368db2 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/700.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/701.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/701.AUD new file mode 100644 index 0000000..e40041a Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/701.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/710.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/710.AUD new file mode 100644 index 0000000..60acebf Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/710.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/712.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/712.AUD new file mode 100644 index 0000000..de413fe Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/712.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/713.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/713.AUD new file mode 100644 index 0000000..5583f38 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/713.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/721.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/721.AUD new file mode 100644 index 0000000..2038162 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/721.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/722.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/722.AUD new file mode 100644 index 0000000..7e7e2e8 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/722.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/750.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/750.AUD new file mode 100644 index 0000000..5f1bd6b Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/750.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/751.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/751.AUD new file mode 100644 index 0000000..d0b7059 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/751.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/752.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/752.AUD new file mode 100644 index 0000000..3579a26 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/752.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/770.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/770.AUD new file mode 100644 index 0000000..737acbf Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/770.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/80.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/80.AUD new file mode 100644 index 0000000..dfebac6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/80.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/81.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/81.AUD new file mode 100644 index 0000000..2f6f1d6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/81.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/82.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/82.AUD new file mode 100644 index 0000000..2c4c65f Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/82.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/83.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/83.AUD new file mode 100644 index 0000000..7dbf562 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/83.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/84.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/84.AUD new file mode 100644 index 0000000..53548fa Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/84.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/85.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/85.AUD new file mode 100644 index 0000000..ba84600 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/85.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/96.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/96.AUD new file mode 100644 index 0000000..bfaa2da Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/AUDIOSFX/96.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/INTERP.ERR b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/INTERP.ERR new file mode 100644 index 0000000..b241f83 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/INTERP.ERR @@ -0,0 +1,367 @@ +\\; E_DISK_ERROR +\\1 +DOS Error: +%s +ENTER to retry +ESC to %s +\\; +\\; E_CANCEL +\\2 +cancel +\\; +\\; E_QUIT +\\3 +quit +\\; E_DISK_ERROR_MSG +\\4 +Disk is write protected +\\5 +Unknown unit +\\6 +Not ready +\\7 +? +\\8 +CRC error +\\9 +? +\\10 +Seek error +\\11 +? +\\12 +Sector not found +\\13 +? +\\14 +Write error +\\15 +Read error +\\16 +General failure +\\; E_ARM_CHKSUM +\\17 +Your extra memory has been found to be incompatible with this game. + +Please run INSTALL and choose NOT to use extra memory. + +[0x%x %d %d] +\\; E_OOPS_TXT +\\25 +You did something that we weren't expecting. +Whatever it was, you don't need to do it to finish the game. +Try taking a different approach to the situation. +Error %d. SCI Version %s +\\; E_OOPS +\\26 +Oops! +\\; E_NO_DEBUG +\\27 + Debug not available! error #%d +\\; E_NO_AUDIO_DRVR +\\28 +Can't find audio driver '%s'! + +\\; E_NO_AUDIO +\\29 +Unable to initialize your audio hardware. +\\; E_NO_CD_MAP +\\30 +Unable to locate the cd-language map file. +\\; E_INSERT_DISK +\\31 +Please insert +Disk %d in drive %s +and press ENTER.%s +\\; E_NO_LANG_MAP +\\32 +Unable to locate the language map file. +\\; E_INSERT_STARTUP +\\33 +Please insert +Startup Disk in drive %s +and press ENTER.%s +\\; E_NO_KBDDRV +\\34 +No keyboard driver! +\\; E_NO_HUNK +\\35 +Out of hunk! +\\; E_NO_HANDLES +\\36 +Out of handles! +\\; E_NO_VIDEO +\\37 +Couldn't install video driver! +\\; E_CANT_FIND +\\38 +Couldn't find %s. +\\; E_NO_PATCH +\\39 +Couldn't find PatchBank. +\\; E_NO_MUSIC +\\40 +Unable to initialize your music hardware. +\\; E_CANT_LOAD +\\41 +Can't load %s! + +\\; E_NO_INSTALL +\\42 +Can't find configuration file: %s +Please run the Install program. + +\\; E_RESRC_MISMATCH +\\43 +Resource type mismatch +\\; E_NOT_FOUND +\\44 +%s not found. +\\; E_WRONG_RESRC +\\45 +Wrong resource type! +Looking for $%x #%d +\\; E_LOAD_ERROR +\\46 +Load error: %s +RETURN continues +ESC quits +\\; E_MAX_SERVE +\\47 +Maximum number of servers exceeded. + +\\; E_NO_DEBUGGER +\\48 +No Dubugger Available. +\\; E_NO_MINHUNK +\\49 +Error: minHunk value is MISSING in your "%s" file. +Example: minHunk = 100k + +\\; E_NO_MEMORY +\\50 +You need %U more bytes of free memory available to run this game. +If you have any resident software loaded please remove it and try again. +\\; E_CONF_STORAGE +\\51 +Out of configuration storage. +\\; E_BAD_PIC +\\52 +Bad picture code +\\; E_NO_HUNK_RES +\\53 +Out of hunk +loading %s +\\; E_NO_RES_USE +\\54 +could not open resource use log file "%s" + +\\; E_NO_HUNK_USE +\\55 +could not open hunk use log file "%s" + +\\; E_ARM_READ +\\56 +ARM read error +\\; E_ARM_HANDLE +\\57 +ARM handle < 0 +\\; E_NO_WHERE +\\58 +Can't find a 'where' file. +\\; E_VIEW +\\59 +%s View: %d Loop: %d Cel: %d + +\\; E_EXPLODE +\\60 +Error on Explode +\\; E_BUILD_LINE +\\61 +Build Line Error +\\; E_MIRROR_BUILD +\\62 +Mirror Line Error +\\; E_EAT_LINE +\\63 +Eat Line Error +\\; E_LINE_LENGTH +\\64 +Invalid Line Length +\\; E_BAD_RECT +\\65 +INVALID RECTANGLE! +\\; E_AUDIOSIZE +\\66 + +Error: invalid value in your "%s" file: +audioSize = %s + +\\; E_BAD_MINHUNK +\\67 +Error: minHunk was not specified IN KILOBYTES in your "%s" file. +Example: minHunk = 100k + +\\; E_EXT_MEM +\\68 +ExtMem error %d +\\; E_POLY_AVOID +\\69 +Poly Avoider generated too large of path! +\\; E_POLY_MERGE +\\70 +Poly Merge generated too large of path! +\\; E_MAX_PATCHES +\\71 +Too many patches! +\\; E_MAX_POINTS +\\72 +Too many Points! +\\; E_AVOID +\\73 +Poly Avoider internal error! +\\; E_DRAWPIC +\\74 +DrawPic - Not Enough Hunk. +\\; E_FILL +\\75 +Overran stack in Fill. +\\; E_SAVEBITS +\\76 +SaveBits - Not Enough Hunk. +\\; E_NO_NIGHT_PAL +\\77 +Night Palette Not Found! +\\; E_MAGNIFY_FACTOR +\\78 +Magnification factor out of range +\\; E_MAGNIFY_CEL +\\79 +Invalid Magnification Cel Type +\\; E_MAGNIFY_SIZE +\\80 +Invalid Source view size or destination port size for magnification factor +\\; E_BAD_LANG +\\81 +%d is not a supported language code +\\; E_NO_HEAP +\\82 +Out of heap space. +\\; E_HEAP_ALLOC +\\83 +Zero Heap Allocation Request. +\\; E_HUNK_ALLOC +\\84 +Zero Hunk Allocation Request. +\\; E_NO_HUNK_SPACE +\\85 +Out of hunk space. +\\; E_RET_HUNK +\\86 +Returning free hunk! +\\; E_ADDMENU +\\87 +AddMenu not supported. +\\; E_DRAWMENU +\\88 +DrawMenuBar not supported. +\\; E_SETMENU +\\89 +SetMenu not supported. +\\; E_GETMENU +\\90 +GetMenu not supported. +\\; E_MENUSELECT +\\91 +MenuSelect not supported. +\\; E_MESSAGE +\\92 +Invalid Message() function: %d +\\; E_BRESEN +\\93 +bresen failed! +\\; E_BAD_PALETTE +\\94 +Invalid Palette +\\; E_DISPOSED_SCRIPT +\\95 +Executing in disposed script number %d. +\\; E_SCALEFACTOR +\\96 +Divide by zero in GetNewScaleFactors +\\; E_NO_HEAP_MEM +\\97 +Can't allocate heap. +\\; E_TEXT_PARAM +\\98 +Invalid parameter following text code: |%c%c +\\; E_TEXT_COLOR +\\99 +Color index out of range: |c%d| +\\; E_TEXT_FONT +\\100 +Font index out of range: |f%d| +\\; E_TEXT_CODE +\\101 +Invalid text code: |%c +\\; E_ZERO_SIZE +\\102 +Zero size received +\\; E_FREE_PAGES +\\103 +Free pages error (< 0) +\\; E_BAD_HANDLE_OUT +\\104 +Bad handle returned +\\; E_BAD_HANDLE +\\105 +Bad handle +\\; E_MAX_PAGES +\\106 +Too many pages free +\\; E_OPEN_WINDOW +\\107 +Can't open window. +\\; E_XMM_READ +\\108 +XMS read error: %x +len %d src %d dst %d +\\; E_XMM_WRITE +\\109 +XMS write error: %x +len %d src %d dst %d +\\; E_PANIC_INFO +\\110 + +Script #: %d, IP: %x + +\\; E_CONFIG_STORAGE +\\111 +Out of configuration storage. +\\; E_CONFIG_ERROR +\\112 +Config file error: no '%c' in '%s' +\\; E_BADMSGVERSION +\\113 +Message file has not been updated to version 4. +\\; E_MSGSTACKOVERFLOW +\\114 +Message stack overflow: references are nested beyond %d levels +\\; E_SAMPLE_IN_SND +\\115 +Detected Sample data in *.SND file. +\\; E_MSGSTACKSTACKOVERFLOW +\\116 +Message stack stack overflow: stacks are stacked beyond %d levels +\\; E_MSGSTACKSTACKUNDERFLOW +\\117 +Mismatched (Message MsgPop) +\\900 +Suspend. +\\901 +Pause. +\\902 +Play. + +\\; E_ + \ No newline at end of file diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/LAURT.BMP b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/LAURT.BMP new file mode 100644 index 0000000..a9fa07c Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/LAURT.BMP differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/README b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/README new file mode 100644 index 0000000..4198d19 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/README @@ -0,0 +1,70 @@ + + Welcome to + + "Laura Bow in The Dagger of Amon Ra" + + +Thank you for purchasing this game. This file includes +information on memory requirements, recommendations, and +any changes made since the game manual went to print. + +Also included are notes on TSN - the exciting new network +for your PC! + + +NOTE: + + You may play The Dagger of Amon Ra CD directly from the CD + by typing RA [parameter] from your CD-ROM drive where + [parameter] is one of the following configurations: + + + SB = SoundBlaster sound & audio + MT = MT-32 sound/SoundBlaster audio + PRO = ProAudio sound & audio + STD = Standard PC speaker sound/SoundBlaster audio + THN = ThunderBoard sound & audio + GEN = General MIDI sound/SoundBlaster audio + + + This option will not write anything to your hard disk, but + you may experience an increase in the frequency of audio + cutouts and a general slowdown due to the significant amount + of CD ROM access. This will be more noticeable on slower CD ROM + drives and on slower 386 based systems. + + +MEMORY REQUIREMENTS: + + The minimum amount of conventional memory needed to run + The Dagger of Amon Ra is 586k or 600,064 bytes. If you do + not have enough free memory, you may wish to select the + "Make a Boot Disk" option from the INSTALL main menu. + + +RECOMMENDATIONS: + + If you experience audio cutouts during the game you might need + to alter the audio buffer size of the MSCDEX driver located in + your AUTOEXEC.BAT file. You can do this by adjusting the + /m:AUDIOSIZE parameter. We recommend that this value (AUDIOSIZE) + be set to at least 10. If you experience slow movement or audio + cutouts consistently, you may wish to lower the size of this buffer. + + If you have problems running this game at our minimal memory + requirements, try one of two things. For Dos, in the file resource.cfg, + change the AudioSize = 32k to AudioSize = 20k. For Windows, in the file + sierra.ini, change the audiobuffs = 4 to audiobuffs = 3. + +INSTALLING OR UPGRADING TSN: + + For information on installing TSN see the READ.ME file in the + TSN directory. + + + + + + + + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.000 b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.000 new file mode 100644 index 0000000..6ff8886 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.000 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.AUD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.AUD new file mode 100644 index 0000000..c7a1888 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.AUD differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.CFG b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.CFG new file mode 100644 index 0000000..28a0119 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.CFG @@ -0,0 +1,7 @@ + videoDrv = VGA320.DRV + kbdDrv = IBMKBD.DRV + audioSize = 32k + directory = \SIERRA\LB2 + minHunk = 206K + cd = yes + patchDir=.\patch diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.GEN b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.GEN new file mode 100644 index 0000000..2ded513 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.GEN @@ -0,0 +1,9 @@ + videoDrv = VGA320.DRV + soundDrv = GENMIDI.DRV + audioDrv = AUDBLAST.DRV + joyDrv = NO + kbdDrv = IBMKBD.DRV + mouseDrv = STDMOUSE.DRV + audioSize = 32k + minHunk = 200K + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.MAP b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.MAP new file mode 100644 index 0000000..9244be6 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.MAP differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.MT b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.MT new file mode 100644 index 0000000..6721831 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.MT @@ -0,0 +1,9 @@ + videoDrv = VGA320.DRV + soundDrv = MT32.DRV + audioDrv = AUDBLAST.DRV + joyDrv = NO + kbdDrv = IBMKBD.DRV + mouseDrv = STDMOUSE.DRV + audioSize = 32k + minHunk = 200k + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.PRO b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.PRO new file mode 100644 index 0000000..6b91c05 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.PRO @@ -0,0 +1,9 @@ + videoDrv = VGA320.DRV + soundDrv = PROAUDIO.DRV + audioDrv = AUDPRO.DRV + joyDrv = NO + kbdDrv = IBMKBD.DRV + mouseDrv = STDMOUSE.DRV + audioSize = 32k + minHunk = 200k + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.SB b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.SB new file mode 100644 index 0000000..10cd5e4 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.SB @@ -0,0 +1,9 @@ + videoDrv = VGA320.DRV + soundDrv = ADL.DRV + audioDrv = AUDBLAST.DRV + joyDrv = NO + kbdDrv = IBMKBD.DRV + mouseDrv = STDMOUSE.DRV + audioSize = 32k + minHunk = 200k + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.STD b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.STD new file mode 100644 index 0000000..af78221 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.STD @@ -0,0 +1,9 @@ + videoDrv = VGA320.DRV + soundDrv = STD.DRV + audioDrv = AUDBLAST.DRV + joyDrv = NO + kbdDrv = IBMKBD.DRV + mouseDrv = STDMOUSE.DRV + audioSize = 32k + minHunk = 200k + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.THN b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.THN new file mode 100644 index 0000000..d5a6ad6 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/RESOURCE.THN @@ -0,0 +1,9 @@ + videoDrv = VGA320.DRV + soundDrv = ADL.DRV + audioDrv = AUDTHUND.DRV + joyDrv = NO + kbdDrv = IBMKBD.DRV + mouseDrv = STDMOUSE.DRV + audioSize = 32k + minHunk = 200k + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/SIERRA.BMP b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/SIERRA.BMP new file mode 100644 index 0000000..6a692ab Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/SIERRA.BMP differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/SIERRA.INI b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/SIERRA.INI new file mode 100644 index 0000000..5518422 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/SIERRA.INI @@ -0,0 +1,8 @@ +[info] +title = Laura Bow 2 +sound1000 = FALSE +cursorview = true +audiobuffs = 4 +patchpath = patch + + diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/TITLE.BMP b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/TITLE.BMP new file mode 100644 index 0000000..1a94997 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/TITLE.BMP differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/VERSION b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/VERSION new file mode 100644 index 0000000..4aea5d7 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/VERSION @@ -0,0 +1 @@ +1.1 diff --git a/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/SAVES/saves b/laurabow2-stream-obs-scummvm_autoscene/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/SAVES/saves new file mode 100644 index 0000000..e69de29 diff --git a/laurabow2-stream-obs-scummvm_autoscene/imgs/wallpaper01.jpg b/laurabow2-stream-obs-scummvm_autoscene/imgs/wallpaper01.jpg new file mode 100644 index 0000000..3c679c3 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/imgs/wallpaper01.jpg differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/notes/rooms.txt b/laurabow2-stream-obs-scummvm_autoscene/notes/rooms.txt new file mode 100644 index 0000000..2be6966 --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/notes/rooms.txt @@ -0,0 +1,14 @@ +105 - Sierra online +100 - Menú del juego +26 - Acto 1 - Laura Bow en busca de la noticia +230 - Oficina New York Daily Register News Tribune. Le falta una melodía de fondo. Y sonido fx de oficina +210 - Calle. Entrada a el tribune +250 - Interior del taxi. El taxista se llama Rocco +280 - Calle. Entrada de la comisaria de Policia +290 - Entrada de la comisaria. Ya dentro. +240 - Los muelles +260 - Lavanderia interior. +270 - Calle. Entrada a lavanderia +330 - Calle. Entrada del museo +335 - Puerta de entrada del museo +300 - Calle. Entrada floristeria diff --git a/laurabow2-stream-obs-scummvm_autoscene/sounds/sound_track_complete.mp4 b/laurabow2-stream-obs-scummvm_autoscene/sounds/sound_track_complete.mp4 new file mode 100644 index 0000000..a6322f4 Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/sounds/sound_track_complete.mp4 differ diff --git a/laurabow2-stream-obs-scummvm_autoscene/start.sh b/laurabow2-stream-obs-scummvm_autoscene/start.sh new file mode 100755 index 0000000..c28361c --- /dev/null +++ b/laurabow2-stream-obs-scummvm_autoscene/start.sh @@ -0,0 +1,43 @@ +#!/bin/bash +# Dependencies: obs-cli,scummvm, ... + +# Scumm vars +scummvm="/usr/games/scummvm" +subs="--subtitles" +fullScreen="--no-fullscreen" +debugLevel="--debuglevel=3" +debugFlag="--debugflags=room" +outFile="/tmp/.debugScummvm.txt" +detect="--auto-detect" +gameDir="--path=$(dirname $0)/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/RA/" +saveDir="--savepath=$(dirname $0)/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/SAVES" +extraDir="--extrapath=$(dirname $0)/game/Laura_Bow_II-Laura_Bow_in_The_Dagger_of_Amon_Ra/EXTRAS" + +# Obs-cli vars +obsCli="/usr/local/go/bin/obs-cli" +obsHost="--host localhost" +obsPort="--port 4444" +obsPasswd="--password lapasswordquetengas" + +# Script vars +skipAutoSwitch="$1" # --just-debug + +function main() { + startScummvmDebugRoom + if [ "$skipAutoSwitch" != "--just-debug" ]; then obsSceneAutoSwitch ; fi +} + +function startScummvmDebugRoom () { + $scummvm $subs $fullScreen $debugLevel $debugFlag $detect $gameDir $saveDir $extraDir | tee $outFile | grep -i room & +} + +function obsSceneAutoSwitch() { + while : + do + room=$(cat $outFile | grep -i "Entering room number " | tail -1 | rev | cut -d " " -f 1 | rev) + if [ "$room" == "$room" ]; then $obsCli $obsHost $obsPort $obsPasswd scene switch $room >/dev/null 2>&1 ; fi + sleep 1 + done +} + +main diff --git a/laurabow2-stream-obs-scummvm_autoscene/videos/video_explicando_el_script.mkv b/laurabow2-stream-obs-scummvm_autoscene/videos/video_explicando_el_script.mkv new file mode 100644 index 0000000..fb4764e Binary files /dev/null and b/laurabow2-stream-obs-scummvm_autoscene/videos/video_explicando_el_script.mkv differ diff --git a/madrina/README.md b/madrina/README.md new file mode 100644 index 0000000..b430dca --- /dev/null +++ b/madrina/README.md @@ -0,0 +1,12 @@ +# madrina + +
+# apt install git toot
+# adduser madrinabot
+# su - madrinabot
+$ mkdir bots
+$ cd bots
+$ git clone http://git.56k.es/fanta/madrina
+$ crontab -e
+00 12 * * * /bin/bash /home/madrinabot/bots/madrina/madrinabot.sh
+
diff --git a/madrina/contenido.txt b/madrina/contenido.txt new file mode 100644 index 0000000..978d9b3 --- /dev/null +++ b/madrina/contenido.txt @@ -0,0 +1,58 @@ +🌟 - ¡Pero si pregunto y nadie me responde!\n\nPueden estar pasando varias cosas, para empezar...\n\n1.-¿Cuantos seguidores tienes?. Si tienes tres seguidores y dos son bots es como hablar en una sala vacía\n2.-¿Has probado a interpelar a alguien directamente? Como en la vida real, si te plantas en una plaza, y hablas solo sin dirigir la mirada a nadie... estás hablando solo. Prueba a mencionar a alguien. Ej. @fanta@mastodon.madrid\n3.- Añadir Hashtags hace más fácil leerte y la búsqueda +🌟 - Hilos : Al igual que otras redes sociales puedes crear hilos, permiten agrupar mensajes que tienen una coherencia interna.\n\nLos hilos favorecen la lectura y transmitir ideas más complejas. Escribe un primer mensaje, publícalo. Y clicka el botón de "reply", que es una flechita que gira para arriba. +🌟 ¡Me siento como un pulpo en un garaje! 🐙 😕\n\nEs normal, todas nos sentimos así al principio. Las redes libres son complejas, pero merecen la pena.\n\nDate un tiempo para aprender y no dudes en preguntar. +🌟 - ¿Cuáles son las normas? ¿Puedo hacer A, B, C...?.\n\nMira en las normas de tu nodo, cada nodo tiene unas normas de comportamiento.\n\nEs buena idea echarles un vistazo antes de unirte, para encontrar la comunidad donde encajas mejor. +🌟 - Soy un tuitstar, y tengo miles de seguidores en esta red. ¿Porque no son mis mensajes tan favoriteados como en otras redes?\n\nPorque en las redes libres todo el mundo tiene la misma voz.\n\nEn redes privativas como Twitter, Facebook o Instagram las personas que tienen más seguidores son impulsadas por el algoritmo.\n\n Si tienen 10.000 seguidores llegan a ese público y además a más gente.\n\nDe mismo modo las personas con pocos seguidores son invisibilizadas.\n\n Si tienen 100 seguidores ni siquiera son vistos por esos 100. +🌟 - Soy un tuitstar. Al igual que allí, me siguen 10.000 personas y yo no sigo a nadie.\n\n¿Es correcto?\n\nNo, en las redes libres ese comportamiento está mal visto. Es entendido como un ejemplo de ego desmedido y que quieres hablar pero no escuchar a nadie. Si eres un loro puedes comprarte un espejo y hablar loro. ¡Turrutuituit tuit tuit! +🌟 - Para empezar es buena idea seguir a bastantes cuentas (100 aprox).\n\nUn comportamiento habitual entre quienes no llegan a cuajar en estas redes es que solo siguen a 3 personas.\n\nCuanta más gente sigas mas conversación escucharás, y posibilidad de interaccionar.\n\nSi luego no te interesa lo que dicen puedes dejar de seguirlos. +🌟 - Te puedes meter en conversaciones ajenas siempre que lo hagas con respeto.\n\nAunque no conozcas a la persona, si el tema te interesa puedes participar libremente de ella.\n\nYa será la persona libre de rechazar la conversación si quiere. +🌟 - Existe la opción de hacer la cuenta privada, de modo que apruebes manualmente si quieres ser seguida o no.\n\nPincha en Preferencias (Preferences) > Editar Perfil (Edit Profile) > Cerrar Cuenta (Lock account) +🌟 - ¿Puedo utilizar esta red en mi móvil?\n\n¡Claro! Existen aplicaciones específicas para móviles.\n\nExiste la oficial y de terceros. Alguna de las más conocidas son Tusky, Amarok o Fedilab. Mira aquí: https://joinmastodon.org/apps +🌟 - 📌 Fijar Mensajes. Te permite destacar un mensaje que consideres importante para que sea lo primero que vea la gente. +🌟 - 📌 Puedes desfijar mensajes. Y cambiar ese mensaje cuando quieras, simplemente vuelve a clickar en ese símbolo. +🌟 - Cada vez que escribo un mensaje nombro a 20 cuentas.\n\n¿Es correcto?\n\nA menos que sepas que esas personas están realmente interesadas en tu contenido es aconsejable no abusar de ese comportamiento.\n\nSe puede interpretar como SPAM. +🌟 - ¿Has pensado en el coste ecológico de tus comportamientos digitales?. 🌍\n\nLos datos que generas no son entes incorpóreos, necesitan ser almacenados en maquinas que consumen recursos energéticos (y tiene un coste económico y humano).\n\nCada imagen de un gatito que subes o veas tiene una huella ecológica.\n\nQue no la veas no quiere decir que no exista.\n\nPuedes echar un vistazo a la obra de Joana Moll para verlo: http://www.janavirgin.com/CO2/ +🌟 - Esto no lo mantienen duendes.\n\nLo mantienen administradoras, moderadoras y desarrolladoras que se dedican a esto por activismo.\n\nPero tiene un coste económico y humano, que generalmente corre a su cuenta.\n\nEs necesario valorar el trabajo de estas labores reproductivas invisibilizadas. +🌟 - ¿Qué es josear?.\n\nConsiste en repetir el mensaje de alquien anterior, añadiendo que fue dicho por un personaje histórico.\n\nSi vas a hacerlo, comprueba que la persona puede entenderlo como broma. Porque este mismo comportamiento, cuando se hace en masa contra alguien puede ser considerado acoso. Además, puede cortar la conversación porque la gente ya no sabe cuando los demás hablan en serio o solo es ruido. En varios nodos está prohibido este comportamiento. En Mastodon.Madrid te recordamos que hacerlo como acoso va contra las normas del nodo. Puedes añadirte el icono de :nojoseo: para indicar que no quieres que te joseen. +🌟 - ¿Porqué la gente indica los pronombres con los que prefiere ser llamado?.\n\nEstas redes libres intentan ser inclusivas, y apoyar las identidades diversas.\n\nEs mejor no suponer el género de alguien y por eso se indica como prefiere ser nombrado.\n\nEs un pequeño gesto para ti, pero un gran gesto de respeto para la otra persona +🌟 - Conozco el nombre de nacimiento de alguien, que ha transicionado y ahora prefiere ser nombrado con otro nombre. Lo utilizo en una conversación de manera consciente. ¿Es correcto?\n\nNo, es totalmente incorrecto.\n\nUtilizar el deadname de alguien es considerado un comportamiento de odio, y en estas redes no son bien recibidas los comportamientos tránsfobos.\n\nY los comportamientos tránsfobos incumplen las normas de conducta de la mayoría de los nodos. +🌟 - ¿Es lo mismo un nodo que una instancia?\n\nSí, es lo mismo. +🌟 - Twitter es gratis, Mastodon también. ¿En que se diferencian?.\n\nEn Twitter pagabais con vuestra privacidad, con admitir vuestra censura, por permitir que fuerais manipulados, y por vender vuestros datos a empresas.\n\nY detrás había corporaciones con grandes instalaciones, capital y miles de trabajadores.\n\nAquí es gratis.... porque las #admin que lo llevan son activistas de los derechos digitales.\n\nPonen su mano de obra y recursos de su bolsillo.\n\nValora su trabajo. +🌟 ¿Qué es la línea de inicio?\n\nEs la línea de gente a la que sigues.\n\nCon la excepción de gente a la que tienes silenciada o bloqueada. +🌟 ¿Qué es la línea local?. Es la línea de mensajes de toda la gente de tu propio nodo/instancia. +🌟 ¿Qué es la línea federada? Es la línea de mensajes de otros nodos/instancias.\nEj. Mastodon.madrid o mastodon.social son instancias distintas.\n\nTambién incluyen otros protocolos como Pleroma, etc. +🌟 - Soy una empresa, ¿Puedo estar en Mastodon?.\n\nDepende del nodo, consulta si cumples las normas y ante la duda consulta antes al/a la admin. Pero ya seas Multinacional .Corp o Fruterías Paco no tendrás más derechos o información que un usuario corriente del nodo. Serás una más +🌟 - Soy una empresa, ¿cómo puedo obtener los datos de los usuarios de la red para poder personalizar anuncios o enviar propaganda política?.\n\nBilly, te has equivocado de pueblo.\n\nEn las redes libres los pilares básicos son el conocimiento libre, la soberanía tecnológica y la privacidad.\n\nPrecisamente los usuarios están aquí porque valoran su privacidad. +🌟 - ¿Puedo hacer shitposting?.\nEl shitposting es una forma de rebajar el contenido de una conversación y comunidad, impide debates profundos y suele crear malestar.\n\nComprueba las normas de tu nodo, si lo permiten adelante.\n\nMuchos otros nodos bloquearán el shitposting +🌟 - ¿Porqué habláis de libre? Ej, Software Libre, Redes Libres o Conocimiento Libre.\n\nEs un concepto que proviene del software libre y fue acuñado por Richar Stallman.\n\nUn software es libre si otorga a los usuarios de manera adecuada las denominadas cuatro libertades: libertad de usar, estudiar, distribuir y mejorar, de lo contrario no se trata de software libre. +🌟 - ¿Qué es hacer favorito? La ⭐ es el símbolo que significa que te ha gustado el mensaje. Lo recibe la persona que ha escrito el mensaje. Equivale en otras redes al Me gusta, o Like.\n\nCada nodo puede tener una expresión para este gesto.\n\nTambién es una manera de dar consentimiento para seguir con la conversación +🌟 - ¡Tooot! Es como se llama a escribir un mensaje.\n\nPor tanto, escribir aquí no se dice tuitear sino totear. +🌟 - ¿Qué es un mensaje directo (Direct Message)?\n\nEs un mensaje que recibes o envías y es privado, solo podéis verlos tú y el receptor. No sale en la línea pública. Ten cuidado porque algunos bugs pueden hacer que esos mensajes sean visibles desde las líneas federadas de otros nodos. De modo que busca otro tipo de canal cifrado si quieres tener una conversación realmente privada. +🌟 - ¿Porqué no me pedís datos personales al registrarme?.\n\nPorque no nos interesa traficar con tus datos. +🌟 - Me han dicho que las redes libres es cosa de frikis y sólo habláis de tecnología. Dile a tu cuñado que deje de chupar cabezas de gambas que son tóxicas. +🌟 Las redes libres están basadas en código libre y mantenidas por activistas del conocimiento libre.\n\nEstos temas son nuestra pasión, trabajo y activismo.\n\nPero también nos interesan multitud de temas, desde hacer pan, aprender lenguas o hablar de literatura. +🌟 - ¿Cuál es el límite de caracteres?\n\nCambia según nodo.\n\nPor ejemplo en mastodon.madrid o mastondon.madrid es límite es 500 caracteres. ¡Wow! +🌟 - ¿Y ese elefante? ¡Nuestra mascota!.\n\n¡Toot! es el ruido que hace al barritar +🌟 - ¿Qué control tengo sobre el contenido que veo?.\n\n Bastante, puedes bloquear temas de conversación según su hashtag, silenciar y bloquear usuarios.\n\nBloquear nodos enteros y elegir qué haces con el CW (Content Warning).\n\n Y +\n\nhttps://docs.joinmastodon.org/user/moderating +🌟 - ¿Puedo bloquear un nodo entero?.\n\nSí, como usuario tienes las posibilidad de bloquear un nodo entero, ej. Un nodo nazi como GAB\n\nhttps://docs.joinmastodon.org/user/moderating#hiding-an-entire-server +🌟 - ¿Qué es bloquear a un usuario?.\n\nEs dejar de ver y que te vea el usuario.\n\nMejor explicado por aquí: https://docs.joinmastodon.org/user/moderating#blocking +🌟 - ¿Que es silenciar a un usuario?\n\nEs dejar de ver su contenido, y el usuario no lo sabrá.\n\nMejor explicado por aquí: https://docs.joinmastodon.org/user/moderating#blocking +🌟 - ¿Que es silenciar las réplicas?.\n\nSilenciar las réplicas o boost que te hace alguien en concreto. +🌟 - ¿Puedo bloquear a un grupo de usuarios, decir que son XXX, y difundir esa lista animando a que otros bloqueen?.\n\nSi bien eres libre de bloquear usuarios, hacer acusaciones sin pruebas y compartirlo puede ser interpretado como incitación al odio y difamación.\n\nY es el tipo de conducta tóxica que no queremos favorecer en esta red.\n\nYa existen mecanismos estructurales de moderación a nivel de nodo. +🌟 - ¿Puedo coger una captura de pantalla del toot de otra persona y compartirlo con mi grupo de amigues diciendo mira que XXX es esta persona?.\n\nPese a que este es un comportamiento frecuente en Twitter, es considerado un comportamiento tóxico.\n\nHablar mal a las espaldas de alguien, sin derecho a réplica, y para crear más sentimiento de grupo es una mala manera de crear comunidad. +🌟 - ¿Puedo elegir qué contenido es visible?\n\nSí, puedes elegir el grado de privacidad de cada mensaje.\n\nPincha en el icono del planeta para cambiar el grado de visibilidad que eliges. +🌟 - ¿Que tipo de interacción puedo tener con alguien?.\n\nPuedes replicar, hacer favorito, guardar como marcadores o impulsar (reboost) el mensaje.\n\nhttps://docs.joinmastodon.org/user/network#interacting-with-peoples-posts +🌟 - He llegado aquí y no conozco a nadie, ¿A quien puedo seguir?\nPuedes buscar por hashtags los temas que te interesan, buscar en el directorio público, mirar en la etiqueta explorar, mirar contenido intersante en la línea local o federada o seguir indiscriminadamente y quedarte con quien te interese. +🌟- ¿Puedo migrar mis datos de una cuenta a otra de Mastodon?\n\nSí, puedes seguir las instrucciones aquí: https://docs.joinmastodon.org/user/moving +🌟 ¿Qué es Mastodon?\n\nVídeo: https://youtu.be/IPSbNdBmWKE +🌟 - ¿Puedo conectar con mi cuenta de Twitter y redirigir los mensajes de manera automatizada?\n\nClaro que puedes.\n\nPero estás hablando solo, no comunicándote.\n\nSi los demás no merecemos tu tiempo, quizás a los demás no nos merezca la pena tampoco escucharte.\n\nAlgunas instancias bloquean los bridge desde Twitter o similares. +🌟 - Ha habido un conflicto en el Fediverso, soy la persona afectada directamente.\n\n¿Cómo debo actuar?\n\nEn primer lugar, si es que otra persona ha incumplido una norma clara de tu nodo puedes reportar, revisa antes las normas.\n\nSi el asunto es más complejo, contacta con tu moderadora y admin para ver como resolverlo.\n\nLa gente suele tomar bandos, pide prudencia a tu bando para que no actúe de manera tóxica. +🌟 - Ha habido un conflicto en el Fediverso, no soy la persona afectada pero tomo bando. ¿Cómo debo actuar?\n\nPues siguiendo las normas habituales del nodo.\n\nCuando existe un conflicto la gente suele tomar bandos y actuar de manera impulsiva y en caliente.\n\nPiensa un poco antes de actuar y que tus comportamientos no tengan consecuencias negativas hacia otras personas.\n\nPiensa más en el apoyo emocional a quien puede haber sufrido, que el ataque al supuesto agresor.\n\nDate tiempo a la duda y a la posiblidad de una malinterpretación +🌟 - Ha habido un conflicto en el Fediverso, no me he enterado de nada pero quiero cotillear.\n\n¿Cómo debo actuar?\n\nSi no tienes información, cotillear sólo puede aumentar la desinformación, y causar más daño.\n\nLo que tu consideras salseo y como algo divertido puede estar haciendo daño de manera indirecta a terceros.\n\nCuando ha pasado un tiempo desde que pasó el conflicto, la información es más parecida a un teléfono escacharrado.\n\nPedir información correcta a varias fuentes es una buena opción. +🌟 - ¿Puedo borrar mis toots antiguos?\n\nSí, puedes borrar tus toots antiguos. Pero por temas técnicos de federación es posible que sigan flotando en otros nodos (backups, etc). +🌟 - ¿Puedo borrar de manera automatizada toots antiguos?. Sí, en versiones nuevas existe esa opción y es recomendable.\n\nRecuerda que los recursos de almacenamiento son limitados +🌟 - ¿Quien es el dueño del Fediverso?\n\nPues nadie, y todos.\n\nNo existe un dueño como tal, existe gente que escriben los códigos, admins en cada nodo, moderadores etc. Y si tienes los conocimientos técnicos puedes colaborar en alguna de esas partes. +🌟 - ¿Qué es el #fotocacho?\n\nEs una foto propia luciendo una parte de tu cuerpo.\n\nRecuerda poner un CW (Content Warning) si es un desnudo o puede herir la sensibilidad.\n\nEn ningún caso se permite que si ves un fotocacho ajeno te lo bajes y compartas fuera de aquí.\n\nLo que pasa en el Fediverso, se queda en el Fediverso ;) +🌟 - Sabemos que la empatía es difícil cuando al otro lado solo tienes un avatar, pero no por ello es menos necesaria.\n\nPor ello debemos ejercitar de manera consciente la empatía en todas nuestras interacciones digitales. +🌟 - Alguien ha escrito algo, ¿Será un gilipollas?.\n\nPues puede, pero recuerda que sin contexto es fácil malinterpretar.\n\nPregunta e informate antes de emitir un jucio de valor. +🌟 - Yo me he comportado como un gilipollas. ¿Ahora que hago?\n\nPues todos nos equivocamos, y tenemos derecho a hacerlo.\n\nPrueba a pedir perdón, y sugerir la reparación que la otra persona necesite.\n\nSi el medio escrito no es el adecuado y conlleva ruido en la comunicación busca una llamada, conferencia o un café.\n\nEn persona nos entendemos mejor :) diff --git a/madrina/madrinabot.sh b/madrina/madrinabot.sh new file mode 100644 index 0000000..f978013 --- /dev/null +++ b/madrina/madrinabot.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# http://git.56k.es/fanta/madrina +# apt install git toot +# Crea una cuenta, haz primero toot login. Luego ya mete en crontab cuando quieres que se ejecute. +git pull +contenido="/home/madrinabot/bots/madrina/contenido.txt" +msg="/tmp/.msg.txt" +shuf -n 1 $contenido > $msg +echo -e $(cat $msg) | toot post diff --git a/minetest/LICENSE b/minetest/LICENSE new file mode 100644 index 0000000..bd405af --- /dev/null +++ b/minetest/LICENSE @@ -0,0 +1,163 @@ +GNU LESSER GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +This version of the GNU Lesser General Public License incorporates the terms +and conditions of version 3 of the GNU General Public License, supplemented +by the additional permissions listed below. + + 0. Additional Definitions. + + + +As used herein, "this License" refers to version 3 of the GNU Lesser General +Public License, and the "GNU GPL" refers to version 3 of the GNU General Public +License. + + + +"The Library" refers to a covered work governed by this License, other than +an Application or a Combined Work as defined below. + + + +An "Application" is any work that makes use of an interface provided by the +Library, but which is not otherwise based on the Library. Defining a subclass +of a class defined by the Library is deemed a mode of using an interface provided +by the Library. + + + +A "Combined Work" is a work produced by combining or linking an Application +with the Library. The particular version of the Library with which the Combined +Work was made is also called the "Linked Version". + + + +The "Minimal Corresponding Source" for a Combined Work means the Corresponding +Source for the Combined Work, excluding any source code for portions of the +Combined Work that, considered in isolation, are based on the Application, +and not on the Linked Version. + + + +The "Corresponding Application Code" for a Combined Work means the object +code and/or source code for the Application, including any data and utility +programs needed for reproducing the Combined Work from the Application, but +excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + +You may convey a covered work under sections 3 and 4 of this License without +being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + +If you modify a copy of the Library, and, in your modifications, a facility +refers to a function or data to be supplied by an Application that uses the +facility (other than as an argument passed when the facility is invoked), +then you may convey a copy of the modified version: + +a) under this License, provided that you make a good faith effort to ensure +that, in the event an Application does not supply the function or data, the +facility still operates, and performs whatever part of its purpose remains +meaningful, or + +b) under the GNU GPL, with none of the additional permissions of this License +applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + +The object code form of an Application may incorporate material from a header +file that is part of the Library. You may convey such object code under terms +of your choice, provided that, if the incorporated material is not limited +to numerical parameters, data structure layouts and accessors, or small macros, +inline functions and templates (ten or fewer lines in length), you do both +of the following: + +a) Give prominent notice with each copy of the object code that the Library +is used in it and that the Library and its use are covered by this License. + +b) Accompany the object code with a copy of the GNU GPL and this license document. + + 4. Combined Works. + +You may convey a Combined Work under terms of your choice that, taken together, +effectively do not restrict modification of the portions of the Library contained +in the Combined Work and reverse engineering for debugging such modifications, +if you also do each of the following: + +a) Give prominent notice with each copy of the Combined Work that the Library +is used in it and that the Library and its use are covered by this License. + +b) Accompany the Combined Work with a copy of the GNU GPL and this license +document. + +c) For a Combined Work that displays copyright notices during execution, include +the copyright notice for the Library among these notices, as well as a reference +directing the user to the copies of the GNU GPL and this license document. + + d) Do one of the following: + +0) Convey the Minimal Corresponding Source under the terms of this License, +and the Corresponding Application Code in a form suitable for, and under terms +that permit, the user to recombine or relink the Application with a modified +version of the Linked Version to produce a modified Combined Work, in the +manner specified by section 6 of the GNU GPL for conveying Corresponding Source. + +1) Use a suitable shared library mechanism for linking with the Library. A +suitable mechanism is one that (a) uses at run time a copy of the Library +already present on the user's computer system, and (b) will operate properly +with a modified version of the Library that is interface-compatible with the +Linked Version. + +e) Provide Installation Information, but only if you would otherwise be required +to provide such information under section 6 of the GNU GPL, and only to the +extent that such information is necessary to install and execute a modified +version of the Combined Work produced by recombining or relinking the Application +with a modified version of the Linked Version. (If you use option 4d0, the +Installation Information must accompany the Minimal Corresponding Source and +Corresponding Application Code. If you use option 4d1, you must provide the +Installation Information in the manner specified by section 6 of the GNU GPL +for conveying Corresponding Source.) + + 5. Combined Libraries. + +You may place library facilities that are a work based on the Library side +by side in a single library together with other library facilities that are +not Applications and are not covered by this License, and convey such a combined +library under terms of your choice, if you do both of the following: + +a) Accompany the combined library with a copy of the same work based on the +Library, uncombined with any other library facilities, conveyed under the +terms of this License. + +b) Give prominent notice with the combined library that part of it is a work +based on the Library, and explaining where to find the accompanying uncombined +form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU Lesser 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 Library as you +received it specifies that a certain numbered version of the GNU Lesser General +Public License "or any later version" applies to it, you have the option of +following the terms and conditions either of that published version or of +any later version published by the Free Software Foundation. If the Library +as you received it does not specify a version number of the GNU Lesser General +Public License, you may choose any version of the GNU Lesser General Public +License ever published by the Free Software Foundation. + +If the Library as you received it specifies that a proxy can decide whether +future versions of the GNU Lesser General Public License shall apply, that +proxy's public statement of acceptance of any version is permanent authorization +for you to choose that version for the Library. diff --git a/minetest/README.md b/minetest/README.md new file mode 100644 index 0000000..786df03 --- /dev/null +++ b/minetest/README.md @@ -0,0 +1,3 @@ +# fastDeployment + +fast deployment files \ No newline at end of file diff --git a/minetest/debian.sh b/minetest/debian.sh new file mode 100644 index 0000000..a48fccd --- /dev/null +++ b/minetest/debian.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# fanta + +minetestUrlReleases="https://github.com/minetest/minetest/archive/refs/tags" +minetestVersion="5.4.1" +minetestUrlSourceCode="$minetestUrlReleases/$minetestVersion.tar.gz" +minetestDirTmp="/tmp/minetest-$minetestVersion.tar.gz" +minetestDirConfig="/etc/minetest" + +dependenciesDebian10="ca-certificates git postgresql postgresql-server-dev-11 curl libspatialindex-dev doxygen libbz2-dev gettext libirrlicht-dev luajit libluajit-5.1-dev libncurses-dev g++ make libc6-dev cmake libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev wget" +dependenciesDebian11="ca-certificates git postgresql postgresql-server-dev-13 curl libspatialindex-dev doxygen libbz2-dev gettext libirrlicht-dev luajit libluajit-5.1-dev libncurses-dev g++ make libc6-dev cmake libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev wget" + +main (){ + checkDebianVersion + updateSys + installDependencies +} + +isDebian() { + [ -f /etc/issue ] && debianVersion=$(grep "Debian" /etc/issue | cut -d " " -f 3) + haveProgram hostnamectl && debianVersion=$(hostnamectl | grep -i Debian | awk '{ print $5 }') + haveProgram lsb_release && debianVersion=$(lsb_release -a 2> /dev/null | grep Desc | grep Debian | awk '{ print $4}') + if [ $debianVersion == $1 ]; then echo "[+] Debian $debianVersion detected"; fi +} + +haveProgram() { + type $1 &> /dev/null +} + +checkDebianVersion() { + for i in {1..20}; do isDebian $i; done +} + +isOK (){ + if [ $? -eq 0 ] + then + echo -e "$taskName\e[32m [OK]\e[0m" + else + echo -e "$taskName\e[31m [NOTOK]\e[0m" + exit 1 + fi +} + +updateSys (){ + taskName="Update System"; echo -e "\n[+][$taskName]" + apt -qq update && apt -qq upgrade -y > /dev/null 2>&1 + isOK +} + +installDependencies (){ + taskName="Install dependencies"; echo -e "\n[+][$taskName]" + echo -e "$dependenciesDebian11" + apt -qq -y install $dependenciesDebian11 > /dev/null 2>&1 + isOK +} + +downloadMinetest (){ + taskName="Download Minetest source version $minetestVersion"; echo -e "\n[+][$taskName]" + wget -q "$minetestUrlSourceCode" -O $minetestDirTmp + isOK +} + + + +main diff --git a/minetest/minetest-server.sh b/minetest/minetest-server.sh new file mode 100644 index 0000000..aaa1d29 --- /dev/null +++ b/minetest/minetest-server.sh @@ -0,0 +1,104 @@ +#!/bin/bash +# Script para desplegar un servidor minetest sobre Debian 10 + +minetestUrlReleases="https://github.com/minetest/minetest/archive/refs/tags" +minetestVersion="5.4.1" +minetestUrlSourceCode="$minetestUrlReleases/$minetestVersion.tar.gz" +minetestDirTmp="/tmp/minetest-$minetestVersion.tar.gz" +minetestDirConfig="/etc/minetest" + +main (){ + updateSys + installDependencies + downloadMinetest + extractMinetest + compileMinetest + copyConfMinetestServer + downloadMinetest_game + downloadIkea_game + downloadRpgtest_game +} + +isOK (){ + if [ $? -eq 0 ] + then + echo -e "$taskName\e[32m [OK]\e[0m" + else + echo -e "$taskName\e[31m [NOTOK]\e[0m" + exit 1 + fi +} + +updateSys (){ + taskName="Update System"; echo -e "\n[+][$taskName]" + apt -qq update && apt -qq upgrade -y > /dev/null 2>&1 + isOK +} + +installDependencies (){ + taskName="Install dependencies"; echo -e "\n[+][$taskName]" + echo -e "git\npostgresql\npostgresql-server-dev-11\ncurl\nlibspatialindex-dev\ndoxygen\nlibbz2-dev\ngettext\nlibirrlicht-dev\nlibluajit-5.1-dev\nluajit\nlibncurses-dev\ng++\nmake\nlibc6-dev\ncmake\nlibpng-dev\nlibjpeg-dev\nlibxxf86vm-dev\nlibgl1-mesa-dev\nlibsqlite3-dev\nlibogg-dev\nlibvorbis-dev\nlibopenal-dev\nlibcurl4-gnutls-dev\nlibfreetype6-dev\nzlib1g-dev\nlibgmp-dev\nlibjsoncpp-dev\nwget" + apt -qq -y install git postgresql postgresql-server-dev-11 curl libspatialindex-dev doxygen libbz2-dev gettext libirrlicht-dev luajit libluajit-5.1-dev libncurses-dev g++ make libc6-dev cmake libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev wget > /dev/null 2>&1 + isOK +} + +downloadMinetest (){ + taskName="Download Minetest source version $minetestVersion"; echo -e "\n[+][$taskName]" + wget -q "$minetestUrlSourceCode" -O $minetestDirTmp + isOK +} + +extractMinetest (){ + taskName="Extract Minetest source version $minetestVersion"; echo -e "\n[+][$taskName]" + tar -xf $minetestDirTmp -C /tmp/ + isOK +} + +compileMinetest (){ + taskName="Compile Minetest source version $minetestVersion"; echo -e "\n[+][$taskName]" + cd /tmp/minetest-$minetestVersion + pwd + echo "Compiling in 3";sleep 1 + echo "Compiling in 2";sleep 1 + echo "Compiling in 1";sleep 1 + sleep 3 + cmake . -DRUN_IN_PLACE=FALSE -DBUILD_SERVER=TRUE -DBUILD_CLIENT=FALSE -DENABLE_REDIS=OFF -DENABLE_LEVELDB=OFF -DCMAKE_BUILD_TYPE=Release -DENABLE_CURL=ON -DENABLE_CURSES=ON -DENABLE_FREETYPE=ON -DENABLE_GETTEXT=ON -DENABLE_POSTGRESQL=ON -DENABLE_SPATIAL=ON -DENABLE_SOUND=ON -DENABLE_LUAJIT=ON -DENABLE_PROMETHEUS=OFF -DENABLE_SYSTEM_GMP=ON -DPostgreSQL_LIBRARY=/usr/lib/x86_64-linux-gnu/libpq.so.5 + make -j$(nproc) + make install + isOK +} + +copyConfMinetestServer (){ + taskName="Copy config file to $minetestDirConfig/"; echo -e "\n[+][$taskName]" + mkdir -p $minetestDirConfig + cp -pR /tmp/minetest-$minetestVersion/minetest.conf.example $minetestDirConfig/minetest.conf + isOK +} + +downloadMinetest_game (){ + taskName="Download example game. BASE GAME: minetest_game"; echo -e "\n[+][$taskName]" + rm -rf /usr/local/share/minetest/games/minetest_game + git clone https://github.com/minetest/minetest_game /usr/local/share/minetest/games/minetest_game + isOK +} + +downloadIkea_game (){ + taskName="Download Ikea game"; echo -e "\n[+][$taskName]" + rm -rf /usr/local/share/minetest/games/ikea + git clone https://gitlab.com/benrob0329/ikea.git /usr/local/share/minetest/games/ikea + isOK +} + +downloadRpgtest_game (){ + taskName="Download rpgtest game"; echo -e "\n[+][$taskName]" + rm -rf /usr/local/share/minetest/games/rpgtest + git clone https://github.com/cdqwertz/rpgtest /usr/local/share/minetest/games/rpgtest + isOK +} + +main + +echo -e "\n" +echo "To run the server. Examples:" +echo "minetestserver --config /etc/minetest/minetest.conf --world /usr/local/share/minetest/games/" +echo "minetestserver --config /etc/minetest/minetest.conf --gameid rpgtest" diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/LICENSE b/monkeyisland2-stream-obs-scummvm_autoscene/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/monkeyisland2-stream-obs-scummvm_autoscene/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/README.md b/monkeyisland2-stream-obs-scummvm_autoscene/README.md new file mode 100644 index 0000000..b3066c1 --- /dev/null +++ b/monkeyisland2-stream-obs-scummvm_autoscene/README.md @@ -0,0 +1,3 @@ +# MONKEYISLAND2-stream-obs-scummvm_autoScene + +Cambia automaticamente de escena en OBS mientras juegas a Monkey Island 2 con Scummvm. diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/EXTRAS/extras b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/EXTRAS/extras new file mode 100644 index 0000000..e69de29 diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ADLIB.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ADLIB.IMS new file mode 100644 index 0000000..7c94f5f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ADLIB.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/MONKEY2.000 b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/MONKEY2.000 new file mode 100644 index 0000000..171a208 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/MONKEY2.000 differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/MONKEY2.001 b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/MONKEY2.001 new file mode 100644 index 0000000..53966d1 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/MONKEY2.001 differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROLAND.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROLAND.IMS new file mode 100644 index 0000000..0f3d74d Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROLAND.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_330.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_330.IMS new file mode 100644 index 0000000..0f3d74d Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_330.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_332.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_332.IMS new file mode 100644 index 0000000..9b12ea9 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_332.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_334.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_334.IMS new file mode 100644 index 0000000..0013e84 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_334.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_336.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_336.IMS new file mode 100644 index 0000000..a6e4cbb Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/ROL_336.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/SOUNBLAS.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/SOUNBLAS.IMS new file mode 100644 index 0000000..22e99d5 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/SOUNBLAS.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/SPEAKER.IMS b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/SPEAKER.IMS new file mode 100644 index 0000000..70dfb8e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/SPEAKER.IMS differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/monkey2.s00 b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/monkey2.s00 new file mode 100644 index 0000000..032501a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/monkey2.s00 differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/SAVES/monkey2.s00 b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/SAVES/monkey2.s00 new file mode 100644 index 0000000..4e42836 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/SAVES/monkey2.s00 differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/SAVES/saves b/monkeyisland2-stream-obs-scummvm_autoscene/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/SAVES/saves new file mode 100644 index 0000000..e69de29 diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/1.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/1.png new file mode 100644 index 0000000..525631f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/1.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/10.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/10.png new file mode 100644 index 0000000..7425546 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/10.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/100.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/100.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/100.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/101.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/101.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/101.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/102.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/102.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/102.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/103.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/103.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/103.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/104.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/104.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/104.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/105.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/105.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/105.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/106.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/106.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/106.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/107.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/107.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/107.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/108.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/108.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/108.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/109.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/109.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/109.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/11.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/11.png new file mode 100644 index 0000000..029d35f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/11.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/110.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/110.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/110.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/12.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/12.png new file mode 100644 index 0000000..bfb8b2a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/12.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/13.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/13.png new file mode 100644 index 0000000..197cb01 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/13.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/14.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/14.png new file mode 100644 index 0000000..2c42e79 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/14.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/15.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/15.png new file mode 100644 index 0000000..99dacb6 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/15.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/16.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/16.png new file mode 100644 index 0000000..bbb5cce Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/16.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/17.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/17.png new file mode 100644 index 0000000..f06abc3 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/17.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/18.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/18.png new file mode 100644 index 0000000..ae1eb15 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/18.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/19.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/19.png new file mode 100644 index 0000000..e7779c3 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/19.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/2.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/2.png new file mode 100644 index 0000000..9770544 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/2.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/20.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/20.png new file mode 100644 index 0000000..db027b4 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/20.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/21.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/21.png new file mode 100644 index 0000000..82c347c Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/21.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/22.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/22.png new file mode 100644 index 0000000..e44571f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/22.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/23.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/23.png new file mode 100644 index 0000000..8373f54 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/23.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/24.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/24.png new file mode 100644 index 0000000..0aef720 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/24.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/25.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/25.png new file mode 100644 index 0000000..edab475 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/25.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/26.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/26.png new file mode 100644 index 0000000..d643cc1 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/26.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/27.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/27.png new file mode 100644 index 0000000..2276597 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/27.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/28.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/28.png new file mode 100644 index 0000000..4c34d69 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/28.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/29.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/29.png new file mode 100644 index 0000000..c9e9e3f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/29.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/3.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/3.png new file mode 100644 index 0000000..e5b1f1f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/3.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/30.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/30.png new file mode 100644 index 0000000..1598289 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/30.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/31.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/31.png new file mode 100644 index 0000000..74f85a3 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/31.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/32.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/32.png new file mode 100644 index 0000000..ee23aaa Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/32.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/33.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/33.png new file mode 100644 index 0000000..80a0d1f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/33.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/34.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/34.png new file mode 100644 index 0000000..b4d65c4 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/34.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/35.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/35.png new file mode 100644 index 0000000..f810b48 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/35.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/36.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/36.png new file mode 100644 index 0000000..5897004 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/36.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/37.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/37.png new file mode 100644 index 0000000..cb32b42 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/37.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/38.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/38.png new file mode 100644 index 0000000..5c55a11 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/38.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/39.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/39.png new file mode 100644 index 0000000..a22a2f2 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/39.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/4.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/4.png new file mode 100644 index 0000000..922f48a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/4.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/40.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/40.png new file mode 100644 index 0000000..9e2dcad Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/40.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/41.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/41.png new file mode 100644 index 0000000..80dba72 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/41.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/42.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/42.png new file mode 100644 index 0000000..2c0df1a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/42.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/43.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/43.png new file mode 100644 index 0000000..5658f27 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/43.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/44.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/44.png new file mode 100644 index 0000000..e15b9cf Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/44.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/45.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/45.png new file mode 100644 index 0000000..89708e6 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/45.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/46.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/46.png new file mode 100644 index 0000000..007b0bb Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/46.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/47.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/47.png new file mode 100644 index 0000000..e8fe0ed Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/47.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/48.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/48.png new file mode 100644 index 0000000..361b8f6 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/48.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/49.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/49.png new file mode 100644 index 0000000..789704c Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/49.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/5.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/5.png new file mode 100644 index 0000000..b1594e2 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/5.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/50.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/50.png new file mode 100644 index 0000000..854527f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/50.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/51.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/51.png new file mode 100644 index 0000000..f156c4f Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/51.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/52.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/52.png new file mode 100644 index 0000000..6cb5715 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/52.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/53.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/53.png new file mode 100644 index 0000000..3be4fbf Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/53.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/54.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/54.png new file mode 100644 index 0000000..c7e55ae Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/54.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/55.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/55.png new file mode 100644 index 0000000..e0af122 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/55.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/56.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/56.png new file mode 100644 index 0000000..8baf911 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/56.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/57.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/57.png new file mode 100644 index 0000000..b45b986 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/57.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/58.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/58.png new file mode 100644 index 0000000..8be69a0 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/58.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/59.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/59.png new file mode 100644 index 0000000..0bb002b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/59.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/6.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/6.png new file mode 100644 index 0000000..6e46090 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/6.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/60.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/60.png new file mode 100644 index 0000000..100ec0e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/60.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/61.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/61.png new file mode 100644 index 0000000..ed72aff Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/61.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/62.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/62.png new file mode 100644 index 0000000..3e5186e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/62.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/63.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/63.png new file mode 100644 index 0000000..263b318 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/63.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/64.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/64.png new file mode 100644 index 0000000..b32aed6 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/64.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/65.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/65.png new file mode 100644 index 0000000..7444b51 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/65.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/66.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/66.png new file mode 100644 index 0000000..bd35f62 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/66.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/67.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/67.png new file mode 100644 index 0000000..f640efa Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/67.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/68.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/68.png new file mode 100644 index 0000000..82f7c5c Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/68.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/69.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/69.png new file mode 100644 index 0000000..18d3016 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/69.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/7.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/7.png new file mode 100644 index 0000000..392c0d7 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/7.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/70.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/70.png new file mode 100644 index 0000000..61e57aa Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/70.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/71.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/71.png new file mode 100644 index 0000000..bd66d5a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/71.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/72.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/72.png new file mode 100644 index 0000000..728299a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/72.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/73.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/73.png new file mode 100644 index 0000000..757c19e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/73.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/74.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/74.png new file mode 100644 index 0000000..f65f70e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/74.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/75.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/75.png new file mode 100644 index 0000000..845e3a9 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/75.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/76.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/76.png new file mode 100644 index 0000000..7e0948e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/76.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/77.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/77.png new file mode 100644 index 0000000..7e0948e Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/77.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/78.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/78.png new file mode 100644 index 0000000..7b831ab Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/78.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/79.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/79.png new file mode 100644 index 0000000..19a0382 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/79.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/8.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/8.png new file mode 100644 index 0000000..bb1d9dc Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/8.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/80.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/80.png new file mode 100644 index 0000000..4344f5d Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/80.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/81.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/81.png new file mode 100644 index 0000000..6ce5cf9 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/81.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/82.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/82.png new file mode 100644 index 0000000..c5b18b9 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/82.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/83.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/83.png new file mode 100644 index 0000000..9e1ffef Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/83.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/84.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/84.png new file mode 100644 index 0000000..0fced66 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/84.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/85.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/85.png new file mode 100644 index 0000000..36ef06a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/85.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/86.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/86.png new file mode 100644 index 0000000..9428e1d Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/86.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/87.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/87.png new file mode 100644 index 0000000..802a78d Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/87.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/88.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/88.png new file mode 100644 index 0000000..c054a27 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/88.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/89.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/89.png new file mode 100644 index 0000000..4f06b68 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/89.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/9.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/9.png new file mode 100644 index 0000000..bcc15e2 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/9.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/90.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/90.png new file mode 100644 index 0000000..e7dc854 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/90.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/91.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/91.png new file mode 100644 index 0000000..675742b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/91.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/92.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/92.png new file mode 100644 index 0000000..389fc56 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/92.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/93.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/93.png new file mode 100644 index 0000000..3746754 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/93.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/94.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/94.png new file mode 100644 index 0000000..0c1878b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/94.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/95.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/95.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/95.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/96.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/96.png new file mode 100644 index 0000000..3b9d51a Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/96.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/97.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/97.png new file mode 100644 index 0000000..8050374 Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/97.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/98.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/98.png new file mode 100644 index 0000000..7aad0cb Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/98.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/99.png b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/99.png new file mode 100644 index 0000000..a68543b Binary files /dev/null and b/monkeyisland2-stream-obs-scummvm_autoscene/imgs/rooms/99.png differ diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/notes/rooms.txt b/monkeyisland2-stream-obs-scummvm_autoscene/notes/rooms.txt new file mode 100644 index 0000000..d1fc0f9 --- /dev/null +++ b/monkeyisland2-stream-obs-scummvm_autoscene/notes/rooms.txt @@ -0,0 +1,113 @@ +MI2 Room Numbers/Names + + Room 1: part1 + Room 2: scabb-isl + Room 3: sky + Room 4: shore + Room 5: campfire + Room 6: weenie + Room 7: woodtick + Room 8: cartograp + Room 9: bar + Room 10: cu-spit + Room 11: grill + Room 12: inn + Room 13: largos + Room 14: laundry + Room 15: woodshop + Room 16: cemetery + Room 17: graves + Room 18: crypt + Room 19: cu-coffin + Room 20: swamp + Room 21: voodoo + Room 22: dred-cabi + Room 23: dred-clif + Room 24: dred-deck + Room 25: part2 + Room 26: phatt-isl + Room 27: wharf + Room 28: pier + Room 29: jail + Room 30: library + Room 31: catalog + Room 32: cards + Room 33: casino + Room 34: alley + Room 35: waterfall + Room 36: faucet + Room 37: beach + Room 38: cottage + Room 39: rums + Room 40: basement + Room 41: phatts + Room 42: stairs + Room 43: bedroom + Room 44: cu-phatt + Room 45: booty-isl + Room 46: ville + Room 47: spitvile + Room 48: antique + Room 49: costume-s + Room 50: funeral-p + Room 51: kiosk + Room 52: mansion + Room 53: front-man + Room 54: back-mans + Room 55: entryway + Room 56: boudoir + Room 57: kitchen + Room 58: clifftop + Room 59: cliffbot + Room 60: tree-base + Room 61: tree-top + Room 62: tree-hous + Room 63: under-shi + Room 64: water + Room 65: over-gall + Room 66: galleon + Room 67: part3 + Room 68: le-fortre + Room 69: le-explos + Room 70: le-dock + Room 71: le-passag + Room 72: le-hall + Room 73: le-door + Room 74: le-office + Room 75: le-jail + Room 76: le-cel + Room 77: le-dynomi + Room 78: le-closeu + Room 79: le-tortur + Room 80: bone-map + Room 81: kates-shi + Room 82: map + Room 83: raft + Room 84: part4 + Room 85: dinky-bea + Room 86: dinky-spo + Room 87: dinky-hol + Room 88: elevator + Room 89: melee + Room 90: storage + Room 91: maintenan + Room 92: lost-foun + Room 93: undergrou + Room 94: icons + Room 95: whoopmap + Room 96: junglea + Room 97: jungleb + Room 98: junglec + Room 99: f-turf + Room 100: f-foregro + Room 101: f-trees + Room 102: f-plants + Room 103: open-cred + Room 104: f-rapinfl + Room 105: f-rapothe + Room 106: f-rap2inf + Room 107: f-rapshri + Room 108: copycrap + Room 109: long-shot + Room 110: bigwhoop + diff --git a/monkeyisland2-stream-obs-scummvm_autoscene/start.sh b/monkeyisland2-stream-obs-scummvm_autoscene/start.sh new file mode 100755 index 0000000..cc700ed --- /dev/null +++ b/monkeyisland2-stream-obs-scummvm_autoscene/start.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# Dependencies: obs-cli,scummvm, ... + +# Scumm vars +scummvm="/usr/games/scummvm" +subs="--subtitles" +fullScreen="--no-fullscreen" +debugLevel="--debuglevel=3" +debugFlag="--debugflags=RESOURCE" +outFile="/tmp/.debugScummvm.txt" +detect="--auto-detect" +gameDir="--path=$(dirname $0)/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/MONKEY2/" +saveDir="--savepath=$(dirname $0)/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/SAVES" +extraDir="--extrapath=$(dirname $0)/game/Monkey_Island_2-LeChucks_Revenge-Spanish-Scummvm/EXTRAS" + +# Obs-cli vars +obsCli="/usr/local/go/bin/obs-cli" +obsHost="--host localhost" +obsPort="--port 4444" +obsPasswd="--password lapassword" + +# Script vars +skipAutoSwitch="$1" # --just-debug + +function main() { + startScummvmDebugRoom + if [ "$skipAutoSwitch" != "--just-debug" ]; then obsSceneAutoSwitch ; fi +} + +function startScummvmDebugRoom () { + $scummvm $subs $fullScreen $debugLevel $debugFlag $detect $gameDir $saveDir $extraDir | tee $outFile | grep "ensureResourceLoaded(Room," & +} + +function obsSceneAutoSwitch() { + while : + do + room=$(cat $outFile | grep -i "ensureResourceLoaded(Room," | tail -1 | cut -d "," -f 2 | cut -d ")" -f 1) + echo $room + if [ "$room" == "$room" ]; then $obsCli $obsHost $obsPort $obsPasswd scene switch $room >/dev/null 2>&1 ; fi + sleep 1 + done +} + +main diff --git a/n/LICENSE b/n/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/n/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/n/README.md b/n/README.md new file mode 100644 index 0000000..611bb1e --- /dev/null +++ b/n/README.md @@ -0,0 +1,17 @@ +# n + +n de notas es un script que permite rápidamente tomar notas y categorizarlas. + +Para instalar n en el sistema se puede hacer así: + +``` +$ git clone http://git.56k.es/fanta/n /tmp/n +# cp -pv /tmp/n/n /usr/local/bin/ +# chmod +x /usr/local/bin/n +``` + +Lo que viene a ser clonar el repositorio http://git.56k.es/fanta/n en el directorio /tmp/n y luego como root se copia el script n en /usr/local/bin/ . +Cuando pongo $ estoy refiriéndome a que ese comando se ejecuta con un usuario normal. Cuando indico # es que ese comando se lanza como root. + +Cuando indicamos al comando "cp" las opciones -p y -v estamos diciendo que preserve los permisos y que nos imprima en pantalla lo que ha copiado (-v verbose). +De todos modos por asegurarnos al final como root he puesto que se haga ejecutable el script (chmod +x) pese a que no sería necesario. diff --git a/n/n b/n/n new file mode 100755 index 0000000..cf852cc --- /dev/null +++ b/n/n @@ -0,0 +1,17 @@ +#!/bin/bash +nDir="$HOME/.config/n" +#editor="/usr/bin/vim" +#editor="/usr/bin/emacs" +editor="/usr/bin/nano" + +check_root(){ if [ "$(id -u)" == 0 ]; then echo "don't run n as root"; exit; fi } +create_nDir(){ [ ! -d "$nDir" ] && mkdir -p $nDir ; } +get_tagListRecentUseOrder(){ { nTags=$(ls -1t $nDir | tee /dev/fd/3 | wc -l); } 3>&1 ; } +create_tag(){ nDir="$1" ; tagName="$2" ; [ ! -f "$nDir/$tagName" ] && touch $nDir/$tagName ; } +check_tag(){ tagName="$1" ; [[ "$tagName" = "${tagName%[[:space:]]*}" ]] && echo 0 || echo 1 ; } + +check_root ; create_nDir +[[ $# -eq 0 ]] && get_tagListRecentUseOrder +[[ $# -eq 1 ]] && [[ $(check_tag "$1") -eq 1 ]] && echo "bad tag name . Please try again without spaces." && exit +[[ $# -eq 1 ]] && create_tag "$nDir" "$1" +[[ $# -eq 1 ]] && $editor $nDir/$1 diff --git a/o/README.md b/o/README.md new file mode 100644 index 0000000..7521e40 --- /dev/null +++ b/o/README.md @@ -0,0 +1,22 @@ + +Para que funcione el script se ha de instalar previamente el cliente unificado de openstack. +Se puede hacer con pip. El proceso es el siguiente: + +* 1 - Obtenemos el archivo RC desde Horizon (API Access --> Download OpenStack RC File) +* 2 - $ pip install python-novaclient python-openstackclient +* 3 - $ source nombrearchivoRC + +Una vez se tienen los archivos rc se copian con el nombre que queramos al directorio /home/tuusuario/.config/o/ +Y copias "o" a /usr/local/bin + +De esta forma ya podrás usar o simplemente escribiendo "o". + +Ejemplos: + +$ o +$ o nombrearchivoRC +$ o nombrearchivoRC "nova list" + +Si nos fijamos el comando va entre comillas para que se entienda que es el parametro $2. +Esto se puede mejorar en un futuro. De momento así funciona y es de utilidad. + diff --git a/o/o b/o/o new file mode 100755 index 0000000..50514a9 --- /dev/null +++ b/o/o @@ -0,0 +1,21 @@ +#!/bin/bash +# Ejemplo: o nombrercfile.sh "nova list" +# Este script sirve simplemente para lanzar comandos en diferentes proyectos openstack. +# En el directorio .config/o/ se han de dejar los archivos RC con las credenciales y variables de entorno. +# En esos archivos se puede especificar password en vez de que la solicite cada vez. +# La forma de uso es escribir o y te muestra los rc files. Con o + el nombre del rc file + el comando vamos a poder obetener la información + +oDir="$HOME/.config/o" +rcFileName="$1" +cmd="$2" + +check_root(){ if [ "$(id -u)" == 0 ]; then echo "don't run n as root"; exit; fi } +create_oDir(){ [ ! -d "$oDir" ] && mkdir -p $oDir ; } +getRCFiles(){ ls -1 $oDir ; } +sourceRCFile(){ [ -f "$oDir/$rcFileName" ] && source "$oDir/$rcFileName" ; } + +check_root +create_oDir + +[[ $# -eq 0 ]] && getRCFiles +[[ $# -ge 1 ]] && sourceRCFile ; exec $cmd diff --git a/peertubesubsextractor/LICENSE b/peertubesubsextractor/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/peertubesubsextractor/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/peertubesubsextractor/README.md b/peertubesubsextractor/README.md new file mode 100644 index 0000000..4e082ae --- /dev/null +++ b/peertubesubsextractor/README.md @@ -0,0 +1,19 @@ +# peertubeSubsExtractor + +Bash shell script ot extract subtitles from a peertube video. + +``` +git clone http://git.56k.es/fanta/peertubeSubsExtractor +cd peertubeSubsExtractor +chmod -x peertubeSubsExtractor.sh +``` + +Example: +``` +./peertubeSubsExtractor.sh "https://peertube.uno/videos/watch/056a6e06-b5be-47bc-a525-4df0130c0727" +``` + +Dependencies: +jq and wget (debian: apt install wget jq) + + diff --git a/peertubesubsextractor/peertubeSubsExtractor.sh b/peertubesubsextractor/peertubeSubsExtractor.sh new file mode 100755 index 0000000..3cc8fc5 --- /dev/null +++ b/peertubesubsextractor/peertubeSubsExtractor.sh @@ -0,0 +1,49 @@ +#!/bin/bash +# dependencies: jq, wget + +urlVideoPeertube="$1" +protocol=$(echo "$urlVideoPeertube" | cut -d "/" -f 1 | cut -d ":" -f 1) +nodeDomain=$(echo "$urlVideoPeertube" | cut -d "/" -f 3) +flagIdentificationVersion=$(echo "$urlVideoPeertube" | cut -d "/" -f 4) +tmpFileSubs="/tmp/.subsPeertube.log" + +function downloadSubs { + while read urlSubtitles; + do + echo "$protocol://$nodeDomain$urlSubtitles" + wget -q "$protocol://$nodeDomain$urlSubtitles" + done < $tmpFileSubs +} + +function countSubs { + wget -q "$urlSubs" -O - | jq | grep -i "captionPath" | cut -d "\"" -f 4 > $tmpFileSubs + echo "NUMBER OF SUBTITLES: $(cat $tmpFileSubs | wc -l)" +} + +if [ $flagIdentificationVersion == "videos" ] +then + videoID=$(echo "$urlVideoPeertube" | cut -d "/" -f 6) + urlSubs="$protocol://$nodeDomain/api/v1/videos/$videoID/captions" + echo " " + echo "PEERTUBE VERSION: >3.3.0" + echo "DOMAIN: $nodeDomain" + echo "ID VIDEO: $videoID" + echo "TARGET: $protocol://$nodeDomain/videos/watch/$videoID" + echo "URL SUBS: $urlSubs" + countSubs + downloadSubs + echo " " +else + videoID=$(echo "$urlVideoPeertube" | cut -d "/" -f 5) + urlSubs="$protocol://$nodeDomain/api/v1/videos/$videoID/captions" + echo " " + echo "PEERTUBE VERSION: <3.2.0" + echo "DOMAIN: $nodeDomain" + echo "ID VIDEO: $videoID" + echo "TARGET: $protocol://$nodeDomain/w/$videoID" + echo "URL SUBS: $urlSubs" + echo " " + countSubs + downloadSubs + echo " " +fi diff --git a/recomendador/LICENSE b/recomendador/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/recomendador/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/recomendador/README.md b/recomendador/README.md new file mode 100644 index 0000000..3658e05 --- /dev/null +++ b/recomendador/README.md @@ -0,0 +1,13 @@ +# Bot que recomienda seguir los últimos canales con actividad de un nodo peertube + +
+# apt install git toot
+# toot login # just the first time
+# adduser recomendador
+# su - recomendador
+$ mkdir bots
+$ cd bots
+$ git clone http://git.56k.es/fanta/recomendador
+$ crontab -e
+00 10 * * * /bin/bash /home/recomendador/bots/recomendador/recomendador.sh
+
diff --git a/recomendador/recomendador.sh b/recomendador/recomendador.sh new file mode 100755 index 0000000..f0419fb --- /dev/null +++ b/recomendador/recomendador.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# apt install git toot wget +# toot login # Just the first time + +peertubeNode="fediverse.tv" +apiUrlLastVideos="https://$peertubeNode/api/v1/videos" +tmpFile="/tmp/.lastChannelsPeertube" + +function main { + getLastChannelsAccountsWithActivity + createTootMsg +} + +function getLastChannelsAccountsWithActivity { + wget -q "$apiUrlLastVideos" -O - | tr "\"" "\n" | grep -i "https://$peertubeNode/video-channels" | cut -d "/" -f 5 | sort -u > $tmpFile + readarray -t channel < $tmpFile && > $tmpFile + for a in "${channel[@]}"; do echo "@$a@$peertubeNode" >> $tmpFile; done + readarray -t channel < $tmpFile +} + +function createTootMsg { + tootMsg="Cuentas recomendadas para seguir ${channel[@]}. Cuentas con contenido multimedia que han tenido actividad en las últimas 24horas #fediverse #fediverso #video #peertube #canales #channels" + toot post "$tootMsg" +} + +main diff --git a/reglas-iptables/LICENSE b/reglas-iptables/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/reglas-iptables/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/reglas-iptables/README.md b/reglas-iptables/README.md new file mode 100644 index 0000000..ba435d9 --- /dev/null +++ b/reglas-iptables/README.md @@ -0,0 +1,3 @@ +# reglas-iptables + +Algunas reglas IPtables que pueden ser de utilidad. \ No newline at end of file diff --git a/reglas-iptables/ddos.txt b/reglas-iptables/ddos.txt new file mode 100644 index 0000000..8984a68 --- /dev/null +++ b/reglas-iptables/ddos.txt @@ -0,0 +1,55 @@ +# Limitar conexiones. Por ejemplo sirve para mitigar ataques slowloris +iptables -I INPUT -p tcp --dport 80 -m connlimit --connlimit-above 20 --connlimit-mask 40 -j DROP +iptables -I INPUT -p tcp --dport 443 -m connlimit --connlimit-above 20 --connlimit-mask 40 -j DROP +iptables -A INPUT -p tcp -m connlimit --connlimit-above 20 -j REJECT --reject-with tcp-reset + +# Esta es buena tambien. Limitará si la IP intenta más de 20 conesiones en menos de 30 segundos. Dejo varios ejemplos comentados. +#iptables -I INPUT -p tcp --dport 80 -m state --state NEW -m recent --set +#iptables -I INPUT -p tcp --dport 80 -s 111.111.11.1/24 -m state --state NEW -m recent --update --seconds 30 --hitcount 20 -j DROP +#iptables -A INPUT -p tcp --dport 80 -m state --state NEW -m recent --update --seconds 5 --hitcount 3 -j DROP + +# Bloquear tráfico por cantidad de conexiones por unidad de tiempo. +# Máximo 50 conexiones por segundo, con una ráfaga de 18 conexiones entre segundos +iptables -A INPUT -p tcp -m conntrack --ctstate NEW -m limit --limit 50/s --limit-burst 18 -j ACCEPT +iptables -A INPUT -p tcp -m conntrack --ctstate NEW -j DROP + +# Bloquear paquetes inválidos. Aquellos que no sean paquetes SYN (de establecimiento de conexión) +iptables -t mangle -A PREROUTING -m conntrack --ctstate INVALID -j DROP + +# Bloquear paquetes nuevos que no son SYN. No pertenecen a ninguna conexión establecida, y además no usan el flag SYN. +iptables -t mangle -A PREROUTING -p tcp ! --syn -m conntrack --ctstate NEW -j DROP + +# Bloquear valores anoramales de MSS. Aquellos que contengan el flag SYN activado, pero que además tengan un valor +# de MSS (Maximum Segment Size) fuera de lo normal, ya que los paquetes SYN suelen ser pequeños, y paquetes SYN grandes +# podrían indicar inundación de SYN (SYN flood). +iptables -t mangle -A PREROUTING -p tcp -m conntrack --ctstate NEW -m tcpmss ! --mss 536:65535 -j DROP + +# Bloquear paquetes con flags erróneos +# Algunas reglas para filtrar paquetes con flags erróneos, aquellos flags o combinaciones de los mismos que un +# paquete normal no utilizaría. +iptables -t mangle -A PREROUTING -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags FIN,SYN FIN,SYN -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags SYN,RST SYN,RST -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags FIN,RST FIN,RST -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags FIN,ACK FIN -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ACK,URG URG -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ACK,FIN FIN -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ACK,PSH PSH -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ALL ALL -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ALL NONE -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ALL FIN,PSH,URG -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ALL SYN,FIN,PSH,URG -j DROP +iptables -t mangle -A PREROUTING -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -j DROP + +# Bloqueamos todo el tráfico ICMP entrante. Bloquea el ping y ataques ping de la muerte entre otros. +iptables -t mangle -A PREROUTING -p icmp -j DROP + +# Bloquear paquetes fragmentados +# Normalmente no es necesario, pero a veces la inundación de paquetes UDP fragmentados pueden consumir mucho +# ancho de banda y producir una denegación de servicio +iptables -t mangle -A PREROUTING -f -j DROP + +# Mitigar escaneos de puertos +iptables -N port-scan +iptables -A port-scan -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s --limit-burst 3 -j RETURN +iptables -A port-scan -j DROP diff --git a/reglas-iptables/tor-block.sh b/reglas-iptables/tor-block.sh new file mode 100644 index 0000000..36f99f2 --- /dev/null +++ b/reglas-iptables/tor-block.sh @@ -0,0 +1,4 @@ +#!/bin/bash +url="https://check.torproject.org/torbulkexitlist" +wget -q "$url" -O /tmp/.tor.lst +while read -r ipTor; do echo "$ipTor"; iptables -A INPUT -s $ipTor -j DROP; done < /tmp/.tor.lst diff --git a/rublock/README.md b/rublock/README.md new file mode 100644 index 0000000..36178cc --- /dev/null +++ b/rublock/README.md @@ -0,0 +1,3 @@ +# ruBlock + +bash script para bloquear rusia con iptables \ No newline at end of file diff --git a/rublock/ruBlock.sh b/rublock/ruBlock.sh new file mode 100755 index 0000000..64a67aa --- /dev/null +++ b/rublock/ruBlock.sh @@ -0,0 +1,27 @@ +#!/bin/bash +# fanta +# ru block - Para bloquear toda Rusia con iptables. Ejecutar como root +# dependencies: bash wget curl iptables + +ipListUrl="https://www.ipdeny.com/ipblocks/data/countries/ru.zone" + +function main(){ + checkURL + downloadIPList + blockIP +} + +function checkURL(){ + errorCode=$(curl -kiss $ipListUrl | head -1 | cut -d " " -f 2) + if [ $errorCode != 200 ]; then echo "URL not found $ipListUrl"; exit; fi +} + +function downloadIPList(){ + wget -q "$ipListUrl" -O /tmp/.ips > /dev/null 2>&1 +} + +function blockIP(){ + while read -r ip; do echo "DROP $ip"; iptables -A INPUT -s $ip -j DROP; done < /tmp/.ips +} + +main diff --git a/scripts_compilar_kernel_sobre_debian11/README.md b/scripts_compilar_kernel_sobre_debian11/README.md new file mode 100644 index 0000000..e69de29 diff --git a/scripts_compilar_kernel_sobre_debian11/compile_kernel.sh b/scripts_compilar_kernel_sobre_debian11/compile_kernel.sh new file mode 100755 index 0000000..22abe1c --- /dev/null +++ b/scripts_compilar_kernel_sobre_debian11/compile_kernel.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# Script un poco tosco pero funcional para descargar y compilar rapidamente un kernel linux. +# Ya mejoraré el script cuando esté funcionando bien +# Se recomienda usar primero en una máquina virtual y probar que todo va bien. Una máquina virtual con Debian 11. + +# Instalamos dependencias +apt install -y wget xz-utils make gcc ncurses-dev flex bison devscripts bc rsync libelf-dev libssl-dev dwarves hwinfo + +# Descargamos el kernel +kernelUrlXz="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.1.tar.xz" +wget "$kernelUrlXz" + +# Descomprimimos el kernel +tar xfvJ linux-5.15.1.tar.xz + +# Copiamos la configuración actual del kernel actual como base +cd linux-5.15.1 +apt clean +apt autoclean +make clean && make mrproper +cp /boot/config-$(uname -r) ./.config + +# Cargamos la configuración +make menuconfig + +# Eliminamos la línea de CONFIG_SYSTEM_TRUSTED_KEYS +grep -i "CONFIG_SYSTEM_TRUSTED_KEYS" .config +sed -i '/CONFIG_SYSTEM_TRUSTED_KEYS/d' .config + +# Compilamos el kernel a la debian way creando varios .deb +make -j$(nproc) deb-pkg clean LOCALVERSION="-fanta" diff --git a/scripts_compilar_kernel_sobre_debian11/compile_kernel_disquete.sh b/scripts_compilar_kernel_sobre_debian11/compile_kernel_disquete.sh new file mode 100755 index 0000000..0fb3e63 --- /dev/null +++ b/scripts_compilar_kernel_sobre_debian11/compile_kernel_disquete.sh @@ -0,0 +1,1308 @@ +#!/bin/bash +# Script un poco tosco pero funcional para descargar y compilar rapidamente un kernel linux. +# En este caso para crear un kernel muy pequeño y poder meterlo en un disquete. + +# Instalamos dependencias +apt install -y wget xz-utils make gcc ncurses-dev flex bison devscripts bc rsync libelf-dev libssl-dev dwarves hwinfo + +# Descargamos el kernel +kernelUrlXz="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.1.tar.xz" +wget "$kernelUrlXz" + +# Descomprimimos el kernel +tar xfvJ linux-5.15.1.tar.xz +cd linux-5.15.1 +apt clean +apt autoclean +make clean && make mrproper +make ARCH=x86 tinyconfig + +# Config en base64 +echo "IwojIEF1dG9tYXRpY2FsbHkgZ2VuZXJhdGVkIGZpbGU7IERPIE5PVCBFRElULgojIExpbnV4L3g4 +NiA1LjE1LjEgS2VybmVsIENvbmZpZ3VyYXRpb24KIwpDT05GSUdfQ0NfVkVSU0lPTl9URVhUPSJn +Y2MgKERlYmlhbiAxMC4yLjEtNikgMTAuMi4xIDIwMjEwMTEwIgpDT05GSUdfQ0NfSVNfR0NDPXkK +Q09ORklHX0dDQ19WRVJTSU9OPTEwMDIwMQpDT05GSUdfQ0xBTkdfVkVSU0lPTj0wCkNPTkZJR19B +U19JU19HTlU9eQpDT05GSUdfQVNfVkVSU0lPTj0yMzUwMgpDT05GSUdfTERfSVNfQkZEPXkKQ09O +RklHX0xEX1ZFUlNJT049MjM1MDIKQ09ORklHX0xMRF9WRVJTSU9OPTAKQ09ORklHX0NDX0hBU19B +U01fR09UTz15CkNPTkZJR19DQ19IQVNfQVNNX0lOTElORT15CkNPTkZJR19DQ19IQVNfTk9fUFJP +RklMRV9GTl9BVFRSPXkKQ09ORklHX0lSUV9XT1JLPXkKQ09ORklHX0JVSUxEVElNRV9UQUJMRV9T +T1JUPXkKQ09ORklHX1RIUkVBRF9JTkZPX0lOX1RBU0s9eQoKIwojIEdlbmVyYWwgc2V0dXAKIwpD +T05GSUdfQlJPS0VOX09OX1NNUD15CkNPTkZJR19JTklUX0VOVl9BUkdfTElNSVQ9MzIKIyBDT05G +SUdfQ09NUElMRV9URVNUIGlzIG5vdCBzZXQKIyBDT05GSUdfV0VSUk9SIGlzIG5vdCBzZXQKQ09O +RklHX0xPQ0FMVkVSU0lPTj0iIgojIENPTkZJR19MT0NBTFZFUlNJT05fQVVUTyBpcyBub3Qgc2V0 +CkNPTkZJR19CVUlMRF9TQUxUPSIiCkNPTkZJR19IQVZFX0tFUk5FTF9HWklQPXkKQ09ORklHX0hB +VkVfS0VSTkVMX0JaSVAyPXkKQ09ORklHX0hBVkVfS0VSTkVMX0xaTUE9eQpDT05GSUdfSEFWRV9L +RVJORUxfWFo9eQpDT05GSUdfSEFWRV9LRVJORUxfTFpPPXkKQ09ORklHX0hBVkVfS0VSTkVMX0xa +ND15CkNPTkZJR19IQVZFX0tFUk5FTF9aU1REPXkKIyBDT05GSUdfS0VSTkVMX0daSVAgaXMgbm90 +IHNldAojIENPTkZJR19LRVJORUxfQlpJUDIgaXMgbm90IHNldAojIENPTkZJR19LRVJORUxfTFpN +QSBpcyBub3Qgc2V0CkNPTkZJR19LRVJORUxfWFo9eQojIENPTkZJR19LRVJORUxfTFpPIGlzIG5v +dCBzZXQKIyBDT05GSUdfS0VSTkVMX0xaNCBpcyBub3Qgc2V0CiMgQ09ORklHX0tFUk5FTF9aU1RE +IGlzIG5vdCBzZXQKQ09ORklHX0RFRkFVTFRfSU5JVD0iIgpDT05GSUdfREVGQVVMVF9IT1NUTkFN +RT0iKG5vbmUpIgojIENPTkZJR19TWVNWSVBDIGlzIG5vdCBzZXQKIyBDT05GSUdfV0FUQ0hfUVVF +VUUgaXMgbm90IHNldAojIENPTkZJR19DUk9TU19NRU1PUllfQVRUQUNIIGlzIG5vdCBzZXQKIyBD +T05GSUdfVVNFTElCIGlzIG5vdCBzZXQKQ09ORklHX0hBVkVfQVJDSF9BVURJVFNZU0NBTEw9eQoK +IwojIElSUSBzdWJzeXN0ZW0KIwpDT05GSUdfR0VORVJJQ19JUlFfUFJPQkU9eQpDT05GSUdfR0VO +RVJJQ19JUlFfU0hPVz15CkNPTkZJR19IQVJESVJRU19TV19SRVNFTkQ9eQpDT05GSUdfR0VORVJJ +Q19JUlFfUkVTRVJWQVRJT05fTU9ERT15CkNPTkZJR19JUlFfRk9SQ0VEX1RIUkVBRElORz15CkNP +TkZJR19TUEFSU0VfSVJRPXkKIyBlbmQgb2YgSVJRIHN1YnN5c3RlbQoKQ09ORklHX0NMT0NLU09V +UkNFX1dBVENIRE9HPXkKQ09ORklHX0FSQ0hfQ0xPQ0tTT1VSQ0VfSU5JVD15CkNPTkZJR19DTE9D +S1NPVVJDRV9WQUxJREFURV9MQVNUX0NZQ0xFPXkKQ09ORklHX0dFTkVSSUNfVElNRV9WU1lTQ0FM +TD15CkNPTkZJR19HRU5FUklDX0NMT0NLRVZFTlRTPXkKQ09ORklHX0dFTkVSSUNfQ0xPQ0tFVkVO +VFNfTUlOX0FESlVTVD15CkNPTkZJR19HRU5FUklDX0NNT1NfVVBEQVRFPXkKQ09ORklHX0hBVkVf +UE9TSVhfQ1BVX1RJTUVSU19UQVNLX1dPUks9eQoKIwojIFRpbWVycyBzdWJzeXN0ZW0KIwpDT05G +SUdfSFpfUEVSSU9ESUM9eQojIENPTkZJR19OT19IWl9JRExFIGlzIG5vdCBzZXQKIyBDT05GSUdf +Tk9fSFogaXMgbm90IHNldAojIENPTkZJR19ISUdIX1JFU19USU1FUlMgaXMgbm90IHNldAojIGVu +ZCBvZiBUaW1lcnMgc3Vic3lzdGVtCgpDT05GSUdfSEFWRV9FQlBGX0pJVD15CgojCiMgQlBGIHN1 +YnN5c3RlbQojCiMgQ09ORklHX0JQRl9TWVNDQUxMIGlzIG5vdCBzZXQKIyBlbmQgb2YgQlBGIHN1 +YnN5c3RlbQoKQ09ORklHX1BSRUVNUFRfTk9ORT15CiMgQ09ORklHX1BSRUVNUFRfVk9MVU5UQVJZ +IGlzIG5vdCBzZXQKIyBDT05GSUdfUFJFRU1QVCBpcyBub3Qgc2V0CgojCiMgQ1BVL1Rhc2sgdGlt +ZSBhbmQgc3RhdHMgYWNjb3VudGluZwojCkNPTkZJR19USUNLX0NQVV9BQ0NPVU5USU5HPXkKIyBD +T05GSUdfSVJRX1RJTUVfQUNDT1VOVElORyBpcyBub3Qgc2V0CiMgQ09ORklHX1BTSSBpcyBub3Qg +c2V0CiMgZW5kIG9mIENQVS9UYXNrIHRpbWUgYW5kIHN0YXRzIGFjY291bnRpbmcKCiMKIyBSQ1Ug +U3Vic3lzdGVtCiMKQ09ORklHX1RJTllfUkNVPXkKIyBDT05GSUdfUkNVX0VYUEVSVCBpcyBub3Qg +c2V0CkNPTkZJR19TUkNVPXkKQ09ORklHX1RJTllfU1JDVT15CiMgZW5kIG9mIFJDVSBTdWJzeXN0 +ZW0KCiMgQ09ORklHX0lLQ09ORklHIGlzIG5vdCBzZXQKQ09ORklHX0xPR19CVUZfU0hJRlQ9MTcK +Q09ORklHX1BSSU5US19TQUZFX0xPR19CVUZfU0hJRlQ9MTMKQ09ORklHX0hBVkVfVU5TVEFCTEVf +U0NIRURfQ0xPQ0s9eQoKIwojIFNjaGVkdWxlciBmZWF0dXJlcwojCiMgZW5kIG9mIFNjaGVkdWxl +ciBmZWF0dXJlcwoKQ09ORklHX0FSQ0hfV0FOVF9CQVRDSEVEX1VOTUFQX1RMQl9GTFVTSD15CiMg +Q09ORklHX0NHUk9VUFMgaXMgbm90IHNldAojIENPTkZJR19DSEVDS1BPSU5UX1JFU1RPUkUgaXMg +bm90IHNldAojIENPTkZJR19TQ0hFRF9BVVRPR1JPVVAgaXMgbm90IHNldAojIENPTkZJR19SRUxB +WSBpcyBub3Qgc2V0CkNPTkZJR19CTEtfREVWX0lOSVRSRD15CkNPTkZJR19JTklUUkFNRlNfU09V +UkNFPSIiCkNPTkZJR19SRF9HWklQPXkKQ09ORklHX1JEX0JaSVAyPXkKQ09ORklHX1JEX0xaTUE9 +eQpDT05GSUdfUkRfWFo9eQpDT05GSUdfUkRfTFpPPXkKQ09ORklHX1JEX0xaND15CkNPTkZJR19S +RF9aU1REPXkKIyBDT05GSUdfQk9PVF9DT05GSUcgaXMgbm90IHNldAojIENPTkZJR19DQ19PUFRJ +TUlaRV9GT1JfUEVSRk9STUFOQ0UgaXMgbm90IHNldApDT05GSUdfQ0NfT1BUSU1JWkVfRk9SX1NJ +WkU9eQpDT05GSUdfTERfT1JQSEFOX1dBUk49eQpDT05GSUdfSEFWRV9VSUQxNj15CkNPTkZJR19T +WVNDVExfRVhDRVBUSU9OX1RSQUNFPXkKQ09ORklHX0hBVkVfUENTUEtSX1BMQVRGT1JNPXkKQ09O +RklHX0VYUEVSVD15CiMgQ09ORklHX01VTFRJVVNFUiBpcyBub3Qgc2V0CiMgQ09ORklHX1NHRVRN +QVNLX1NZU0NBTEwgaXMgbm90IHNldAojIENPTkZJR19TWVNGU19TWVNDQUxMIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkhBTkRMRSBpcyBub3Qgc2V0CiMgQ09ORklHX1BPU0lYX1RJTUVSUyBpcyBub3Qg +c2V0CkNPTkZJR19QUklOVEs9eQojIENPTkZJR19CVUcgaXMgbm90IHNldAojIENPTkZJR19QQ1NQ +S1JfUExBVEZPUk0gaXMgbm90IHNldAojIENPTkZJR19CQVNFX0ZVTEwgaXMgbm90IHNldAojIENP +TkZJR19GVVRFWCBpcyBub3Qgc2V0CiMgQ09ORklHX0VQT0xMIGlzIG5vdCBzZXQKIyBDT05GSUdf +U0lHTkFMRkQgaXMgbm90IHNldAojIENPTkZJR19USU1FUkZEIGlzIG5vdCBzZXQKIyBDT05GSUdf +RVZFTlRGRCBpcyBub3Qgc2V0CiMgQ09ORklHX1NITUVNIGlzIG5vdCBzZXQKIyBDT05GSUdfQUlP +IGlzIG5vdCBzZXQKIyBDT05GSUdfSU9fVVJJTkcgaXMgbm90IHNldAojIENPTkZJR19BRFZJU0Vf +U1lTQ0FMTFMgaXMgbm90IHNldAojIENPTkZJR19NRU1CQVJSSUVSIGlzIG5vdCBzZXQKIyBDT05G +SUdfS0FMTFNZTVMgaXMgbm90IHNldAojIENPTkZJR19VU0VSRkFVTFRGRCBpcyBub3Qgc2V0CkNP +TkZJR19BUkNIX0hBU19NRU1CQVJSSUVSX1NZTkNfQ09SRT15CiMgQ09ORklHX0tDTVAgaXMgbm90 +IHNldAojIENPTkZJR19SU0VRIGlzIG5vdCBzZXQKQ09ORklHX0VNQkVEREVEPXkKQ09ORklHX0hB +VkVfUEVSRl9FVkVOVFM9eQojIENPTkZJR19QQzEwNCBpcyBub3Qgc2V0CgojCiMgS2VybmVsIFBl +cmZvcm1hbmNlIEV2ZW50cyBBbmQgQ291bnRlcnMKIwpDT05GSUdfUEVSRl9FVkVOVFM9eQojIENP +TkZJR19ERUJVR19QRVJGX1VTRV9WTUFMTE9DIGlzIG5vdCBzZXQKIyBlbmQgb2YgS2VybmVsIFBl +cmZvcm1hbmNlIEV2ZW50cyBBbmQgQ291bnRlcnMKCiMgQ09ORklHX1ZNX0VWRU5UX0NPVU5URVJT +IGlzIG5vdCBzZXQKIyBDT05GSUdfQ09NUEFUX0JSSyBpcyBub3Qgc2V0CiMgQ09ORklHX1NMQUIg +aXMgbm90IHNldAojIENPTkZJR19TTFVCIGlzIG5vdCBzZXQKQ09ORklHX1NMT0I9eQojIENPTkZJ +R19TTEFCX01FUkdFX0RFRkFVTFQgaXMgbm90IHNldAojIENPTkZJR19TSFVGRkxFX1BBR0VfQUxM +T0NBVE9SIGlzIG5vdCBzZXQKIyBDT05GSUdfUFJPRklMSU5HIGlzIG5vdCBzZXQKIyBlbmQgb2Yg +R2VuZXJhbCBzZXR1cAoKIyBDT05GSUdfNjRCSVQgaXMgbm90IHNldApDT05GSUdfWDg2XzMyPXkK +Q09ORklHX1g4Nj15CkNPTkZJR19JTlNUUlVDVElPTl9ERUNPREVSPXkKQ09ORklHX09VVFBVVF9G +T1JNQVQ9ImVsZjMyLWkzODYiCkNPTkZJR19MT0NLREVQX1NVUFBPUlQ9eQpDT05GSUdfU1RBQ0tU +UkFDRV9TVVBQT1JUPXkKQ09ORklHX01NVT15CkNPTkZJR19BUkNIX01NQVBfUk5EX0JJVFNfTUlO +PTgKQ09ORklHX0FSQ0hfTU1BUF9STkRfQklUU19NQVg9MTYKQ09ORklHX0FSQ0hfTU1BUF9STkRf +Q09NUEFUX0JJVFNfTUlOPTgKQ09ORklHX0FSQ0hfTU1BUF9STkRfQ09NUEFUX0JJVFNfTUFYPTE2 +CkNPTkZJR19HRU5FUklDX0lTQV9ETUE9eQpDT05GSUdfQVJDSF9NQVlfSEFWRV9QQ19GREM9eQpD +T05GSUdfR0VORVJJQ19DQUxJQlJBVEVfREVMQVk9eQpDT05GSUdfQVJDSF9IQVNfQ1BVX1JFTEFY +PXkKQ09ORklHX0FSQ0hfSEFTX0ZJTFRFUl9QR1BST1Q9eQpDT05GSUdfSEFWRV9TRVRVUF9QRVJf +Q1BVX0FSRUE9eQpDT05GSUdfTkVFRF9QRVJfQ1BVX0VNQkVEX0ZJUlNUX0NIVU5LPXkKQ09ORklH +X05FRURfUEVSX0NQVV9QQUdFX0ZJUlNUX0NIVU5LPXkKQ09ORklHX0FSQ0hfSElCRVJOQVRJT05f +UE9TU0lCTEU9eQpDT05GSUdfQVJDSF9OUl9HUElPPTUxMgpDT05GSUdfQVJDSF9TVVNQRU5EX1BP +U1NJQkxFPXkKQ09ORklHX0FSQ0hfV0FOVF9HRU5FUkFMX0hVR0VUTEI9eQpDT05GSUdfQVJDSF9T +VVBQT1JUU19VUFJPQkVTPXkKQ09ORklHX0ZJWF9FQVJMWUNPTl9NRU09eQpDT05GSUdfUEdUQUJM +RV9MRVZFTFM9MgpDT05GSUdfQ0NfSEFTX1NBTkVfU1RBQ0tQUk9URUNUT1I9eQoKIwojIFByb2Nl +c3NvciB0eXBlIGFuZCBmZWF0dXJlcwojCiMgQ09ORklHX1NNUCBpcyBub3Qgc2V0CiMgQ09ORklH +X1g4Nl9GRUFUVVJFX05BTUVTIGlzIG5vdCBzZXQKIyBDT05GSUdfR09MREZJU0ggaXMgbm90IHNl +dAojIENPTkZJR19SRVRQT0xJTkUgaXMgbm90IHNldAojIENPTkZJR19YODZfQ1BVX1JFU0NUUkwg +aXMgbm90IHNldAojIENPTkZJR19YODZfRVhURU5ERURfUExBVEZPUk0gaXMgbm90IHNldAojIENP +TkZJR19YODZfMzJfSVJJUyBpcyBub3Qgc2V0CiMgQ09ORklHX1NDSEVEX09NSVRfRlJBTUVfUE9J +TlRFUiBpcyBub3Qgc2V0CiMgQ09ORklHX0hZUEVSVklTT1JfR1VFU1QgaXMgbm90IHNldApDT05G +SUdfTTQ4NlNYPXkKIyBDT05GSUdfTTQ4NiBpcyBub3Qgc2V0CiMgQ09ORklHX001ODYgaXMgbm90 +IHNldAojIENPTkZJR19NNTg2VFNDIGlzIG5vdCBzZXQKIyBDT05GSUdfTTU4Nk1NWCBpcyBub3Qg +c2V0CiMgQ09ORklHX002ODYgaXMgbm90IHNldAojIENPTkZJR19NUEVOVElVTUlJIGlzIG5vdCBz +ZXQKIyBDT05GSUdfTVBFTlRJVU1JSUkgaXMgbm90IHNldAojIENPTkZJR19NUEVOVElVTU0gaXMg +bm90IHNldAojIENPTkZJR19NUEVOVElVTTQgaXMgbm90IHNldAojIENPTkZJR19NSzYgaXMgbm90 +IHNldAojIENPTkZJR19NSzcgaXMgbm90IHNldAojIENPTkZJR19NSzggaXMgbm90IHNldAojIENP +TkZJR19NQ1JVU09FIGlzIG5vdCBzZXQKIyBDT05GSUdfTUVGRklDRU9OIGlzIG5vdCBzZXQKIyBD +T05GSUdfTVdJTkNISVBDNiBpcyBub3Qgc2V0CiMgQ09ORklHX01XSU5DSElQM0QgaXMgbm90IHNl +dAojIENPTkZJR19NRUxBTiBpcyBub3Qgc2V0CiMgQ09ORklHX01HRU9ERUdYMSBpcyBub3Qgc2V0 +CiMgQ09ORklHX01HRU9ERV9MWCBpcyBub3Qgc2V0CiMgQ09ORklHX01DWVJJWElJSSBpcyBub3Qg +c2V0CiMgQ09ORklHX01WSUFDM18yIGlzIG5vdCBzZXQKIyBDT05GSUdfTVZJQUM3IGlzIG5vdCBz +ZXQKIyBDT05GSUdfTUNPUkUyIGlzIG5vdCBzZXQKIyBDT05GSUdfTUFUT00gaXMgbm90IHNldAoj +IENPTkZJR19YODZfR0VORVJJQyBpcyBub3Qgc2V0CkNPTkZJR19YODZfSU5URVJOT0RFX0NBQ0hF +X1NISUZUPTQKQ09ORklHX1g4Nl9MMV9DQUNIRV9TSElGVD00CkNPTkZJR19YODZfRjAwRl9CVUc9 +eQpDT05GSUdfWDg2X0lOVkRfQlVHPXkKQ09ORklHX1g4Nl9BTElHTk1FTlRfMTY9eQpDT05GSUdf +WDg2X01JTklNVU1fQ1BVX0ZBTUlMWT00CkNPTkZJR19JQTMyX0ZFQVRfQ1RMPXkKIyBDT05GSUdf +UFJPQ0VTU09SX1NFTEVDVCBpcyBub3Qgc2V0CkNPTkZJR19DUFVfU1VQX0lOVEVMPXkKQ09ORklH +X0NQVV9TVVBfQ1lSSVhfMzI9eQpDT05GSUdfQ1BVX1NVUF9BTUQ9eQpDT05GSUdfQ1BVX1NVUF9I +WUdPTj15CkNPTkZJR19DUFVfU1VQX0NFTlRBVVI9eQpDT05GSUdfQ1BVX1NVUF9UUkFOU01FVEFf +MzI9eQpDT05GSUdfQ1BVX1NVUF9VTUNfMzI9eQpDT05GSUdfQ1BVX1NVUF9aSEFPWElOPXkKIyBD +T05GSUdfSFBFVF9USU1FUiBpcyBub3Qgc2V0CiMgQ09ORklHX0RNSSBpcyBub3Qgc2V0CkNPTkZJ +R19OUl9DUFVTX1JBTkdFX0JFR0lOPTEKQ09ORklHX05SX0NQVVNfUkFOR0VfRU5EPTEKQ09ORklH +X05SX0NQVVNfREVGQVVMVD0xCkNPTkZJR19OUl9DUFVTPTEKIyBDT05GSUdfWDg2X1VQX0FQSUMg +aXMgbm90IHNldAojIENPTkZJR19YODZfTUNFIGlzIG5vdCBzZXQKCiMKIyBQZXJmb3JtYW5jZSBt +b25pdG9yaW5nCiMKIyBDT05GSUdfUEVSRl9FVkVOVFNfQU1EX1BPV0VSIGlzIG5vdCBzZXQKIyBD +T05GSUdfUEVSRl9FVkVOVFNfQU1EX1VOQ09SRSBpcyBub3Qgc2V0CiMgZW5kIG9mIFBlcmZvcm1h +bmNlIG1vbml0b3JpbmcKCiMgQ09ORklHX1g4Nl9MRUdBQ1lfVk04NiBpcyBub3Qgc2V0CiMgQ09O +RklHX1g4Nl9JT1BMX0lPUEVSTSBpcyBub3Qgc2V0CiMgQ09ORklHX1RPU0hJQkEgaXMgbm90IHNl +dAojIENPTkZJR19JOEsgaXMgbm90IHNldAojIENPTkZJR19YODZfUkVCT09URklYVVBTIGlzIG5v +dCBzZXQKIyBDT05GSUdfTUlDUk9DT0RFIGlzIG5vdCBzZXQKIyBDT05GSUdfWDg2X01TUiBpcyBu +b3Qgc2V0CiMgQ09ORklHX1g4Nl9DUFVJRCBpcyBub3Qgc2V0CkNPTkZJR19OT0hJR0hNRU09eQoj +IENPTkZJR19ISUdITUVNNEcgaXMgbm90IHNldApDT05GSUdfVk1TUExJVF8zRz15CiMgQ09ORklH +X1ZNU1BMSVRfM0dfT1BUIGlzIG5vdCBzZXQKIyBDT05GSUdfVk1TUExJVF8yRyBpcyBub3Qgc2V0 +CiMgQ09ORklHX1ZNU1BMSVRfMkdfT1BUIGlzIG5vdCBzZXQKIyBDT05GSUdfVk1TUExJVF8xRyBp +cyBub3Qgc2V0CkNPTkZJR19QQUdFX09GRlNFVD0weEMwMDAwMDAwCiMgQ09ORklHX1g4Nl9QQUUg +aXMgbm90IHNldApDT05GSUdfQVJDSF9GTEFUTUVNX0VOQUJMRT15CkNPTkZJR19BUkNIX1NQQVJT +RU1FTV9FTkFCTEU9eQpDT05GSUdfQVJDSF9TRUxFQ1RfTUVNT1JZX01PREVMPXkKQ09ORklHX0lM +TEVHQUxfUE9JTlRFUl9WQUxVRT0wCiMgQ09ORklHX1g4Nl9DSEVDS19CSU9TX0NPUlJVUFRJT04g +aXMgbm90IHNldAojIENPTkZJR19NVFJSIGlzIG5vdCBzZXQKIyBDT05GSUdfQVJDSF9SQU5ET00g +aXMgbm90IHNldAojIENPTkZJR19YODZfU01BUCBpcyBub3Qgc2V0CiMgQ09ORklHX1g4Nl9VTUlQ +IGlzIG5vdCBzZXQKQ09ORklHX1g4Nl9JTlRFTF9UU1hfTU9ERV9PRkY9eQojIENPTkZJR19YODZf +SU5URUxfVFNYX01PREVfT04gaXMgbm90IHNldAojIENPTkZJR19YODZfSU5URUxfVFNYX01PREVf +QVVUTyBpcyBub3Qgc2V0CiMgQ09ORklHX0haXzEwMCBpcyBub3Qgc2V0CkNPTkZJR19IWl8yNTA9 +eQojIENPTkZJR19IWl8zMDAgaXMgbm90IHNldAojIENPTkZJR19IWl8xMDAwIGlzIG5vdCBzZXQK +Q09ORklHX0haPTI1MAojIENPTkZJR19LRVhFQyBpcyBub3Qgc2V0CkNPTkZJR19QSFlTSUNBTF9T +VEFSVD0weDEwMDAwMDAKIyBDT05GSUdfUkVMT0NBVEFCTEUgaXMgbm90IHNldApDT05GSUdfUEhZ +U0lDQUxfQUxJR049MHgyMDAwMDAKIyBDT05GSUdfQ09NUEFUX1ZEU08gaXMgbm90IHNldAojIENP +TkZJR19DTURMSU5FX0JPT0wgaXMgbm90IHNldAojIENPTkZJR19NT0RJRllfTERUX1NZU0NBTEwg +aXMgbm90IHNldAojIGVuZCBvZiBQcm9jZXNzb3IgdHlwZSBhbmQgZmVhdHVyZXMKCkNPTkZJR19B +UkNIX01IUF9NRU1NQVBfT05fTUVNT1JZX0VOQUJMRT15CgojCiMgUG93ZXIgbWFuYWdlbWVudCBh +bmQgQUNQSSBvcHRpb25zCiMKIyBDT05GSUdfU1VTUEVORCBpcyBub3Qgc2V0CiMgQ09ORklHX1BN +IGlzIG5vdCBzZXQKQ09ORklHX0FSQ0hfU1VQUE9SVFNfQUNQST15CiMgQ09ORklHX0FDUEkgaXMg +bm90IHNldAoKIwojIENQVSBGcmVxdWVuY3kgc2NhbGluZwojCiMgQ09ORklHX0NQVV9GUkVRIGlz +IG5vdCBzZXQKIyBlbmQgb2YgQ1BVIEZyZXF1ZW5jeSBzY2FsaW5nCgojCiMgQ1BVIElkbGUKIwoj +IENPTkZJR19DUFVfSURMRSBpcyBub3Qgc2V0CiMgZW5kIG9mIENQVSBJZGxlCiMgZW5kIG9mIFBv +d2VyIG1hbmFnZW1lbnQgYW5kIEFDUEkgb3B0aW9ucwoKIwojIEJ1cyBvcHRpb25zIChQQ0kgZXRj +LikKIwojIENPTkZJR19JU0FfQlVTIGlzIG5vdCBzZXQKQ09ORklHX0lTQV9ETUFfQVBJPXkKIyBD +T05GSUdfSVNBIGlzIG5vdCBzZXQKIyBDT05GSUdfU0N4MjAwIGlzIG5vdCBzZXQKIyBDT05GSUdf +T0xQQyBpcyBub3Qgc2V0CiMgQ09ORklHX0FMSVggaXMgbm90IHNldAojIENPTkZJR19ORVQ1NTAx +IGlzIG5vdCBzZXQKIyBlbmQgb2YgQnVzIG9wdGlvbnMgKFBDSSBldGMuKQoKIwojIEJpbmFyeSBF +bXVsYXRpb25zCiMKQ09ORklHX0NPTVBBVF8zMj15CiMgZW5kIG9mIEJpbmFyeSBFbXVsYXRpb25z +CgpDT05GSUdfSEFWRV9BVE9NSUNfSU9NQVA9eQpDT05GSUdfSEFWRV9LVk09eQojIENPTkZJR19W +SVJUVUFMSVpBVElPTiBpcyBub3Qgc2V0CkNPTkZJR19BU19BVlg1MTI9eQpDT05GSUdfQVNfU0hB +MV9OST15CkNPTkZJR19BU19TSEEyNTZfTkk9eQpDT05GSUdfQVNfVFBBVVNFPXkKCiMKIyBHZW5l +cmFsIGFyY2hpdGVjdHVyZS1kZXBlbmRlbnQgb3B0aW9ucwojCkNPTkZJR19HRU5FUklDX0VOVFJZ +PXkKIyBDT05GSUdfSlVNUF9MQUJFTCBpcyBub3Qgc2V0CiMgQ09ORklHX1NUQVRJQ19DQUxMX1NF +TEZURVNUIGlzIG5vdCBzZXQKQ09ORklHX0hBVkVfRUZGSUNJRU5UX1VOQUxJR05FRF9BQ0NFU1M9 +eQpDT05GSUdfQVJDSF9VU0VfQlVJTFRJTl9CU1dBUD15CkNPTkZJR19IQVZFX0lPUkVNQVBfUFJP +VD15CkNPTkZJR19IQVZFX0tQUk9CRVM9eQpDT05GSUdfSEFWRV9LUkVUUFJPQkVTPXkKQ09ORklH +X0hBVkVfT1BUUFJPQkVTPXkKQ09ORklHX0hBVkVfS1BST0JFU19PTl9GVFJBQ0U9eQpDT05GSUdf +SEFWRV9GVU5DVElPTl9FUlJPUl9JTkpFQ1RJT049eQpDT05GSUdfSEFWRV9OTUk9eQpDT05GSUdf +VFJBQ0VfSVJRRkxBR1NfU1VQUE9SVD15CkNPTkZJR19IQVZFX0FSQ0hfVFJBQ0VIT09LPXkKQ09O +RklHX0hBVkVfRE1BX0NPTlRJR1VPVVM9eQpDT05GSUdfR0VORVJJQ19TTVBfSURMRV9USFJFQUQ9 +eQpDT05GSUdfQVJDSF9IQVNfRk9SVElGWV9TT1VSQ0U9eQpDT05GSUdfQVJDSF9IQVNfU0VUX01F +TU9SWT15CkNPTkZJR19BUkNIX0hBU19TRVRfRElSRUNUX01BUD15CkNPTkZJR19IQVZFX0FSQ0hf +VEhSRUFEX1NUUlVDVF9XSElURUxJU1Q9eQpDT05GSUdfQVJDSF9XQU5UU19EWU5BTUlDX1RBU0tf +U1RSVUNUPXkKQ09ORklHX0FSQ0hfV0FOVFNfTk9fSU5TVFI9eQpDT05GSUdfQVJDSF8zMkJJVF9P +RkZfVD15CkNPTkZJR19IQVZFX0FTTV9NT0RWRVJTSU9OUz15CkNPTkZJR19IQVZFX1JFR1NfQU5E +X1NUQUNLX0FDQ0VTU19BUEk9eQpDT05GSUdfSEFWRV9SU0VRPXkKQ09ORklHX0hBVkVfRlVOQ1RJ +T05fQVJHX0FDQ0VTU19BUEk9eQpDT05GSUdfSEFWRV9IV19CUkVBS1BPSU5UPXkKQ09ORklHX0hB +VkVfTUlYRURfQlJFQUtQT0lOVFNfUkVHUz15CkNPTkZJR19IQVZFX1VTRVJfUkVUVVJOX05PVElG +SUVSPXkKQ09ORklHX0hBVkVfUEVSRl9FVkVOVFNfTk1JPXkKQ09ORklHX0hBVkVfSEFSRExPQ0tV +UF9ERVRFQ1RPUl9QRVJGPXkKQ09ORklHX0hBVkVfUEVSRl9SRUdTPXkKQ09ORklHX0hBVkVfUEVS +Rl9VU0VSX1NUQUNLX0RVTVA9eQpDT05GSUdfSEFWRV9BUkNIX0pVTVBfTEFCRUw9eQpDT05GSUdf +SEFWRV9BUkNIX0pVTVBfTEFCRUxfUkVMQVRJVkU9eQpDT05GSUdfQVJDSF9IQVZFX05NSV9TQUZF +X0NNUFhDSEc9eQpDT05GSUdfSEFWRV9DTVBYQ0hHX0xPQ0FMPXkKQ09ORklHX0hBVkVfQ01QWENI +R19ET1VCTEU9eQpDT05GSUdfQVJDSF9XQU5UX0lQQ19QQVJTRV9WRVJTSU9OPXkKQ09ORklHX0hB +VkVfQVJDSF9TRUNDT01QPXkKQ09ORklHX0hBVkVfQVJDSF9TRUNDT01QX0ZJTFRFUj15CiMgQ09O +RklHX1NFQ0NPTVAgaXMgbm90IHNldApDT05GSUdfSEFWRV9BUkNIX1NUQUNLTEVBSz15CkNPTkZJ +R19IQVZFX1NUQUNLUFJPVEVDVE9SPXkKIyBDT05GSUdfU1RBQ0tQUk9URUNUT1IgaXMgbm90IHNl +dApDT05GSUdfQVJDSF9TVVBQT1JUU19MVE9fQ0xBTkc9eQpDT05GSUdfQVJDSF9TVVBQT1JUU19M +VE9fQ0xBTkdfVEhJTj15CkNPTkZJR19MVE9fTk9ORT15CkNPTkZJR19IQVZFX0FSQ0hfV0lUSElO +X1NUQUNLX0ZSQU1FUz15CkNPTkZJR19IQVZFX0lSUV9USU1FX0FDQ09VTlRJTkc9eQpDT05GSUdf +SEFWRV9NT1ZFX1BVRD15CkNPTkZJR19IQVZFX01PVkVfUE1EPXkKQ09ORklHX0hBVkVfQVJDSF9U +UkFOU1BBUkVOVF9IVUdFUEFHRT15CkNPTkZJR19BUkNIX1dBTlRfSFVHRV9QTURfU0hBUkU9eQpD +T05GSUdfSEFWRV9NT0RfQVJDSF9TUEVDSUZJQz15CkNPTkZJR19NT0RVTEVTX1VTRV9FTEZfUkVM +PXkKQ09ORklHX0hBVkVfU09GVElSUV9PTl9PV05fU1RBQ0s9eQpDT05GSUdfQVJDSF9IQVNfRUxG +X1JBTkRPTUlaRT15CkNPTkZJR19IQVZFX0FSQ0hfTU1BUF9STkRfQklUUz15CkNPTkZJR19IQVZF +X0VYSVRfVEhSRUFEPXkKQ09ORklHX0FSQ0hfTU1BUF9STkRfQklUUz04CkNPTkZJR19DTE9ORV9C +QUNLV0FSRFM9eQpDT05GSUdfT0xEX1NJR1NVU1BFTkQzPXkKQ09ORklHX09MRF9TSUdBQ1RJT049 +eQojIENPTkZJR19DT01QQVRfMzJCSVRfVElNRSBpcyBub3Qgc2V0CkNPTkZJR19IQVZFX0FSQ0hf +UkFORE9NSVpFX0tTVEFDS19PRkZTRVQ9eQojIENPTkZJR19SQU5ET01JWkVfS1NUQUNLX09GRlNF +VF9ERUZBVUxUIGlzIG5vdCBzZXQKQ09ORklHX0FSQ0hfSEFTX1NUUklDVF9LRVJORUxfUldYPXkK +Q09ORklHX1NUUklDVF9LRVJORUxfUldYPXkKQ09ORklHX0FSQ0hfSEFTX1NUUklDVF9NT0RVTEVf +UldYPXkKQ09ORklHX0hBVkVfQVJDSF9QUkVMMzJfUkVMT0NBVElPTlM9eQpDT05GSUdfQVJDSF9I +QVNfTUVNX0VOQ1JZUFQ9eQpDT05GSUdfSEFWRV9TVEFUSUNfQ0FMTD15CkNPTkZJR19IQVZFX1BS +RUVNUFRfRFlOQU1JQz15CkNPTkZJR19BUkNIX1dBTlRfTERfT1JQSEFOX1dBUk49eQpDT05GSUdf +QVJDSF9TVVBQT1JUU19ERUJVR19QQUdFQUxMT0M9eQpDT05GSUdfQVJDSF9TUExJVF9BUkc2ND15 +CkNPTkZJR19BUkNIX0hBU19QQVJBTk9JRF9MMURfRkxVU0g9eQoKIwojIEdDT1YtYmFzZWQga2Vy +bmVsIHByb2ZpbGluZwojCkNPTkZJR19BUkNIX0hBU19HQ09WX1BST0ZJTEVfQUxMPXkKIyBlbmQg +b2YgR0NPVi1iYXNlZCBrZXJuZWwgcHJvZmlsaW5nCgpDT05GSUdfSEFWRV9HQ0NfUExVR0lOUz15 +CiMgZW5kIG9mIEdlbmVyYWwgYXJjaGl0ZWN0dXJlLWRlcGVuZGVudCBvcHRpb25zCgpDT05GSUdf +QkFTRV9TTUFMTD0xCiMgQ09ORklHX01PRFVMRVMgaXMgbm90IHNldApDT05GSUdfTU9EVUxFU19U +UkVFX0xPT0tVUD15CiMgQ09ORklHX0JMT0NLIGlzIG5vdCBzZXQKQ09ORklHX0lOTElORV9TUElO +X1VOTE9DS19JUlE9eQpDT05GSUdfSU5MSU5FX1JFQURfVU5MT0NLPXkKQ09ORklHX0lOTElORV9S +RUFEX1VOTE9DS19JUlE9eQpDT05GSUdfSU5MSU5FX1dSSVRFX1VOTE9DSz15CkNPTkZJR19JTkxJ +TkVfV1JJVEVfVU5MT0NLX0lSUT15CkNPTkZJR19BUkNIX1NVUFBPUlRTX0FUT01JQ19STVc9eQpD +T05GSUdfQVJDSF9VU0VfUVVFVUVEX1NQSU5MT0NLUz15CkNPTkZJR19BUkNIX1VTRV9RVUVVRURf +UldMT0NLUz15CkNPTkZJR19BUkNIX0hBU19OT05fT1ZFUkxBUFBJTkdfQUREUkVTU19TUEFDRT15 +CkNPTkZJR19BUkNIX0hBU19TWU5DX0NPUkVfQkVGT1JFX1VTRVJNT0RFPXkKQ09ORklHX0FSQ0hf +SEFTX1NZU0NBTExfV1JBUFBFUj15CgojCiMgRXhlY3V0YWJsZSBmaWxlIGZvcm1hdHMKIwpDT05G +SUdfQklORk1UX0VMRj15CkNPTkZJR19FTEZDT1JFPXkKQ09ORklHX0JJTkZNVF9TQ1JJUFQ9eQoj +IENPTkZJR19CSU5GTVRfTUlTQyBpcyBub3Qgc2V0CiMgQ09ORklHX0NPUkVEVU1QIGlzIG5vdCBz +ZXQKIyBlbmQgb2YgRXhlY3V0YWJsZSBmaWxlIGZvcm1hdHMKCiMKIyBNZW1vcnkgTWFuYWdlbWVu +dCBvcHRpb25zCiMKQ09ORklHX1NFTEVDVF9NRU1PUllfTU9ERUw9eQpDT05GSUdfRkxBVE1FTV9N +QU5VQUw9eQojIENPTkZJR19TUEFSU0VNRU1fTUFOVUFMIGlzIG5vdCBzZXQKQ09ORklHX0ZMQVRN +RU09eQpDT05GSUdfU1BBUlNFTUVNX1NUQVRJQz15CkNPTkZJR19IQVZFX0ZBU1RfR1VQPXkKQ09O +RklHX1NQTElUX1BUTE9DS19DUFVTPTQKIyBDT05GSUdfQ09NUEFDVElPTiBpcyBub3Qgc2V0CiMg +Q09ORklHX1BBR0VfUkVQT1JUSU5HIGlzIG5vdCBzZXQKQ09ORklHX1ZJUlRfVE9fQlVTPXkKIyBD +T05GSUdfS1NNIGlzIG5vdCBzZXQKQ09ORklHX0RFRkFVTFRfTU1BUF9NSU5fQUREUj00MDk2CiMg +Q09ORklHX1RSQU5TUEFSRU5UX0hVR0VQQUdFIGlzIG5vdCBzZXQKQ09ORklHX05FRURfUEVSX0NQ +VV9LTT15CiMgQ09ORklHX0NMRUFOQ0FDSEUgaXMgbm90IHNldAojIENPTkZJR19DTUEgaXMgbm90 +IHNldAojIENPTkZJR19aUE9PTCBpcyBub3Qgc2V0CiMgQ09ORklHX1pTTUFMTE9DIGlzIG5vdCBz +ZXQKQ09ORklHX0dFTkVSSUNfRUFSTFlfSU9SRU1BUD15CkNPTkZJR19BUkNIX0hBU19DQUNIRV9M +SU5FX1NJWkU9eQpDT05GSUdfQVJDSF9IQVNfWk9ORV9ETUFfU0VUPXkKIyBDT05GSUdfWk9ORV9E +TUEgaXMgbm90IHNldAojIENPTkZJR19QRVJDUFVfU1RBVFMgaXMgbm90IHNldAoKIwojIEdVUF9U +RVNUIG5lZWRzIHRvIGhhdmUgREVCVUdfRlMgZW5hYmxlZAojCkNPTkZJR19BUkNIX0hBU19QVEVf +U1BFQ0lBTD15CkNPTkZJR19LTUFQX0xPQ0FMPXkKCiMKIyBEYXRhIEFjY2VzcyBNb25pdG9yaW5n +CiMKIyBDT05GSUdfREFNT04gaXMgbm90IHNldAojIGVuZCBvZiBEYXRhIEFjY2VzcyBNb25pdG9y +aW5nCiMgZW5kIG9mIE1lbW9yeSBNYW5hZ2VtZW50IG9wdGlvbnMKCiMgQ09ORklHX05FVCBpcyBu +b3Qgc2V0CgojCiMgRGV2aWNlIERyaXZlcnMKIwpDT05GSUdfSEFWRV9FSVNBPXkKIyBDT05GSUdf +RUlTQSBpcyBub3Qgc2V0CkNPTkZJR19IQVZFX1BDST15CiMgQ09ORklHX1BDSSBpcyBub3Qgc2V0 +CiMgQ09ORklHX1BDQ0FSRCBpcyBub3Qgc2V0CgojCiMgR2VuZXJpYyBEcml2ZXIgT3B0aW9ucwoj +CiMgQ09ORklHX1VFVkVOVF9IRUxQRVIgaXMgbm90IHNldAojIENPTkZJR19ERVZUTVBGUyBpcyBu +b3Qgc2V0CiMgQ09ORklHX1NUQU5EQUxPTkUgaXMgbm90IHNldAojIENPTkZJR19QUkVWRU5UX0ZJ +Uk1XQVJFX0JVSUxEIGlzIG5vdCBzZXQKCiMKIyBGaXJtd2FyZSBsb2FkZXIKIwojIENPTkZJR19G +V19MT0FERVIgaXMgbm90IHNldAojIGVuZCBvZiBGaXJtd2FyZSBsb2FkZXIKCiMgQ09ORklHX0FM +TE9XX0RFVl9DT1JFRFVNUCBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX0RSSVZFUiBpcyBub3Qg +c2V0CiMgQ09ORklHX0RFQlVHX0RFVlJFUyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1RFU1Rf +RFJJVkVSX1JFTU9WRSBpcyBub3Qgc2V0CkNPTkZJR19HRU5FUklDX0NQVV9BVVRPUFJPQkU9eQpD +T05GSUdfR0VORVJJQ19DUFVfVlVMTkVSQUJJTElUSUVTPXkKIyBlbmQgb2YgR2VuZXJpYyBEcml2 +ZXIgT3B0aW9ucwoKIwojIEJ1cyBkZXZpY2VzCiMKIyBDT05GSUdfTUhJX0JVUyBpcyBub3Qgc2V0 +CiMgZW5kIG9mIEJ1cyBkZXZpY2VzCgojCiMgRmlybXdhcmUgRHJpdmVycwojCgojCiMgQVJNIFN5 +c3RlbSBDb250cm9sIGFuZCBNYW5hZ2VtZW50IEludGVyZmFjZSBQcm90b2NvbAojCiMgZW5kIG9m +IEFSTSBTeXN0ZW0gQ29udHJvbCBhbmQgTWFuYWdlbWVudCBJbnRlcmZhY2UgUHJvdG9jb2wKCiMg +Q09ORklHX0VERCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZJUk1XQVJFX01FTU1BUCBpcyBub3Qgc2V0 +CkNPTkZJR19TWVNGQj15CiMgQ09ORklHX1NZU0ZCX1NJTVBMRUZCIGlzIG5vdCBzZXQKIyBDT05G +SUdfR09PR0xFX0ZJUk1XQVJFIGlzIG5vdCBzZXQKCiMKIyBUZWdyYSBmaXJtd2FyZSBkcml2ZXIK +IwojIGVuZCBvZiBUZWdyYSBmaXJtd2FyZSBkcml2ZXIKIyBlbmQgb2YgRmlybXdhcmUgRHJpdmVy +cwoKIyBDT05GSUdfR05TUyBpcyBub3Qgc2V0CiMgQ09ORklHX01URCBpcyBub3Qgc2V0CiMgQ09O +RklHX09GIGlzIG5vdCBzZXQKQ09ORklHX0FSQ0hfTUlHSFRfSEFWRV9QQ19QQVJQT1JUPXkKIyBD +T05GSUdfUEFSUE9SVCBpcyBub3Qgc2V0CgojCiMgTlZNRSBTdXBwb3J0CiMKIyBlbmQgb2YgTlZN +RSBTdXBwb3J0CgojCiMgTWlzYyBkZXZpY2VzCiMKIyBDT05GSUdfRFVNTVlfSVJRIGlzIG5vdCBz +ZXQKIyBDT05GSUdfRU5DTE9TVVJFX1NFUlZJQ0VTIGlzIG5vdCBzZXQKIyBDT05GSUdfU1JBTSBp +cyBub3Qgc2V0CiMgQ09ORklHX1hJTElOWF9TREZFQyBpcyBub3Qgc2V0CiMgQ09ORklHX0MyUE9S +VCBpcyBub3Qgc2V0CgojCiMgRUVQUk9NIHN1cHBvcnQKIwojIENPTkZJR19FRVBST01fOTNDWDYg +aXMgbm90IHNldAojIGVuZCBvZiBFRVBST00gc3VwcG9ydAoKIwojIFRleGFzIEluc3RydW1lbnRz +IHNoYXJlZCB0cmFuc3BvcnQgbGluZSBkaXNjaXBsaW5lCiMKIyBlbmQgb2YgVGV4YXMgSW5zdHJ1 +bWVudHMgc2hhcmVkIHRyYW5zcG9ydCBsaW5lIGRpc2NpcGxpbmUKCiMKIyBBbHRlcmEgRlBHQSBm +aXJtd2FyZSBkb3dubG9hZCBtb2R1bGUgKHJlcXVpcmVzIEkyQykKIwojIENPTkZJR19FQ0hPIGlz +IG5vdCBzZXQKIyBDT05GSUdfUFZQQU5JQyBpcyBub3Qgc2V0CiMgZW5kIG9mIE1pc2MgZGV2aWNl +cwoKIwojIFNDU0kgZGV2aWNlIHN1cHBvcnQKIwpDT05GSUdfU0NTSV9NT0Q9eQojIGVuZCBvZiBT +Q1NJIGRldmljZSBzdXBwb3J0CgojIENPTkZJR19NQUNJTlRPU0hfRFJJVkVSUyBpcyBub3Qgc2V0 +CgojCiMgSW5wdXQgZGV2aWNlIHN1cHBvcnQKIwpDT05GSUdfSU5QVVQ9eQojIENPTkZJR19JTlBV +VF9GRl9NRU1MRVNTIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5QVVRfU1BBUlNFS01BUCBpcyBub3Qg +c2V0CiMgQ09ORklHX0lOUFVUX01BVFJJWEtNQVAgaXMgbm90IHNldAoKIwojIFVzZXJsYW5kIGlu +dGVyZmFjZXMKIwojIENPTkZJR19JTlBVVF9NT1VTRURFViBpcyBub3Qgc2V0CiMgQ09ORklHX0lO +UFVUX0pPWURFViBpcyBub3Qgc2V0CiMgQ09ORklHX0lOUFVUX0VWREVWIGlzIG5vdCBzZXQKIyBD +T05GSUdfSU5QVVRfRVZCVUcgaXMgbm90IHNldAoKIwojIElucHV0IERldmljZSBEcml2ZXJzCiMK +Q09ORklHX0lOUFVUX0tFWUJPQVJEPXkKQ09ORklHX0tFWUJPQVJEX0FUS0JEPXkKIyBDT05GSUdf +S0VZQk9BUkRfTEtLQkQgaXMgbm90IHNldAojIENPTkZJR19LRVlCT0FSRF9ORVdUT04gaXMgbm90 +IHNldAojIENPTkZJR19LRVlCT0FSRF9PUEVOQ09SRVMgaXMgbm90IHNldAojIENPTkZJR19LRVlC +T0FSRF9TVE9XQVdBWSBpcyBub3Qgc2V0CiMgQ09ORklHX0tFWUJPQVJEX1NVTktCRCBpcyBub3Qg +c2V0CiMgQ09ORklHX0tFWUJPQVJEX1hUS0JEIGlzIG5vdCBzZXQKQ09ORklHX0lOUFVUX01PVVNF +PXkKQ09ORklHX01PVVNFX1BTMj15CkNPTkZJR19NT1VTRV9QUzJfQUxQUz15CkNPTkZJR19NT1VT +RV9QUzJfQllEPXkKQ09ORklHX01PVVNFX1BTMl9MT0dJUFMyUFA9eQpDT05GSUdfTU9VU0VfUFMy +X1NZTkFQVElDUz15CkNPTkZJR19NT1VTRV9QUzJfQ1lQUkVTUz15CkNPTkZJR19NT1VTRV9QUzJf +VFJBQ0tQT0lOVD15CiMgQ09ORklHX01PVVNFX1BTMl9FTEFOVEVDSCBpcyBub3Qgc2V0CiMgQ09O +RklHX01PVVNFX1BTMl9TRU5URUxJQyBpcyBub3Qgc2V0CiMgQ09ORklHX01PVVNFX1BTMl9UT1VD +SEtJVCBpcyBub3Qgc2V0CkNPTkZJR19NT1VTRV9QUzJfRk9DQUxURUNIPXkKIyBDT05GSUdfTU9V +U0VfU0VSSUFMIGlzIG5vdCBzZXQKIyBDT05GSUdfTU9VU0VfVlNYWFhBQSBpcyBub3Qgc2V0CiMg +Q09ORklHX0lOUFVUX0pPWVNUSUNLIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5QVVRfVEFCTEVUIGlz +IG5vdCBzZXQKIyBDT05GSUdfSU5QVVRfVE9VQ0hTQ1JFRU4gaXMgbm90IHNldAojIENPTkZJR19J +TlBVVF9NSVNDIGlzIG5vdCBzZXQKIyBDT05GSUdfUk1JNF9DT1JFIGlzIG5vdCBzZXQKCiMKIyBI +YXJkd2FyZSBJL08gcG9ydHMKIwpDT05GSUdfU0VSSU89eQpDT05GSUdfQVJDSF9NSUdIVF9IQVZF +X1BDX1NFUklPPXkKQ09ORklHX1NFUklPX0k4MDQyPXkKQ09ORklHX1NFUklPX1NFUlBPUlQ9eQoj +IENPTkZJR19TRVJJT19DVDgyQzcxMCBpcyBub3Qgc2V0CkNPTkZJR19TRVJJT19MSUJQUzI9eQoj +IENPTkZJR19TRVJJT19SQVcgaXMgbm90IHNldAojIENPTkZJR19TRVJJT19BTFRFUkFfUFMyIGlz +IG5vdCBzZXQKIyBDT05GSUdfU0VSSU9fUFMyTVVMVCBpcyBub3Qgc2V0CiMgQ09ORklHX1NFUklP +X0FSQ19QUzIgaXMgbm90IHNldAojIENPTkZJR19VU0VSSU8gaXMgbm90IHNldAojIENPTkZJR19H +QU1FUE9SVCBpcyBub3Qgc2V0CiMgZW5kIG9mIEhhcmR3YXJlIEkvTyBwb3J0cwojIGVuZCBvZiBJ +bnB1dCBkZXZpY2Ugc3VwcG9ydAoKIwojIENoYXJhY3RlciBkZXZpY2VzCiMKQ09ORklHX1RUWT15 +CkNPTkZJR19WVD15CkNPTkZJR19DT05TT0xFX1RSQU5TTEFUSU9OUz15CkNPTkZJR19WVF9DT05T +T0xFPXkKQ09ORklHX0hXX0NPTlNPTEU9eQojIENPTkZJR19WVF9IV19DT05TT0xFX0JJTkRJTkcg +aXMgbm90IHNldApDT05GSUdfVU5JWDk4X1BUWVM9eQpDT05GSUdfTEVHQUNZX1BUWVM9eQpDT05G +SUdfTEVHQUNZX1BUWV9DT1VOVD0yNTYKQ09ORklHX0xESVNDX0FVVE9MT0FEPXkKCiMKIyBTZXJp +YWwgZHJpdmVycwojCiMgQ09ORklHX1NFUklBTF84MjUwIGlzIG5vdCBzZXQKCiMKIyBOb24tODI1 +MCBzZXJpYWwgcG9ydCBzdXBwb3J0CiMKIyBDT05GSUdfU0VSSUFMX1VBUlRMSVRFIGlzIG5vdCBz +ZXQKIyBDT05GSUdfU0VSSUFMX0xBTlRJUSBpcyBub3Qgc2V0CiMgQ09ORklHX1NFUklBTF9TQ0NO +WFAgaXMgbm90IHNldAojIENPTkZJR19TRVJJQUxfVElNQkVSREFMRSBpcyBub3Qgc2V0CiMgQ09O +RklHX1NFUklBTF9BTFRFUkFfSlRBR1VBUlQgaXMgbm90IHNldAojIENPTkZJR19TRVJJQUxfQUxU +RVJBX1VBUlQgaXMgbm90IHNldAojIENPTkZJR19TRVJJQUxfQVJDIGlzIG5vdCBzZXQKIyBDT05G +SUdfU0VSSUFMX0ZTTF9MUFVBUlQgaXMgbm90IHNldAojIENPTkZJR19TRVJJQUxfRlNMX0xJTkZM +RVhVQVJUIGlzIG5vdCBzZXQKIyBlbmQgb2YgU2VyaWFsIGRyaXZlcnMKCiMgQ09ORklHX1NFUklB +TF9OT05TVEFOREFSRCBpcyBub3Qgc2V0CiMgQ09ORklHX05VTExfVFRZIGlzIG5vdCBzZXQKIyBD +T05GSUdfU0VSSUFMX0RFVl9CVVMgaXMgbm90IHNldAojIENPTkZJR19UVFlfUFJJTlRLIGlzIG5v +dCBzZXQKIyBDT05GSUdfVklSVElPX0NPTlNPTEUgaXMgbm90IHNldAojIENPTkZJR19JUE1JX0hB +TkRMRVIgaXMgbm90IHNldAojIENPTkZJR19IV19SQU5ET00gaXMgbm90IHNldAojIENPTkZJR19N +V0FWRSBpcyBub3Qgc2V0CiMgQ09ORklHX1BDODczNnhfR1BJTyBpcyBub3Qgc2V0CiMgQ09ORklH +X05TQ19HUElPIGlzIG5vdCBzZXQKIyBDT05GSUdfREVWTUVNIGlzIG5vdCBzZXQKIyBDT05GSUdf +TlZSQU0gaXMgbm90IHNldAojIENPTkZJR19IQU5HQ0hFQ0tfVElNRVIgaXMgbm90IHNldAojIENP +TkZJR19UQ0dfVFBNIGlzIG5vdCBzZXQKIyBDT05GSUdfVEVMQ0xPQ0sgaXMgbm90IHNldAojIENP +TkZJR19SQU5ET01fVFJVU1RfQk9PVExPQURFUiBpcyBub3Qgc2V0CiMgZW5kIG9mIENoYXJhY3Rl +ciBkZXZpY2VzCgojCiMgSTJDIHN1cHBvcnQKIwojIENPTkZJR19JMkMgaXMgbm90IHNldAojIGVu +ZCBvZiBJMkMgc3VwcG9ydAoKIyBDT05GSUdfSTNDIGlzIG5vdCBzZXQKIyBDT05GSUdfU1BJIGlz +IG5vdCBzZXQKIyBDT05GSUdfU1BNSSBpcyBub3Qgc2V0CiMgQ09ORklHX0hTSSBpcyBub3Qgc2V0 +CiMgQ09ORklHX1BQUyBpcyBub3Qgc2V0CgojCiMgUFRQIGNsb2NrIHN1cHBvcnQKIwpDT05GSUdf +UFRQXzE1ODhfQ0xPQ0tfT1BUSU9OQUw9eQoKIwojIEVuYWJsZSBQSFlMSUIgYW5kIE5FVFdPUktf +UEhZX1RJTUVTVEFNUElORyB0byBzZWUgdGhlIGFkZGl0aW9uYWwgY2xvY2tzLgojCiMgZW5kIG9m +IFBUUCBjbG9jayBzdXBwb3J0CgojIENPTkZJR19QSU5DVFJMIGlzIG5vdCBzZXQKIyBDT05GSUdf +R1BJT0xJQiBpcyBub3Qgc2V0CiMgQ09ORklHX1cxIGlzIG5vdCBzZXQKIyBDT05GSUdfUE9XRVJf +UkVTRVQgaXMgbm90IHNldAojIENPTkZJR19QT1dFUl9TVVBQTFkgaXMgbm90IHNldAojIENPTkZJ +R19IV01PTiBpcyBub3Qgc2V0CiMgQ09ORklHX1RIRVJNQUwgaXMgbm90IHNldAojIENPTkZJR19X +QVRDSERPRyBpcyBub3Qgc2V0CkNPTkZJR19TU0JfUE9TU0lCTEU9eQojIENPTkZJR19TU0IgaXMg +bm90IHNldApDT05GSUdfQkNNQV9QT1NTSUJMRT15CiMgQ09ORklHX0JDTUEgaXMgbm90IHNldAoK +IwojIE11bHRpZnVuY3Rpb24gZGV2aWNlIGRyaXZlcnMKIwojIENPTkZJR19NRkRfTUFERVJBIGlz +IG5vdCBzZXQKIyBDT05GSUdfSFRDX1BBU0lDMyBpcyBub3Qgc2V0CiMgQ09ORklHX01GRF9LRU1Q +TEQgaXMgbm90IHNldAojIENPTkZJR19NRkRfTVQ2Mzk3IGlzIG5vdCBzZXQKIyBDT05GSUdfTUZE +X1NNNTAxIGlzIG5vdCBzZXQKIyBDT05GSUdfTUZEX1NZU0NPTiBpcyBub3Qgc2V0CiMgQ09ORklH +X01GRF9USV9BTTMzNVhfVFNDQURDIGlzIG5vdCBzZXQKIyBDT05GSUdfTUZEX1RRTVg4NiBpcyBu +b3Qgc2V0CiMgZW5kIG9mIE11bHRpZnVuY3Rpb24gZGV2aWNlIGRyaXZlcnMKCiMgQ09ORklHX1JF +R1VMQVRPUiBpcyBub3Qgc2V0CiMgQ09ORklHX1JDX0NPUkUgaXMgbm90IHNldAojIENPTkZJR19N +RURJQV9DRUNfU1VQUE9SVCBpcyBub3Qgc2V0CiMgQ09ORklHX01FRElBX1NVUFBPUlQgaXMgbm90 +IHNldAoKIwojIEdyYXBoaWNzIHN1cHBvcnQKIwojIENPTkZJR19EUk0gaXMgbm90IHNldAoKIwoj +IEFSTSBkZXZpY2VzCiMKIyBlbmQgb2YgQVJNIGRldmljZXMKCiMKIyBGcmFtZSBidWZmZXIgRGV2 +aWNlcwojCiMgQ09ORklHX0ZCIGlzIG5vdCBzZXQKIyBlbmQgb2YgRnJhbWUgYnVmZmVyIERldmlj +ZXMKCiMKIyBCYWNrbGlnaHQgJiBMQ0QgZGV2aWNlIHN1cHBvcnQKIwojIENPTkZJR19MQ0RfQ0xB +U1NfREVWSUNFIGlzIG5vdCBzZXQKIyBDT05GSUdfQkFDS0xJR0hUX0NMQVNTX0RFVklDRSBpcyBu +b3Qgc2V0CiMgZW5kIG9mIEJhY2tsaWdodCAmIExDRCBkZXZpY2Ugc3VwcG9ydAoKIwojIENvbnNv +bGUgZGlzcGxheSBkcml2ZXIgc3VwcG9ydAojCkNPTkZJR19WR0FfQ09OU09MRT15CkNPTkZJR19E +VU1NWV9DT05TT0xFPXkKQ09ORklHX0RVTU1ZX0NPTlNPTEVfQ09MVU1OUz04MApDT05GSUdfRFVN +TVlfQ09OU09MRV9ST1dTPTI1CiMgZW5kIG9mIENvbnNvbGUgZGlzcGxheSBkcml2ZXIgc3VwcG9y +dAojIGVuZCBvZiBHcmFwaGljcyBzdXBwb3J0CgojIENPTkZJR19TT1VORCBpcyBub3Qgc2V0Cgoj +CiMgSElEIHN1cHBvcnQKIwpDT05GSUdfSElEPXkKIyBDT05GSUdfSElEX0JBVFRFUllfU1RSRU5H +VEggaXMgbm90IHNldAojIENPTkZJR19ISURSQVcgaXMgbm90IHNldAojIENPTkZJR19VSElEIGlz +IG5vdCBzZXQKQ09ORklHX0hJRF9HRU5FUklDPXkKCiMKIyBTcGVjaWFsIEhJRCBkcml2ZXJzCiMK +IyBDT05GSUdfSElEX0E0VEVDSCBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9BQ1JVWCBpcyBub3Qg +c2V0CiMgQ09ORklHX0hJRF9BUFBMRSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9BVVJFQUwgaXMg +bm90IHNldAojIENPTkZJR19ISURfQkVMS0lOIGlzIG5vdCBzZXQKIyBDT05GSUdfSElEX0NIRVJS +WSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9DSElDT05ZIGlzIG5vdCBzZXQKIyBDT05GSUdfSElE +X0NPVUdBUiBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9NQUNBTExZIGlzIG5vdCBzZXQKIyBDT05G +SUdfSElEX0NNRURJQSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9DWVBSRVNTIGlzIG5vdCBzZXQK +IyBDT05GSUdfSElEX0RSQUdPTlJJU0UgaXMgbm90IHNldAojIENPTkZJR19ISURfRU1TX0ZGIGlz +IG5vdCBzZXQKIyBDT05GSUdfSElEX0VMRUNPTSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9FWktF +WSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9HRU1CSVJEIGlzIG5vdCBzZXQKIyBDT05GSUdfSElE +X0dGUk0gaXMgbm90IHNldAojIENPTkZJR19ISURfR0xPUklPVVMgaXMgbm90IHNldAojIENPTkZJ +R19ISURfVklWQUxESSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9LRVlUT1VDSCBpcyBub3Qgc2V0 +CiMgQ09ORklHX0hJRF9LWUUgaXMgbm90IHNldAojIENPTkZJR19ISURfV0FMVE9QIGlzIG5vdCBz +ZXQKIyBDT05GSUdfSElEX1ZJRVdTT05JQyBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9HWVJBVElP +TiBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9JQ0FERSBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9J +VEUgaXMgbm90IHNldAojIENPTkZJR19ISURfSkFCUkEgaXMgbm90IHNldAojIENPTkZJR19ISURf +VFdJTkhBTiBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9LRU5TSU5HVE9OIGlzIG5vdCBzZXQKIyBD +T05GSUdfSElEX0xDUE9XRVIgaXMgbm90IHNldAojIENPTkZJR19ISURfTEVOT1ZPIGlzIG5vdCBz +ZXQKIyBDT05GSUdfSElEX01BR0lDTU9VU0UgaXMgbm90IHNldAojIENPTkZJR19ISURfTUFMVFJP +TiBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9NQVlGTEFTSCBpcyBub3Qgc2V0CiMgQ09ORklHX0hJ +RF9SRURSQUdPTiBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9NSUNST1NPRlQgaXMgbm90IHNldAoj +IENPTkZJR19ISURfTU9OVEVSRVkgaXMgbm90IHNldAojIENPTkZJR19ISURfTVVMVElUT1VDSCBp +cyBub3Qgc2V0CiMgQ09ORklHX0hJRF9OVEkgaXMgbm90IHNldAojIENPTkZJR19ISURfT1JURUsg +aXMgbm90IHNldAojIENPTkZJR19ISURfUEFOVEhFUkxPUkQgaXMgbm90IHNldAojIENPTkZJR19I +SURfUEVUQUxZTlggaXMgbm90IHNldAojIENPTkZJR19ISURfUElDT0xDRCBpcyBub3Qgc2V0CiMg +Q09ORklHX0hJRF9QTEFOVFJPTklDUyBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9QTEFZU1RBVElP +TiBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9QUklNQVggaXMgbm90IHNldAojIENPTkZJR19ISURf +U0FJVEVLIGlzIG5vdCBzZXQKIyBDT05GSUdfSElEX1NBTVNVTkcgaXMgbm90IHNldAojIENPTkZJ +R19ISURfU0VNSVRFSyBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9TUEVFRExJTksgaXMgbm90IHNl +dAojIENPTkZJR19ISURfU1RFQU0gaXMgbm90IHNldAojIENPTkZJR19ISURfU1RFRUxTRVJJRVMg +aXMgbm90IHNldAojIENPTkZJR19ISURfU1VOUExVUyBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9S +TUkgaXMgbm90IHNldAojIENPTkZJR19ISURfR1JFRU5BU0lBIGlzIG5vdCBzZXQKIyBDT05GSUdf +SElEX1NNQVJUSk9ZUExVUyBpcyBub3Qgc2V0CiMgQ09ORklHX0hJRF9USVZPIGlzIG5vdCBzZXQK +IyBDT05GSUdfSElEX1RPUFNFRUQgaXMgbm90IHNldAojIENPTkZJR19ISURfVURSQVdfUFMzIGlz +IG5vdCBzZXQKIyBDT05GSUdfSElEX1hJTk1PIGlzIG5vdCBzZXQKIyBDT05GSUdfSElEX1pFUk9Q +TFVTIGlzIG5vdCBzZXQKIyBDT05GSUdfSElEX1pZREFDUk9OIGlzIG5vdCBzZXQKIyBDT05GSUdf +SElEX1NFTlNPUl9IVUIgaXMgbm90IHNldAojIENPTkZJR19ISURfQUxQUyBpcyBub3Qgc2V0CiMg +ZW5kIG9mIFNwZWNpYWwgSElEIGRyaXZlcnMKIyBlbmQgb2YgSElEIHN1cHBvcnQKCkNPTkZJR19V +U0JfT0hDSV9MSVRUTEVfRU5ESUFOPXkKIyBDT05GSUdfVVNCX1NVUFBPUlQgaXMgbm90IHNldAoj +IENPTkZJR19NTUMgaXMgbm90IHNldAojIENPTkZJR19NRU1TVElDSyBpcyBub3Qgc2V0CiMgQ09O +RklHX05FV19MRURTIGlzIG5vdCBzZXQKIyBDT05GSUdfQUNDRVNTSUJJTElUWSBpcyBub3Qgc2V0 +CkNPTkZJR19FREFDX0FUT01JQ19TQ1JVQj15CkNPTkZJR19FREFDX1NVUFBPUlQ9eQpDT05GSUdf +UlRDX0xJQj15CkNPTkZJR19SVENfTUMxNDY4MThfTElCPXkKIyBDT05GSUdfUlRDX0NMQVNTIGlz +IG5vdCBzZXQKIyBDT05GSUdfRE1BREVWSUNFUyBpcyBub3Qgc2V0CgojCiMgRE1BQlVGIG9wdGlv +bnMKIwojIENPTkZJR19TWU5DX0ZJTEUgaXMgbm90IHNldAojIENPTkZJR19ETUFCVUZfSEVBUFMg +aXMgbm90IHNldAojIGVuZCBvZiBETUFCVUYgb3B0aW9ucwoKIyBDT05GSUdfQVVYRElTUExBWSBp +cyBub3Qgc2V0CiMgQ09ORklHX1VJTyBpcyBub3Qgc2V0CiMgQ09ORklHX1ZGSU8gaXMgbm90IHNl +dAojIENPTkZJR19WSVJUX0RSSVZFUlMgaXMgbm90IHNldAojIENPTkZJR19WSVJUSU9fTUVOVSBp +cyBub3Qgc2V0CiMgQ09ORklHX1ZIT1NUX01FTlUgaXMgbm90IHNldAoKIwojIE1pY3Jvc29mdCBI +eXBlci1WIGd1ZXN0IHN1cHBvcnQKIwojIGVuZCBvZiBNaWNyb3NvZnQgSHlwZXItViBndWVzdCBz +dXBwb3J0CgojIENPTkZJR19DT01FREkgaXMgbm90IHNldAojIENPTkZJR19TVEFHSU5HIGlzIG5v +dCBzZXQKIyBDT05GSUdfWDg2X1BMQVRGT1JNX0RFVklDRVMgaXMgbm90IHNldAojIENPTkZJR19D +SFJPTUVfUExBVEZPUk1TIGlzIG5vdCBzZXQKIyBDT05GSUdfTUVMTEFOT1hfUExBVEZPUk0gaXMg +bm90IHNldAojIENPTkZJR19DT01NT05fQ0xLIGlzIG5vdCBzZXQKIyBDT05GSUdfSFdTUElOTE9D +SyBpcyBub3Qgc2V0CgojCiMgQ2xvY2sgU291cmNlIGRyaXZlcnMKIwpDT05GSUdfQ0xLU1JDX0k4 +MjUzPXkKQ09ORklHX0NMS0VWVF9JODI1Mz15CkNPTkZJR19DTEtCTERfSTgyNTM9eQojIGVuZCBv +ZiBDbG9jayBTb3VyY2UgZHJpdmVycwoKIyBDT05GSUdfTUFJTEJPWCBpcyBub3Qgc2V0CiMgQ09O +RklHX0lPTU1VX1NVUFBPUlQgaXMgbm90IHNldAoKIwojIFJlbW90ZXByb2MgZHJpdmVycwojCiMg +Q09ORklHX1JFTU9URVBST0MgaXMgbm90IHNldAojIGVuZCBvZiBSZW1vdGVwcm9jIGRyaXZlcnMK +CiMKIyBScG1zZyBkcml2ZXJzCiMKIyBDT05GSUdfUlBNU0dfVklSVElPIGlzIG5vdCBzZXQKIyBl +bmQgb2YgUnBtc2cgZHJpdmVycwoKIwojIFNPQyAoU3lzdGVtIE9uIENoaXApIHNwZWNpZmljIERy +aXZlcnMKIwoKIwojIEFtbG9naWMgU29DIGRyaXZlcnMKIwojIGVuZCBvZiBBbWxvZ2ljIFNvQyBk +cml2ZXJzCgojCiMgQnJvYWRjb20gU29DIGRyaXZlcnMKIwojIGVuZCBvZiBCcm9hZGNvbSBTb0Mg +ZHJpdmVycwoKIwojIE5YUC9GcmVlc2NhbGUgUW9ySVEgU29DIGRyaXZlcnMKIwojIGVuZCBvZiBO +WFAvRnJlZXNjYWxlIFFvcklRIFNvQyBkcml2ZXJzCgojCiMgaS5NWCBTb0MgZHJpdmVycwojCiMg +ZW5kIG9mIGkuTVggU29DIGRyaXZlcnMKCiMKIyBFbmFibGUgTGl0ZVggU29DIEJ1aWxkZXIgc3Bl +Y2lmaWMgZHJpdmVycwojCiMgZW5kIG9mIEVuYWJsZSBMaXRlWCBTb0MgQnVpbGRlciBzcGVjaWZp +YyBkcml2ZXJzCgojCiMgUXVhbGNvbW0gU29DIGRyaXZlcnMKIwojIGVuZCBvZiBRdWFsY29tbSBT +b0MgZHJpdmVycwoKIyBDT05GSUdfU09DX1RJIGlzIG5vdCBzZXQKCiMKIyBYaWxpbnggU29DIGRy +aXZlcnMKIwojIGVuZCBvZiBYaWxpbnggU29DIGRyaXZlcnMKIyBlbmQgb2YgU09DIChTeXN0ZW0g +T24gQ2hpcCkgc3BlY2lmaWMgRHJpdmVycwoKIyBDT05GSUdfUE1fREVWRlJFUSBpcyBub3Qgc2V0 +CiMgQ09ORklHX0VYVENPTiBpcyBub3Qgc2V0CiMgQ09ORklHX01FTU9SWSBpcyBub3Qgc2V0CiMg +Q09ORklHX0lJTyBpcyBub3Qgc2V0CiMgQ09ORklHX1BXTSBpcyBub3Qgc2V0CgojCiMgSVJRIGNo +aXAgc3VwcG9ydAojCiMgZW5kIG9mIElSUSBjaGlwIHN1cHBvcnQKCiMgQ09ORklHX0lQQUNLX0JV +UyBpcyBub3Qgc2V0CiMgQ09ORklHX1JFU0VUX0NPTlRST0xMRVIgaXMgbm90IHNldAoKIwojIFBI +WSBTdWJzeXN0ZW0KIwojIENPTkZJR19HRU5FUklDX1BIWSBpcyBub3Qgc2V0CiMgQ09ORklHX1BI +WV9DQU5fVFJBTlNDRUlWRVIgaXMgbm90IHNldAojIENPTkZJR19CQ01fS09OQV9VU0IyX1BIWSBp +cyBub3Qgc2V0CiMgQ09ORklHX1BIWV9QWEFfMjhOTV9IU0lDIGlzIG5vdCBzZXQKIyBDT05GSUdf +UEhZX1BYQV8yOE5NX1VTQjIgaXMgbm90IHNldAojIENPTkZJR19QSFlfSU5URUxfTEdNX0VNTUMg +aXMgbm90IHNldAojIGVuZCBvZiBQSFkgU3Vic3lzdGVtCgojIENPTkZJR19QT1dFUkNBUCBpcyBu +b3Qgc2V0CiMgQ09ORklHX01DQiBpcyBub3Qgc2V0CgojCiMgUGVyZm9ybWFuY2UgbW9uaXRvciBz +dXBwb3J0CiMKIyBlbmQgb2YgUGVyZm9ybWFuY2UgbW9uaXRvciBzdXBwb3J0CgojIENPTkZJR19S +QVMgaXMgbm90IHNldAoKIwojIEFuZHJvaWQKIwojIENPTkZJR19BTkRST0lEIGlzIG5vdCBzZXQK +IyBlbmQgb2YgQW5kcm9pZAoKIyBDT05GSUdfREFYIGlzIG5vdCBzZXQKIyBDT05GSUdfTlZNRU0g +aXMgbm90IHNldAoKIwojIEhXIHRyYWNpbmcgc3VwcG9ydAojCiMgQ09ORklHX1NUTSBpcyBub3Qg +c2V0CiMgQ09ORklHX0lOVEVMX1RIIGlzIG5vdCBzZXQKIyBlbmQgb2YgSFcgdHJhY2luZyBzdXBw +b3J0CgojIENPTkZJR19GUEdBIGlzIG5vdCBzZXQKIyBDT05GSUdfVEVFIGlzIG5vdCBzZXQKIyBD +T05GSUdfU0lPWCBpcyBub3Qgc2V0CiMgQ09ORklHX1NMSU1CVVMgaXMgbm90IHNldAojIENPTkZJ +R19JTlRFUkNPTk5FQ1QgaXMgbm90IHNldAojIENPTkZJR19DT1VOVEVSIGlzIG5vdCBzZXQKIyBl +bmQgb2YgRGV2aWNlIERyaXZlcnMKCiMKIyBGaWxlIHN5c3RlbXMKIwpDT05GSUdfRENBQ0hFX1dP +UkRfQUNDRVNTPXkKIyBDT05GSUdfVkFMSURBVEVfRlNfUEFSU0VSIGlzIG5vdCBzZXQKIyBDT05G +SUdfRVhQT1JURlNfQkxPQ0tfT1BTIGlzIG5vdCBzZXQKIyBDT05GSUdfRklMRV9MT0NLSU5HIGlz +IG5vdCBzZXQKIyBDT05GSUdfRlNfRU5DUllQVElPTiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZTX1ZF +UklUWSBpcyBub3Qgc2V0CiMgQ09ORklHX0ROT1RJRlkgaXMgbm90IHNldAojIENPTkZJR19JTk9U +SUZZX1VTRVIgaXMgbm90IHNldAojIENPTkZJR19GQU5PVElGWSBpcyBub3Qgc2V0CiMgQ09ORklH +X1FVT1RBIGlzIG5vdCBzZXQKIyBDT05GSUdfQVVUT0ZTNF9GUyBpcyBub3Qgc2V0CiMgQ09ORklH +X0FVVE9GU19GUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZVU0VfRlMgaXMgbm90IHNldAojIENPTkZJ +R19PVkVSTEFZX0ZTIGlzIG5vdCBzZXQKCiMKIyBDYWNoZXMKIwojIENPTkZJR19GU0NBQ0hFIGlz +IG5vdCBzZXQKIyBlbmQgb2YgQ2FjaGVzCgojCiMgUHNldWRvIGZpbGVzeXN0ZW1zCiMKIyBDT05G +SUdfUFJPQ19GUyBpcyBub3Qgc2V0CiMgQ09ORklHX1BST0NfQ0hJTERSRU4gaXMgbm90IHNldAoj +IENPTkZJR19TWVNGUyBpcyBub3Qgc2V0CiMgQ09ORklHX0hVR0VUTEJGUyBpcyBub3Qgc2V0CiMg +Q09ORklHX0NPTkZJR0ZTX0ZTIGlzIG5vdCBzZXQKIyBlbmQgb2YgUHNldWRvIGZpbGVzeXN0ZW1z +CgojIENPTkZJR19NSVNDX0ZJTEVTWVNURU1TIGlzIG5vdCBzZXQKIyBDT05GSUdfTkxTIGlzIG5v +dCBzZXQKIyBDT05GSUdfVU5JQ09ERSBpcyBub3Qgc2V0CiMgZW5kIG9mIEZpbGUgc3lzdGVtcwoK +IwojIFNlY3VyaXR5IG9wdGlvbnMKIwojIENPTkZJR19LRVlTIGlzIG5vdCBzZXQKIyBDT05GSUdf +U0VDVVJJVFlfRE1FU0dfUkVTVFJJQ1QgaXMgbm90IHNldAojIENPTkZJR19TRUNVUklUWUZTIGlz +IG5vdCBzZXQKIyBDT05GSUdfRk9SVElGWV9TT1VSQ0UgaXMgbm90IHNldAojIENPTkZJR19TVEFU +SUNfVVNFUk1PREVIRUxQRVIgaXMgbm90IHNldApDT05GSUdfREVGQVVMVF9TRUNVUklUWV9EQUM9 +eQpDT05GSUdfTFNNPSJsYW5kbG9jayxsb2NrZG93bix5YW1hLGxvYWRwaW4sc2FmZXNldGlkLGlu +dGVncml0eSxicGYiCgojCiMgS2VybmVsIGhhcmRlbmluZyBvcHRpb25zCiMKCiMKIyBNZW1vcnkg +aW5pdGlhbGl6YXRpb24KIwpDT05GSUdfSU5JVF9TVEFDS19OT05FPXkKIyBDT05GSUdfSU5JVF9P +Tl9BTExPQ19ERUZBVUxUX09OIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5JVF9PTl9GUkVFX0RFRkFV +TFRfT04gaXMgbm90IHNldAojIGVuZCBvZiBNZW1vcnkgaW5pdGlhbGl6YXRpb24KIyBlbmQgb2Yg +S2VybmVsIGhhcmRlbmluZyBvcHRpb25zCiMgZW5kIG9mIFNlY3VyaXR5IG9wdGlvbnMKCiMgQ09O +RklHX0NSWVBUTyBpcyBub3Qgc2V0CgojCiMgTGlicmFyeSByb3V0aW5lcwojCiMgQ09ORklHX1BB +Q0tJTkcgaXMgbm90IHNldApDT05GSUdfQklUUkVWRVJTRT15CkNPTkZJR19HRU5FUklDX1NUUk5D +UFlfRlJPTV9VU0VSPXkKQ09ORklHX0dFTkVSSUNfU1RSTkxFTl9VU0VSPXkKQ09ORklHX0dFTkVS +SUNfRklORF9GSVJTVF9CSVQ9eQojIENPTkZJR19DT1JESUMgaXMgbm90IHNldAojIENPTkZJR19Q +UklNRV9OVU1CRVJTIGlzIG5vdCBzZXQKQ09ORklHX0dFTkVSSUNfUENJX0lPTUFQPXkKQ09ORklH +X0dFTkVSSUNfSU9NQVA9eQpDT05GSUdfQVJDSF9IQVNfRkFTVF9NVUxUSVBMSUVSPXkKQ09ORklH +X0FSQ0hfVVNFX1NZTV9BTk5PVEFUSU9OUz15CiMgQ09ORklHX0NSQ19DQ0lUVCBpcyBub3Qgc2V0 +CiMgQ09ORklHX0NSQzE2IGlzIG5vdCBzZXQKIyBDT05GSUdfQ1JDX1QxMERJRiBpcyBub3Qgc2V0 +CiMgQ09ORklHX0NSQ19JVFVfVCBpcyBub3Qgc2V0CkNPTkZJR19DUkMzMj15CiMgQ09ORklHX0NS +QzMyX1NFTEZURVNUIGlzIG5vdCBzZXQKQ09ORklHX0NSQzMyX1NMSUNFQlk4PXkKIyBDT05GSUdf +Q1JDMzJfU0xJQ0VCWTQgaXMgbm90IHNldAojIENPTkZJR19DUkMzMl9TQVJXQVRFIGlzIG5vdCBz +ZXQKIyBDT05GSUdfQ1JDMzJfQklUIGlzIG5vdCBzZXQKIyBDT05GSUdfQ1JDNjQgaXMgbm90IHNl +dAojIENPTkZJR19DUkM0IGlzIG5vdCBzZXQKIyBDT05GSUdfQ1JDNyBpcyBub3Qgc2V0CiMgQ09O +RklHX0xJQkNSQzMyQyBpcyBub3Qgc2V0CiMgQ09ORklHX0NSQzggaXMgbm90IHNldApDT05GSUdf +WFhIQVNIPXkKIyBDT05GSUdfUkFORE9NMzJfU0VMRlRFU1QgaXMgbm90IHNldApDT05GSUdfWkxJ +Ql9JTkZMQVRFPXkKQ09ORklHX0xaT19ERUNPTVBSRVNTPXkKQ09ORklHX0xaNF9ERUNPTVBSRVNT +PXkKQ09ORklHX1pTVERfREVDT01QUkVTUz15CkNPTkZJR19YWl9ERUM9eQpDT05GSUdfWFpfREVD +X1g4Nj15CkNPTkZJR19YWl9ERUNfUE9XRVJQQz15CkNPTkZJR19YWl9ERUNfSUE2ND15CkNPTkZJ +R19YWl9ERUNfQVJNPXkKQ09ORklHX1haX0RFQ19BUk1USFVNQj15CkNPTkZJR19YWl9ERUNfU1BB +UkM9eQpDT05GSUdfWFpfREVDX0JDSj15CiMgQ09ORklHX1haX0RFQ19URVNUIGlzIG5vdCBzZXQK +Q09ORklHX0RFQ09NUFJFU1NfR1pJUD15CkNPTkZJR19ERUNPTVBSRVNTX0JaSVAyPXkKQ09ORklH +X0RFQ09NUFJFU1NfTFpNQT15CkNPTkZJR19ERUNPTVBSRVNTX1haPXkKQ09ORklHX0RFQ09NUFJF +U1NfTFpPPXkKQ09ORklHX0RFQ09NUFJFU1NfTFo0PXkKQ09ORklHX0RFQ09NUFJFU1NfWlNURD15 +CkNPTkZJR19IQVNfSU9NRU09eQpDT05GSUdfSEFTX0lPUE9SVF9NQVA9eQpDT05GSUdfSEFTX0RN +QT15CkNPTkZJR19ORUVEX1NHX0RNQV9MRU5HVEg9eQojIENPTkZJR19ETUFfQVBJX0RFQlVHIGlz +IG5vdCBzZXQKIyBDT05GSUdfSVJRX1BPTEwgaXMgbm90IHNldApDT05GSUdfSEFWRV9HRU5FUklD +X1ZEU089eQpDT05GSUdfR0VORVJJQ19HRVRUSU1FT0ZEQVk9eQpDT05GSUdfR0VORVJJQ19WRFNP +XzMyPXkKQ09ORklHX0dFTkVSSUNfVkRTT19USU1FX05TPXkKQ09ORklHX0FSQ0hfU1RBQ0tXQUxL +PXkKIyBlbmQgb2YgTGlicmFyeSByb3V0aW5lcwoKIwojIEtlcm5lbCBoYWNraW5nCiMKCiMKIyBw +cmludGsgYW5kIGRtZXNnIG9wdGlvbnMKIwojIENPTkZJR19QUklOVEtfVElNRSBpcyBub3Qgc2V0 +CiMgQ09ORklHX1BSSU5US19DQUxMRVIgaXMgbm90IHNldAojIENPTkZJR19TVEFDS1RSQUNFX0JV +SUxEX0lEIGlzIG5vdCBzZXQKQ09ORklHX0NPTlNPTEVfTE9HTEVWRUxfREVGQVVMVD03CkNPTkZJ +R19DT05TT0xFX0xPR0xFVkVMX1FVSUVUPTQKQ09ORklHX01FU1NBR0VfTE9HTEVWRUxfREVGQVVM +VD00CiMgQ09ORklHX0JPT1RfUFJJTlRLX0RFTEFZIGlzIG5vdCBzZXQKIyBDT05GSUdfU1lNQk9M +SUNfRVJSTkFNRSBpcyBub3Qgc2V0CiMgZW5kIG9mIHByaW50ayBhbmQgZG1lc2cgb3B0aW9ucwoK +IwojIENvbXBpbGUtdGltZSBjaGVja3MgYW5kIGNvbXBpbGVyIG9wdGlvbnMKIwojIENPTkZJR19E +RUJVR19JTkZPIGlzIG5vdCBzZXQKQ09ORklHX0ZSQU1FX1dBUk49MTAyNAojIENPTkZJR19TVFJJ +UF9BU01fU1lNUyBpcyBub3Qgc2V0CiMgQ09ORklHX1JFQURBQkxFX0FTTSBpcyBub3Qgc2V0CiMg +Q09ORklHX0hFQURFUlNfSU5TVEFMTCBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1NFQ1RJT05f +TUlTTUFUQ0ggaXMgbm90IHNldAojIENPTkZJR19TRUNUSU9OX01JU01BVENIX1dBUk5fT05MWSBp +cyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX0ZPUkNFX0ZVTkNUSU9OX0FMSUdOXzY0QiBpcyBub3Qg +c2V0CiMgQ09ORklHX1ZNTElOVVhfTUFQIGlzIG5vdCBzZXQKIyBDT05GSUdfREVCVUdfRk9SQ0Vf +V0VBS19QRVJfQ1BVIGlzIG5vdCBzZXQKIyBlbmQgb2YgQ29tcGlsZS10aW1lIGNoZWNrcyBhbmQg +Y29tcGlsZXIgb3B0aW9ucwoKIwojIEdlbmVyaWMgS2VybmVsIERlYnVnZ2luZyBJbnN0cnVtZW50 +cwojCiMgQ09ORklHX01BR0lDX1NZU1JRIGlzIG5vdCBzZXQKIyBDT05GSUdfREVCVUdfRlMgaXMg +bm90IHNldApDT05GSUdfSEFWRV9BUkNIX0tHREI9eQojIENPTkZJR19LR0RCIGlzIG5vdCBzZXQK +Q09ORklHX0FSQ0hfSEFTX1VCU0FOX1NBTklUSVpFX0FMTD15CiMgQ09ORklHX1VCU0FOIGlzIG5v +dCBzZXQKIyBlbmQgb2YgR2VuZXJpYyBLZXJuZWwgRGVidWdnaW5nIEluc3RydW1lbnRzCgpDT05G +SUdfREVCVUdfS0VSTkVMPXkKIyBDT05GSUdfREVCVUdfTUlTQyBpcyBub3Qgc2V0CgojCiMgTWVt +b3J5IERlYnVnZ2luZwojCiMgQ09ORklHX1BBR0VfRVhURU5TSU9OIGlzIG5vdCBzZXQKIyBDT05G +SUdfREVCVUdfUEFHRUFMTE9DIGlzIG5vdCBzZXQKIyBDT05GSUdfUEFHRV9PV05FUiBpcyBub3Qg +c2V0CiMgQ09ORklHX1BBR0VfUE9JU09OSU5HIGlzIG5vdCBzZXQKIyBDT05GSUdfREVCVUdfUk9E +QVRBX1RFU1QgaXMgbm90IHNldApDT05GSUdfQVJDSF9IQVNfREVCVUdfV1g9eQojIENPTkZJR19E +RUJVR19XWCBpcyBub3Qgc2V0CkNPTkZJR19HRU5FUklDX1BURFVNUD15CiMgQ09ORklHX0RFQlVH +X09CSkVDVFMgaXMgbm90IHNldApDT05GSUdfSEFWRV9ERUJVR19LTUVNTEVBSz15CiMgQ09ORklH +X0RFQlVHX0tNRU1MRUFLIGlzIG5vdCBzZXQKIyBDT05GSUdfREVCVUdfU1RBQ0tfVVNBR0UgaXMg +bm90IHNldAojIENPTkZJR19TQ0hFRF9TVEFDS19FTkRfQ0hFQ0sgaXMgbm90IHNldApDT05GSUdf +QVJDSF9IQVNfREVCVUdfVk1fUEdUQUJMRT15CiMgQ09ORklHX0RFQlVHX1ZNIGlzIG5vdCBzZXQK +IyBDT05GSUdfREVCVUdfVk1fUEdUQUJMRSBpcyBub3Qgc2V0CkNPTkZJR19BUkNIX0hBU19ERUJV +R19WSVJUVUFMPXkKIyBDT05GSUdfREVCVUdfVklSVFVBTCBpcyBub3Qgc2V0CiMgQ09ORklHX0RF +QlVHX01FTU9SWV9JTklUIGlzIG5vdCBzZXQKIyBDT05GSUdfREVCVUdfS01BUF9MT0NBTCBpcyBu +b3Qgc2V0CkNPTkZJR19BUkNIX1NVUFBPUlRTX0tNQVBfTE9DQUxfRk9SQ0VfTUFQPXkKIyBDT05G +SUdfREVCVUdfS01BUF9MT0NBTF9GT1JDRV9NQVAgaXMgbm90IHNldApDT05GSUdfSEFWRV9ERUJV +R19TVEFDS09WRVJGTE9XPXkKIyBDT05GSUdfREVCVUdfU1RBQ0tPVkVSRkxPVyBpcyBub3Qgc2V0 +CkNPTkZJR19DQ19IQVNfS0FTQU5fR0VORVJJQz15CkNPTkZJR19DQ19IQVNfV09SS0lOR19OT1NB +TklUSVpFX0FERFJFU1M9eQpDT05GSUdfSEFWRV9BUkNIX0tGRU5DRT15CiMgZW5kIG9mIE1lbW9y +eSBEZWJ1Z2dpbmcKCiMgQ09ORklHX0RFQlVHX1NISVJRIGlzIG5vdCBzZXQKCiMKIyBEZWJ1ZyBP +b3BzLCBMb2NrdXBzIGFuZCBIYW5ncwojCiMgQ09ORklHX1BBTklDX09OX09PUFMgaXMgbm90IHNl +dApDT05GSUdfUEFOSUNfT05fT09QU19WQUxVRT0wCkNPTkZJR19QQU5JQ19USU1FT1VUPTAKIyBD +T05GSUdfU09GVExPQ0tVUF9ERVRFQ1RPUiBpcyBub3Qgc2V0CiMgQ09ORklHX0hBUkRMT0NLVVBf +REVURUNUT1IgaXMgbm90IHNldAojIENPTkZJR19ERVRFQ1RfSFVOR19UQVNLIGlzIG5vdCBzZXQK +IyBDT05GSUdfV1FfV0FUQ0hET0cgaXMgbm90IHNldAojIGVuZCBvZiBEZWJ1ZyBPb3BzLCBMb2Nr +dXBzIGFuZCBIYW5ncwoKIwojIFNjaGVkdWxlciBEZWJ1Z2dpbmcKIwojIGVuZCBvZiBTY2hlZHVs +ZXIgRGVidWdnaW5nCgojIENPTkZJR19ERUJVR19USU1FS0VFUElORyBpcyBub3Qgc2V0CgojCiMg +TG9jayBEZWJ1Z2dpbmcgKHNwaW5sb2NrcywgbXV0ZXhlcywgZXRjLi4uKQojCkNPTkZJR19MT0NL +X0RFQlVHR0lOR19TVVBQT1JUPXkKIyBDT05GSUdfUFJPVkVfTE9DS0lORyBpcyBub3Qgc2V0CiMg +Q09ORklHX0xPQ0tfU1RBVCBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1NQSU5MT0NLIGlzIG5v +dCBzZXQKIyBDT05GSUdfREVCVUdfTVVURVhFUyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1dX +X01VVEVYX1NMT1dQQVRIIGlzIG5vdCBzZXQKIyBDT05GSUdfREVCVUdfUldTRU1TIGlzIG5vdCBz +ZXQKIyBDT05GSUdfREVCVUdfTE9DS19BTExPQyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX0FU +T01JQ19TTEVFUCBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX0xPQ0tJTkdfQVBJX1NFTEZURVNU +UyBpcyBub3Qgc2V0CiMgQ09ORklHX0xPQ0tfVE9SVFVSRV9URVNUIGlzIG5vdCBzZXQKIyBDT05G +SUdfV1dfTVVURVhfU0VMRlRFU1QgaXMgbm90IHNldAojIENPTkZJR19TQ0ZfVE9SVFVSRV9URVNU +IGlzIG5vdCBzZXQKIyBlbmQgb2YgTG9jayBEZWJ1Z2dpbmcgKHNwaW5sb2NrcywgbXV0ZXhlcywg +ZXRjLi4uKQoKIyBDT05GSUdfREVCVUdfSVJRRkxBR1MgaXMgbm90IHNldAojIENPTkZJR19TVEFD +S1RSQUNFIGlzIG5vdCBzZXQKIyBDT05GSUdfV0FSTl9BTExfVU5TRUVERURfUkFORE9NIGlzIG5v +dCBzZXQKIyBDT05GSUdfREVCVUdfS09CSkVDVCBpcyBub3Qgc2V0CgojCiMgRGVidWcga2VybmVs +IGRhdGEgc3RydWN0dXJlcwojCiMgQ09ORklHX0RFQlVHX0xJU1QgaXMgbm90IHNldAojIENPTkZJ +R19ERUJVR19QTElTVCBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1NHIGlzIG5vdCBzZXQKIyBD +T05GSUdfREVCVUdfTk9USUZJRVJTIGlzIG5vdCBzZXQKIyBDT05GSUdfQlVHX09OX0RBVEFfQ09S +UlVQVElPTiBpcyBub3Qgc2V0CiMgZW5kIG9mIERlYnVnIGtlcm5lbCBkYXRhIHN0cnVjdHVyZXMK +CiMgQ09ORklHX0RFQlVHX0NSRURFTlRJQUxTIGlzIG5vdCBzZXQKCiMKIyBSQ1UgRGVidWdnaW5n +CiMKIyBDT05GSUdfUkNVX1NDQUxFX1RFU1QgaXMgbm90IHNldAojIENPTkZJR19SQ1VfVE9SVFVS +RV9URVNUIGlzIG5vdCBzZXQKIyBDT05GSUdfUkNVX1JFRl9TQ0FMRV9URVNUIGlzIG5vdCBzZXQK +IyBDT05GSUdfUkNVX1RSQUNFIGlzIG5vdCBzZXQKIyBDT05GSUdfUkNVX0VRU19ERUJVRyBpcyBu +b3Qgc2V0CiMgZW5kIG9mIFJDVSBEZWJ1Z2dpbmcKCiMgQ09ORklHX0RFQlVHX1dRX0ZPUkNFX1JS +X0NQVSBpcyBub3Qgc2V0CkNPTkZJR19VU0VSX1NUQUNLVFJBQ0VfU1VQUE9SVD15CkNPTkZJR19I +QVZFX0ZVTkNUSU9OX1RSQUNFUj15CkNPTkZJR19IQVZFX0ZVTkNUSU9OX0dSQVBIX1RSQUNFUj15 +CkNPTkZJR19IQVZFX0RZTkFNSUNfRlRSQUNFPXkKQ09ORklHX0hBVkVfRFlOQU1JQ19GVFJBQ0Vf +V0lUSF9SRUdTPXkKQ09ORklHX0hBVkVfRFlOQU1JQ19GVFJBQ0VfV0lUSF9ESVJFQ1RfQ0FMTFM9 +eQpDT05GSUdfSEFWRV9GVFJBQ0VfTUNPVU5UX1JFQ09SRD15CkNPTkZJR19IQVZFX1NZU0NBTExf +VFJBQ0VQT0lOVFM9eQpDT05GSUdfSEFWRV9DX1JFQ09SRE1DT1VOVD15CkNPTkZJR19UUkFDSU5H +X1NVUFBPUlQ9eQojIENPTkZJR19GVFJBQ0UgaXMgbm90IHNldAojIENPTkZJR19TQU1QTEVTIGlz +IG5vdCBzZXQKQ09ORklHX0FSQ0hfSEFTX0RFVk1FTV9JU19BTExPV0VEPXkKCiMKIyB4ODYgRGVi +dWdnaW5nCiMKQ09ORklHX1RSQUNFX0lSUUZMQUdTX05NSV9TVVBQT1JUPXkKIyBDT05GSUdfWDg2 +X1ZFUkJPU0VfQk9PVFVQIGlzIG5vdCBzZXQKIyBDT05GSUdfRUFSTFlfUFJJTlRLIGlzIG5vdCBz +ZXQKIyBDT05GSUdfREVCVUdfVExCRkxVU0ggaXMgbm90IHNldApDT05GSUdfSEFWRV9NTUlPVFJB +Q0VfU1VQUE9SVD15CiMgQ09ORklHX1g4Nl9ERUNPREVSX1NFTEZURVNUIGlzIG5vdCBzZXQKQ09O +RklHX0lPX0RFTEFZXzBYODA9eQojIENPTkZJR19JT19ERUxBWV8wWEVEIGlzIG5vdCBzZXQKIyBD +T05GSUdfSU9fREVMQVlfVURFTEFZIGlzIG5vdCBzZXQKIyBDT05GSUdfSU9fREVMQVlfTk9ORSBp +cyBub3Qgc2V0CiMgQ09ORklHX0NQQV9ERUJVRyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX0VO +VFJZIGlzIG5vdCBzZXQKIyBDT05GSUdfWDg2X0RFQlVHX0ZQVSBpcyBub3Qgc2V0CiMgQ09ORklH +X1VOV0lOREVSX0ZSQU1FX1BPSU5URVIgaXMgbm90IHNldApDT05GSUdfVU5XSU5ERVJfR1VFU1M9 +eQojIGVuZCBvZiB4ODYgRGVidWdnaW5nCgojCiMgS2VybmVsIFRlc3RpbmcgYW5kIENvdmVyYWdl +CiMKIyBDT05GSUdfS1VOSVQgaXMgbm90IHNldAojIENPTkZJR19OT1RJRklFUl9FUlJPUl9JTkpF +Q1RJT04gaXMgbm90IHNldAojIENPTkZJR19GQVVMVF9JTkpFQ1RJT04gaXMgbm90IHNldApDT05G +SUdfQ0NfSEFTX1NBTkNPVl9UUkFDRV9QQz15CiMgQ09ORklHX1JVTlRJTUVfVEVTVElOR19NRU5V +IGlzIG5vdCBzZXQKQ09ORklHX0FSQ0hfVVNFX01FTVRFU1Q9eQojIENPTkZJR19NRU1URVNUIGlz +IG5vdCBzZXQKIyBlbmQgb2YgS2VybmVsIFRlc3RpbmcgYW5kIENvdmVyYWdlCiMgZW5kIG9mIEtl +cm5lbCBoYWNraW5nCg==" | base64 -d | tee .config + +# Compilamos el kernel +echo "a compilar el kernel!" +sleep 2 +make -j$(nproc) ARCH=x86 bzImage +du -ha arch/x86/boot/bzImage +file arch/x86/boot/bzImage +cp -pRv arch/x86/boot/bzImage .. +cd .. +rm -rf linux-5.15.1.tar.xz linux-5.15.1 + +# Compilamos busybox con lo minimo +echo "a compilar busybox!" +sleep 2 +wget https://busybox.net/downloads/busybox-1.33.2.tar.bz2 +tar xfvj busybox-1.33.2.tar.bz2 +cd busybox-1.33.2 +echo "IwojIEF1dG9tYXRpY2FsbHkgZ2VuZXJhdGVkIG1ha2UgY29uZmlnOiBkb24ndCBlZGl0CiMgQnVz +eWJveCB2ZXJzaW9uOiAxLjMzLjIKIyBUdWUgRGVjIDIxIDIwOjMxOjI0IDIwMjEKIwpDT05GSUdf +SEFWRV9ET1RfQ09ORklHPXkKCiMKIyBTZXR0aW5ncwojCiMgQ09ORklHX0RFU0tUT1AgaXMgbm90 +IHNldAojIENPTkZJR19FWFRSQV9DT01QQVQgaXMgbm90IHNldAojIENPTkZJR19GRURPUkFfQ09N +UEFUIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5DTFVERV9TVVN2MiBpcyBub3Qgc2V0CiMgQ09ORklH +X0xPTkdfT1BUUyBpcyBub3Qgc2V0CiMgQ09ORklHX1NIT1dfVVNBR0UgaXMgbm90IHNldAojIENP +TkZJR19GRUFUVVJFX1ZFUkJPU0VfVVNBR0UgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0NP +TVBSRVNTX1VTQUdFIGlzIG5vdCBzZXQKIyBDT05GSUdfTEZTIGlzIG5vdCBzZXQKIyBDT05GSUdf +UEFNIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9ERVZQVFMgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX1VUTVAgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1dUTVAgaXMgbm90IHNl +dAojIENPTkZJR19GRUFUVVJFX1BJREZJTEUgaXMgbm90IHNldApDT05GSUdfUElEX0ZJTEVfUEFU +SD0iIgojIENPTkZJR19CVVNZQk9YIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9TSE9XX1ND +UklQVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSU5TVEFMTEVSIGlzIG5vdCBzZXQKIyBD +T05GSUdfSU5TVEFMTF9OT19VU1IgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NVSUQgaXMg +bm90IHNldAojIENPTkZJR19GRUFUVVJFX1NVSURfQ09ORklHIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9TVUlEX0NPTkZJR19RVUlFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUFJF +RkVSX0FQUExFVFMgaXMgbm90IHNldApDT05GSUdfQlVTWUJPWF9FWEVDX1BBVEg9Ii9wcm9jL3Nl +bGYvZXhlIgojIENPTkZJR19TRUxJTlVYIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DTEVB +Tl9VUCBpcyBub3Qgc2V0CkNPTkZJR19GRUFUVVJFX1NZU0xPR19JTkZPPXkKQ09ORklHX0ZFQVRV +UkVfU1lTTE9HPXkKCiMKIyBCdWlsZCBPcHRpb25zCiMKQ09ORklHX1NUQVRJQz15CiMgQ09ORklH +X1BJRSBpcyBub3Qgc2V0CiMgQ09ORklHX05PTU1VIGlzIG5vdCBzZXQKIyBDT05GSUdfQlVJTERf +TElCQlVTWUJPWCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTElCQlVTWUJPWF9TVEFUSUMg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0lORElWSURVQUwgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX1NIQVJFRF9CVVNZQk9YIGlzIG5vdCBzZXQKQ09ORklHX0NST1NTX0NPTVBJTEVS +X1BSRUZJWD0iIgpDT05GSUdfU1lTUk9PVD0iIgpDT05GSUdfRVhUUkFfQ0ZMQUdTPSIiCkNPTkZJ +R19FWFRSQV9MREZMQUdTPSIiCkNPTkZJR19FWFRSQV9MRExJQlM9IiIKIyBDT05GSUdfVVNFX1BP +UlRBQkxFX0NPREUgaXMgbm90IHNldAojIENPTkZJR19TVEFDS19PUFRJTUlaQVRJT05fMzg2IGlz +IG5vdCBzZXQKIyBDT05GSUdfU1RBVElDX0xJQkdDQyBpcyBub3Qgc2V0CgojCiMgSW5zdGFsbGF0 +aW9uIE9wdGlvbnMgKCJtYWtlIGluc3RhbGwiIGJlaGF2aW9yKQojCkNPTkZJR19JTlNUQUxMX0FQ +UExFVF9TWU1MSU5LUz15CiMgQ09ORklHX0lOU1RBTExfQVBQTEVUX0hBUkRMSU5LUyBpcyBub3Qg +c2V0CiMgQ09ORklHX0lOU1RBTExfQVBQTEVUX1NDUklQVF9XUkFQUEVSUyBpcyBub3Qgc2V0CiMg +Q09ORklHX0lOU1RBTExfQVBQTEVUX0RPTlQgaXMgbm90IHNldAojIENPTkZJR19JTlNUQUxMX1NI +X0FQUExFVF9TWU1MSU5LIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5TVEFMTF9TSF9BUFBMRVRfSEFS +RExJTksgaXMgbm90IHNldAojIENPTkZJR19JTlNUQUxMX1NIX0FQUExFVF9TQ1JJUFRfV1JBUFBF +UiBpcyBub3Qgc2V0CkNPTkZJR19QUkVGSVg9Ii4vX2luc3RhbGwiCgojCiMgRGVidWdnaW5nIE9w +dGlvbnMKIwojIENPTkZJR19ERUJVRyBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1BFU1NJTUla +RSBpcyBub3Qgc2V0CiMgQ09ORklHX0RFQlVHX1NBTklUSVpFIGlzIG5vdCBzZXQKIyBDT05GSUdf +VU5JVF9URVNUIGlzIG5vdCBzZXQKIyBDT05GSUdfV0VSUk9SIGlzIG5vdCBzZXQKIyBDT05GSUdf +V0FSTl9TSU1QTEVfTVNHIGlzIG5vdCBzZXQKQ09ORklHX05PX0RFQlVHX0xJQj15CiMgQ09ORklH +X0RNQUxMT0MgaXMgbm90IHNldAojIENPTkZJR19FRkVOQ0UgaXMgbm90IHNldAoKIwojIExpYnJh +cnkgVHVuaW5nCiMKIyBDT05GSUdfRkVBVFVSRV9VU0VfQlNTX1RBSUwgaXMgbm90IHNldAojIENP +TkZJR19GTE9BVF9EVVJBVElPTiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUlRNSU5NQVgg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1JUTUlOTUFYX1VTRV9MSUJDX0RFRklOSVRJT05T +IGlzIG5vdCBzZXQKQ09ORklHX0ZFQVRVUkVfQlVGRkVSU19VU0VfTUFMTE9DPXkKIyBDT05GSUdf +RkVBVFVSRV9CVUZGRVJTX0dPX09OX1NUQUNLIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9C +VUZGRVJTX0dPX0lOX0JTUyBpcyBub3Qgc2V0CkNPTkZJR19QQVNTV09SRF9NSU5MRU49NgpDT05G +SUdfTUQ1X1NNQUxMPTEKQ09ORklHX1NIQTNfU01BTEw9MQojIENPTkZJR19GRUFUVVJFX0ZBU1Rf +VE9QIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9FVENfTkVUV09SS1MgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0VUQ19TRVJWSUNFUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVf +RURJVElORyBpcyBub3Qgc2V0CkNPTkZJR19GRUFUVVJFX0VESVRJTkdfTUFYX0xFTj0wCiMgQ09O +RklHX0ZFQVRVUkVfRURJVElOR19WSSBpcyBub3Qgc2V0CkNPTkZJR19GRUFUVVJFX0VESVRJTkdf +SElTVE9SWT0wCiMgQ09ORklHX0ZFQVRVUkVfRURJVElOR19TQVZFSElTVE9SWSBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfRURJVElOR19TQVZFX09OX0VYSVQgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX1JFVkVSU0VfU0VBUkNIIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9UQUJf +Q09NUExFVElPTiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVVNFUk5BTUVfQ09NUExFVElP +TiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRURJVElOR19GQU5DWV9QUk9NUFQgaXMgbm90 +IHNldAojIENPTkZJR19GRUFUVVJFX0VESVRJTkdfV0lOQ0ggaXMgbm90IHNldAojIENPTkZJR19G +RUFUVVJFX0VESVRJTkdfQVNLX1RFUk1JTkFMIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9DQUxFX1NV +UFBPUlQgaXMgbm90IHNldAojIENPTkZJR19VTklDT0RFX1NVUFBPUlQgaXMgbm90IHNldAojIENP +TkZJR19VTklDT0RFX1VTSU5HX0xPQ0FMRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfQ0hF +Q0tfVU5JQ09ERV9JTl9FTlYgaXMgbm90IHNldApDT05GSUdfU1VCU1RfV0NIQVI9MApDT05GSUdf +TEFTVF9TVVBQT1JURURfV0NIQVI9MAojIENPTkZJR19VTklDT0RFX0NPTUJJTklOR19XQ0hBUlMg +aXMgbm90IHNldAojIENPTkZJR19VTklDT0RFX1dJREVfV0NIQVJTIGlzIG5vdCBzZXQKIyBDT05G +SUdfVU5JQ09ERV9CSURJX1NVUFBPUlQgaXMgbm90IHNldAojIENPTkZJR19VTklDT0RFX05FVVRS +QUxfVEFCTEUgaXMgbm90IHNldAojIENPTkZJR19VTklDT0RFX1BSRVNFUlZFX0JST0tFTiBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTk9OX1BPU0lYX0NQIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9WRVJCT1NFX0NQX01FU1NBR0UgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1VT +RV9TRU5ERklMRSBpcyBub3Qgc2V0CkNPTkZJR19GRUFUVVJFX0NPUFlCVUZfS0I9NAojIENPTkZJ +R19GRUFUVVJFX1NLSVBfUk9PVEZTIGlzIG5vdCBzZXQKIyBDT05GSUdfTU9OT1RPTklDX1NZU0NB +TEwgaXMgbm90IHNldAojIENPTkZJR19JT0NUTF9IRVgyU1RSX0VSUk9SIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9IV0lCIGlzIG5vdCBzZXQKCiMKIyBBcHBsZXRzCiMKCiMKIyBBcmNoaXZh +bCBVdGlsaXRpZXMKIwojIENPTkZJR19GRUFUVVJFX1NFQU1MRVNTX1haIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9TRUFNTEVTU19MWk1BIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9T +RUFNTEVTU19CWjIgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NFQU1MRVNTX0daIGlzIG5v +dCBzZXQKIyBDT05GSUdfRkVBVFVSRV9TRUFNTEVTU19aIGlzIG5vdCBzZXQKIyBDT05GSUdfQVIg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0FSX0xPTkdfRklMRU5BTUVTIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9BUl9DUkVBVEUgaXMgbm90IHNldAojIENPTkZJR19VTkNPTVBSRVNT +IGlzIG5vdCBzZXQKIyBDT05GSUdfR1VOWklQIGlzIG5vdCBzZXQKIyBDT05GSUdfWkNBVCBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfR1VOWklQX0xPTkdfT1BUSU9OUyBpcyBub3Qgc2V0CiMg +Q09ORklHX0JVTlpJUDIgaXMgbm90IHNldAojIENPTkZJR19CWkNBVCBpcyBub3Qgc2V0CiMgQ09O +RklHX1VOTFpNQSBpcyBub3Qgc2V0CiMgQ09ORklHX0xaQ0FUIGlzIG5vdCBzZXQKIyBDT05GSUdf +TFpNQSBpcyBub3Qgc2V0CiMgQ09ORklHX1VOWFogaXMgbm90IHNldAojIENPTkZJR19YWkNBVCBp +cyBub3Qgc2V0CiMgQ09ORklHX1haIGlzIG5vdCBzZXQKIyBDT05GSUdfQlpJUDIgaXMgbm90IHNl +dApDT05GSUdfQlpJUDJfU01BTEw9MAojIENPTkZJR19GRUFUVVJFX0JaSVAyX0RFQ09NUFJFU1Mg +aXMgbm90IHNldAojIENPTkZJR19DUElPIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DUElP +X08gaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0NQSU9fUCBpcyBub3Qgc2V0CiMgQ09ORklH +X0RQS0cgaXMgbm90IHNldAojIENPTkZJR19EUEtHX0RFQiBpcyBub3Qgc2V0CiMgQ09ORklHX0da +SVAgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0daSVBfTE9OR19PUFRJT05TIGlzIG5vdCBz +ZXQKQ09ORklHX0daSVBfRkFTVD0wCiMgQ09ORklHX0ZFQVRVUkVfR1pJUF9MRVZFTFMgaXMgbm90 +IHNldAojIENPTkZJR19GRUFUVVJFX0daSVBfREVDT01QUkVTUyBpcyBub3Qgc2V0CiMgQ09ORklH +X0xaT1AgaXMgbm90IHNldAojIENPTkZJR19VTkxaT1AgaXMgbm90IHNldAojIENPTkZJR19MWk9Q +Q0FUIGlzIG5vdCBzZXQKIyBDT05GSUdfTFpPUF9DT01QUl9ISUdIIGlzIG5vdCBzZXQKIyBDT05G +SUdfUlBNIGlzIG5vdCBzZXQKIyBDT05GSUdfUlBNMkNQSU8gaXMgbm90IHNldAojIENPTkZJR19U +QVIgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RBUl9MT05HX09QVElPTlMgaXMgbm90IHNl +dAojIENPTkZJR19GRUFUVVJFX1RBUl9DUkVBVEUgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X1RBUl9BVVRPREVURUNUIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9UQVJfRlJPTSBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVEFSX09MREdOVV9DT01QQVRJQklMSVRZIGlzIG5vdCBz +ZXQKIyBDT05GSUdfRkVBVFVSRV9UQVJfT0xEU1VOX0NPTVBBVElCSUxJVFkgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX1RBUl9HTlVfRVhURU5TSU9OUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZF +QVRVUkVfVEFSX1RPX0NPTU1BTkQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RBUl9VTkFN +RV9HTkFNRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVEFSX05PUFJFU0VSVkVfVElNRSBp +cyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVEFSX1NFTElOVVggaXMgbm90IHNldAojIENPTkZJ +R19VTlpJUCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVU5aSVBfQ0RGIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9VTlpJUF9CWklQMiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVf +VU5aSVBfTFpNQSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVU5aSVBfWFogaXMgbm90IHNl +dAojIENPTkZJR19GRUFUVVJFX0xaTUFfRkFTVCBpcyBub3Qgc2V0CgojCiMgQ29yZXV0aWxzCiMK +IyBDT05GSUdfQkFTRU5BTUUgaXMgbm90IHNldApDT05GSUdfQ0FUPXkKQ09ORklHX0ZFQVRVUkVf +Q0FUTj15CkNPTkZJR19GRUFUVVJFX0NBVFY9eQojIENPTkZJR19DSEdSUCBpcyBub3Qgc2V0CiMg +Q09ORklHX0NITU9EIGlzIG5vdCBzZXQKIyBDT05GSUdfQ0hPV04gaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX0NIT1dOX0xPTkdfT1BUSU9OUyBpcyBub3Qgc2V0CiMgQ09ORklHX0NIUk9PVCBp +cyBub3Qgc2V0CiMgQ09ORklHX0NLU1VNIGlzIG5vdCBzZXQKIyBDT05GSUdfQ09NTSBpcyBub3Qg +c2V0CiMgQ09ORklHX0NQIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DUF9MT05HX09QVElP +TlMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0NQX1JFRkxJTksgaXMgbm90IHNldAojIENP +TkZJR19DVVQgaXMgbm90IHNldAojIENPTkZJR19EQVRFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVB +VFVSRV9EQVRFX0lTT0ZNVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfREFURV9OQU5PIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9EQVRFX0NPTVBBVCBpcyBub3Qgc2V0CiMgQ09ORklH +X0REIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9ERF9TSUdOQUxfSEFORExJTkcgaXMgbm90 +IHNldAojIENPTkZJR19GRUFUVVJFX0REX1RISVJEX1NUQVRVU19MSU5FIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9ERF9JQlNfT0JTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9ERF9T +VEFUVVMgaXMgbm90IHNldAojIENPTkZJR19ERiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVf +REZfRkFOQ1kgaXMgbm90IHNldAojIENPTkZJR19ESVJOQU1FIGlzIG5vdCBzZXQKIyBDT05GSUdf +RE9TMlVOSVggaXMgbm90IHNldAojIENPTkZJR19VTklYMkRPUyBpcyBub3Qgc2V0CkNPTkZJR19E +VT15CkNPTkZJR19GRUFUVVJFX0RVX0RFRkFVTFRfQkxPQ0tTSVpFXzFLPXkKQ09ORklHX0VDSE89 +eQpDT05GSUdfRkVBVFVSRV9GQU5DWV9FQ0hPPXkKIyBDT05GSUdfRU5WIGlzIG5vdCBzZXQKIyBD +T05GSUdfRVhQQU5EIGlzIG5vdCBzZXQKIyBDT05GSUdfVU5FWFBBTkQgaXMgbm90IHNldAojIENP +TkZJR19FWFBSIGlzIG5vdCBzZXQKIyBDT05GSUdfRVhQUl9NQVRIX1NVUFBPUlRfNjQgaXMgbm90 +IHNldAojIENPTkZJR19GQUNUT1IgaXMgbm90IHNldAojIENPTkZJR19GQUxTRSBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZPTEQgaXMgbm90IHNldAojIENPTkZJR19IRUFEIGlzIG5vdCBzZXQKIyBDT05G +SUdfRkVBVFVSRV9GQU5DWV9IRUFEIGlzIG5vdCBzZXQKIyBDT05GSUdfSE9TVElEIGlzIG5vdCBz +ZXQKIyBDT05GSUdfSUQgaXMgbm90IHNldAojIENPTkZJR19HUk9VUFMgaXMgbm90IHNldAojIENP +TkZJR19JTlNUQUxMIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JTlNUQUxMX0xPTkdfT1BU +SU9OUyBpcyBub3Qgc2V0CiMgQ09ORklHX0xJTksgaXMgbm90IHNldAojIENPTkZJR19MTiBpcyBu +b3Qgc2V0CiMgQ09ORklHX0xPR05BTUUgaXMgbm90IHNldApDT05GSUdfTFM9eQpDT05GSUdfRkVB +VFVSRV9MU19GSUxFVFlQRVM9eQpDT05GSUdfRkVBVFVSRV9MU19GT0xMT1dMSU5LUz15CkNPTkZJ +R19GRUFUVVJFX0xTX1JFQ1VSU0lWRT15CkNPTkZJR19GRUFUVVJFX0xTX1dJRFRIPXkKQ09ORklH +X0ZFQVRVUkVfTFNfU09SVEZJTEVTPXkKQ09ORklHX0ZFQVRVUkVfTFNfVElNRVNUQU1QUz15CkNP +TkZJR19GRUFUVVJFX0xTX1VTRVJOQU1FPXkKIyBDT05GSUdfRkVBVFVSRV9MU19DT0xPUiBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTFNfQ09MT1JfSVNfREVGQVVMVCBpcyBub3Qgc2V0CiMg +Q09ORklHX01ENVNVTSBpcyBub3Qgc2V0CiMgQ09ORklHX1NIQTFTVU0gaXMgbm90IHNldAojIENP +TkZJR19TSEEyNTZTVU0gaXMgbm90IHNldAojIENPTkZJR19TSEE1MTJTVU0gaXMgbm90IHNldAoj +IENPTkZJR19TSEEzU1VNIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9NRDVfU0hBMV9TVU1f +Q0hFQ0sgaXMgbm90IHNldAojIENPTkZJR19NS0RJUiBpcyBub3Qgc2V0CiMgQ09ORklHX01LRklG +TyBpcyBub3Qgc2V0CiMgQ09ORklHX01LTk9EIGlzIG5vdCBzZXQKIyBDT05GSUdfTUtURU1QIGlz +IG5vdCBzZXQKIyBDT05GSUdfTVYgaXMgbm90IHNldAojIENPTkZJR19OSUNFIGlzIG5vdCBzZXQK +IyBDT05GSUdfTkwgaXMgbm90IHNldAojIENPTkZJR19OT0hVUCBpcyBub3Qgc2V0CiMgQ09ORklH +X05QUk9DIGlzIG5vdCBzZXQKIyBDT05GSUdfT0QgaXMgbm90IHNldAojIENPTkZJR19QQVNURSBp +cyBub3Qgc2V0CiMgQ09ORklHX1BSSU5URU5WIGlzIG5vdCBzZXQKIyBDT05GSUdfUFJJTlRGIGlz +IG5vdCBzZXQKIyBDT05GSUdfUFdEIGlzIG5vdCBzZXQKIyBDT05GSUdfUkVBRExJTksgaXMgbm90 +IHNldAojIENPTkZJR19GRUFUVVJFX1JFQURMSU5LX0ZPTExPVyBpcyBub3Qgc2V0CiMgQ09ORklH +X1JFQUxQQVRIIGlzIG5vdCBzZXQKIyBDT05GSUdfUk0gaXMgbm90IHNldAojIENPTkZJR19STURJ +UiBpcyBub3Qgc2V0CiMgQ09ORklHX1NFUSBpcyBub3Qgc2V0CiMgQ09ORklHX1NIUkVEIGlzIG5v +dCBzZXQKIyBDT05GSUdfU0hVRiBpcyBub3Qgc2V0CkNPTkZJR19TTEVFUD15CkNPTkZJR19GRUFU +VVJFX0ZBTkNZX1NMRUVQPXkKIyBDT05GSUdfU09SVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRV +UkVfU09SVF9CSUcgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NPUlRfT1BUSU1JWkVfTUVN +T1JZIGlzIG5vdCBzZXQKIyBDT05GSUdfU1BMSVQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X1NQTElUX0ZBTkNZIGlzIG5vdCBzZXQKIyBDT05GSUdfU1RBVCBpcyBub3Qgc2V0CiMgQ09ORklH +X0ZFQVRVUkVfU1RBVF9GT1JNQVQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NUQVRfRklM +RVNZU1RFTSBpcyBub3Qgc2V0CiMgQ09ORklHX1NUVFkgaXMgbm90IHNldAojIENPTkZJR19TVU0g +aXMgbm90IHNldAojIENPTkZJR19TWU5DIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9TWU5D +X0ZBTkNZIGlzIG5vdCBzZXQKIyBDT05GSUdfRlNZTkMgaXMgbm90IHNldAojIENPTkZJR19UQUMg +aXMgbm90IHNldAojIENPTkZJR19UQUlMIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GQU5D +WV9UQUlMIGlzIG5vdCBzZXQKIyBDT05GSUdfVEVFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVS +RV9URUVfVVNFX0JMT0NLX0lPIGlzIG5vdCBzZXQKIyBDT05GSUdfVEVTVCBpcyBub3Qgc2V0CiMg +Q09ORklHX1RFU1QxIGlzIG5vdCBzZXQKIyBDT05GSUdfVEVTVDIgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX1RFU1RfNjQgaXMgbm90IHNldAojIENPTkZJR19USU1FT1VUIGlzIG5vdCBzZXQK +IyBDT05GSUdfVE9VQ0ggaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RPVUNIX05PREVSRUYg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RPVUNIX1NVU1YzIGlzIG5vdCBzZXQKIyBDT05G +SUdfVFIgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RSX0NMQVNTRVMgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX1RSX0VRVUlWIGlzIG5vdCBzZXQKIyBDT05GSUdfVFJVRSBpcyBub3Qg +c2V0CiMgQ09ORklHX1RSVU5DQVRFIGlzIG5vdCBzZXQKIyBDT05GSUdfVFRZIGlzIG5vdCBzZXQK +Q09ORklHX1VOQU1FPXkKQ09ORklHX1VOQU1FX09TTkFNRT0iR05VL0xpbnV4IEZhbnRhIgojIENP +TkZJR19CQl9BUkNIIGlzIG5vdCBzZXQKIyBDT05GSUdfVU5JUSBpcyBub3Qgc2V0CiMgQ09ORklH +X1VOTElOSyBpcyBub3Qgc2V0CiMgQ09ORklHX1VTTEVFUCBpcyBub3Qgc2V0CiMgQ09ORklHX1VV +REVDT0RFIGlzIG5vdCBzZXQKIyBDT05GSUdfQkFTRTMyIGlzIG5vdCBzZXQKIyBDT05GSUdfQkFT +RTY0IGlzIG5vdCBzZXQKIyBDT05GSUdfVVVFTkNPREUgaXMgbm90IHNldAojIENPTkZJR19XQyBp +cyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfV0NfTEFSR0UgaXMgbm90IHNldAojIENPTkZJR19X +SE8gaXMgbm90IHNldAojIENPTkZJR19XIGlzIG5vdCBzZXQKIyBDT05GSUdfVVNFUlMgaXMgbm90 +IHNldAojIENPTkZJR19XSE9BTUkgaXMgbm90IHNldAojIENPTkZJR19ZRVMgaXMgbm90IHNldAoK +IwojIENvbW1vbiBvcHRpb25zCiMKIyBDT05GSUdfRkVBVFVSRV9WRVJCT1NFIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9QUkVTRVJWRV9IQVJETElOS1MgaXMgbm90IHNldAoKIwojIENvbW1v +biBvcHRpb25zIGZvciBkZiwgZHUsIGxzCiMKQ09ORklHX0ZFQVRVUkVfSFVNQU5fUkVBREFCTEU9 +eQoKIwojIENvbnNvbGUgVXRpbGl0aWVzCiMKIyBDT05GSUdfQ0hWVCBpcyBub3Qgc2V0CkNPTkZJ +R19DTEVBUj15CiMgQ09ORklHX0RFQUxMT0NWVCBpcyBub3Qgc2V0CiMgQ09ORklHX0RVTVBLTUFQ +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkdDT05TT0xFIGlzIG5vdCBzZXQKIyBDT05GSUdfS0JEX01P +REUgaXMgbm90IHNldAojIENPTkZJR19MT0FERk9OVCBpcyBub3Qgc2V0CiMgQ09ORklHX1NFVEZP +TlQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NFVEZPTlRfVEVYVFVBTF9NQVAgaXMgbm90 +IHNldApDT05GSUdfREVGQVVMVF9TRVRGT05UX0RJUj0iIgojIENPTkZJR19GRUFUVVJFX0xPQURG +T05UX1BTRjIgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0xPQURGT05UX1JBVyBpcyBub3Qg +c2V0CiMgQ09ORklHX0xPQURLTUFQIGlzIG5vdCBzZXQKIyBDT05GSUdfT1BFTlZUIGlzIG5vdCBz +ZXQKIyBDT05GSUdfUkVTRVQgaXMgbm90IHNldAojIENPTkZJR19SRVNJWkUgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX1JFU0laRV9QUklOVCBpcyBub3Qgc2V0CiMgQ09ORklHX1NFVENPTlNP +TEUgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NFVENPTlNPTEVfTE9OR19PUFRJT05TIGlz +IG5vdCBzZXQKIyBDT05GSUdfU0VUS0VZQ09ERVMgaXMgbm90IHNldAojIENPTkZJR19TRVRMT0dD +T05TIGlzIG5vdCBzZXQKIyBDT05GSUdfU0hPV0tFWSBpcyBub3Qgc2V0CgojCiMgRGViaWFuIFV0 +aWxpdGllcwojCiMgQ09ORklHX1BJUEVfUFJPR1JFU1MgaXMgbm90IHNldAojIENPTkZJR19SVU5f +UEFSVFMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1JVTl9QQVJUU19MT05HX09QVElPTlMg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1JVTl9QQVJUU19GQU5DWSBpcyBub3Qgc2V0CiMg +Q09ORklHX1NUQVJUX1NUT1BfREFFTU9OIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9TVEFS +VF9TVE9QX0RBRU1PTl9MT05HX09QVElPTlMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NU +QVJUX1NUT1BfREFFTU9OX0ZBTkNZIGlzIG5vdCBzZXQKIyBDT05GSUdfV0hJQ0ggaXMgbm90IHNl +dAoKIwojIGtsaWJjLXV0aWxzCiMKIyBDT05GSUdfTUlOSVBTIGlzIG5vdCBzZXQKIyBDT05GSUdf +TlVLRSBpcyBub3Qgc2V0CiMgQ09ORklHX1JFU1VNRSBpcyBub3Qgc2V0CiMgQ09ORklHX1JVTl9J +TklUIGlzIG5vdCBzZXQKCiMKIyBFZGl0b3JzCiMKIyBDT05GSUdfQVdLIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9BV0tfTElCTSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfQVdLX0dO +VV9FWFRFTlNJT05TIGlzIG5vdCBzZXQKIyBDT05GSUdfQ01QIGlzIG5vdCBzZXQKIyBDT05GSUdf +RElGRiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRElGRl9MT05HX09QVElPTlMgaXMgbm90 +IHNldAojIENPTkZJR19GRUFUVVJFX0RJRkZfRElSIGlzIG5vdCBzZXQKIyBDT05GSUdfRUQgaXMg +bm90IHNldAojIENPTkZJR19QQVRDSCBpcyBub3Qgc2V0CiMgQ09ORklHX1NFRCBpcyBub3Qgc2V0 +CkNPTkZJR19WST15CkNPTkZJR19GRUFUVVJFX1ZJX01BWF9MRU49NDA5NgojIENPTkZJR19GRUFU +VVJFX1ZJXzhCSVQgaXMgbm90IHNldApDT05GSUdfRkVBVFVSRV9WSV9DT0xPTj15CkNPTkZJR19G +RUFUVVJFX1ZJX1lBTktNQVJLPXkKQ09ORklHX0ZFQVRVUkVfVklfU0VBUkNIPXkKIyBDT05GSUdf +RkVBVFVSRV9WSV9SRUdFWF9TRUFSQ0ggaXMgbm90IHNldApDT05GSUdfRkVBVFVSRV9WSV9VU0Vf +U0lHTkFMUz15CkNPTkZJR19GRUFUVVJFX1ZJX0RPVF9DTUQ9eQpDT05GSUdfRkVBVFVSRV9WSV9S +RUFET05MWT15CkNPTkZJR19GRUFUVVJFX1ZJX1NFVE9QVFM9eQpDT05GSUdfRkVBVFVSRV9WSV9T +RVQ9eQpDT05GSUdfRkVBVFVSRV9WSV9XSU5fUkVTSVpFPXkKQ09ORklHX0ZFQVRVUkVfVklfQVNL +X1RFUk1JTkFMPXkKQ09ORklHX0ZFQVRVUkVfVklfVU5ETz15CkNPTkZJR19GRUFUVVJFX1ZJX1VO +RE9fUVVFVUU9eQpDT05GSUdfRkVBVFVSRV9WSV9VTkRPX1FVRVVFX01BWD0yNTYKQ09ORklHX0ZF +QVRVUkVfQUxMT1dfRVhFQz15CgojCiMgRmluZGluZyBVdGlsaXRpZXMKIwojIENPTkZJR19GSU5E +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX1BSSU5UMCBpcyBub3Qgc2V0CiMgQ09O +RklHX0ZFQVRVUkVfRklORF9NVElNRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9N +TUlOIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX1BFUk0gaXMgbm90IHNldAojIENP +TkZJR19GRUFUVVJFX0ZJTkRfVFlQRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9F +WEVDVVRBQkxFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX1hERVYgaXMgbm90IHNl +dAojIENPTkZJR19GRUFUVVJFX0ZJTkRfTUFYREVQVEggaXMgbm90IHNldAojIENPTkZJR19GRUFU +VVJFX0ZJTkRfTkVXRVIgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0ZJTkRfSU5VTSBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9FWEVDIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVB +VFVSRV9GSU5EX0VYRUNfUExVUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9VU0VS +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX0dST1VQIGlzIG5vdCBzZXQKIyBDT05G +SUdfRkVBVFVSRV9GSU5EX05PVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9ERVBU +SCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9QQVJFTiBpcyBub3Qgc2V0CiMgQ09O +RklHX0ZFQVRVUkVfRklORF9TSVpFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX1BS +VU5FIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX1FVSVQgaXMgbm90IHNldAojIENP +TkZJR19GRUFUVVJFX0ZJTkRfREVMRVRFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5E +X0VNUFRZIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9GSU5EX1BBVEggaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0ZJTkRfUkVHRVggaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0ZJ +TkRfQ09OVEVYVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRklORF9MSU5LUyBpcyBub3Qg +c2V0CiMgQ09ORklHX0dSRVAgaXMgbm90IHNldAojIENPTkZJR19FR1JFUCBpcyBub3Qgc2V0CiMg +Q09ORklHX0ZHUkVQIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9HUkVQX0NPTlRFWFQgaXMg +bm90IHNldAojIENPTkZJR19YQVJHUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfWEFSR1Nf +U1VQUE9SVF9DT05GSVJNQVRJT04gaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1hBUkdTX1NV +UFBPUlRfUVVPVEVTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9YQVJHU19TVVBQT1JUX1RF +Uk1PUFQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1hBUkdTX1NVUFBPUlRfWkVST19URVJN +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9YQVJHU19TVVBQT1JUX1JFUExfU1RSIGlzIG5v +dCBzZXQKIyBDT05GSUdfRkVBVFVSRV9YQVJHU19TVVBQT1JUX1BBUkFMTEVMIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9YQVJHU19TVVBQT1JUX0FSR1NfRklMRSBpcyBub3Qgc2V0CgojCiMg +SW5pdCBVdGlsaXRpZXMKIwojIENPTkZJR19CT09UQ0hBUlREIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9CT09UQ0hBUlREX0JMT0FURURfSEVBREVSIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVB +VFVSRV9CT09UQ0hBUlREX0NPTkZJR19GSUxFIGlzIG5vdCBzZXQKIyBDT05GSUdfSEFMVCBpcyBu +b3Qgc2V0CkNPTkZJR19QT1dFUk9GRj15CkNPTkZJR19SRUJPT1Q9eQpDT05GSUdfRkVBVFVSRV9X +QUlUX0ZPUl9JTklUPXkKIyBDT05GSUdfRkVBVFVSRV9DQUxMX1RFTElOSVQgaXMgbm90IHNldApD +T05GSUdfVEVMSU5JVF9QQVRIPSIiCkNPTkZJR19JTklUPXkKIyBDT05GSUdfTElOVVhSQyBpcyBu +b3Qgc2V0CkNPTkZJR19GRUFUVVJFX1VTRV9JTklUVEFCPXkKIyBDT05GSUdfRkVBVFVSRV9LSUxM +X1JFTU9WRUQgaXMgbm90IHNldApDT05GSUdfRkVBVFVSRV9LSUxMX0RFTEFZPTAKQ09ORklHX0ZF +QVRVUkVfSU5JVF9TQ1RUWT15CkNPTkZJR19GRUFUVVJFX0lOSVRfU1lTTE9HPXkKQ09ORklHX0ZF +QVRVUkVfSU5JVF9RVUlFVD15CiMgQ09ORklHX0ZFQVRVUkVfSU5JVF9DT1JFRFVNUFMgaXMgbm90 +IHNldApDT05GSUdfSU5JVF9URVJNSU5BTF9UWVBFPSJsaW51eCIKQ09ORklHX0ZFQVRVUkVfSU5J +VF9NT0RJRllfQ01ETElORT15CgojCiMgTG9naW4vUGFzc3dvcmQgTWFuYWdlbWVudCBVdGlsaXRp +ZXMKIwojIENPTkZJR19GRUFUVVJFX1NIQURPV1BBU1NXRFMgaXMgbm90IHNldAojIENPTkZJR19V +U0VfQkJfUFdEX0dSUCBpcyBub3Qgc2V0CiMgQ09ORklHX1VTRV9CQl9TSEFET1cgaXMgbm90IHNl +dAojIENPTkZJR19VU0VfQkJfQ1JZUFQgaXMgbm90IHNldAojIENPTkZJR19VU0VfQkJfQ1JZUFRf +U0hBIGlzIG5vdCBzZXQKIyBDT05GSUdfQUREX1NIRUxMIGlzIG5vdCBzZXQKIyBDT05GSUdfUkVN +T1ZFX1NIRUxMIGlzIG5vdCBzZXQKIyBDT05GSUdfQURER1JPVVAgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX0FERFVTRVJfVE9fR1JPVVAgaXMgbm90IHNldAojIENPTkZJR19BRERVU0VSIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DSEVDS19OQU1FUyBpcyBub3Qgc2V0CkNPTkZJR19M +QVNUX0lEPTAKQ09ORklHX0ZJUlNUX1NZU1RFTV9JRD0wCkNPTkZJR19MQVNUX1NZU1RFTV9JRD0w +CiMgQ09ORklHX0NIUEFTU1dEIGlzIG5vdCBzZXQKQ09ORklHX0ZFQVRVUkVfREVGQVVMVF9QQVNT +V0RfQUxHTz0iIgojIENPTkZJR19DUllQVFBXIGlzIG5vdCBzZXQKIyBDT05GSUdfTUtQQVNTV0Qg +aXMgbm90IHNldAojIENPTkZJR19ERUxVU0VSIGlzIG5vdCBzZXQKIyBDT05GSUdfREVMR1JPVVAg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0RFTF9VU0VSX0ZST01fR1JPVVAgaXMgbm90IHNl +dAojIENPTkZJR19HRVRUWSBpcyBub3Qgc2V0CiMgQ09ORklHX0xPR0lOIGlzIG5vdCBzZXQKIyBD +T05GSUdfTE9HSU5fU0VTU0lPTl9BU19DSElMRCBpcyBub3Qgc2V0CiMgQ09ORklHX0xPR0lOX1ND +UklQVFMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX05PTE9HSU4gaXMgbm90IHNldAojIENP +TkZJR19GRUFUVVJFX1NFQ1VSRVRUWSBpcyBub3Qgc2V0CiMgQ09ORklHX1BBU1NXRCBpcyBub3Qg +c2V0CiMgQ09ORklHX0ZFQVRVUkVfUEFTU1dEX1dFQUtfQ0hFQ0sgaXMgbm90IHNldAojIENPTkZJ +R19TVSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfU1VfU1lTTE9HIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9TVV9DSEVDS1NfU0hFTExTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVS +RV9TVV9CTEFOS19QV19ORUVEU19TRUNVUkVfVFRZIGlzIG5vdCBzZXQKIyBDT05GSUdfU1VMT0dJ +TiBpcyBub3Qgc2V0CiMgQ09ORklHX1ZMT0NLIGlzIG5vdCBzZXQKCiMKIyBMaW51eCBFeHQyIEZT +IFByb2dzCiMKIyBDT05GSUdfQ0hBVFRSIGlzIG5vdCBzZXQKIyBDT05GSUdfRlNDSyBpcyBub3Qg +c2V0CiMgQ09ORklHX0xTQVRUUiBpcyBub3Qgc2V0CiMgQ09ORklHX1RVTkUyRlMgaXMgbm90IHNl +dAoKIwojIExpbnV4IE1vZHVsZSBVdGlsaXRpZXMKIwojIENPTkZJR19NT0RQUk9CRV9TTUFMTCBp +cyBub3Qgc2V0CiMgQ09ORklHX0RFUE1PRCBpcyBub3Qgc2V0CiMgQ09ORklHX0lOU01PRCBpcyBu +b3Qgc2V0CiMgQ09ORklHX0xTTU9EIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9MU01PRF9Q +UkVUVFlfMl82X09VVFBVVCBpcyBub3Qgc2V0CiMgQ09ORklHX01PRElORk8gaXMgbm90IHNldAoj +IENPTkZJR19NT0RQUk9CRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTU9EUFJPQkVfQkxB +Q0tMSVNUIGlzIG5vdCBzZXQKIyBDT05GSUdfUk1NT0QgaXMgbm90IHNldAoKIwojIE9wdGlvbnMg +Y29tbW9uIHRvIG11bHRpcGxlIG1vZHV0aWxzCiMKIyBDT05GSUdfRkVBVFVSRV9DTURMSU5FX01P +RFVMRV9PUFRJT05TIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9NT0RQUk9CRV9TTUFMTF9D +SEVDS19BTFJFQURZX0xPQURFRCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfMl80X01PRFVM +RVMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0lOU01PRF9WRVJTSU9OX0NIRUNLSU5HIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JTlNNT0RfS1NZTU9PUFNfU1lNQk9MUyBpcyBub3Qg +c2V0CiMgQ09ORklHX0ZFQVRVUkVfSU5TTU9EX0xPQURJTktNRU0gaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX0lOU01PRF9MT0FEX01BUCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSU5T +TU9EX0xPQURfTUFQX0ZVTEwgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0NIRUNLX1RBSU5U +RURfTU9EVUxFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JTlNNT0RfVFJZX01NQVAgaXMg +bm90IHNldAojIENPTkZJR19GRUFUVVJFX01PRFVUSUxTX0FMSUFTIGlzIG5vdCBzZXQKIyBDT05G +SUdfRkVBVFVSRV9NT0RVVElMU19TWU1CT0xTIGlzIG5vdCBzZXQKQ09ORklHX0RFRkFVTFRfTU9E +VUxFU19ESVI9IiIKQ09ORklHX0RFRkFVTFRfREVQTU9EX0ZJTEU9IiIKCiMKIyBMaW51eCBTeXN0 +ZW0gVXRpbGl0aWVzCiMKIyBDT05GSUdfQUNQSUQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X0FDUElEX0NPTVBBVCBpcyBub3Qgc2V0CiMgQ09ORklHX0JMS0RJU0NBUkQgaXMgbm90IHNldAoj +IENPTkZJR19CTEtJRCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfQkxLSURfVFlQRSBpcyBu +b3Qgc2V0CiMgQ09ORklHX0JMT0NLREVWIGlzIG5vdCBzZXQKIyBDT05GSUdfQ0FMIGlzIG5vdCBz +ZXQKIyBDT05GSUdfQ0hSVCBpcyBub3Qgc2V0CiMgQ09ORklHX0RNRVNHIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9ETUVTR19QUkVUVFkgaXMgbm90IHNldAojIENPTkZJR19FSkVDVCBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRUpFQ1RfU0NTSSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZB +TExPQ0FURSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZBVEFUVFIgaXMgbm90IHNldAojIENPTkZJR19G +QlNFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRkJTRVRfRkFOQ1kgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0ZCU0VUX1JFQURNT0RFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkRGT1JN +QVQgaXMgbm90IHNldAojIENPTkZJR19GRElTSyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZESVNLX1NV +UFBPUlRfTEFSR0VfRElTS1MgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0ZESVNLX1dSSVRB +QkxFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9BSVhfTEFCRUwgaXMgbm90IHNldAojIENP +TkZJR19GRUFUVVJFX1NHSV9MQUJFTCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfU1VOX0xB +QkVMIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9PU0ZfTEFCRUwgaXMgbm90IHNldAojIENP +TkZJR19GRUFUVVJFX0dQVF9MQUJFTCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRkRJU0tf +QURWQU5DRUQgaXMgbm90IHNldAojIENPTkZJR19GSU5ERlMgaXMgbm90IHNldAojIENPTkZJR19G +TE9DSyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZERkxVU0ggaXMgbm90IHNldAojIENPTkZJR19GUkVF +UkFNRElTSyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZTQ0tfTUlOSVggaXMgbm90IHNldAojIENPTkZJ +R19GU0ZSRUVaRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZTVFJJTSBpcyBub3Qgc2V0CiMgQ09ORklH +X0dFVE9QVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfR0VUT1BUX0xPTkcgaXMgbm90IHNl +dAojIENPTkZJR19IRVhEVU1QIGlzIG5vdCBzZXQKIyBDT05GSUdfSEQgaXMgbm90IHNldAojIENP +TkZJR19YWEQgaXMgbm90IHNldAojIENPTkZJR19IV0NMT0NLIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9IV0NMT0NLX0FESlRJTUVfRkhTIGlzIG5vdCBzZXQKIyBDT05GSUdfSU9OSUNFIGlz +IG5vdCBzZXQKIyBDT05GSUdfSVBDUk0gaXMgbm90IHNldAojIENPTkZJR19JUENTIGlzIG5vdCBz +ZXQKIyBDT05GSUdfTEFTVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTEFTVF9GQU5DWSBp +cyBub3Qgc2V0CiMgQ09ORklHX0xPU0VUVVAgaXMgbm90IHNldAojIENPTkZJR19MU1BDSSBpcyBu +b3Qgc2V0CiMgQ09ORklHX0xTVVNCIGlzIG5vdCBzZXQKIyBDT05GSUdfTURFViBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfTURFVl9DT05GIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9N +REVWX1JFTkFNRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTURFVl9SRU5BTUVfUkVHRVhQ +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9NREVWX0VYRUMgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX01ERVZfTE9BRF9GSVJNV0FSRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVf +TURFVl9EQUVNT04gaXMgbm90IHNldAojIENPTkZJR19NRVNHIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9NRVNHX0VOQUJMRV9PTkxZX0dST1VQIGlzIG5vdCBzZXQKIyBDT05GSUdfTUtFMkZT +IGlzIG5vdCBzZXQKIyBDT05GSUdfTUtGU19FWFQyIGlzIG5vdCBzZXQKIyBDT05GSUdfTUtGU19N +SU5JWCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTUlOSVgyIGlzIG5vdCBzZXQKIyBDT05G +SUdfTUtGU19SRUlTRVIgaXMgbm90IHNldAojIENPTkZJR19NS0RPU0ZTIGlzIG5vdCBzZXQKIyBD +T05GSUdfTUtGU19WRkFUIGlzIG5vdCBzZXQKIyBDT05GSUdfTUtTV0FQIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9NS1NXQVBfVVVJRCBpcyBub3Qgc2V0CiMgQ09ORklHX01PUkUgaXMgbm90 +IHNldApDT05GSUdfTU9VTlQ9eQpDT05GSUdfRkVBVFVSRV9NT1VOVF9GQUtFPXkKQ09ORklHX0ZF +QVRVUkVfTU9VTlRfVkVSQk9TRT15CiMgQ09ORklHX0ZFQVRVUkVfTU9VTlRfSEVMUEVSUyBpcyBu +b3Qgc2V0CkNPTkZJR19GRUFUVVJFX01PVU5UX0xBQkVMPXkKIyBDT05GSUdfRkVBVFVSRV9NT1VO +VF9ORlMgaXMgbm90IHNldApDT05GSUdfRkVBVFVSRV9NT1VOVF9DSUZTPXkKQ09ORklHX0ZFQVRV +UkVfTU9VTlRfRkxBR1M9eQpDT05GSUdfRkVBVFVSRV9NT1VOVF9GU1RBQj15CkNPTkZJR19GRUFU +VVJFX01PVU5UX09USEVSVEFCPXkKIyBDT05GSUdfTU9VTlRQT0lOVCBpcyBub3Qgc2V0CiMgQ09O +RklHX05PTE9HSU4gaXMgbm90IHNldAojIENPTkZJR19OT0xPR0lOX0RFUEVOREVOQ0lFUyBpcyBu +b3Qgc2V0CiMgQ09ORklHX05TRU5URVIgaXMgbm90IHNldAojIENPTkZJR19QSVZPVF9ST09UIGlz +IG5vdCBzZXQKIyBDT05GSUdfUkRBVEUgaXMgbm90IHNldAojIENPTkZJR19SREVWIGlzIG5vdCBz +ZXQKIyBDT05GSUdfUkVBRFBST0ZJTEUgaXMgbm90IHNldAojIENPTkZJR19SRU5JQ0UgaXMgbm90 +IHNldAojIENPTkZJR19SRVYgaXMgbm90IHNldAojIENPTkZJR19SVENXQUtFIGlzIG5vdCBzZXQK +IyBDT05GSUdfU0NSSVBUIGlzIG5vdCBzZXQKIyBDT05GSUdfU0NSSVBUUkVQTEFZIGlzIG5vdCBz +ZXQKIyBDT05GSUdfU0VUQVJDSCBpcyBub3Qgc2V0CiMgQ09ORklHX0xJTlVYMzIgaXMgbm90IHNl +dAojIENPTkZJR19MSU5VWDY0IGlzIG5vdCBzZXQKIyBDT05GSUdfU0VUUFJJViBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfU0VUUFJJVl9EVU1QIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVS +RV9TRVRQUklWX0NBUEFCSUxJVElFUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfU0VUUFJJ +Vl9DQVBBQklMSVRZX05BTUVTIGlzIG5vdCBzZXQKIyBDT05GSUdfU0VUU0lEIGlzIG5vdCBzZXQK +IyBDT05GSUdfU1dBUE9OIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9TV0FQT05fRElTQ0FS +RCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfU1dBUE9OX1BSSSBpcyBub3Qgc2V0CiMgQ09O +RklHX1NXQVBPRkYgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NXQVBPTk9GRl9MQUJFTCBp +cyBub3Qgc2V0CiMgQ09ORklHX1NXSVRDSF9ST09UIGlzIG5vdCBzZXQKIyBDT05GSUdfVEFTS1NF +VCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVEFTS1NFVF9GQU5DWSBpcyBub3Qgc2V0CiMg +Q09ORklHX0ZFQVRVUkVfVEFTS1NFVF9DUFVMSVNUIGlzIG5vdCBzZXQKIyBDT05GSUdfVUVWRU5U +IGlzIG5vdCBzZXQKQ09ORklHX1VNT1VOVD15CkNPTkZJR19GRUFUVVJFX1VNT1VOVF9BTEw9eQoj +IENPTkZJR19VTlNIQVJFIGlzIG5vdCBzZXQKIyBDT05GSUdfV0FMTCBpcyBub3Qgc2V0CgojCiMg +Q29tbW9uIG9wdGlvbnMgZm9yIG1vdW50L3Vtb3VudAojCkNPTkZJR19GRUFUVVJFX01PVU5UX0xP +T1A9eQpDT05GSUdfRkVBVFVSRV9NT1VOVF9MT09QX0NSRUFURT15CiMgQ09ORklHX0ZFQVRVUkVf +TVRBQl9TVVBQT1JUIGlzIG5vdCBzZXQKQ09ORklHX1ZPTFVNRUlEPXkKCiMKIyBGaWxlc3lzdGVt +L1ZvbHVtZSBpZGVudGlmaWNhdGlvbgojCkNPTkZJR19GRUFUVVJFX1ZPTFVNRUlEX0JDQUNIRT15 +CkNPTkZJR19GRUFUVVJFX1ZPTFVNRUlEX0JUUkZTPXkKQ09ORklHX0ZFQVRVUkVfVk9MVU1FSURf +Q1JBTUZTPXkKQ09ORklHX0ZFQVRVUkVfVk9MVU1FSURfRVJPRlM9eQpDT05GSUdfRkVBVFVSRV9W +T0xVTUVJRF9FWEZBVD15CkNPTkZJR19GRUFUVVJFX1ZPTFVNRUlEX0VYVD15CkNPTkZJR19GRUFU +VVJFX1ZPTFVNRUlEX0YyRlM9eQpDT05GSUdfRkVBVFVSRV9WT0xVTUVJRF9GQVQ9eQpDT05GSUdf +RkVBVFVSRV9WT0xVTUVJRF9IRlM9eQpDT05GSUdfRkVBVFVSRV9WT0xVTUVJRF9JU085NjYwPXkK +Q09ORklHX0ZFQVRVUkVfVk9MVU1FSURfSkZTPXkKIyBDT05GSUdfRkVBVFVSRV9WT0xVTUVJRF9M +RlMgaXMgbm90IHNldApDT05GSUdfRkVBVFVSRV9WT0xVTUVJRF9MSU5VWFJBSUQ9eQpDT05GSUdf +RkVBVFVSRV9WT0xVTUVJRF9MSU5VWFNXQVA9eQpDT05GSUdfRkVBVFVSRV9WT0xVTUVJRF9MVUtT +PXkKQ09ORklHX0ZFQVRVUkVfVk9MVU1FSURfTUlOSVg9eQpDT05GSUdfRkVBVFVSRV9WT0xVTUVJ +RF9OSUxGUz15CkNPTkZJR19GRUFUVVJFX1ZPTFVNRUlEX05URlM9eQpDT05GSUdfRkVBVFVSRV9W +T0xVTUVJRF9PQ0ZTMj15CkNPTkZJR19GRUFUVVJFX1ZPTFVNRUlEX1JFSVNFUkZTPXkKQ09ORklH +X0ZFQVRVUkVfVk9MVU1FSURfUk9NRlM9eQojIENPTkZJR19GRUFUVVJFX1ZPTFVNRUlEX1NRVUFT +SEZTIGlzIG5vdCBzZXQKQ09ORklHX0ZFQVRVUkVfVk9MVU1FSURfU1lTVj15CkNPTkZJR19GRUFU +VVJFX1ZPTFVNRUlEX1VCSUZTPXkKQ09ORklHX0ZFQVRVUkVfVk9MVU1FSURfVURGPXkKQ09ORklH +X0ZFQVRVUkVfVk9MVU1FSURfWEZTPXkKCiMKIyBNaXNjZWxsYW5lb3VzIFV0aWxpdGllcwojCiMg +Q09ORklHX0FESlRJTUVYIGlzIG5vdCBzZXQKIyBDT05GSUdfQkJDT05GSUcgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0NPTVBSRVNTX0JCQ09ORklHIGlzIG5vdCBzZXQKIyBDT05GSUdfQkMg +aXMgbm90IHNldAojIENPTkZJR19EQyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRENfQklH +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9EQ19MSUJNIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9CQ19JTlRFUkFDVElWRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfQkNfTE9O +R19PUFRJT05TIGlzIG5vdCBzZXQKIyBDT05GSUdfQkVFUCBpcyBub3Qgc2V0CkNPTkZJR19GRUFU +VVJFX0JFRVBfRlJFUT0wCkNPTkZJR19GRUFUVVJFX0JFRVBfTEVOR1RIX01TPTAKIyBDT05GSUdf +Q0hBVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfQ0hBVF9OT0ZBSUwgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0NIQVRfVFRZX0hJRkkgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X0NIQVRfSU1QTElDSVRfQ1IgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0NIQVRfU1dBTExP +V19PUFRTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DSEFUX1NFTkRfRVNDQVBFUyBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfQ0hBVF9WQVJfQUJPUlRfTEVOIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9DSEFUX0NMUl9BQk9SVCBpcyBub3Qgc2V0CiMgQ09ORklHX0NPTlNQWSBp +cyBub3Qgc2V0CiMgQ09ORklHX0NST05EIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DUk9O +RF9EIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DUk9ORF9DQUxMX1NFTkRNQUlMIGlzIG5v +dCBzZXQKIyBDT05GSUdfRkVBVFVSRV9DUk9ORF9TUEVDSUFMX1RJTUVTIGlzIG5vdCBzZXQKQ09O +RklHX0ZFQVRVUkVfQ1JPTkRfRElSPSIiCiMgQ09ORklHX0NST05UQUIgaXMgbm90IHNldAojIENP +TkZJR19ERVZGU0QgaXMgbm90IHNldAojIENPTkZJR19ERVZGU0RfTU9ETE9BRCBpcyBub3Qgc2V0 +CiMgQ09ORklHX0RFVkZTRF9GR19OUCBpcyBub3Qgc2V0CiMgQ09ORklHX0RFVkZTRF9WRVJCT1NF +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9ERVZGUyBpcyBub3Qgc2V0CiMgQ09ORklHX0RF +Vk1FTSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZCU1BMQVNIIGlzIG5vdCBzZXQKIyBDT05GSUdfRkxB +U0hfRVJBU0VBTEwgaXMgbm90IHNldAojIENPTkZJR19GTEFTSF9MT0NLIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkxBU0hfVU5MT0NLIGlzIG5vdCBzZXQKIyBDT05GSUdfRkxBU0hDUCBpcyBub3Qgc2V0 +CiMgQ09ORklHX0hEUEFSTSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSERQQVJNX0dFVF9J +REVOVElUWSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSERQQVJNX0hESU9fU0NBTl9IV0lG +IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9IRFBBUk1fSERJT19VTlJFR0lTVEVSX0hXSUYg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hEUEFSTV9IRElPX0RSSVZFX1JFU0VUIGlzIG5v +dCBzZXQKIyBDT05GSUdfRkVBVFVSRV9IRFBBUk1fSERJT19UUklTVEFURV9IV0lGIGlzIG5vdCBz +ZXQKIyBDT05GSUdfRkVBVFVSRV9IRFBBUk1fSERJT19HRVRTRVRfRE1BIGlzIG5vdCBzZXQKIyBD +T05GSUdfSEVYRURJVCBpcyBub3Qgc2V0CiMgQ09ORklHX0kyQ0dFVCBpcyBub3Qgc2V0CiMgQ09O +RklHX0kyQ1NFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0kyQ0RVTVAgaXMgbm90IHNldAojIENPTkZJ +R19JMkNERVRFQ1QgaXMgbm90IHNldAojIENPTkZJR19JMkNUUkFOU0ZFUiBpcyBub3Qgc2V0CiMg +Q09ORklHX0lOT1RJRllEIGlzIG5vdCBzZXQKQ09ORklHX0xFU1M9eQpDT05GSUdfRkVBVFVSRV9M +RVNTX01BWExJTkVTPTk5OTk5OTkKQ09ORklHX0ZFQVRVUkVfTEVTU19CUkFDS0VUUz15CkNPTkZJ +R19GRUFUVVJFX0xFU1NfRkxBR1M9eQpDT05GSUdfRkVBVFVSRV9MRVNTX1RSVU5DQVRFPXkKQ09O +RklHX0ZFQVRVUkVfTEVTU19NQVJLUz15CkNPTkZJR19GRUFUVVJFX0xFU1NfUkVHRVhQPXkKQ09O +RklHX0ZFQVRVUkVfTEVTU19XSU5DSD15CkNPTkZJR19GRUFUVVJFX0xFU1NfQVNLX1RFUk1JTkFM +PXkKQ09ORklHX0ZFQVRVUkVfTEVTU19EQVNIQ01EPXkKQ09ORklHX0ZFQVRVUkVfTEVTU19MSU5F +TlVNUz15CkNPTkZJR19GRUFUVVJFX0xFU1NfUkFXPXkKQ09ORklHX0ZFQVRVUkVfTEVTU19FTlY9 +eQojIENPTkZJR19MU1NDU0kgaXMgbm90IHNldAojIENPTkZJR19NQUtFREVWUyBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfTUFLRURFVlNfTEVBRiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRV +UkVfTUFLRURFVlNfVEFCTEUgaXMgbm90IHNldAojIENPTkZJR19NQU4gaXMgbm90IHNldAojIENP +TkZJR19NSUNST0NPTSBpcyBub3Qgc2V0CiMgQ09ORklHX01JTSBpcyBub3Qgc2V0CiMgQ09ORklH +X01UIGlzIG5vdCBzZXQKIyBDT05GSUdfTkFORFdSSVRFIGlzIG5vdCBzZXQKIyBDT05GSUdfTkFO +RERVTVAgaXMgbm90IHNldAojIENPTkZJR19QQVJUUFJPQkUgaXMgbm90IHNldAojIENPTkZJR19S +QUlEQVVUT1JVTiBpcyBub3Qgc2V0CiMgQ09ORklHX1JFQURBSEVBRCBpcyBub3Qgc2V0CiMgQ09O +RklHX1JGS0lMTCBpcyBub3Qgc2V0CiMgQ09ORklHX1JVTkxFVkVMIGlzIG5vdCBzZXQKIyBDT05G +SUdfUlggaXMgbm90IHNldAojIENPTkZJR19TRVRGQVRUUiBpcyBub3Qgc2V0CiMgQ09ORklHX1NF +VFNFUklBTCBpcyBub3Qgc2V0CiMgQ09ORklHX1NUUklOR1MgaXMgbm90IHNldAojIENPTkZJR19U +SU1FIGlzIG5vdCBzZXQKIyBDT05GSUdfVFMgaXMgbm90IHNldAojIENPTkZJR19UVFlTSVpFIGlz +IG5vdCBzZXQKIyBDT05GSUdfVUJJQVRUQUNIIGlzIG5vdCBzZXQKIyBDT05GSUdfVUJJREVUQUNI +IGlzIG5vdCBzZXQKIyBDT05GSUdfVUJJTUtWT0wgaXMgbm90IHNldAojIENPTkZJR19VQklSTVZP +TCBpcyBub3Qgc2V0CiMgQ09ORklHX1VCSVJTVk9MIGlzIG5vdCBzZXQKIyBDT05GSUdfVUJJVVBE +QVRFVk9MIGlzIG5vdCBzZXQKIyBDT05GSUdfVUJJUkVOQU1FIGlzIG5vdCBzZXQKIyBDT05GSUdf +Vk9MTkFNRSBpcyBub3Qgc2V0CiMgQ09ORklHX1dBVENIRE9HIGlzIG5vdCBzZXQKCiMKIyBOZXR3 +b3JraW5nIFV0aWxpdGllcwojCiMgQ09ORklHX0ZFQVRVUkVfSVBWNiBpcyBub3Qgc2V0CiMgQ09O +RklHX0ZFQVRVUkVfVU5JWF9MT0NBTCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUFJFRkVS +X0lQVjRfQUREUkVTUyBpcyBub3Qgc2V0CiMgQ09ORklHX1ZFUkJPU0VfUkVTT0xVVElPTl9FUlJP +UlMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RMU19TSEExIGlzIG5vdCBzZXQKIyBDT05G +SUdfQVJQIGlzIG5vdCBzZXQKIyBDT05GSUdfQVJQSU5HIGlzIG5vdCBzZXQKIyBDT05GSUdfQlJD +VEwgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0JSQ1RMX0ZBTkNZIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9CUkNUTF9TSE9XIGlzIG5vdCBzZXQKIyBDT05GSUdfRE5TRCBpcyBub3Qg +c2V0CiMgQ09ORklHX0VUSEVSX1dBS0UgaXMgbm90IHNldAojIENPTkZJR19GVFBEIGlzIG5vdCBz +ZXQKIyBDT05GSUdfRkVBVFVSRV9GVFBEX1dSSVRFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVS +RV9GVFBEX0FDQ0VQVF9CUk9LRU5fTElTVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRlRQ +RF9BVVRIRU5USUNBVElPTiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZUUEdFVCBpcyBub3Qgc2V0CiMg +Q09ORklHX0ZUUFBVVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRlRQR0VUUFVUX0xPTkdf +T1BUSU9OUyBpcyBub3Qgc2V0CiMgQ09ORklHX0hPU1ROQU1FIGlzIG5vdCBzZXQKIyBDT05GSUdf +RE5TRE9NQUlOTkFNRSBpcyBub3Qgc2V0CiMgQ09ORklHX0hUVFBEIGlzIG5vdCBzZXQKIyBDT05G +SUdfRkVBVFVSRV9IVFRQRF9SQU5HRVMgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hUVFBE +X1NFVFVJRCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSFRUUERfQkFTSUNfQVVUSCBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSFRUUERfQVVUSF9NRDUgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX0hUVFBEX0NHSSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSFRUUERfQ09O +RklHX1dJVEhfU0NSSVBUX0lOVEVSUFIgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hUVFBE +X1NFVF9SRU1PVEVfUE9SVF9UT19FTlYgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hUVFBE +X0VOQ09ERV9VUkxfU1RSIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9IVFRQRF9FUlJPUl9Q +QUdFUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSFRUUERfUFJPWFkgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0hUVFBEX0daSVAgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hU +VFBEX0VUQUcgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hUVFBEX0xBU1RfTU9ESUZJRUQg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0hUVFBEX0RBVEUgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX0hUVFBEX0FDTF9JUCBpcyBub3Qgc2V0CiMgQ09ORklHX0lGQ09ORklHIGlzIG5v +dCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JRkNPTkZJR19TVEFUVVMgaXMgbm90IHNldAojIENPTkZJ +R19GRUFUVVJFX0lGQ09ORklHX1NMSVAgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0lGQ09O +RklHX01FTVNUQVJUX0lPQUREUl9JUlEgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0lGQ09O +RklHX0hXIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JRkNPTkZJR19CUk9BRENBU1RfUExV +UyBpcyBub3Qgc2V0CiMgQ09ORklHX0lGRU5TTEFWRSBpcyBub3Qgc2V0CiMgQ09ORklHX0lGUExV +R0QgaXMgbm90IHNldAojIENPTkZJR19JRlVQIGlzIG5vdCBzZXQKIyBDT05GSUdfSUZET1dOIGlz +IG5vdCBzZXQKQ09ORklHX0lGVVBET1dOX0lGU1RBVEVfUEFUSD0iIgojIENPTkZJR19GRUFUVVJF +X0lGVVBET1dOX0lQIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JRlVQRE9XTl9JUFY0IGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JRlVQRE9XTl9JUFY2IGlzIG5vdCBzZXQKIyBDT05G +SUdfRkVBVFVSRV9JRlVQRE9XTl9NQVBQSU5HIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9J +RlVQRE9XTl9FWFRFUk5BTF9ESENQIGlzIG5vdCBzZXQKIyBDT05GSUdfSU5FVEQgaXMgbm90IHNl +dAojIENPTkZJR19GRUFUVVJFX0lORVREX1NVUFBPUlRfQlVJTFRJTl9FQ0hPIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9JTkVURF9TVVBQT1JUX0JVSUxUSU5fRElTQ0FSRCBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfSU5FVERfU1VQUE9SVF9CVUlMVElOX1RJTUUgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX0lORVREX1NVUFBPUlRfQlVJTFRJTl9EQVlUSU1FIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9JTkVURF9TVVBQT1JUX0JVSUxUSU5fQ0hBUkdFTiBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfSU5FVERfUlBDIGlzIG5vdCBzZXQKIyBDT05GSUdfSVAgaXMgbm90 +IHNldAojIENPTkZJR19JUEFERFIgaXMgbm90IHNldAojIENPTkZJR19JUExJTksgaXMgbm90IHNl +dAojIENPTkZJR19JUFJPVVRFIGlzIG5vdCBzZXQKIyBDT05GSUdfSVBUVU5ORUwgaXMgbm90IHNl +dAojIENPTkZJR19JUFJVTEUgaXMgbm90IHNldAojIENPTkZJR19JUE5FSUdIIGlzIG5vdCBzZXQK +IyBDT05GSUdfRkVBVFVSRV9JUF9BRERSRVNTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9J +UF9MSU5LIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JUF9ST1VURSBpcyBub3Qgc2V0CkNP +TkZJR19GRUFUVVJFX0lQX1JPVVRFX0RJUj0iIgojIENPTkZJR19GRUFUVVJFX0lQX1RVTk5FTCBp +cyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfSVBfUlVMRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZF +QVRVUkVfSVBfTkVJR0ggaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX0lQX1JBUkVfUFJPVE9D +T0xTIGlzIG5vdCBzZXQKIyBDT05GSUdfSVBDQUxDIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVS +RV9JUENBTENfTE9OR19PUFRJT05TIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9JUENBTENf +RkFOQ1kgaXMgbm90IHNldAojIENPTkZJR19GQUtFSURFTlREIGlzIG5vdCBzZXQKIyBDT05GSUdf +TkFNRUlGIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9OQU1FSUZfRVhURU5ERUQgaXMgbm90 +IHNldAojIENPTkZJR19OQkRDTElFTlQgaXMgbm90IHNldAojIENPTkZJR19OQyBpcyBub3Qgc2V0 +CiMgQ09ORklHX05FVENBVCBpcyBub3Qgc2V0CiMgQ09ORklHX05DX1NFUlZFUiBpcyBub3Qgc2V0 +CiMgQ09ORklHX05DX0VYVFJBIGlzIG5vdCBzZXQKIyBDT05GSUdfTkNfMTEwX0NPTVBBVCBpcyBu +b3Qgc2V0CiMgQ09ORklHX05FVFNUQVQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX05FVFNU +QVRfV0lERSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTkVUU1RBVF9QUkcgaXMgbm90IHNl +dAojIENPTkZJR19OU0xPT0tVUCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTlNMT09LVVBf +QklHIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9OU0xPT0tVUF9MT05HX09QVElPTlMgaXMg +bm90IHNldAojIENPTkZJR19OVFBEIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9OVFBEX1NF +UlZFUiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTlRQRF9DT05GIGlzIG5vdCBzZXQKIyBD +T05GSUdfRkVBVFVSRV9OVFBfQVVUSCBpcyBub3Qgc2V0CiMgQ09ORklHX1BJTkcgaXMgbm90IHNl +dAojIENPTkZJR19QSU5HNiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfRkFOQ1lfUElORyBp +cyBub3Qgc2V0CiMgQ09ORklHX1BTQ0FOIGlzIG5vdCBzZXQKIyBDT05GSUdfUk9VVEUgaXMgbm90 +IHNldAojIENPTkZJR19TTEFUVEFDSCBpcyBub3Qgc2V0CiMgQ09ORklHX1NTTF9DTElFTlQgaXMg +bm90IHNldAojIENPTkZJR19UQyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVENfSU5HUkVT +UyBpcyBub3Qgc2V0CiMgQ09ORklHX1RDUFNWRCBpcyBub3Qgc2V0CiMgQ09ORklHX1VEUFNWRCBp +cyBub3Qgc2V0CiMgQ09ORklHX1RFTE5FVCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVEVM +TkVUX1RUWVBFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9URUxORVRfQVVUT0xPR0lOIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9URUxORVRfV0lEVEggaXMgbm90IHNldAojIENPTkZJ +R19URUxORVREIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9URUxORVREX1NUQU5EQUxPTkUg +aXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RFTE5FVERfSU5FVERfV0FJVCBpcyBub3Qgc2V0 +CiMgQ09ORklHX1RGVFAgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RGVFBfUFJPR1JFU1Nf +QkFSIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9URlRQX0hQQV9DT01QQVQgaXMgbm90IHNl +dAojIENPTkZJR19URlRQRCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVEZUUF9HRVQgaXMg +bm90IHNldAojIENPTkZJR19GRUFUVVJFX1RGVFBfUFVUIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVB +VFVSRV9URlRQX0JMT0NLU0laRSBpcyBub3Qgc2V0CiMgQ09ORklHX1RGVFBfREVCVUcgaXMgbm90 +IHNldAojIENPTkZJR19UTFMgaXMgbm90IHNldAojIENPTkZJR19UUkFDRVJPVVRFIGlzIG5vdCBz +ZXQKIyBDT05GSUdfVFJBQ0VST1VURTYgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RSQUNF +Uk9VVEVfVkVSQk9TRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVFJBQ0VST1VURV9VU0Vf +SUNNUCBpcyBub3Qgc2V0CiMgQ09ORklHX1RVTkNUTCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRV +UkVfVFVOQ1RMX1VHIGlzIG5vdCBzZXQKIyBDT05GSUdfVkNPTkZJRyBpcyBub3Qgc2V0CiMgQ09O +RklHX1dHRVQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1dHRVRfTE9OR19PUFRJT05TIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9XR0VUX1NUQVRVU0JBUiBpcyBub3Qgc2V0CiMgQ09O +RklHX0ZFQVRVUkVfV0dFVF9BVVRIRU5USUNBVElPTiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRV +UkVfV0dFVF9USU1FT1VUIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9XR0VUX0hUVFBTIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9XR0VUX09QRU5TU0wgaXMgbm90IHNldAojIENPTkZJ +R19XSE9JUyBpcyBub3Qgc2V0CiMgQ09ORklHX1pDSVAgaXMgbm90IHNldAojIENPTkZJR19VREhD +UEQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1VESENQRF9CQVNFX0lQX09OX01BQyBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVURIQ1BEX1dSSVRFX0xFQVNFU19FQVJMWSBpcyBub3Qg +c2V0CkNPTkZJR19ESENQRF9MRUFTRVNfRklMRT0iIgojIENPTkZJR19EVU1QTEVBU0VTIGlzIG5v +dCBzZXQKIyBDT05GSUdfREhDUFJFTEFZIGlzIG5vdCBzZXQKIyBDT05GSUdfVURIQ1BDIGlzIG5v +dCBzZXQKIyBDT05GSUdfRkVBVFVSRV9VREhDUENfQVJQSU5HIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9VREhDUENfU0FOSVRJWkVPUFQgaXMgbm90IHNldApDT05GSUdfVURIQ1BDX0RFRkFV +TFRfU0NSSVBUPSIiCiMgQ09ORklHX1VESENQQzYgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X1VESENQQzZfUkZDMzY0NiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVURIQ1BDNl9SRkM0 +NzA0IGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9VREhDUEM2X1JGQzQ4MzMgaXMgbm90IHNl +dAojIENPTkZJR19GRUFUVVJFX1VESENQQzZfUkZDNTk3MCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZF +QVRVUkVfVURIQ1BfUE9SVCBpcyBub3Qgc2V0CkNPTkZJR19VREhDUF9ERUJVRz0wCkNPTkZJR19V +REhDUENfU0xBQ0tfRk9SX0JVR0dZX1NFUlZFUlM9MAojIENPTkZJR19GRUFUVVJFX1VESENQX1JG +QzMzOTcgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1VESENQXzgwMjFRIGlzIG5vdCBzZXQK +Q09ORklHX0lGVVBET1dOX1VESENQQ19DTURfT1BUSU9OUz0iIgoKIwojIFByaW50IFV0aWxpdGll +cwojCiMgQ09ORklHX0xQRCBpcyBub3Qgc2V0CiMgQ09ORklHX0xQUiBpcyBub3Qgc2V0CiMgQ09O +RklHX0xQUSBpcyBub3Qgc2V0CgojCiMgTWFpbCBVdGlsaXRpZXMKIwojIENPTkZJR19NQUtFTUlN +RSBpcyBub3Qgc2V0CiMgQ09ORklHX1BPUE1BSUxESVIgaXMgbm90IHNldAojIENPTkZJR19GRUFU +VVJFX1BPUE1BSUxESVJfREVMSVZFUlkgaXMgbm90IHNldAojIENPTkZJR19SRUZPUk1JTUUgaXMg +bm90IHNldAojIENPTkZJR19GRUFUVVJFX1JFRk9STUlNRV9DT01QQVQgaXMgbm90IHNldAojIENP +TkZJR19TRU5ETUFJTCBpcyBub3Qgc2V0CkNPTkZJR19GRUFUVVJFX01JTUVfQ0hBUlNFVD0iIgoK +IwojIFByb2Nlc3MgVXRpbGl0aWVzCiMKIyBDT05GSUdfRlJFRSBpcyBub3Qgc2V0CiMgQ09ORklH +X0ZVU0VSIGlzIG5vdCBzZXQKIyBDT05GSUdfSU9TVEFUIGlzIG5vdCBzZXQKIyBDT05GSUdfS0lM +TCBpcyBub3Qgc2V0CiMgQ09ORklHX0tJTExBTEwgaXMgbm90IHNldAojIENPTkZJR19LSUxMQUxM +NSBpcyBub3Qgc2V0CiMgQ09ORklHX0xTT0YgaXMgbm90IHNldAojIENPTkZJR19NUFNUQVQgaXMg +bm90IHNldAojIENPTkZJR19OTUVURVIgaXMgbm90IHNldAojIENPTkZJR19QR1JFUCBpcyBub3Qg +c2V0CiMgQ09ORklHX1BLSUxMIGlzIG5vdCBzZXQKIyBDT05GSUdfUElET0YgaXMgbm90IHNldAoj +IENPTkZJR19GRUFUVVJFX1BJRE9GX1NJTkdMRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVf +UElET0ZfT01JVCBpcyBub3Qgc2V0CiMgQ09ORklHX1BNQVAgaXMgbm90IHNldAojIENPTkZJR19Q +T1dFUlRPUCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUE9XRVJUT1BfSU5URVJBQ1RJVkUg +aXMgbm90IHNldAojIENPTkZJR19QUyBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUFNfV0lE +RSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUFNfTE9ORyBpcyBub3Qgc2V0CiMgQ09ORklH +X0ZFQVRVUkVfUFNfVElNRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUFNfVU5VU1VBTF9T +WVNURU1TIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9QU19BRERJVElPTkFMX0NPTFVNTlMg +aXMgbm90IHNldAojIENPTkZJR19QU1RSRUUgaXMgbm90IHNldAojIENPTkZJR19QV0RYIGlzIG5v +dCBzZXQKIyBDT05GSUdfU01FTUNBUCBpcyBub3Qgc2V0CiMgQ09ORklHX0JCX1NZU0NUTCBpcyBu +b3Qgc2V0CiMgQ09ORklHX1RPUCBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVE9QX0lOVEVS +QUNUSVZFIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9UT1BfQ1BVX1VTQUdFX1BFUkNFTlRB +R0UgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RPUF9DUFVfR0xPQkFMX1BFUkNFTlRTIGlz +IG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9UT1BfU01QX0NQVSBpcyBub3Qgc2V0CiMgQ09ORklH +X0ZFQVRVUkVfVE9QX0RFQ0lNQUxTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9UT1BfU01Q +X1BST0NFU1MgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1RPUE1FTSBpcyBub3Qgc2V0CiMg +Q09ORklHX1VQVElNRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfVVBUSU1FX1VUTVBfU1VQ +UE9SVCBpcyBub3Qgc2V0CiMgQ09ORklHX1dBVENIIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVS +RV9TSE9XX1RIUkVBRFMgaXMgbm90IHNldAoKIwojIFJ1bml0IFV0aWxpdGllcwojCiMgQ09ORklH +X0NIUFNUIGlzIG5vdCBzZXQKIyBDT05GSUdfU0VUVUlER0lEIGlzIG5vdCBzZXQKIyBDT05GSUdf +RU5WVUlER0lEIGlzIG5vdCBzZXQKIyBDT05GSUdfRU5WRElSIGlzIG5vdCBzZXQKIyBDT05GSUdf +U09GVExJTUlUIGlzIG5vdCBzZXQKIyBDT05GSUdfUlVOU1YgaXMgbm90IHNldAojIENPTkZJR19S +VU5TVkRJUiBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUlVOU1ZESVJfTE9HIGlzIG5vdCBz +ZXQKIyBDT05GSUdfU1YgaXMgbm90IHNldApDT05GSUdfU1ZfREVGQVVMVF9TRVJWSUNFX0RJUj0i +IgojIENPTkZJR19TVkMgaXMgbm90IHNldAojIENPTkZJR19TVk9LIGlzIG5vdCBzZXQKIyBDT05G +SUdfU1ZMT0dEIGlzIG5vdCBzZXQKIyBDT05GSUdfQ0hDT04gaXMgbm90IHNldAojIENPTkZJR19H +RVRFTkZPUkNFIGlzIG5vdCBzZXQKIyBDT05GSUdfR0VUU0VCT09MIGlzIG5vdCBzZXQKIyBDT05G +SUdfTE9BRF9QT0xJQ1kgaXMgbm90IHNldAojIENPTkZJR19NQVRDSFBBVEhDT04gaXMgbm90IHNl +dAojIENPTkZJR19SVU5DT04gaXMgbm90IHNldAojIENPTkZJR19TRUxJTlVYRU5BQkxFRCBpcyBu +b3Qgc2V0CiMgQ09ORklHX1NFU1RBVFVTIGlzIG5vdCBzZXQKIyBDT05GSUdfU0VURU5GT1JDRSBp +cyBub3Qgc2V0CiMgQ09ORklHX1NFVEZJTEVTIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9T +RVRGSUxFU19DSEVDS19PUFRJT04gaXMgbm90IHNldAojIENPTkZJR19SRVNUT1JFQ09OIGlzIG5v +dCBzZXQKIyBDT05GSUdfU0VUU0VCT09MIGlzIG5vdCBzZXQKCiMKIyBTaGVsbHMKIwpDT05GSUdf +U0hfSVNfQVNIPXkKIyBDT05GSUdfU0hfSVNfSFVTSCBpcyBub3Qgc2V0CiMgQ09ORklHX1NIX0lT +X05PTkUgaXMgbm90IHNldAojIENPTkZJR19CQVNIX0lTX0FTSCBpcyBub3Qgc2V0CiMgQ09ORklH +X0JBU0hfSVNfSFVTSCBpcyBub3Qgc2V0CkNPTkZJR19CQVNIX0lTX05PTkU9eQpDT05GSUdfU0hF +TExfQVNIPXkKQ09ORklHX0FTSD15CiMgQ09ORklHX0FTSF9PUFRJTUlaRV9GT1JfU0laRSBpcyBu +b3Qgc2V0CiMgQ09ORklHX0FTSF9JTlRFUk5BTF9HTE9CIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNI +X0JBU0hfQ09NUEFUIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNIX0JBU0hfU09VUkNFX0NVUkRJUiBp +cyBub3Qgc2V0CiMgQ09ORklHX0FTSF9CQVNIX05PVF9GT1VORF9IT09LIGlzIG5vdCBzZXQKIyBD +T05GSUdfQVNIX0pPQl9DT05UUk9MIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNIX0FMSUFTIGlzIG5v +dCBzZXQKIyBDT05GSUdfQVNIX1JBTkRPTV9TVVBQT1JUIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNI +X0VYUEFORF9QUk1UIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNIX0lETEVfVElNRU9VVCBpcyBub3Qg +c2V0CiMgQ09ORklHX0FTSF9NQUlMIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNIX0VDSE8gaXMgbm90 +IHNldAojIENPTkZJR19BU0hfUFJJTlRGIGlzIG5vdCBzZXQKIyBDT05GSUdfQVNIX1RFU1QgaXMg +bm90IHNldAojIENPTkZJR19BU0hfSEVMUCBpcyBub3Qgc2V0CiMgQ09ORklHX0FTSF9HRVRPUFRT +IGlzIG5vdCBzZXQKIyBDT05GSUdfQVNIX0NNRENNRCBpcyBub3Qgc2V0CiMgQ09ORklHX0NUVFlI +QUNLIGlzIG5vdCBzZXQKIyBDT05GSUdfSFVTSCBpcyBub3Qgc2V0CiMgQ09ORklHX1NIRUxMX0hV +U0ggaXMgbm90IHNldAojIENPTkZJR19IVVNIX0JBU0hfQ09NUEFUIGlzIG5vdCBzZXQKIyBDT05G +SUdfSFVTSF9CUkFDRV9FWFBBTlNJT04gaXMgbm90IHNldAojIENPTkZJR19IVVNIX0xJTkVOT19W +QVIgaXMgbm90IHNldAojIENPTkZJR19IVVNIX0JBU0hfU09VUkNFX0NVUkRJUiBpcyBub3Qgc2V0 +CiMgQ09ORklHX0hVU0hfSU5URVJBQ1RJVkUgaXMgbm90IHNldAojIENPTkZJR19IVVNIX1NBVkVI +SVNUT1JZIGlzIG5vdCBzZXQKIyBDT05GSUdfSFVTSF9KT0IgaXMgbm90IHNldAojIENPTkZJR19I +VVNIX1RJQ0sgaXMgbm90IHNldAojIENPTkZJR19IVVNIX0lGIGlzIG5vdCBzZXQKIyBDT05GSUdf +SFVTSF9MT09QUyBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfQ0FTRSBpcyBub3Qgc2V0CiMgQ09O +RklHX0hVU0hfRlVOQ1RJT05TIGlzIG5vdCBzZXQKIyBDT05GSUdfSFVTSF9MT0NBTCBpcyBub3Qg +c2V0CiMgQ09ORklHX0hVU0hfUkFORE9NX1NVUFBPUlQgaXMgbm90IHNldAojIENPTkZJR19IVVNI +X01PREVfWCBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfRUNITyBpcyBub3Qgc2V0CiMgQ09ORklH +X0hVU0hfUFJJTlRGIGlzIG5vdCBzZXQKIyBDT05GSUdfSFVTSF9URVNUIGlzIG5vdCBzZXQKIyBD +T05GSUdfSFVTSF9IRUxQIGlzIG5vdCBzZXQKIyBDT05GSUdfSFVTSF9FWFBPUlQgaXMgbm90IHNl +dAojIENPTkZJR19IVVNIX0VYUE9SVF9OIGlzIG5vdCBzZXQKIyBDT05GSUdfSFVTSF9SRUFET05M +WSBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfS0lMTCBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hf +V0FJVCBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfQ09NTUFORCBpcyBub3Qgc2V0CiMgQ09ORklH +X0hVU0hfVFJBUCBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfVFlQRSBpcyBub3Qgc2V0CiMgQ09O +RklHX0hVU0hfVElNRVMgaXMgbm90IHNldAojIENPTkZJR19IVVNIX1JFQUQgaXMgbm90IHNldAoj +IENPTkZJR19IVVNIX1NFVCBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfVU5TRVQgaXMgbm90IHNl +dAojIENPTkZJR19IVVNIX1VMSU1JVCBpcyBub3Qgc2V0CiMgQ09ORklHX0hVU0hfVU1BU0sgaXMg +bm90IHNldAojIENPTkZJR19IVVNIX0dFVE9QVFMgaXMgbm90IHNldAojIENPTkZJR19IVVNIX01F +TUxFQUsgaXMgbm90IHNldAoKIwojIE9wdGlvbnMgY29tbW9uIHRvIGFsbCBzaGVsbHMKIwojIENP +TkZJR19GRUFUVVJFX1NIX01BVEggaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NIX01BVEhf +NjQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NIX01BVEhfQkFTRSBpcyBub3Qgc2V0CiMg +Q09ORklHX0ZFQVRVUkVfU0hfRVhUUkFfUVVJRVQgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X1NIX1NUQU5EQUxPTkUgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NIX05PRk9SSyBpcyBu +b3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfU0hfUkVBRF9GUkFDIGlzIG5vdCBzZXQKIyBDT05GSUdf +RkVBVFVSRV9TSF9ISVNURklMRVNJWkUgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJFX1NIX0VN +QkVEREVEX1NDUklQVFMgaXMgbm90IHNldAoKIwojIFN5c3RlbSBMb2dnaW5nIFV0aWxpdGllcwoj +CiMgQ09ORklHX0tMT0dEIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9LTE9HRF9LTE9HQ1RM +IGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HR0VSIGlzIG5vdCBzZXQKIyBDT05GSUdfTE9HUkVBRCBp +cyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfTE9HUkVBRF9SRURVQ0VEX0xPQ0tJTkcgaXMgbm90 +IHNldAojIENPTkZJR19TWVNMT0dEIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9ST1RBVEVf +TE9HRklMRSBpcyBub3Qgc2V0CiMgQ09ORklHX0ZFQVRVUkVfUkVNT1RFX0xPRyBpcyBub3Qgc2V0 +CiMgQ09ORklHX0ZFQVRVUkVfU1lTTE9HRF9EVVAgaXMgbm90IHNldAojIENPTkZJR19GRUFUVVJF +X1NZU0xPR0RfQ0ZHIGlzIG5vdCBzZXQKIyBDT05GSUdfRkVBVFVSRV9TWVNMT0dEX1BSRUNJU0Vf +VElNRVNUQU1QUyBpcyBub3Qgc2V0CkNPTkZJR19GRUFUVVJFX1NZU0xPR0RfUkVBRF9CVUZGRVJf +U0laRT0wCiMgQ09ORklHX0ZFQVRVUkVfSVBDX1NZU0xPRyBpcyBub3Qgc2V0CkNPTkZJR19GRUFU +VVJFX0lQQ19TWVNMT0dfQlVGRkVSX1NJWkU9MAojIENPTkZJR19GRUFUVVJFX0tNU0dfU1lTTE9H +IGlzIG5vdCBzZXQK" | base64 -d | tee .config + +make ARCH=x86 +make install +mv _install ../filesystem +cd .. +rm -rf busybox-1.33.2.tar.bz2 busybox-1.33.2 + +cd filesystem +# Creamos estructura de directorios extra que se necesita +mkdir -pv {dev,proc,etc/init.d,sys,tmp} +mknod dev/console c 5 1 +mknod dev/null c 1 3 + +# Archivo de bienvenida +cat >> welcome << EOF +Bienvenido/a/e a GNU Fanta Linux +EOF + +# Archivo etc/inittab +cat >> etc/inittab << EOF +::sysinit:/etc/init.d/rc +::askfirst:/bin/sh +::restart:/sbin/init +::ctrlaltdel:/sbin/reboot +::shutdown:/bin/umount -a -r +EOF + +# Archivo etc/initd.d/rc +cat >> etc/init.d/rc << EOF +#!/bin/sh +mount -t proc none /proc +mount -t sysfs none /sys +clear +cat welcome +/bin/sh +EOF + +# init ejecutable y owner root +chmod +x etc/init.d/rc +chown -R root:root . + +# comprimimos el root file system +find . | cpio -H newc -o | gzip -9 > ../rootfs.cpio.gz +cd .. +rm -rf filesystem diff --git a/sshmonitor/sshMonitor.sh b/sshmonitor/sshMonitor.sh new file mode 100755 index 0000000..3fcf1b8 --- /dev/null +++ b/sshmonitor/sshMonitor.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +fileSSHConnections="/tmp/.sshActualConnections" +logDir="/tmp/" + +main(){ + checkRoot + haveProgram strace wget lsof awk + printActualSSHConnections + monitoringSocket +} + +checkRoot(){ + if [ "$(whoami)" != "root" ]; then echo -e "\e[31m\e[1m[NOT OK]\e[0m Run it with root please" && exit ; fi +} + +haveProgram(){ + for i in $@; do type $i &> /dev/null ; if [ $? == 1 ]; then echo "$i not found. Please install it"; fi ; done +} + +printActualSSHConnections(){ + lsof -c ssh 2>/dev/null | grep IPv4 | awk '{ print $2,$9 }' | cat -n | tee $fileSSHConnections +} + +monitoringSocket(){ + if [ $(wc -l $fileSSHConnections | cut -d " " -f 1) != 0 ];then + read -p "Enter option number: " nOption + pidSSH=$(cat $fileSSHConnections | awk '{ print $2 }' | head -n $nOption | tail -n 1) + strace -p $pidSSH | tee -a $logDir/sshMonitor-$pidSSH.log + else + echo "No ssh connection found" + fi +} + +main diff --git a/start_qemu/start.sh b/start_qemu/start.sh new file mode 100644 index 0000000..a9f08c2 --- /dev/null +++ b/start_qemu/start.sh @@ -0,0 +1,48 @@ +#!/bin/bash +hda="disco.qcow2" +mem="8G" +diskSize="40G" +nCores="4" +pwd="$(pwd)";path=${BASH_SOURCE[0]} +dir="$(echo "$pwd/$path"| rev | cut -d "/" -f2-100|rev)" +cd $dir +iso="$(ls -1 *.iso | head -1)" +opt="$1" + +function who { if [ "$(whoami)" = "root" ]; then exit; fi } + +function createQcow2 { + qemu-img create -f qcow2 "$hda" $diskSize +} + +function checkQcow2 { if [ ! -f "$dir/$hda" ]; then createQcow2; fi } + +function bootCD { + qemu-system-x86_64 -enable-kvm -m $mem -cpu host -smp cpus=$nCores -machine type=pc,accel=kvm -boot d -cdrom "$iso" -hda $hda +} + +function bootHD { + qemu-system-x86_64 -enable-kvm -m $mem -cpu host -smp cpus=$nCores -machine type=pc,accel=kvm -net nic,model=e1000 -hda $hda -net user +} + +function showHelp { + echo -e "start.sh - fanta \n" + echo "--help Show this help" + echo "--hd Boot from HD" + echo -e "--cdrom To install system booting from iso (cdrom)\n" +} + +function checkOpt { + if [ -z "$opt" ]; then showHelp; fi + if [ "$opt" = "--help" ]; then showHelp; fi + if [ "$opt" = "--hd" ]; then bootHD; fi + if [ "$opt" = "--cdrom" ]; then bootCD; fi +} + +function main() { + who + checkQcow2 + checkOpt +} + +main diff --git a/t10/LICENSE b/t10/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/t10/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. 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 them 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 prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +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. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey 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; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If 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 convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU 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 +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +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. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. 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 state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program 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, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU 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. But first, please read . diff --git a/t10/README.md b/t10/README.md new file mode 100644 index 0000000..db8d241 --- /dev/null +++ b/t10/README.md @@ -0,0 +1,25 @@ +# t10 script para comprobar memoria y cpu + +Pequeño script para dejar en máquinas virtuales con Linux en /usr/local/bin . +Sirve para obtener rapidamente un informe de los procesos con más carga en el momento. + +Tanto de CPU como de RAM. + + $ git clone http://git.56k.es/fanta/t10 + # cp -pRv t10/t10 /usr/local/bin/ + # chmod +x /usr/local/bin/t10 + $ t10 + +El script ha sido adaptado y testeado en las siguientes distros: + +- SUSE Linux Enterprise Server 11 SP2 +- Ubuntu 20.04.4 LTS +- Red Hat Enterprise Linux Server release 5.11 (Tikanga) +- Red Hat Enterprise Linux release 8.3 (Ootpa) +- Raspbian GNU/Linux 11 (bullseye) +- Debian 11 +- Debian 12 + +Otros usuarios me han confirmado que va bien en Rocky Linux. + +t10 screenshot diff --git a/t10/t10 b/t10/t10 new file mode 100755 index 0000000..327db35 --- /dev/null +++ b/t10/t10 @@ -0,0 +1,21 @@ +#!/bin/bash +# fanta +export LC_ALL=C bash + +tHost="$(hostname)" +tTime="$(date +"%d/%m/%Y a las %H:%M:%S")" +tMemTotal="$(free -m | grep "Mem:" | awk '{print $2}')" +tMemUsed="$(free -m | grep "Mem:" | awk '{print $3}')" +tMemFree="$(free -m | grep "Mem:" | awk '{print $4}')" +tLoadAverage="$(uptime | rev | cut -d ":" -f 1 | rev | cut -d " " -f 2-10)" + +echo -e "\n$tHost - $tTime" +echo -e "RAM: $tMemUsed M usados de $tMemTotal M totales ($tMemFree M libres)\nCPU Load Average: $tLoadAverage\n\n[+] Listado de Procesos top10 consumo de RAM:\n" +ps -A --sort=-rss --format pid,user,pmem,rss,comm | head -11 +echo -e "\nPor tanto el proceso en el top1 consumo RAM es:\n" +ps -A --sort=-rss --format pid,user,pmem,rss,command | head -2 +echo -e "\n[+] Listado de Procesos top10 consumo CPU:\n" +ps -A --sort=-pcpu --format pid,user,pcpu,rss,comm | head -11 +echo -e "\nPor tanto el proceso en el top1 consumo CPU es:\n" +ps -A --sort=-pcpu --format pid,user,pcpu,rss,command | head -2 +echo -e "\n" diff --git a/t10/t10.png b/t10/t10.png new file mode 100644 index 0000000..0a3eb52 Binary files /dev/null and b/t10/t10.png differ diff --git a/tricerads_list/LICENSE b/tricerads_list/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/tricerads_list/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. 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 +them 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 prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. 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. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If 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 convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU 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 that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + 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 +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU 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. But first, please read +. diff --git a/tricerads_list/README.md b/tricerads_list/README.md new file mode 100644 index 0000000..df29038 --- /dev/null +++ b/tricerads_list/README.md @@ -0,0 +1,52 @@ +# TricerADS List - Listado de dominios de publicidad + +

+ +Se trata de un listado de dominios dedicados a temas de publicidad web, malware, phishing, ... + +El listado está en constante actualización y está siendo usado por el servidor DNS tricerADS: 178.32.17.208 + +El servidor DNS 178.32.17.208 bloquea la publicidad sin que tengas que añadir ningún software adicional en tu smartphone, portatil, ... simplemente añadiendo el servidor DNS no verás la publicidad en las webs. + +El listado contiene por cada línea un dominio. Por ejemplo estos publicitarios: + + ads.whoishostingthis.com + ads.wiezoekje.nl + ads.wikia.nocookie.net + ads.wikipartes.com + ads.wineenthusiast.com + ads.winsite.com + adswizz.com + ads.wnd.com + ads.worddictionary.co.uk + ads.worldstarhiphop.com + ads.worthplaying.com + ads.wunderground.com + ads.wwe.biz + ads.x10.com + + +O estos dominios de pishing: + + bancamovil.imovilbcp.tk + canalcliente-id.000webhostapp.com + consultanetonline.com + dbsbankingnetworkusa.com + enter-security.000webhostapp.com + frutescent-chase.000webhostapp.com + mobi-ativacao-conta.cf + mobileativacao-001-site1.dtempurl.com + santamobile.esy.es + santa-mobi.webcindario.com + santander3.com + santander.app-sincronizar.com + santasecuritbr.000webhostapp.com + seguranca-id-santander.tk + paypalaccountupadate.com + phonecenter24.de + procuradores-elche.com + qjdlk.info + + +Más información en: https://56k.es + diff --git a/tricerads_list/ordenar_lista.sh b/tricerads_list/ordenar_lista.sh new file mode 100644 index 0000000..f5b96b1 --- /dev/null +++ b/tricerads_list/ordenar_lista.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# script para ordenar la lista. +# ordena y comprueba que no existan lineas duplicadas. +# Se utiliza antes de publicar + +cdominios=$(cat tricerads-list.txt | wc -l) +echo "[+] $cdominios dominios antes de ordenar" +touch tricerads-list2.txt + +while read dominio +do + # Pasamos todo a minusculas + d=$(echo $dominio | tr '[:upper:]' '[:lower:]') + echo $d >> tricerads-list2.txt +done < tricerads-list.txt + +sleep 2 +cat tricerads-list2.txt | sort | uniq > tricerads-list3.txt +cdominiosfinal=$(cat tricerads-list3.txt | wc -l) +echo "[+] $cdominiosfinal dominios despues de ordenar" +mv tricerads-list3.txt tricerads-list.txt +rm tricerads-list2.txt diff --git a/tricerads_list/tricerads-list.txt b/tricerads_list/tricerads-list.txt new file mode 100644 index 0000000..2d308ab --- /dev/null +++ b/tricerads_list/tricerads-list.txt @@ -0,0 +1,58254 @@ +0.0.0.0 +0000mps.webpreview.dsl.net +0001.2waky.com +000free.us +000owamail0.000webhostapp.com +001wen.com +005.free-counter.co.uk +006.free-counter.co.uk +006.freecounters.co.uk +007angels.com +007.free-counter.co.uk +008.free-counter.co.uk +008.free-counters.co.uk +00author.com +00fun.com +00game.net +00go.com +00info-security.000webhostapp.com +00it.com +00webcams.com +0101011.com +011707160008.c.mystat-in.net +019201.webcindario.com +01apple.com +01cn.net +01lm.com +021id.net +021ycjc.com +022sy.com +025zd.com +027i.com +029999.com +029b3e8.netsolhost.com +02k.pl +02m.pl +0365.bid +0377.wang +039b1ee.netsolhost.com +03a6b7a.netsolhost.com +03a6f57.netsolhost.com +03bbec4.netsolhost.com +03e.info +03p.info +0427d7.se +0451mt.com +0470y.com +04dn8g4f.space +050003.voodoo.com +050005.voodoo.com +0511zfhl.com +0512px.net +0532a9.r.axf8.net +0538ly.cn +0551fs.com +0559edu.com +05711.cn +0571jjw.com +0571zxw.com +0574-office.com +05tz2e9.com +061606084448.c.mystat-in.net +06272002-dbase.hitcountz.net +0632qyw.com +064bdf.r.axf8.net +070806142521.c.mystat-in.net +071899.com +07353.com +0735sh.com +0743j.com +0755hsl.com +0755model.com +075.nu +07634.com +0766ldzx.com +0769sms.com +0772it.net +0797fdc.com.cn +080jxrab.top +0820.com +086pop.com +08819.com +090906042103.c.mystat-in.net +0912701309f8ce.com +092706152958.c.mystat-in.net +0971pkw.com +099499.com +0995114.net +09cd.co.kr +09killspyware.com +09zyy.com +0azx1.com +0c47f8422d3f.com +0d7292.r.axf8.net +0d79ed.r.axf8.net +0f36f3.r.axf8.net +0ff.bz +0iecfobt.com +0if1nl6.org +0koryu0.easter.ne.jp +0leaf.supportpaypal.secure-sessionlogin.com +0lovespells0.blogspot.com +0nline.23welsfargo39.com.al4all.co.za +0n-line.tv +0pn.ru +0q2.sitey.me +0qizz.super-promo.hoxo.info +0range-espaceclient.particuliersw2.fr +0.r.msn.com +0stats.com +0stcd.pl +0xccooxxc0041-microsofterrorfound-virusfound.info +0xccooxxc0059-microsofterrorfound-virusfound.info +0xccooxxc0065-microsofterrorfound-virusfound.info +0xm.com.pl +0x.x.gg +100065.hittail.com +10006.hittail.com +1000agres.pt +1000avenue.com +1000lashes.com +1000n1.ru +1000ps.oewabox.at +100-100.ru +1001movies.com +100.1qingdao.com +10086hyl.com +100dollars-seo.com +100jzyx.com +100lend.in.net +100webads.com +1010fz.com +10168.hittail.com +1018d7.r.axf8.net +101billion.com +101.boquan.net +101cities.se +101com.com +101flag.ru +101lesbian.xyz +101malls.com +101order.com +101raccoon.ru +101satcom.com +101view.net +102106151057.c.mystat-in.net +102.112.207.net +102.112.2o7.net +102.122.2o7.net +103532.hittail.com +10394-127.ampxchange.com +10394-2468.ampxchange.com +10394-4254.ampxchange.com +104231.dtiblog.com +105vibe.com +106242.hittail.com +107rust.com +108411.hittail.com +108shot.com +109070-deutschland-gast-angabe-nachweis.sicherheitshilfe-sicherheitssystem.tk +109-204-26-16.netconnexion.managedbroadband.co.uk +109-74-13-60-mail.mazukini.se +1097834592.rsc.cdn77.org +10best.us.intellitxt.com +10bet.com +10-euro-golf.de +10eurosbonheur.org +10fbb07a4b0.se +10gb.6ka.info +10g.com.tr +10.im.cz +10oceanviewroad.co.za +10pg.scl5fyd.info +10presidentesparavoce.com.br +10xhellometro.112.2o7.net +1105governmentinformationgroup.122.2o7.net +11-15.net +11163221-517901.c.adprotect.net +11164531-19021001.c2.adprotect.net +11165583-40348.id2.clickprotects.com +111yc.com +112006133326.c.mystat-in.net +112200.f3322.org +112.2o7.net +11235813.webzdarma.cz +11398.onceedge.ru +1146qt.com +1147.org +1149.a38q.cn +114oldest.com +114.sohenan.cn +114y.net +1168.ic-live.com +118605-5437.link.iwanttodeliver.com +11924.com +119ye.com +11hour.com +11.lamarianella.info +11pikachu.ru +11zz.com +12000.biz +121807150325.c.mystat-in.net +121media.com +121zzzzz.com +122.2o7.net +122907224924.c.mystat-in.net +122uc.com +123188.com +123any.com +123cha.com +123count.com +123counter.mycomputer.com +123counter.superstats.com +123.fluxads.com +123found.com +123freeavatars.com +123go.com +123greetings.com +123.ichkoche.at +123kuma.com +123locker.com +123plays.com +123specialgifts.com +123stat.com +123-tracker.com +124dy.net +125jia.cn +125jumeinv.com +1262.hittail.com +126419-deu-storno-sicherheit-konto_identity.sicherheitssystem-sicherheitshilfe.ga +1274.mediatraffic.com +1278725189.pub.ezanga.com +12877.hittail.com +12azar.ir +12bet.com +12.com +1-2fly-befragung.de +12masterov.com +12month.loan +12xa.pl +13148990763.com +1314dh.com +1319.de +13223.hittail.com +13453765871837679316.googlegroups.com +1347a8386f71e943.applecontactsq.xyz +136dzd.com +137311.com +138carillonavenue.com +13903825045.com +13tabs.com +140game.com +14198.com +14228.hittail.com +1435575.fls.doubleclick.net +145639-4902.link.iwanttodeliver.com +145-ct.c3tag.com +14713804a.l2m.net +148.xg4ken.com +1493361689.rsc.cdn77.org +14b.info +14.ca.enwebsearch.com +14czda0-system.esy.es +14h.pw +15141.hittail.com +1559.stats.misstrends.com +156002.com +156166-de-storno-sicherheit-konto_identity.vorbeugung-sicher.gq +15628.hittail.com +15694.hittail.com +15817.facebook.profilephdid.com +15b37.skroc.pl +15minadlt.hit.gemius.pl +16565.hittail.com +165a7.v.fwmrm.net +166f.com +1687.ic-live.com +1688dhw.com +1688.se +17003124.xyz +1703.ic-live.com +173js173.com +173okwei.com +173usdy.com +173yesedy.com +17511.com +17567525724242400047ss7844577id40004546465465340522.cufflaw.com +175hd.com +175storis.com +176win.com +177ddyy.com +177llll.com +177momo.com +1788111.com +178evakuator178.ru +17i8.org +17sise.com +17so.so +1800.stats.misstrends.com +180hits.de +180searchassistant.com +1825l2638z.51mypc.cn +1839.ic-live.com +1866809.securefastserver.com +1867.stats.misstrends.com +18744.com +188838.parkingcrew.net +189-211-177-171.static.axtel.net +189y.com +189zx.com +18cum.com +18dd.net +18xn.com +1901.nordstrom.com +19097.hittail.com +191gm.com +192.168.112.2o7.net +192.168.122.2o7.net +19500.hittail.com +19533.hittail.com +1962lawiah.esy.es +19degrees.org +19free.org +1.adbrite.com +1admalrop4da2ft.babicovydobroty-recepty.info +1adult.com +1.allyes.com.cn +1ambu11.com +1a-teensbilder.de +1au.cqcounter.com +1bb261.r.axf8.net +1bet.com +1bg.net +1bm.cqcounter.com +1bx4t5c.com +1c6e2.v.fwmrm.net +1ca.cqcounter.com +1cgi.hitbox.com +1de.cqcounter.com +1directory.ru +1e1v.com +1egy.com +1empiredirect.com +1es.cqcounter.com +1.forgetstore.com +1fr.cqcounter.com +1-free-share-buttons.com +1freesoftwareonline.com +1gavcom.popunder.ru +1girl1pitcher.com +1girl1pitcher.org +1.googlenews.xorg.pl +1guy1cock.com +1gwipnivneyqhuqsweag.glamxpress.co.uk +1.hidemyass.com +1.httpads.com +1hwy.com +1in.cqcounter.com +1it.cqcounter.com +1jo.cqcounter.com +1kdailyprofit.biz +1kinobig.ru +1kolorrfaceb.blogspot.com +1lastcut.com +1man1jar.org +1man2needles.com +1minutelifehack.com +1nl.cqcounter.com +1.ofsnetwork.com +1ot83s.neslehali.com.tr +1pamm.ru +1phads.com +1phua.com +1pl38.com +1priest1nun.com +1priest1nun.net +1.primaryads.com +1pt.cqcounter.com +1pu1.com +1q0bjj4d39.top +1qingdao.com +1qingling.com +1royalbank-clientsupport.com +1saintanddier15-registrosj.com +1scologin-online.com +1scotia-verifications.com +1se.cqcounter.com +1securitybmo.com +1se.org +1si.cqcounter.com +1smart.nu +1stand2ndmortgage.com +1stat.ru +1studio.net +1th.cqcounter.com +1tj7k84.com +1tr.cqcounter.com +1.u0159771.z8.ru +1ua.cqcounter.com +1uk.cqcounter.com +1und1internetag.d3.sc.omtrdc.net +1und1.ivwbox.de +1up.us.intellitxt.com +1us.cqcounter.com +1worlditsolutions.com +1xxx.cqcounter.com +1yme78h.com +1yyju.com +1zodoxdlo3tzpd.com +2000greetings.com +2000tours.com +2001-007.com +2001positions.com +2006mindfreaklike.blogspot.com +2006.psjc.org +2012ui.com +201mb.com +2020closings.com +2020iscoming.info +202ch.com +20585485p.rfihub.com +206938-deu-prob-mitteilung-benutzer.vorbeugung-sicher.gq +207-87-18-203.wsmg.digex.net +207.net +20909.hittail.com +20996-1061.link.iwanttodeliver.com +20d625b48e.se +20kd.pl +20pascals.nl +20ro.com +20tinymovies.net +20-yrs-1.info +210237148191.cidr.jtidc.jp +210nk.com +21750.tctm.co +21807.hittail.com +2183.jsjmlejl.clickshield.net +21jewelry.com +21robo.com +222-33544_999.pub.adfirmative.com +222511-deutschland-verbraucher-angabe-validierung.sicherheitsabwehr-personal.gq +22537.hittail.com +2278.stats.misstrends.com +22kkkk.com +22y.cc +23315.hittail.com +2345jiasu.com +234.adru.net +234.media.lbn.ru +234x120.adv.vz.ru +23837.hittail.com +23rf.pl +23ud82.com +243029-18685.link.iwanttodeliver.com +244657-12903.link.iwanttodeliver.com +2468.go2cloud.org +24695.com +24725.hittail.com +247590.r.axf8.net +247adbiz.net +247discountshop.com +247media.com +247playz.com +24-7-singles.com +247support.adtech.fr +247support.adtech.us +247wallstreet.us.intellitxt.com +24809.hittail.com +24-ak.ru +24aspx.com +24corp-shop.com +24counter.com +24fun.count.brat-online.ro +24hinvestment.net +24holdem.com +24hoursready.cf +24hwebsex.com +24jingxuan.com +24log.com +24log.de +24m.nuggad.net +24onlineskyvideo.info +24pliki.pl +24pm-affiliation.com +24ratownik.hit.gemius.pl +24streamers.pl +24trk.com +24upgradecheck.thesteadysystemforupgrades.download +24-verygoods.ru +24videos.tv +24wrestling.us.intellitxt.com +24x7mediaworks.com +24x7-server-support.site +24x7.soliday.org +24xiaz5ai.cn +25057.hittail.com +25184.hittail.com +2542116.fls.doubleclick.net +257639.com +257.de +259572.com +2607.cn +261512.60731134x.cn +26288.hittail.com +2664.tm.zedo.com +2666120.com +267932.com +268494.vhost510.cloudvhost.cn +271395.com +272351.com +27460.hittail.com +2754.btrll.com +276bf6.r.axf8.net +27891.hittail.com +27nv.com +27simn888.com +2822.v.fwmrm.net +28305.hittail.com +289931.com +28hf7513231-trader.com +28l8o.com +28n2gl3wfyb0.ru +2912a.v.fwmrm.net +2915dc.v.fwmrm.net +2915d.v.fwmrm.net +294064-germany-nutzung-sicher-validierung.sicherheitskontrolle.ga +2945.v.fwmrm.net +2975c.v.fwmrm.net +29773.v.fwmrm.net +298-ct.c3tag.com +299800-de-nutzung-mitteilung-benutzer.sicherheitshilfe-sicherheitssystem.ga +29jm.pl +2ab7f.v.fwmrm.net +2.adbrite.com +2ads.co.uk +2amsports.com +2-art-coliseum.com +2bai8wb5d6.kenstewardministries.org +2boys.pl +2cgi.hitbox.com +2d1b.top +2df455.petprince-vn.com +2df7e.v.fwmrm.net +2dfsdd.000webhostapp.com +2e4hk5g.com +2gay.net +2giga.link +2girls1cup.cc +2girls1cup.com +2girls1cup-free.com +2girls1cup.nl +2girls1cup.ws +2girls1finger.com +2girls1finger.org +2.googlenews.xorg.pl +2guys1stump.org +2.hidemyass.com +2hx.pl +2itech.ru +2kata.ru +2leep.com +2m398bu923-rv-read.com +2.marketbanker.com +2mdn.net +2mouses.com +2mx9.pl +2ndzenith.com +2o7.net +2online-activation.net +2p9fyvx.com +2putra.id +2rich4bitches.com +2.rubanners.com +2.s09.flagcounter.com +2site.com +2snaps.us.intellitxt.com +2.speedknow.co +2spyware.us.intellitxt.com +2step-garage.co.uk +2stopy.pl +2x2fan.ru +2xt.cn +2y-americanas.com +30001.hittail.com +30280827a.l2m.net +302br.net +30811.hittail.com +308888.com +30-day-change.com +312.1d27c9b8fb.com +31335.hittail.com +314151.com +314.hittail.com +3151.77152.blueseek.com +3165.tm.zedo.com +31870.hittail.com +318newportplace.com +318x.com +31qqww.com +3211.tm.zedo.com +321cba.com +3231198.com +3231.cc +3241.hittail.com +3262111.com +32e1dff65ea4eb3627ed-f1ecc94c86a56d3e42e512fcfd192886.r6.cf1.rackcdn.com +32red.it +330824.com +33246.net +332645.r.axf8.net +332818-de-prob-sicherheit-validierung.sicherheitshilfe-schutz.ml +332gm.com +33across-d.openx.net +33b.b33r.net +33kkvv.com +33lzmm.com +33md.co +33nn.com +33universal.adprimemedia.com +33video.33universal.com +3415.hittail.com +3459571470.log.optimizely.com +345hc.com +3463.hittail.com +34673.hittail.com +34.gs +35385.hittail.com +360ads.com +360dfc.com +360.jarakadvertising.com +360yield.com +36219.net +3642305.fls.doubleclick.net +36438.com +3650.tm.zedo.com +365rebo.com +365tc.com +367032-deu-storno-angabe-benutzer.sicherheitshilfe-schutz.ml +368493-deu-storno-mitteilung-nachweis.sicherheitssystem-sicherheitshilfe.cf +36robots.com +371678.com +373082.livecity.me +3765329.fls.doubleclick.net +384242.799866074.cn +384756783900.cn +385223-deutschland-gast-mitteilung-account.service-paypal-info.ml +38707-223419.link.iwanttodeliver.com +38zu.cn +3918.hittail.com +3933.hittail.com +3957.hittail.com +39dvd-999.com +39m.net +39o9mcr2.party +3.adbrite.com +3ad.doubleclick.net +3amcouk.skimlinks.com +3animalsex.com +3.aqa.rs +3b7tkkfdaa9p95dks9y3.glamxpress.co.uk +3bb4f0.r.axf8.net +3bc3fd26-91cf-46b2-8ec6-b1559ada0079.statcamp.net +3.cennter.com +3cloud.net +3-dauto.com +3dbluerayplayer.com +3dlilydesign.com +3dmv.net +3donlinegames.de +3dpassport.com +3dpsys.com +3dsvc.com.br +3dubo.com +3dviolet.com +3dyorking.com +3e3ex8zr4.cnrdn.com +3fgt.com +3fns.com +3gmission.com +3.googlenews.xorg.pl +3gupload.112.2o7.net +3guys1hammer.ws +3.hidemyass.com +3jmcwio.com +3kmf.pl +3-letter-domains.net +3mnengenharia.com.br +3n4.pl +3omrelk.com +3ps.go.com +3sixtyventure.com +3templequay.co.uk +3uhm9egl.myutilitydomain.com +3w24.com +3weekdiet.com +3w.nuggad.net +3wregie.ezakus.net +3wt4c.com +3xstuff.com +3xtraffic.com +3years.lethanon.net +3yyj.cn +4000506708.com +4004.cn +4006692292.com +4006868488.cn +400cao.com +402428-de-storno-sicherheit-benutzer.vorkehrung-sicherheitssystem.ml +402m.de +403.hqhost.net +404.fuckyoucash.com +404.hqhost.net +404.online.net +404.xxxymovies.com +4053494.fls.doubleclick.net +4074c4aeda7021213cf61ec23013085e.pw +40cg.com +40.nu +411mania.us.intellitxt.com +411playz.com +4133.88.primosearch.com +4134.hittail.com +4184.stats.misstrends.com +41907.gwtoys.cn +420bankofwashington.com +421drive.com +422653.parkingcrew.net +4236808.fls.doubleclick.net +423.ru +426-healthandbeauty.com-4us.net +43242.com +4332.ws +433348--gast-angabe-account.vorkehrung-sicherheitssystem.ml +4360661.fls.doubleclick.net +43jcu.com +445600-deutschland-verbraucher-sicher-nachweis.newsafe-trade.com +4488352.fls.doubleclick.net +44cckk.com +44ccvv.com +44xxdd.com +4514783.fls.doubleclick.net +4560.hittail.com +461073-deu-gast-sicherheit-benutzer.sicherheitshilfe-sicherheitssystem.cf +4612.hittail.com +4654.2465.primosearch.com +465663-deutschland-nutzung-sicher-benutzer.sicher-vorbeugung.tk +4684100.fls.doubleclick.net +470032-de-gast-sicher-validierung.trade-verification-lite.com +480191-deutschland-storno-kenntnis-validierung.vorbeugung-schutz.ml +4802.170.blueseek.com +48.2mydns.net +488568.com +48wwuved42.ru +4902-145639.link.iwanttodeliver.com +4923503.fls.doubleclick.net +496362-deutschland-nutzung-sicher-benutzer.vorkehrung-sicherheitssystem.cf +496812--gast-sicher-account.vorkehrung-sicherheitssystem.ml +4.adbrite.com +4affiliate.net +4.afs.googleadservices.com +4allfree.com +4analytics.ws +4.androidislamic.com +4anfm.com +4bfhd.com +4biogas.de +4bqs.com +4c28d6.r.axf8.net +4chan-tube.on.nimp.org +4chd.com +4.collecorvino.org +4-counter.com +4d5.net +4dexports.com +4.dlevo.com +4energy.es +4.e-why.net +4girlsfingerpaint.com +4girlsfingerpaint.org +4.googlenews.xorg.pl +4gwebsite.co.uk +4.hidemyass.com +4jfkc.com +4k-player.pl +4kplayer.pl +4ksport.pl +4kstream.pl +4meme.com +4o64flb.com +4p30aj.top +4pda-ru.ru +4pp13.com +4qinvite.4q.iperceptions.com +4replicawatch.net +4safe.in +4squareisb.com +4sshouhou.com +4takt-oel.de +4teacher.de +4th3d48.com +4thegame.uk.intellitxt.com +4ur.click +4ureyesonly.com +4v9wp.com +4w5wihkwyhsav2ha.dreamtest.at +4webmasters.com +4wheel.de +4.whereinitaly.com +4.whereinlazio.com +4.whereinliguria.com +4.whereinlombardy.com +4.whereinmilan.com +4.whereinmolise.com +4.whereinpiemonte.com +4.whereinpuglia.com +4.whereinsardegna.com +4.whereinsicilia.com +4.whereinsicily.com +4.whereintoscana.com +4.whereintrentinoaltoadige.com +4wmp.nuggad.net +4w-wrestling.us.intellitxt.com +4x4led.co.il +5000444.com +5000-cotydzien.com +5000cotydzien.net +500utflykter.se +506.xg4ken.com +50efa6486f1ef.skydivesolutions.be +50h6v79p.top +50websads.com +510w.com +51156434.swh.strato-hosting.eu +5123.ru +512dnf.com +5151ac.com +515646.net +5178424.com +518ad.com +518zihui.com +51af72.r.axf8.net +51daima.com +51huanche.com +51hzmn.com +51jczxw.com +51.la +51lvyu.com +51mogui.com +51sedy.com +51she.info +51unlim.ru +51web8.net +51winjob.cn +51xingming.com +51yes.com +51yirong.com +51youhua.org +51ysxs.com +51zc.cc +51zhongguo.com +521073--verbraucher-mitteilung-account.sicher-vorbeugung.tk +521686-de-verbraucher-kenntnis-benutzer.sicherheitsabwehr-hilfeservice-sicherheitshilfe.tk +5233w.net +52388828.gnway.cc +5241.it +529499-deu-gast-sicherheit-validierung.sicherheitssystem-sicherheitshilfe.ga +529collegesaving.com +52bikes.com +52cfw.com +52djcy.com +52esport.com +52flz.com +52porn.net +52puman.com +52zsoft.com +531.xg4ken.com +5362399.fls.doubleclick.net +540591--nutzung-angabe-validierung.sicherheitshilfe-schutz.gq +54321.zz.am +5486.winxp.primosearch.com +5490.spedads.primosearch.com +54bet.com +54fangtan.com +54g35546-5g6hbggffhb.tk +54ly.com +54te.com +550a.com +55.2myip.com +55511b.com +555gm44.spwoilseal.com +5582200.fls.doubleclick.net +563tm.com +5678uc.com +567bbl.com +5683.com +5689.nl +56clicks.com +56hj.cn +56.js.cn +570748-deutschland-verbraucher-mitteilung-validierung.sicherheitshilfe-schutz.ml +5726.bapi.adsafeprotected.com +5740.4785.blueseek.com +574-beauty.com-e3n.net +5780.com +57883.net +5808l.com +5850777.ru +5851.bid +58611.net +5882.1158.blueseek.com +588222-germany-nutzung-mitteilung-nachweis.sicherheitssystem-sicherheitshilfe.gq +58.wf +59-106-20-39.r-bl100.sakura.ne.jp +5990.findit.blueseek.com +599.stats.misstrends.com +59cn7.com +59m.pl +59nmk4u.tech +5a8www.peoplepaxy.com +5advertise.com +5b008e.r.axf8.net +5bde1.v.fwmrm.net +5be16.v.fwmrm.net +5d0dd.v.fwmrm.net +5d406.v.fwmrm.net +5d427.v.fwmrm.net +5d4a1.v.fwmrm.net +5ebec5.r.axf8.net +5.estasiatica.com +5.eventiduepuntozero.com +5facebookfrienddel.blogspot.com +5forex.ru +5gb-internetu-pakiety.blogspot.com +5.googlenews.xorg.pl +5.hidemyass.com +5hmmm1mk.top +5i2.net +5k-player.pl +5kstore.com +5m4.pl +5q.artdekors.com +5ree0gse.myutilitydomain.com +5starhiphop.us.intellitxt.com +5starsupport.us.intellitxt.com +5u.com +5uyisheng.com +5wh.co.zw +5xian8.com +5yfi7sy.com +6002288.com +600co.info +600z.com +602.stats.misstrends.com +604.stats.misstrends.com +6063.bapi.adsafeprotected.com +606.stats.misstrends.com +60731134x.cn +60aalexandrastreetcom.domainstel.org +60l3j5wg.myutilitydomain.com +612045126.htmldrop.com +612100.cn +6159.genieessp.com +6165.rapidforum.com +616book.com +618199.com +61gamei.com +61kx.uk-insolvencydirect.com +625491-deu-verbraucher-sicherheit-account.paypaldevelopment-system.top +6266.570204.primosearch.com +62692222.com +633393--gast-kenntnis-benutzer.vorkehrung-sicherheitssystem.cf +633642.parkingcrew.net +63810.com +649107-deu-gast-kenntnis-validierung.vorkehrung-sicherheitssystem.cf +654.stats.misstrends.com +654v.com +65xps.com +661785--nutzung-sicher-nachweis.sicherheitsabwehr-pro.tk +662bd114b7c9.onceedge.ru +663998.net +6660003.com +66600619.com +6666mn.com +6666p.com +669-diet.com-swd.net +66av.cc +66eexx.com +66ml.in +671-fitness.com-swd.net +671.stats.misstrends.com +672-healthandbeauty.com-t0p.net +676-fitness.com-4us.net +678-health.com-4us.net +680.stats.misstrends.com +685.so +687-ct.c3tag.com +688ooo.com +68fa.net +695-weightloss.com-t0p.net +696291--verbraucher-sicherheit-account.sicherheitsabfrage-sicher.gq +699.stats.misstrends.com +69boysex.com +6b8a953b2bf7788063d5-6e453f33ecbb90f11a62a5c376375af3.r71.cf5.rackcdn.com +6.bbnface.com +6.bbnfaces.net +6.bbnsmsgateway.com +6canadian-bakn.ciclc.net.garagesailgranny.baconwrappedhotdogs.com +6ceng.com +6e.co.kr +6eeu.com +6.hidemyass.com +6iyn6bz9.myutilitydomain.com +6kelime.org +6.mamaswishes.com +6orless.com +6pg.ryf3hgf.info +6qbrxcchyely9xgsulhe.richambitions.co.uk +6qhzz.allvideos.keme.info +6rvewc.top +6ssaintandeer-servicios18n.com +6ssaintandeer-servicios3n.com +700135--nutzung-sicher-validierung.vorkehrung-sicherheitssystem.ml +7060.la +709293-de-gast-sicher-benutzer.service-paypal-info.ml +71158.hittail.com +71i.nuggad.net +71sise.com +7.1tb.in +71zijilu.com +720movies.net +726.stats.misstrends.com +72933.pl +72d329.r.axf8.net +72impala.com +72-news.com +73091.hittail.com +744396-deu-prob-angabe-validierung.sicher-sicherheitsabfrage.ml +7457.accessaw.blueseek.com +7457.pownit.blueseek.com +7500.com +750.stats.misstrends.com +755792031.f3322.org +755-ct.c3tag.com +758161-deutschland-nutzung-mitteilung-account.vorkehrung.gq +758205-deu-nutzung-sicherheit-nachweis.sicherheitshilfe-schutz.cf +75ww.com +7647627462837.gq +764895-de-verbraucher-mitteilung-account.sicherheitsvorbeugung.gq +76.a.boom.ro +76tguy6hh6tgftrt7tg.su +77266.hittail.com +773737-germany-nutzung-mitteilung-account.vorkehrung-sicherheitssystem.ml +774982-de-verbraucher-sicherheit-konto_identity.vorbeugung-sicher.gq +7765817.facebook.profilephdid.com +777-club.ru +777mnz.com +777partner.com +777txt.com +7798991.com +77search.com +77sky.de +77tracking.com +77zxzx.com +78111.com +78302.com +78843.hittail.com +78984.xyz +78tdd75.com +791026.com +79423.analytics.edgekey.net +79423.analytics.edgesuite.net +7979-69504_159.c.adprotect.net +7979.nosubid.blueseek.com +799866074.cn +7a2rnuey1tw9ar.ru +7adpower.com +7aisngyh91e-cpsess0671158385-id.tallercastillocr.com +7as.pl +7bpeople.com +7bpeople.data.7bpeople.com +7candaian-bann.ciclc.net.mbottomley.clinecom.net +7cfmnf.top +7cnbcnews.com +7dyw.com +7fb.ru +7.hidemyass.com +7-i.org +7metasearch.com +7minuteworkout.com +7n0zz.300prize.7113879.com +7pay.net +7.rotator.wigetmedia.com +7sdn.pl +7search.com +7softwaredreams.com +7speed.info +7thlegion.ru +7tools.eu +7vws1j1j.com +7wind.ru +7x7.ruwe.net +7xc4n.com +7x.cc +7yue.org +7yvvjhguu-b3.myjino.ru +801854.com +803.stats.misstrends.com +804460-germany-verbraucher-mitteilung-konto_identity.sicher-vorbeugung.tk +805678.com +81182479.com +814988-deutschland-verbraucher-sicher-konto-identity.sicherheitsabwehr-pro.cf +815.hittail.com +818tl.com +8260.hittail.com +829331534d183e7d1f6a-8d91cc88b27b979d0ea53a10ce8855ec.r96.cf5.rackcdn.com +82jt1if.dekkora.com +82sz.com +83net.jp +840216-germany-verbraucher-kenntnis-benutzer.vorkehrung-sicherheitssystem.cf +84206.com +847853.com +85102152.com +85103.hittail.com +856secom0.cc +8574dnj3yzjace8c8io6zr9u3n.hop.clickbank.net +85kq.com +863973.com +86d6.com +86file.megajoy.com +86get.joy.cn +86log.joy.cn +879.stats.misstrends.com +883zy.com +888238.com +8883448.com +8885ff.com +888758.com +888888kk.com +888casino.com +888.com +888whyroof.com +8899804.com +88bocai.net +88kkvv.com +8910ad.com +893186-deutschland-storno-mitteilung-konto_identity.vorbeugung-sicher.gq +8959.hittail.com +8b3439.r.axf8.net +8cb8a3.r.axf8.net +8cbd.com +8cr.purredheanb.online +8d6274.r.axf8.net +8d6274.t.axf8.net +8fvchzuz.myutilitydomain.com +8gold.com +8khmer.com +8lufu.com +8pyy.com +8rf.com +8ruzz.allcpa.006238.xyz +8si.ru +8streams.com +8ue9q7i.com +8v8wy-xwxrq.ads.tremorhub.com +8x1.pl +8xs.pl +8xv8.com +8y5k0e42h2nywfgme9vrszw78.designmysite.pro +900jpg.com +900tif.com +901openyourmin4success.com +90888.com +90900.com +909.09023.31698.minijozveh.ir +90minit.com +90s.co.nz +90tif.com +910457-deu-prob-sicherheit-account.vorkehrung-sicherheitssystem.ml +911718.net +911.sos-empleados.net +911.x24hr.com +91abcw.com +91kuyue.com +922.hittail.com +924xx.com +925.lt +927697--storno-sicher-konto_identity.sicherheitsvorbeugung-schutz.cf +93367.hittail.com +9394.hittail.com +944279.parkingcrew.net +9446.hittail.com +94uyvwwh.com +951-healthandbeauty.com-swd.net +9523cc.com +954669-de-gast-sicherheit-account.sicherheitssystem-sicherheitshilfe.ga +9547.hittail.com +9563.hittail.com +9571.hittail.com +957328-hb.adomik.com +95kd.com +961.com +962583-deutschland-nutzung-mitteilung-konto_identity.sicher-sicherheitsabfrage.ml +96id.de +9775maesod.com +9779.info +978qp.com +97b1c56132dfcdd90f93-0c5c8388c0a5897e648f883e2c86dc72.r54.cf5.rackcdn.com +97boss.com +97fn1ej0.myutilitydomain.com +97zb.com +981718.cn +98405.com +98407.com +986.stats.misstrends.com +987449-deu-prob-sicher-nachweis.sicher-vorbeugung.tk +98csc.net +98oi.ru +98ysz.com +99400.hittail.com +994119.r.axf8.net +995-health.com-4us.net +999fitness.com +999ways.blogspot.co.uk +999webdesign.com +99bthgc.me +99count.com +99eexx.com +99kkxx.com +99lwt.cn +99meikang.com +99shuding.com +99tif.com +99ypu.com +99zzkk.com +9aad7115.amy.gs +9am.count.brat-online.ro +9c0zypxf.myutilitydomain.com +9c51vda.com +9cd76b4462bb.com +9d060c.r.axf8.net +9dacbd.r.axf8.net +9demaio.com.br +9down.us.intellitxt.com +9en.esses.ml +9gpan.com +9h7n8.com +9med.net +9n68b4.top +9o4n4m.top +9pbranding.com +9rbk.com +9rojo.com.mx +9sk.pl +9stoneinvestments.com +9thien.com +9xa.pl +a0152829.xsph.ru +a0159626.xsph.ru +a01.gestionpub.com +a01.korrelate.net +a02.korrelate.net +a.0day.kiev.ua +a0liasoleadersrfectearchcustohihingnepelectione.com +a10.reflexcash.com +a12.x-traceur.com +a15172379.alturo-server.de +a1589.casalemedia.com +a1653.casalemedia.com +a1664.casalemedia.com +a1681.casalemedia.com +a18.x-traceur.com +a1.admaster.net +a1.greenadworks.net +a1host.com.au +a1.interclick.com +a.1nimo.com +a1sec.com.au +a1.vdna-assets.com +a1.x-traceur.com +a200.yieldoptimizer.com +a20.x-traceur.com +a2132959.0lx.net +a2.adform.net +a2btrans.pl +a2.mediagra.com +a2plvcpnl14118.atendclients.com +a2pub.com +a2.websponsors.com +a2zgroup.in +a32.g.a.yimg.com +a3.adzs.nl +a3.suntimes.com +a3.websitealive.com +a3.websponsors.com +a3.x-traceur.com +a407.casalemedia.com +a4.adzs.nl +a4face-podgladacz.eu +a4p.adpartner.pro +a4.websponsors.com +a5face-podgladacz.eu +a5.websponsors.com +a6a7.com +a6face-podgladacz.eu +a796faee-7163-4757-a34f-e5b48cada4cb.statcamp.net +a7mkp8m1ru.seojee.com +a98spolicies.com +aa08daf7e13b6345e09e92f771507fa5f4.com +aa12111.top +aa14ab57a3339c4064bd9ae6fad7495b5f.com +aa625d84f1587749c1ab011d6f269f7d64.com +aa81bf391151884adfa3dd677e41f94be1.com +aa8780bb28a1de4eb5bff33c28a218a930.com +aa8b68101d388c446389283820863176e7.com +aa9bd78f328a6a41279d0fad0a88df1901.com +aa9d046aab36af4ff182f097f840430d51.com +aaa38852e886ac4af1a3cff9b47cab6272.com +aaa520.izlinix.com +aaa.77xxmm.cn +aaaaaa.icfoscolosoverato.it +aaaopost.com +aaaurgentcare.net +aaaxqabiqgxxwczrx.com +aab94f698f36684c5a852a2ef272e031bb.com +a.abnad.net +a.abv.bg +aac500b7a15b2646968f6bd8c6305869d7.com +aac52006ec82a24e08b665f4db2b5013f7.com +aa.connextra.com +aad1f4acb0a373420d9b0c4202d38d94fa.com +aaddzz.com +a.admaxserver.com +a.admob.com +a.adnium.com +aa-d.openx.net +a.adorika.net +a.ad.playstation.net +a.adready.com +aadroid.net +a.adroll.com +a.ads1.msads.net +a.ads1.msn.com +a.ads2.msads.net +a.ads2.msn.com +a.ads99.cn +a-ads.com +a.adstome.com +a.ads.t-online.de +aads.treehugger.com +aadultwork.com +a.advanstar.com +aafandis.net +aaflt.org +aa-gb.marketgid.com +aa-gb.mgid.com +aagoop7.to +aagoop7.top +a.ajkelra.com +aalbc.advertserve.com +aalures.com +a.amd.com +aamrit.com +aams1.aim4media.com +aan.amazon.com +aa-nb.marketgid.com +aandeegnaeany.com +a.androidandme.com +aa.newsblock.dt00.net +aa.newsblock.marketgid.com +aanqylta.com +a.answers.com +aa.oasfile.aftenposten.no +aa.online-metrix.net +a.applovin.com +a.applvn.com +a.aproductmsg.com +aapz.com +aarbur.com +aaremint.com +aarenobrien.com +aaronabel.com +aaronautosandtrucks.com +aaron.fansju.com +aaronzlight.com +aarp.122.2o7.net +aarpadvantages.co +aas-bd.org +a.as-eu.falkag.net +aashima.goyal.com.au +aashyamayro.com +aaskmen.com +aasoldes.fr +a.as-us.falkag.net +aaukqiooaseseuke.org +a.autoexpress.co.uk +aavaanautica.com +a.avalhukof.com +aa.voice2page.com +aax.amazon-adsystem.com +aax-cpm.amazon-adsystem.com +aax-eu.amazon-adsystem.com +aa.xqwqbg.com +aax-us-east.amazon-adsystem.com +aax-us-east-rtb.amazon-adsystem.com +aax-us-pdx.amazon-adsystem.com +aax-us-west.amazon-adsystem.com +ab159015.adbutler-zilon.com +ab163949.adbutler-kaon.com +ab199.de +ab44aa.r.axf8.net +ab4hr.com +ab.5.p2l.info +ab913aa797e78b3.com +ababaloka.com +ababy.dragon.uaezvcvs.tk +abacho.net +a.backclick.net +abacoguide.it +abacusfinance.co.uk +abacusnet.info +ab.adpro.com.ua +ab.adrecreate.com +ab.adrevivify.com +ab.advertiserurl.com +a.bahaimlo.com +a.baidu.com +abandonedclover.com +abandonment.saas.seewhy.com +a-bankieren.com +abbanreddy.com +abbyspanties.com +abbyssh.freestats.com +abc-ads.com +abc-check.com +abccomputer.co.tz +a.b.c.d.e.f.gwtoys.cn +a.b.c.d.e.gwtoys.cn +abcdespanol.com +abcdg.pro +a.b.c.d.gwtoys.cn +abc.doublegear.com +abclauncher.com +abcmlm.com +abcnews.footprint.net +abcno.nuggad.net +abcommunication.it +abconstructions.us +abcosecurity.ca +abcstats.com +abctoppictures.net +abc.yuedea.com +abdcn.pro +abdoufes.webstarterz.com +abeate.ml +abekattestreger.dk +a.beliefnet.com +abenteuer-berge.com +abenteuer-wohnmobil.de +abetterinternet.com +a.bf-ad.net +ab-gb.mgid.com +ab.goodsblock.dt07.net +abhinavdaycare.com +abiente.ru +abilitycorpsolutions.com +abingmanayon.us.kzpcmad.tk +abiride.com +ab.itbaribd.com +a.bizarremag.com +ablabels.com +able2know.us.intellitxt.com +ablelectronics.pw +a-blog.eu +abmodellbau.de +abmuctymq.top +ab-nb.marketgid.com +abnbusinessgroup.com +abogadobarcelona.com.es +abogadodejacksonville.com +abond.net +abonne-mobilefree-fr.info +abonosvivos.net +a.boom.ro +abo.prismamediadigital.com +a.botiviga.com +abourselfi.com +aboutads.quantcast.com +aboutharrypotter.fasthost.tv +abouthomesdecorating.com +aboutproperty.co.uk +aboutsignis.com +aboutwebservices.com +above.com +above.e-rezerwacje24.pl +abovetherivernc.com +abpressclub.com +abpretail.com +abp.smartadcheck.de +abrahambrot.com +abrahamschildren.com +abrfengineering.com +abrightideacompany.com +abris.montreapp.com +abrogatesdv.info +abruptroad.com +abruzzoinitaly.co.uk +absabanking.igatha.com +absabankonline.whybrid.visioncare.biz +abs.beweb.com +abscbn.spinbox.net +abscobooks.com +abseckw.adtlgc.com +absoluteagogo.com +absoluteclickscom.com +absolutelyanalog.com +absolutely-clean-up-pc-errors.com +absolute-s.ru +abs.proxistore.com +absugars.com +absurdity.flarelight.com +abtasty.com +abtest.mistat.xiaomi.com +abtracker.adultbouncer.com +ab.usageload32.com +abusora.com +ab.vendemore.com +abwa.tk +abyzam.com +abz.com +ac3.msn.com +ac3tpx.top +ac9d98.r.axf8.net +academiadelpensamiento.com +academiademasaj.ro +academiadespa.edu.mx +academiajuvenil.com +academia-nsk.org +academiebooks.org +academyfm.com +acads.net +acaiberry.de +ac.ajur.info +ac.atpanel.com +a-cave.net +a.cbc.ca +acbookmacbookstoree.com +accaccessvalidation.com +accademiadeicoach.net +accauntverifica.www1.biz +acccountpage1222.confrimsuportfanpage9888.cf +acccount-req11s.regis-fanpage1.ml +acc-craigslist-conf.manopam.com +accel.it +accent-bau.de +accentstudio.co.uk +acces.hub-login.com +accesible.com.ar +accesoriosmarinos.com +accessdocument.info +accessinternetuserapp.gotdns.org +accessinvestment.net +accessoires-mode.in +accessonline.biz +accessrequired-fraudavoidance.com +acces.streaming-direct.co +accessuserinfosecureapp.is-found.org +accessweb.co +accessyouraudience.com +acc.eu.org +accidentadvicehelpline.co.uk +accionmasvida.com.ar +accionrapida.com +acckalaharinet.112.2o7.net +accommodatingbeauty.com +accounsystemverificationppal.com +account-activation.designsymphony.com +accountancycourseonline.com +account.connect-appleid.com.manilva.ws +account-google-com.ngate.my +account-internal.info +account.itunes-identification.intel.kelstown-tunes.com +account-limited-now.net +accountlock-demo.iovation.com +account-login.paypail.com.wfwfwfwfwf.xyz +account-loginx.com +account.maximus.co +accountmeloginupdateaccount.com +account.microsoft.login.secure.verification.online.001.027.039.sindibae.cl +account-page-restorer.info +account.paypal.gtfishingschool.com.au +account.paypal-inc.tribesiren.com +account.personel-information.com +accountprotection.xyz +accounts.adobe.electrohafez.com +accounts.craigslist.org-securelogin.viewpostid8162-bmayeo-carsandtrucks.evamata.com +accounts.craigslist.org.svrrc.com +account-security.info-update-secure.tk +account-serivce.com +account-service-information.com +accountsettings317651.000webhostapp.com +account-settings-8887.000webhostapp.com +accounts.google.c0m.juhaszpiroska.hu +account.skrill.com.login.locale.bukafa.com +accountslogs.com +accountsmaccing.com +accountsmages.dotcloudapp.com +accounts.pkr.com.invalid +account.store.apple.com-apple-support-settingsi-134a7cdsupport.appiesz.com +account-storesrer.com +accounts-update.com +account-support.nucleoelectrico.com +account-upadate-secure-le.com +account-update-chase.alnjuoom.com +accountupdate-td.eu +accountwebupdate.webeden.co.uk +accsessoriessecret.netii.net +acctsrepro.com +a.cctv.com +accumachuslazaroqok.com +accuratecloudsistem.com +accurate.gutterhalment.com +accuritcleaning.co.uk +accuserveadsystem.com +accuweather.us.intellitxt.com +accverif.org +acd.com.vn +acdn.adnxs.com +a.cdn.intentmedia.net +ace.adoftheyear.com +acefightgear.com.au +acehsentral.id +ace.jamba.pl +ace.jamster.pl +ace-lb.advertising.com +acemech.co.uk +acenar.com +a.centrum.cz +acepaper.co.ke +aceppp345354.000webhostapp.com +acera500.ru +acerewardsvisa.co +acer-laptoprepair.co.uk +acertenem.com.br +aceshowbiz.us.intellitxt.com +acessarproduto.com.br +acesscompleto.com +acesseportalbb.com +acessoclientestilo.com.br +acessosantander.com +acessoseuro.com +ace-tag.advertising.com +ac.eu.angsrvr.com +acezsoftware.com +acfeducation.com +ac-feedback.com +acgas.com.my +ac-gb.mgid.com +acglgoa.com +acgs.tk +acheterviagrafr24.com +achetezfacile.com +achgroup.co +achiwvecard.com +achkana.it +achmedia.com +achren.org +achromatdesign.com +achterwasser-stasche.de +aciklise.web.tr +acim.moqhixoz.cn +acimo.com +aciphex.about-tabs.com +a.ciridola.com +a.civitik.com +ackjeeves.com +aclaannuity.com +aclasscelebs.us.intellitxt.com +aclick.adhoc2.net +aclickads.com +aclu.tt.omtrdc.net +acman.us +ac-mapa.org +acm-em.hazren.com +acmesoapworks.com +ac.mmstat.com +acmsa.com.ar +ac-nb.marketgid.com +acneforums.com +acnenomor.com +a.cntv.cn +acoachat.org +a.collective-media.net +a.company-target.com +acomrede.com +a.consumer.net +acookie.alimama.com +acool.csheaven.com +acoount-locked-access.com +acornpointlodge.com +acount-cheks0912.suport-acount-confrim12.gq +a-counter.kiev.ua +acount-summary.net +acountudate.andrelooks.com +acoustoopticmodulator.com +acpmagazines.112.2o7.net +acproyectos.com +ac.realvu.net +acrh.be +ac.rnm.ca +acrofinder.com +acrowiswhite.com +acs.56.com +acs.agent.56.com +acs.agent.v-56.com +acson.com.br +acsseo.com +acteongruop.com +actforvictory.112.2o7.net +actionamzom.com +actiondesk.com +actionflash.com +action.ientry.net +action.mathtag.com +action.media6degrees.com +action.metaffiliation.com +actionmobilemarine.net +actionnooz.com +actionscript.us.intellitxt.com +actionsplash.com +actionstudioworks.com +activ8global.com +activate-americanexpress.com +activation2016.tripod.com +activation-disabled-helps.16mb.com +activeby.hit.gemius.pl +active.cache.el-mundo.net +activecampaign.dreamhosters.com +active.hit.stat24.com +activeideas.net +active-limited-account.net +activemeter.com +activepr.ru +activewatch.ro +activewin.us.intellitxt.com +activities.chase0nline31.argo-abs.com.au +activities.chase0nline.argo-abs.com.au +activity.serving-sys.com +activoinmobiliario.cl +activos.ns11-wistee.fr +actmediation.com.au +actonel.about-tabs.com +actos.about-tabs.com +actpropdev.co.za +actrck.com +actualdeals.com +actualisatie-i.com +actualite-de-stars.fr.intellitxt.com +actuallysheep.com +actulite.com +actvier.ns11-wistee.fr +actvtrack.com +ac.tynt.com +acuityads.com +acuityplatform.com +acumen.or.ke +acunt-fanpage00.plis-suport2-center.ga +acuraagroup.com +acusticjjw.pl +a.custompc.co.uk +acut.pl +acuty1adsrv.com +acvs.mediaonenetwork.net +acvsrv.mediaonenetwork.net +ac.ybinst0.ec.yimg.com +ac.ybinst1.ec.yimg.com +ac.ybinst2.ec.yimg.com +ac.ybinst3.ec.yimg.com +ac.ybinst4.ec.yimg.com +ac.ybinst5.ec.yimg.com +ac.ybinst6.ec.yimg.com +ac.ybinst7.ec.yimg.com +ac.ybinst8.ec.yimg.com +ac.ybinst9.ec.yimg.com +acyclovir.1.p2l.info +ad0007.net +ad001.ru +ad01.adonspot.com +ad01.advertise.com +ad01.focalink.com +ad01.investor.bg +ad01.mediacorpsingapore.com +ad01.tmgrup.com.tr +ad02.adonspot.com +ad02.focalink.com +ad03.doubleadx.com +ad03.focalink.com +ad04.focalink.com +ad05.focalink.com +ad06.focalink.com +ad07.focalink.com +ad08.focalink.com +ad09.focalink.com +ad0.bigmir.net +ad0.haynet.com +ad.100.tbn.ru +ad101com.adbureau.net +ad.103092804.com +ad10.bannerbank.ru +ad10.checkm8.com +ad10digital.checkm8.com +ad10.focalink.com +ad10.play3.de +ad10.speedbit.com +ad11.adfarm1.adition.com +ad11.bannerbank.ru +ad11.checkm8.com +ad11digital.checkm8.com +ad11.focalink.com +ad12.bannerbank.ru +ad12.checkm8.com +ad12digital.checkm8.com +ad12.focalink.com +ad130m.adpdx.com +ad131m.adk2.co +ad132m.adk2.co +ad132m.adpdx.com +ad13.checkm8.com +ad13digital.checkm8.com +ad13.focalink.com +ad14.checkm8.com +ad14digital.checkm8.com +ad14.focalink.com +ad15.checkm8.com +ad15digital.checkm8.com +ad15.focalink.com +ad16.checkm8.com +ad16digital.checkm8.com +ad16.focalink.com +ad17.checkm8.com +ad17digital.checkm8.com +ad17.focalink.com +ad18.checkm8.com +ad18digital.checkm8.com +ad18.focalink.com +ad19.checkm8.com +ad19digital.checkm8.com +ad19.focalink.com +ad1.adfarm1.adition.com +ad1.adfun.ru +ad1.adinfuse.com +ad1.adtitan.net +ad1.bannerbank.ru +ad1.bigmir.net +ad1.checkm8.com +ad1.clickhype.com +ad1digital.checkm8.com +ad1.doublepimp.com +ad1.emediate.dk +ad1.emediate.se +ad1.emule-project.org +ad1.gamezone.com +ad1.hotel.com +ad1.kde.cz +ad1.lbn.ru +ad1.netshelter.net +ad1.nownews.com +ad1.pamedia.com.au +ad1.peel.com +ad1.popcap.com +ad1.speedbit.com +ad1.yomiuri.co.jp +ad1.yourmedia.com +ad20.checkm8.com +ad20digital.checkm8.com +ad20.net +ad21.checkm8.com +ad21digital.checkm8.com +ad22.checkm8.com +ad22digital.checkm8.com +ad234.prbn.ru +ad.23blogs.com +ad23.checkm8.com +ad23digital.checkm8.com +ad24.checkm8.com +ad24digital.checkm8.com +ad25.checkm8.com +ad25digital.checkm8.com +ad26.checkm8.com +ad26digital.checkm8.com +ad27.checkm8.com +ad27digital.checkm8.com +ad28.checkm8.com +ad28digital.checkm8.com +ad29.checkm8.com +ad29digital.checkm8.com +ad2.adecn.com +ad2.adfarm1.adition.com +ad2.adinfuse.com +ad2.adnetwork.net +ad2.bal.dotandad.com +ad2.bannerbank.ru +ad2.bannerhost.ru +ad2.bbmedia.cz +ad2.checkm8.com +ad2.cooks.com +ad2digital.checkm8.com +ad2.doubleclick.net +ad2.doublepimp.com +ad2.emediate.se +ad2.firehousezone.com +ad2flash.com +ad2games.com +ad2games.com.invalid +ad2.gammae.com +ad2.hotel.com +ad2.hotels.com +ad2.iinfo.cz +ad2.ip.ro +ad2.ireklama.cz +ad2.lbn.ru +ad2.linxcz.cz +ad2.lupa.cz +ad2.nationalreview.com +ad2.neodatagroup.com +ad2.netshelter.net +ad2.pamedia.com +ad2.parom.hu +ad2.peel.com +ad2.pl +ad2play.ftv-publicite.fr +ad2.pl.mediainter.net +ad2.rambler.ru +ad2.sbisec.co.jp +ad2.smni.com +ad2.speedbit.com +ad2.tr.mediainter.net +ad2.turn.com +ad2.xrea.com +ad2.yam.com +ad2.zapmedya.com +ad2.zophar.net +ad30.checkm8.com +ad30digital.checkm8.com +ad31.checkm8.com +ad31digital.checkm8.com +ad32.checkm8.com +ad32digital.checkm8.com +ad33.checkm8.com +ad33digital.checkm8.com +ad34.checkm8.com +ad34digital.checkm8.com +ad35.checkm8.com +ad35digital.checkm8.com +ad.360yield.com +ad36.checkm8.com +ad36digital.checkm8.com +ad37.checkm8.com +ad37digital.checkm8.com +ad38.checkm8.com +ad38digital.checkm8.com +ad39.checkm8.com +ad39digital.checkm8.com +ad3.adfarm1.adition.com +ad.3au.doubleclick.net +ad3.bannerbank.ru +ad3.bb.ru +ad3.checkm8.com +ad3.depositfiles.com +ad3digital.checkm8.com +ad.3dnews.ru +ad3.eu +ad3.hornymatches.com +ad3.iinfo.cz +ad3.l3go.com +ad3.lbn.ru +ad3.linkbucks.com +ad3.nationalreview.com +ad3.pamedia.com.au +ad3.rambler.ru +ad3.speedbit.com +ad3.xrea.com +ad40.checkm8.com +ad40digital.checkm8.com +ad-411.com +ad41.atlas.cz +ad41.checkm8.com +ad41digital.checkm8.com +ad42.checkm8.com +ad42digital.checkm8.com +ad43.checkm8.com +ad43digital.checkm8.com +ad44.checkm8.com +ad44digital.checkm8.com +ad45.checkm8.com +ad45digital.checkm8.com +ad468.prbn.ru +ad46.checkm8.com +ad46digital.checkm8.com +ad47.checkm8.com +ad47digital.checkm8.com +ad48.checkm8.com +ad48digital.checkm8.com +ad49.checkm8.com +ad49digital.checkm8.com +ad4.adfarm1.adition.com +ad4.bannerbank.ru +ad4.bigmir.net +ad4.checkm8.com +ad4digital.checkm8.com +ad4game.com +ad4.gueb.com +ad4.lbn.ru +ad4.liverail.com +ad4mat.de +ad4.netshelter.net +ad4partners.com +ad4.speedbit.com +ad50.checkm8.com +ad50digital.checkm8.com +ad5.bannerbank.ru +ad5.bigmir.net +ad5.checkm8.com +ad5digital.checkm8.com +ad5.lbn.ru +ad5.netshelter.net +ad5.speedbit.com +ad6.bannerbank.ru +ad6.bigmir.net +ad6.checkm8.com +ad6digital.checkm8.com +ad6.horvitznewspapers.net +ad6.liverail.com +ad6media.fr +ad6.speedbit.com +ad.71i.de +ad7.bannerbank.ru +ad7.bigmir.net +ad7.checkm8.com +ad7digital.checkm8.com +ad7.gueb.com +ad7.literotica.com +ad7.speedbit.com +ad8.adfarm1.adition.com +ad8.bannerbank.ru +ad8.checkm8.com +ad8digital.checkm8.com +ad8.speedbit.com +ad9.bannerbank.ru +ad9.checkm8.com +ad9digital.checkm8.com +ad9.speedbit.com +ad.9tv.co.il +ad.a8.net +ad.a-ads.com +ad.abcnews.com +ad.abctv.com +ad.aboutwebservices.com +ad.abum.com +ad.accessmediaproductions.com +ad-ace.doubleclick.net +adaction.de +adactiongapl.hit.gemius.pl +adactive-ads.aimatch.com +ad.activesolutions.cz +ad.ad24.ru +ad.ad-arata.com +ad.adbull.com +ad.adc-serv.net +ad.adfunky.com +ad.adip.ly +ad.adition.de +ad.adition.net +ad.adlantis.jp +ad.adlegend.com +ad.admarketplace.net +ad.admitad.com +ad.adnet.biz +ad.adnet.de +ad.adnetwork.com.br +ad.adnetwork.net +ad.adnow.com +ad.adocean.pl +ad.adorika.com +ad.adperium.com +ad.adriver.ru +ad.adserve.com +ad.adserver01.de +ad.adserverplus.com +ad.adsmart.net +ad.ad-srv.net +ad.adsrvr.org +ad.ad-stir.com +ad.adtegrity.net +ad.adtoma.com +ad.aduserver.com +ad.adver.com.tw +ad.adverticum.net +ad.advertstream.com +ad.adview.pl +adadvisor.net +ad.adworx.at +ad.adxcore.com +ad.ae.doubleclick.net +adafi.hit.gemius.pl +ad.afilo.pl +ad.aftenposten.no +ad.aftonbladet.se +ad.afy11.net +ad.agava.tbn.ru +ad.agilemedia.jp +adagiobanner.s3.amazonaws.com +adagiof3.repubblica.it +ad.agkn.com +ad.airad.com +ad.ajanshaber.com +adako.pl +ad.allstar.cz +ad.allyes.cn +ad.altervista.org +adalyaosgb.com +adamandevespa.com +ad.amgdgt.com +ad.amiadogroup.com +adamjonsson.se +adam-kaserne.de +adamnevillelaw.com +adamoads.com +adampalacki.pl +adamsfilms.com +adamsmarkhotels.com +adamsvpm.com +adanalytics.openload.co +adanih.com +adanku.com +ad.anuntis.com +adan.xtendmedia.com +adaos-ads.net +ad-apac.doubleclick.net +adapd.com +adapi.ragapa.com +adapt.tv +adap.tv +adaptv.pixel.invitemedia.com +ad.aquamediadirect.com +ad.ar.doubleclick.net +ad.asntown.net +ad.asv.de +ad.atdmt.com +ad.at.doubleclick.net +adatepekarot.com +ad-audit.tubemogul.com +ad.auditude.com +ad.au.doubleclick.net +ad.axyzconductor.jp +adbacabal.com.br +ad-balancer.at +ad-balancer.net +adbanner.adxcore.com +ad.bannerbank.ru +ad.bannerconnect.net +ad.bannerhost.ru +adbanner.ro +adbard.net +ad.batanga.com +ad.batanga.net +ad.bauerverlag.de +adbcache.brandreachsys.com +ad-beast.com +ad.be.doubleclick.net +ad.beepworld.de +ad.beritasatumedia.com +adbers.com +adbetclickin.pink +adbetnet.advertserve.com +adb.fling.com +ad.bg.doubleclick.net +adbg.hit.gemius.pl +adbit.co +ad.bizo.com +adblade.com +adblockanalytics.com +adblockdetect.xyz +ad-blockeds.com +adblockerkillswebsites.pw +ad.bnmla.com +adbnr.ru +ad.bondage.com +adboost.de.vu +adboost.finalid.com +adboost.net +adbooth.adk2.co +adbooth.net +adbot.com +adbot.theonion.com +adbox.hu +adbox.inbox-online.com +ad.brainer.jp +ad.br.doubleclick.net +adbrite.112.2o7.net +adbrite.122.2o7.net +adbrite.com +ad.broadstreetads.com +adbroker.de +adbucks.brandreachsys.com +adbuka.com +adbunker.com +adbutler.com +adbutler.de +adbuyer3.lycos.com +adbuyer.com +adc2.adcentriconline.com +adc3-launch.adcolony.com +adcache.aftenposten.no +adcache.nymag.com +ad.ca.doubleclick.net +adcanadian.com +ad.caradisiac.com +ad.caradisiac-publicite.com +adcarem.co +adcash.com +ad.cashdorado.de +adcast.deviantart.com +adc.brandreachsys.com +ad.cctv.com +adcdn.33universal.com +ad-cdn.technoratimedia.com +adcell.de +ad-center.com +adcenter.in2.com +adcenter.mdf.se +adcenter.net +adcentre.it-advanced.com +adcentriconline.com +adcentric.randomseed.com +ad.centrum.cz +adcept.net +ad.cgi.cz +ad.ch.doubleclick.net +adchimp.com +ad.choiceradio.com +ad.cibleclick.com +ad.cl.doubleclick.net +adclick.com +ad.clickdistrict.com +adclick.g.doubleclick.net +adclick.hit.gemius.pl +ad.clickotmedia.com +ad-clicks.com +adclickservice.com +adclickthru.net +adclient.163.com +adclient1.tucows.com +adclient-af.lp.uol.com.br +adclient.rottentomatoes.com +adclient.uimserv.net +ad.clix.pt +adcloud-dp.nuggad.net +ad.cmfu.com +adcmtd.mac-torrent-download.net +ad.cn.doubleclick.net +ad.coas2.co.kr +adcode.adengage.com +adcode.rontar.com +adcodes.aim4media.com +adcomplete.com +adconion.com +adconscious.com +adcontent2.allaccess.com.ph +adcontent.gamespy.com +adcontent.reedbusiness.com +adcontent.saymedia.com +adcontent.videoegg.com +adcontroller.unicast.com +adcontrol.tudou.com +ad.cooks.com +adcore.ru +adcounter.globeandmail.com +adcounter.theglobeandmail.com +adcount.ohmynews.com +ad.creafi.com +adcreative.naver.com +adcreative.tribuneinteractive.com +ad.crwdcntrl.net +adc-serv.net +adcycle.com +adcycle.footymad.net +adcycle.icpeurope.net +adcz.hit.gemius.pl +add-add.men +ad.db3nf.com +addbin.men +addblueoff.com.ua +ad-dc2.adtech.de +ad.dc2.adtech.de +ad.dedicatedmedia.com +ad.de.doubleclick.net +ad-delivery.net +addelivery.thestreet.com +ad.depositfiles.com +adderall.ourtablets.com +adderallxr.freespaces.com +ad.designtaxi.com +ad.deviantart.com +add.f5haber.com +addfreestats.com +addiafortcnewtionhcmai.com +ad.dic.nicovideo.jp +addictivetechnologies.net +addie.verticalnetwork.de +ad.digitallook.com +ad.digitimes.com.tw +ad.directmirror.com +addirector.vindicosuite.com +ad.directrev.com +addis.buzz +additcinggames.com +addjump.com +ad.dk.doubleclick.net +addme.com +add.newmedia.cz +ad.doctissimo.fr +ad.doganburda.com +ad.domainfactory.de +ad.donanimhaber.com +addonnet.com +ad.doubleclick.net +ad.download.cnet.com +ad.download.net +addray.pro +adds1.trafflow.com +addserver.mtv.com.tr +addshoppers.com +addshoppers.t.domdex.com +adds.misiamoiatdom.com +addsteam.pl +adds.trafflow.com +addthiscdn.com +addthis.com +addtoadd.men +ad.duga.jp +ad.dumedia.ru +ad.eanalyzer.de +ade.clmbtech.com +adecn.com +adecn-w.atdmt.com +ad.econet.hu +ad.ecplaza.net +adedy.com +adee.hit.gemius.pl +adeelacorporation.com +adeforsa.pl +ad.egloos.com +ad.e-kolay.net +ad.ekonomikticaret.com +adelly.bg +adelogs.adobe.com +adelstyle.net +ademails.com +ad-emea.doubleclick.net +adenbay.com +adengage.com +adengine.rt.ru +adeola.000webhostapp.com +ad.epochtimes.com +ad.eporner.com +adertwe.uk +ad.es.doubleclick.net +ad.espn.starwave.com +ad.e-sport.com +adestrandopalavras.site-br.pw +ad.eurosport.com +ade.wooboo.com.cn +adexboutique.com.ng +adexchangegate.com +adexchange.guru +adexchangeprediction.com +adexchangetracker.com +adexcite.com +adexc.net +adexpansion.com +adexpose.com +adexprt.com +adexprt.me +adexprts.com +adextensioncontrol.tudou.com +adext.inkclub.com +ad.f1cd.ru +adfactor.nl +adfactor.nl.invalid +adfarm1.adition.com +adfarm.mediaplex.com +adfarm.mserve.ca +ad.favod.net +ad-feeds.com +ad.fi.doubleclick.net +adfiles.o2.pl.sds.o2.pl +adfiles.pitchforkmedia.com +ad.filmweb.pl +ad.firstadsolution.com +adflash.affairsclub.com +adflight.com +ad.floq.jp +ad-flow.com +ad.flurry.com +ad.flux.com +adf.ly +ad.fnnews.com +adfoc.us +adfocus.ru +ad.fo.net +adforati.com +adforce.ads.imgis.com +adforce.adtech.de +adforce.adtech.fr +adforce.adtech.us +adforce.com +adforce.imgis.com +adforce.ru +adform.com +adformdsp.net +adform.net +ad.fout.jp +ad.foxnetworks.com +ad.fr.doubleclick.net +ad.freecity.de +adfrut.cl +adfu.blockstackers.com +ad.funpic.de +adfun.ru +adfusion.com +adgallery.whitehousedrugpolicy.gov +ad.garantiarkadas.com +adgardener.com +ad.gate24.ch +ad.gazeta.pl +ad-gb.mgid.com +ad-gbn.com +adg.bzgint.com +ad-g.doubleclick.net +adgebra.co.in +adgeo.163.com +ad.getfond.info +ad.ghfusion.com +ad.globe7.com +ad.glossymedia.pl +ad.go.com +ad.goo.ne.jp +adgoto.com +ad.grafika.cz +adgraphics.theonion.com +ad.gra.pl +ad.gr.doubleclick.net +ad.greenmarquee.com +adgridwork.com +adgroup.naver.com +ad.groupon.be +ad.groupon.com +ad.groupon.co.uk +ad.groupon.de +ad.groupon.fr +ad.groupon.net +ad.groupon.nl +ad.groupon.pl +adgtracker.com +adguanggao.eee114.com +adgvietnam.com +adhall.com +ad.hankooki.com +ad.harrenmedianetwork.com +ad.hbv.de +adhdtraveler.com +adhealers.com +adhearus.com +adheb.com +adhec.com +adhese.be +adhese.com +adhese.gva.be +adhese.hbvl.be +adhese.nieuwsblad.be +adhese.standaard.be +ad.hi5.com +ad.himediadx.com +ad.hirekmedia.hu +ad.hit.gemius.pl +adhitzads.com +ad.hizlireklam.com +ad.hk.doubleclick.net +ad-hoc-news.de.intellitxt.com +ad.hodomobile.com +adhome.biz +ad.horvitznewspapers.net +ad.host.bannerflow.com +adhosting.ohmyad.co +ad.hosting.pl +ad.howstuffworks.com +ad.hr.doubleclick.net +adhref.pl +adhr.hit.gemius.pl +ad.httpool.com +ad.hu.doubleclick.net +ad.hyena.cz +adi.bigmir.net +ad.icasthq.com +ad.iconadserver.com +adidas.frwebs.fr +adidas-originals.com.tw +adidastaiwan.com.tw +adidas.tpall.com +adidm07.idmnet.pl +adidm.idmnet.pl +adidm.supermedia.pl +ad.ie.doubleclick.net +adifr.com +ad.iinfo.cz +adilac.in +ad.ilove.ch +ad.iloveinterracial.com +ad.imad.co.kr +adimage.asia1.com.sg +adimage.asiaone.com +adimage.asiaone.com.sg +adimage.blm.net +adimage.guardian.co.uk +adimages.been.com +adimages.carsoup.com +adimages.earthweb.com +adimages.go.com +adimages.homestore.com +adimages.mp3.com +adimages.omroepzeeland.nl +adimages.sanomawsoy.fi +adimages.scrippsnetworks.com +adimages.sina.com.hk +adimages.watchmygf.net +adi.mainichi.co.jp +ad.imediaaudiences.com +adimg1.chosun.com +adimg3.search.naver.net +adimg.activeadv.net +adimg.alice.it +adimg.bnet.com +adimg.chow.com +adimg.cnet.com +adimg.com.com +adimg.download.com +adimg.gamefaqs.com +adimg.luminate.com +adimg.mp3.com +adimg.news.com +adimg.ngfiles.com +adimgs.sapo.pt +adimg.theinsider.com +adimg.tv.com +adimg.uimserv.net +adimg.zdnet.com +adimmix.com +adimpact.com +ad.impresionesweb.com +ad.impressbm.co.jp +adin.bigpoint.com +ad-incisive.grapeshot.co.uk +adincl.gopher.com +adincube.com +ad-indicator.com +ad.indomp3z.us +ad.in.doubleclick.net +ad.infoseek.com +adinfuse.com +adinjector.net +ad.insightexpressai.com +ad.insightexpress.com +adinterax.cnet.com.edgesuite.net +adinterax.com +ad.internetradioinc.com +ad.investopedia.com +ad.investor.bg +adiocafe.com +adipex.1.p2l.info +adipex.24sws.ws +adipex.3.p2l.info +adipex.4.p2l.info +adipex.hut1.ru +adipex.ourtablets.com +adipexp.3xforum.ro +adipex.shengen.ru +adipex.t-amo.net +adipics.com +ad.ipredictive.com +adireland.com +ad.ir.ru +adisfy.com +ad.isohunt.com +ad.it.doubleclick.net +adition.com +adition.de +adition.net +ad.iwin.com +a.diximedia.es +adizio.com +adj10.thruport.com +adj11.thruport.com +adj12.thruport.com +adj13.thruport.com +adj14.thruport.com +adj15.thruport.com +adj16r1.thruport.com +adj16.thruport.com +adj17.thruport.com +adj18.thruport.com +adj19.thruport.com +adj1.thruport.com +adj22.thruport.com +adj23.thruport.com +adj24.thruport.com +adj25.thruport.com +adj26.thruport.com +adj27.thruport.com +adj28.thruport.com +adj29.thruport.com +adj2.thruport.com +adj30.thruport.com +adj31.thruport.com +adj32.thruport.com +adj33.thruport.com +adj34.thruport.com +adj35.thruport.com +adj36.thruport.com +adj37.thruport.com +adj38.thruport.com +adj39.thruport.com +adj3.thruport.com +adj40.thruport.com +adj41.thruport.com +adj43.thruport.com +adj44.thruport.com +adj45.thruport.com +adj46.thruport.com +adj47.thruport.com +adj48.thruport.com +adj49.thruport.com +adj4.thruport.com +adj50.thruport.com +adj51.thruport.com +adj52.thruport.com +adj53.thruport.com +adj54.thruport.com +adj55.thruport.com +adj56.thruport.com +adj5.thruport.com +adj6.thruport.com +adj7.thruport.com +adj8.thruport.com +adj9.thruport.com +ad.jamba.de +ad.jamba.it +ad.jamba.net +ad.jamster.ca +ad.jamster.com +ad.jamster.co.uk +ad.janalta.com +ad.jetsoftware.com +adjix.com +adjmps.com +ad.jokeroo.com +ad.jp.ap.valu.com +ad.jp.ap.valuecommerce.com +ad.jp.doubleclick.net +adjug.com +ad.jugem.jp +adjuggler.com +adjuggler.net +adjuggler.yourdictionary.com +adjustnetwork.com +adk2ads.tictacti.com +adk2.com +adkariaca.com +ad.kataweb.it +ad.kat.ph +ad.kau.li +ad.keenspace.com +adkinsdeveloping.com +adklip.com +adkontekst.pl +ad.koreadaily.com +ad.kr.doubleclick.net +ad.krutilka.ru +adktrailmap.com +adland.ru +ad.land.to +adlantic.nl +ad.lazynerd.info +ad.leadboltads.net +ad.leadboltapps.net +ad.leadboltmobile.net +ad.leadbolt.net +ad.leadcrunch.com +adledge.com +adlegend.com +adlergmbh.de +adlerobservatory.com +adlev.neodatagroup.com +ad.lgappstv.com +ad.lijit.com +adlik2.akavita.com +adlik.akavita.com +ad.linkexchange.com +ad.linkstorms.com +ad.linksynergy.com +adlisa.com +ad.lista.cz +ad.liveinternet.ru +ad.livere.co.kr +ad.lkqd.net +adloads.com +adloads.net +adlock.in +adlog.cbsi.com +adlog.com.com +ad-logics.com +ad.looktraffic.com +adloox.com +adlooxtracking.com +adlt.hit.gemius.pl +ad.lupa.cz +adlure.net +adlv.hit.gemius.pl +ad.lyricswire.com +adm.265g.com +ad.m5prod.net +ad.madvertise.de +ad.m-adx.com +admagnet1.com +admagnet.net +ad.mail.ru +admailtiser.com +ad.mainichi.jp +ad.maist.jp +admanaerofoil.com +admanage.com +admanagement.ch +admanager1.collegepublisher.com +admanager2.broadbandpublisher.com +admanager3.collegepublisher.com +admanager.adam4adam.com +admanager.beweb.com +admanager.btopenworld.com +admanager.carsoup.com +admanager.collegepublisher.com +adman.freeze.com +ad.mangareader.net +adman.gr +adman.in.gr +adman.kathimerini.gr +admanmail.com +adman.otenet.gr +adman.se +admarket.cz +admarket.entireweb.com +admarketplace.net +admarkt.marktplaats.nl +admarsx.com +admarvel.com +admarvel.s3.amazonaws.com +ad.mastermedia.ru +admatcher.videostrip.com +admatch-syndication.mochila.com +admatic.com.tr +admaven.adk2x.com +admax.nexage.com +admax.quisma.com +adm.baidu.com +admd.yam.com +admeasures.com +admedia.com +admedia.expedia.com +ad.mediaprostor.cz +admedia.ro +ad.media-servers.net +admedias.net +ad.mediastorm.hu +admediator.unityads.unity3d.com +admedia.wsod.com +ad-media.xe.gr +admedia.xoom.com +admedien.com +admedit.net +admega.feed.gr +admeld.com +admention.adspirit.de +admerize.be +admeta.com +admeta.vo.llnwd.net +admex.com +admez.com +adm.funshion.com +adm.fwmrm.net +ad.mgd.de +admicro1.vcmedia.vn +admicro2.vcmedia.vn +admin.adriangluck.com.ar +admin.ads.t-online.de +admin.appnext.com +admin.att.mobiliariostore.com +admincenter.myjino.ru +adminclack.myjino.ru +adminder.com +admin.digitalacre.com +adminec1.hitbox.com +admineservice.com +admin.fingalcsrnetwork.ie +admin.getmagno.com +admin.hotkeys.com +admin.iesnare.com +admin.iesnare.co.uk +admin.inq.com +admin.iovation.com +admin.kobatochan.co +admin.meiwong.net +admin.sellhomeforcash.co.uk +admins-expert.com +adminshop.com +admin.twinstoresz.com +admin.vserv.mobi +admisoft.com +admitad.com +admized.com +admlaw.cn +admob.com +ad.mo.doubleclick.net +a.d.mojigaga.com +admon1.count.brat-online.ro +admon.cn +admonitor.com +admonkey.dapper.net +ad.moreto.net +ad.moscowtimes.ru +admotion.com.ar +admp-tc.delfi.lv +admp-tc.iltalehti.fi +adm.shacknews.com +adm.shinobi.jp +adms.physorg.com +admtpmp127.adsk2.co +ad.musicmatch.com +admwarszawa.pl +adm.xmfish.com +ad.my.doubleclick.net +ad.mygamesol.com +ad.mylook.ee +ad.n2434.doubleclick.net +ad.nachtagenten.de +adnanlightdecor.com +ad.nate.com +ad.naver.com +adn.ebay.com +ad.ne.com +ad.net +adnet.affinity.com +adnet.asahi.com +adnet.biz +adnet.chicago.tribune.com +adnet.com +ad.netcommunities.com +adnet.com.ua +adnet.de +adnetgalt.hit.gemius.pl +ad.netgoo.com +adnet.hit.gemius.pl +adnetinteractive.com +adnet-media.net +adnet.pravda.com.ua +adnet.ru +ad.network60.com +adnetwork.buzzlogic.com +adnetwork.net +adnetwork.nextgen.net +adnetworkperformance.com +adnetworkperformance.compopcash.net +adnetwork.rovicorp.com +adnet.worldreviewer.com +adnetxchange.com +adnews.maddog2000.de +adnext.fr +adnexus.net +adn.fusionads.net +adng.ascii24.com +ad.nicovideo.jp +adn.impactradius.com +adn.kinkydollars.com +ad.nl.doubleclick.net +ad.no.doubleclick.net +ad-noise.net +adnotbad.com +adnotch.com +ad.nozonedata.com +adn.static-files.com +ad.nttnavi.co.jp +ad.ntvmsnbc.com +ad.nwt.cz +adnxs.com +adnxs.revsci.net +ad.nz.doubleclick.net +adn.zone-telechargement.com +adobeaflash.com +adobe.com.us.reader.cloud.web.access.securely.asinacabinets.com +adobe.demdex.net +adobedownloadupdate.com +adobee.com +adobe.fisher-realty.org +adobe-flashplayer.com +adobeflashupdate14.com +adobeo.com +adobereader-free.ru +adobe.tt.omtrdc.net +adobe-update.com +adobur.com +adoburcrv.com +adobur.net +adocean-by.hit.gemius.pl +adocean-cz.hit.gemius.pl +adocean.delfi.lv +adocean-ee.hit.gemius.pl +adocean-hr.hit.gemius.pl +adocean-lt.hit.gemius.pl +adocean-lt.lt +adocean-lv.hit.gemius.pl +adocean.pl +adocean-pl.hit.gemius.pl +adocean-ro.hit.gemius.pl +adocean-si.hit.gemius.pl +adocean-ua.hit.gemius.pl +adode.account.ivasistema.com +ad.ohmyad.co +ad.ohmynews.com +ado.icorp.ro +ad.onad.eu +adongcomic.com +ad.onlinechange.biz +adonline.e-kolay.net +adonspot.com +a.dontibar.com +adoperator.com +ado.pro-market.net +adopt.euroclick.com +adopt.precisead.com +adopt.specificclick.net +adoptwithamy.co.za +ad.orbitel.bg +adoreclothing.co.uk +ad.oret.jp +adorigin.com +adotube.com +ad.ourgame.com +ad.oyy.ru +adp.adview.pl +ad.pandora.tv +ad.parom.hu +ad.parrot.mable-inc.com +ad.partis.si +ad.payclick.it +ad-pay.de +adpenguin.biz +adpepper.dk +adpepper.nl +adperium.com +ad.petel.bg +adp.gazeta.pl +ad.pgwticketshop.nl +ad.philipstreehouse.info +ad.ph-prt.tbn.ru +adpia.vn +ad.pickple.net +adpick.switchboard.com +adping.qq.com +adplacerseon.com +adplans.net +adplay.tudou.com +ad.pl.doubleclick.net +adplexmedia.adk2.co +adplexmedia.adk2x.com +ad-plus.cn +adplus.co.id +adplus.goo.mx +adplus.yonhapnews.co.kr +adplxmd.com +a.dpmsrv.com +ad.policeone.com +adportal.advertisingnemesis.com +ad.pravda.ru +ad.preferances.com +ad.preferences.com +ad.premiumonlinemedia.com +adpremium.org +ad.prismamediadigital.com +ad.pro-advertising.com +adprofile.net +ad.profiwin.de +adprojekt.pl +ad.propellerads.com +adprotect.net +adprovider.adlure.net +ad.proxy.sh +adprudence.rotator.hadj7.adjuggler.net +ad.prv.pl +ad.pt.doubleclick.net +adpublimo.com +adpulse.ads.targetnet.com +ad.punto-informatico.it +adpush.dreamscape.com +adq.nextag.com +ad.qq.com +ad.qwapi.com +ad.qyer.com +adr.adplus.co.id +ad.rambler.ru +adrates.theglobeandmail.com +adrazzi.com +ad.reachppc.com +adreactor.com +adreadytractions.com +ad.realist.gen.tr +ad.realmcdn.net +ad.realmedia.co.kr +adreclaim.com +adrecreate.com +ad.reduxmediia.com +ad.reklamport.com +adremedy.com +adremote.pathfinder.com +adremote.timeinc.aol.com +adremote.timeinc.net +adrenalin-stk.ru +adreporting.com +ad.repubblica.it +adrequisitor-af.lp.uol.com.br +adresik.gq +adres.internet.com +ad.response.jp +ad.retargeter.com +ad.reunion.com +adrevolver.com +adrianomalvar.com.br +adriantodoran.ro +adrianwotton.com +adrianzajewicz.blogspot.com +adriver.ru +ad.ro.doubleclick.net +adro.hit.gemius.pl +adrolays.de +adroll.com +adrotate.de +adrotate.se +ad-rotator.com +adrotator.com +adrotator.se +ad.rs.doubleclick.net +adrs.hit.gemius.pl +adrta.com +ad.rtl.hr +ad.ru.doubleclick.net +adrunnr.com +adrzr.com +ads001.stickam.com +ads01.com +ads01.focalink.com +ads01.hyperbanner.net +ads02.focalink.com +ads02.hyperbanner.net +ads03.focalink.com +ads03.hyperbanner.net +ads03.redtube.com +ads04.focalink.com +ads04.hyperbanner.net +ads05.focalink.com +ads05.freecity.de +ads05.hyperbanner.net +ads06.focalink.com +ads06.hyperbanner.net +ads07.focalink.com +ads07.hyperbanner.net +ads08.focalink.com +ads08.hyperbanner.net +ads09.focalink.com +ads09.hyperbanner.net +ads0.okcupid.com +ads10.focalink.com +ads10.gladen.bg +ads10.hyperbanner.net +ads10.speedbit.com +ads10.udc.advance.net +ads11.focalink.com +ads11.hyperbanner.net +ads11.udc.advance.net +ads12.focalink.com +ads12.hyperbanner.net +ads12.udc.advance.net +ads13000.cpmoz.com +ads13.focalink.com +ads13.hyperbanner.net +ads13.udc.advance.net +ads14.bpath.com +ads14.focalink.com +ads14.hyperbanner.net +ads14.udc.advance.net +ads15.bpath.com +ads15.focalink.com +ads15.hyperbanner.net +ads15.udc.advance.net +ads16.advance.net +ads16.focalink.com +ads16.hyperbanner.net +ads16.udc.advance.net +ads17.focalink.com +ads17.hyperbanner.net +ads180.com +ads18.focalink.com +ads18.hyperbanner.net +ads19.focalink.com +ads1.activeagent.at +ads1a.depositfiles.com +ads1.ad-flow.com +ads1.admedia.ro +ads1.advance.net +ads1.advertwizard.com +ads1.ami-admin.com +ads1.beta.lt +ads1.canoe.ca +ads1.cricbuzz.com +ads1.destructoid.com +ads1.empiretheatres.com +ads1.erotism.com +ads1.eudora.com +ads1.globeandmail.com +ads1.itadnetwork.co.uk +ads1.jev.co.za +ads1.legalworld.bg +ads1.mediacapital.pt +ads1.mojiva.com +ads1.msads.net +ads1.msn.com +ads1.nexdra.com +ads1.omdadget.com +ads1.perfadbrite.com.akadns.net +ads1.performancingads.com +ads1.qadabra.com +ads1.realcities.com +ads1.revenue.net +ads1.rne.com +ads1.speedbit.com +ads1.sptimes.com +ads1.theglobeandmail.com +ads1.tripod.com +ads1.ucomics.com +ads1.udc.advance.net +ads1.updated.com +ads1.vertamedia.com +ads1.virtual-nights.com +ads1.virtumundo.com +ads1.zdnet.com +ads2000.hw.net +ads2004.treiberupdate.de +ads20.adcolony.com +ads20.focalink.com +ads.20minutes.fr +ads21.focalink.com +ads22.focalink.com +ads234.com +ads23.focalink.com +ads.24.com +ads24.focalink.com +ads25.focalink.com +ads25.videe.tv +ads2.adbrite.com +ads2.ad-flow.com +ads2-adnow.com +ads2ads.net +ads2.advance.net +ads2.advertwizard.com +ads2.blastro.com +ads2.brazzers.com +ads2.canoe.ca +ads2.clearchannel.com +ads2.clickad.com +ads2.collegclub.com +ads2.collegeclub.com +ads2.contentabc.com +ads2.drivelinemedia.com +ads2.ekologia.pl +ads2.emeraldcoast.com +ads2.ero-advertising.com +ads2.evz.ro +ads2.exhedra.com +ads2.firingsquad.com +ads2.gamecity.net +ads2.greystripe.com +ads2.haber3.com +ads2.helpos.com +ads2.ihaberadserver.com +ads2.jubii.dk +ads2.ljworld.com +ads2.mediaarmor.com +ads2.mediashakers.com +ads2.mojiva.com +ads2.msads.net +ads2.msn.com +ads2.mynet.com +ads2.net-communities.co.uk +ads2.newtimes.com +ads2.nextmedia.bg +ads2.oneplace.com +ads2.opensubtitles.org +ads2.osdn.com +ads2.pittsburghlive.com +ads2.realcities.com +ads2.revenue.net +ads2.rne.com +ads2.rp.pl +ads2.speedbit.com +ads2srv.com +ads2.theglobeandmail.com +ads2.udc.advance.net +ads2.vasmg.com +ads2.vertamedia.com +ads2.virtual-nights.com +ads2.virtumundo.com +ads2.vortexmediagroup.com +ads2.weblogssl.com +ads2.williamhill.com +ads2.xnet.cz +ads2.zamunda.net +ads2.zdnet.com +ads2.zeusclicks.com +ads30.adcolony.com +ads31.vertamedia.com +ads32.vertamedia.com +ads33.vertamedia.com +ads345.com +ads34.vertamedia.com +ads.359group.com +ads360.com +ads36.hyperbanner.net +ads37.vertamedia.com +ads3.ad-flow.com +ads3.adman.gr +ads3.advance.net +ads3.advertwizard.com +ads3.bangkokpost.co.th +ads.3bay.bg +ads3.blastro.com +ads3.canoe.ca +ads3.contentabc.com +ads.3e-news.net +ads3.freebannertrade.com +ads3.gamecity.net +ads3.haber3.com +ads3.ihaberadserver.com +ads3.jubii.dk +ads3.kompasads.com +ads3.moitepari.bg +ads3.mojiva.com +ads3.realcities.com +ads.3sfmedia.com +ads3.speedbit.com +ads3.udc.advance.net +ads3.vertamedia.com +ads3.virtual-nights.com +ads3.virtumundo.com +ads3.zdnet.com +ads4.ad-flow.com +ads4.advance.net +ads4.advertwizard.com +ads4.canoe.ca +ads4cheap.com +ads4.clearchannel.com +ads4.gamecity.net +ads4homes.com +ads4.kompasads.com +ads4.mojiva.com +ads4pubs.com +ads.4rati.lv +ads4.realcities.com +ads4.speedbit.com +ads.4tube.com +ads4.udc.advance.net +ads4.vertamedia.com +ads4.virtual-nights.com +ads4.virtumundo.com +ads56-us-east.stickyadstv.com +ads5.ad-flow.com +ads5.admatic.com.tr +ads5.advance.net +ads5.advertwizard.com +ads5.canoe.ca +ads.5ci.lt +ads5.fxdepo.com +ads5.kompasads.com +ads5.mconetwork.com +ads5.mojiva.com +ads5.sabah.com.tr +ads5.speedbit.com +ads5.udc.advance.net +ads5.vertamedia.com +ads5.virtual-nights.com +ads5.virtumundo.com +ads6.ad-flow.com +ads6.advance.net +ads6.advertwizard.com +ads6.gamecity.net +ads6.kompasads.com +ads6.speedbit.com +ads6.udc.advance.net +ads6.vertamedia.com +ads7.ad-flow.com +ads7.advance.net +ads7.advertwizard.com +ads.7days.ae +ads7.gamecity.net +ads7.speedbit.com +ads7.udc.advance.net +ads7.vertamedia.com +ads80.com +ads.8833.com +ads8.ad-flow.com +ads8.advertwizard.com +ads8.com +ads8.speedbit.com +ads8.udc.advance.net +ads8.vertamedia.com +ads9.ad-flow.com +ads9.advertwizard.com +ads.9mp.ro +ads9.speedbit.com +ads9.udc.advance.net +ads9.vertamedia.com +ads.abovetopsecret.com +ads.abs-cbn.com +ads.accelerator-media.com +ads.aceweb.net +ads.activeagent.at +ads.active.com +ads.activepower.net +ads.activestate.com +ads.ad4game.com +ads.ad4max.com +ads.adadapted.com +ads.adagent.chacha.com +ads.adamoads.com +ads.adap.tv +ads.adaptv.advertising.com +ads-a-darwin.hulu.com +ads.adbrite.com +ads.adbroker.de +ads.ad-center.com +ads.adcloud.net +ads.adcorps.com +ads.addesktop.com +ads.addynamix.com +ads.adengage.com +ads.ad-flow.com +ads.adfox.ru +ads.adgoto.com +ads.adhall.com +ads.adhearus.com +ads.adhese.be +ads.adhood.com +ads.adhostingsolutions.com +ads.adhsm.adhese.com +ads.adhub.co.nz +ads.adiply.com +ads.adiquity.com +ads.adk2.com +ads.admarvel.com +ads.admaxasia.com +ads.admaximize.com +adsadmin.aspentimes.com +adsadmin.corusradionetwork.com +ads.administrator.de +adsadmin.vaildaily.com +ads.admnx.com +ads.admoda.com +ads.admodus.com +ads.admonitor.net +ads.adn.com +ads.adnet.am +ads.adnet-media.net +ads.adone.com +ads.adonion.com +ads.adpv.com +ads.adroar.com +ads.adsag.com +ads.adsbookie.com +ads.adshareware.net +ads.adsinimages.com +ads.ads.netlog.com +ads.adsonar.com +ads.adsponse.de +ads.adsready.com +ads.adsrvmedia.com +ads.adsrvmedia.net +ads.adsrvr.org +ads.adsurve.com +ads.adtegrity.net +ads.adthrive.com +ads.adtiger.de +ads.adtrustmedia.com +ads.adtube.de +ads.adual.net +ads.adultfriendfinder.com +ads.adultswim.com +ads.advance.net +ads.adverline.com +ads.advertise.net +ads.advertisespace.com +ads.advertisingnemesis.com +ads.adviva.net +ads.advolume.com +ads.adworldnetwork.com +ads.adx.nu +ads.adxpansion.com +ads.adxpose.com +ads.adxpose.mpire.akadns.net +ads.aerserv.com +ads.afa.net +adsafeprotected.com +ads.affbuzzads.com +ads.affiliateclub.com +ads.affiliates.match.com +adsafiliados.com.br +ads.afraccess.com +ads.aftonbladet.se +ads.ahds.ac.uk +ads.ah-ha.com +ads.aintitcool.com +ads.airamericaradio.com +ads-a.juicyads.com +ads.akademika.bg +ads.ak.facebook.com +ads.ak.facebook.com.edgesuite.net +ads.albawaba.com +ads.al.com +ads.allaccess.com.ph +ads.all-free-download.com +ads.allsites.com +ads.allvatar.com +ads.allvertical.com +ads.almasdarnews.com +ads.alphaporno.com +ads.alt.com +ads.amakings.com +ads.amaland.com +ads.amarillo.com +ads.amateurmatch.com +ads.amazingmedia.com +ads.amdmb.com +ads.amgdgt.com +ads.ami-admin.com +ads.amigos.com +ads.anm.co.uk +ads.anvato.com +ads.aol.com +ads.aol.co.uk +ads.apartmenttherapy.com +adsapi.chartbeat.com +ads.apn.co.nz +ads.apn.co.za +ads.appleinsider.com +ads.appsgeyser.com +ads.araba.com +ads.arcadechain.com +ads.arkitera.net +ads.aroundtherings.com +ads.artsopolis.com +ads.as4x.tmcs.net +ads.as4x.tmcs.ticketmaster.ca +ads.as4x.tmcs.ticketmaster.com +ads.asexstories.com +ads.asia1.com +ads.asia1.com.sg +ads.asiafriendfinder.com +ads.ask.com +ads.aspalliance.com +ads.aspentimes.com +ads.asp.net +ads.asredas.com +ads.associatedcontent.com +ads.astalavista.us +ads.atlantamotorspeedway.com +ads.atomex.net +adsatt.abcnews.starwave.com +adsatt.abc.starwave.com +adsatt.disney.starwave.com +adsatt.espn.go.com +adsatt.espn.starwave.com +adsatt.familyfun.starwave.com +adsatt.go.starwave.com +adsatt.movies.starwave.com +ads.auctionads.com +ads.auctioncity.co.nz +ads.auctions.yahoo.com +ads.augusta.com +ads.autoscout24.com +ads.autotrader.com +ads.avazu.net +ads.aversion2.com +ads.avocarrot.com +ads.avusa.co.za +ads.aws.sitepoint.com +ads.ayads.co +ads.azjmp.com +ads.b10f.jp +ads.baazee.com +ads.badische-zeitung.de +ads.balkanec.bg +ads.bangkokpost.co.th +ads.banner.t-online.de +ads.barnonedrinks.com +ads.batpmturner.com +ads.battle.net +ads.bauerpublishing.com +ads.baventures.com +ads.baz.ch +ad.sbb.bg +ads.bbcworld.com +adsbb.dfiles.eu +ads.bcnewsgroup.com +ads.be2hand.com +ads.beeb.com +ads.beenetworks.net +ads.beliefnet.com +ads.belointeractive.com +ads.benefitspro.com +ads.berlinonline.de +ads.beta.itravel2000.com +ads.betanews.com +ads.betfair.com +ads.betfair.com.au +ads.betsafe.com +ads.betternetworker.com +ads.betweendigital.com +ads.bfast.com +ads.bfm.valueclick.net +ads.bgfree.com +ads.bg-mamma.com +ads.bgtop.net +ads.bhmedianetwork.com +ads.bianca.com +ads.bidclix.com +ads.bidvertiser.com +ads.bigchurch.com +ads.bigcitytools.com +ads.bigfoot.com +ads.biggerboat.com +ads.bigrebelads.com +ads.bing.com +ads.biscom.net +ads.bitsonthewire.com +ads.bittorrent.com +ads.bizhut.com +ads.biznews.bg +adsbizsimple.com +ads.bizx.info +ads.bl-consulting.net +ads.blitz.bg +ads.blixem.nl +ads.blizzard.com +ads.blog.com +ads.blogdrive.com +ads.blogherads.com +ads.blogtalkradio.com +ads.bloodhorse.com +ads.bloomberg.com +ads.blp.calueclick.net +ads.blp.valueclick.net +ads.bluelithium.com +ads.bluemountain.com +ads.bluesq.com +ads.bninews.com +ads.bnmedia.com +ads.boardtracker.com +ads.boerse-express.com +ads.bondage.com +ads.bonniercorp.com +ads.bonnint.net +adsbookie.com +ads.bootcampmedia.com +ads.boursorama.com +adsbox.detik.com +ads.box.sk +ads.boylesports.com +ads.brabys.com +ads.brandeins.de +ads.brand.net +ads.brazzers.com +ads.bridgetrack.com +ads.bridgetrack.com.edgesuite.net +ads.britishexpats.com +ads.bsplayer.com +ads.bta.bg +adsbtrk.com +ads.bttbgroup.com +ads.btv.bg +ads.buljobs.bg +ads.bumq.com +ads.burgasinfo.com +ads.buscape.com.br +ads.businessclick.com +ads.businessclick.pl +ads.businessweek.com +adsby.bidtheatre.com +adsby.klikki.com +ads-by.madadsmedia.com +adsby.webtraffic.se +ads-by.yieldselect.com +adscale.de +ads.calgarystampede.com +ads.calgarysun.com +ads.callofdutyblackopsforum.net +adscampaign.net +ads.camrecord.com +ads.canalblog.com +ads.canoe.ca +ads.captifymedia.com +ads.cardea.se +ads.cardplayer.com +ads.carltononline.com +ads.carocean.co.uk +ads.cars.com +ads.casinocity.com +ads.casumoaffiliates.com +ads.catholic.org +ads.cavello.com +ads.cbc.ca +ads.cc +ads.cc-dt.com +ads.cdfreaks.com +ads.cdnow.com +ads.cdnslate.com +ads.cdrinfo.com +ads.celtra.com +adscendmedia.com +ads.centraliprom.com +ads.cgchannel.com +ads.cgnetworks.com +ads.chalomumbai.com +ads.champs-elysees.com +ads.chango.ca +ads.chango.com +ads.channel4.com +ads.chargeads.com +ads.checkm8.co.za +adschimp.com +ads.china.com +ads.chipcenter.com +adscholar.com +ads.chumcity.com +adscience.nl +ads.cinemaden.com +ads.cineville.nl +ads.city24.ee +ads.cjonline.com +ads.clamav.net +ads.clara.net +ads.clearchannel.com +ads.cleveland.com +ads.clickability.com +ads.clickad.com.pl +ads.clickagents.com +ads-click.com +ads.clickhouse.com +adsclick.qq.com +ads.clicksor.cn +ads.clicksor.com +ads.clickthru.net +ads.clicmanager.fr +ads.clipconverter.cc +ads.clovenetwork.com +ads.clubz.bg +ads.clubzone.com +ads.cluster01.oasis.zmh.zope.net +ads.cmediaworld.com +ads.cmg.valueclick.net +ads.cnn.com +ads.cnngo.com +ads.cobrad.com +ads.co.com +ads-codes.net +ads.collegclub.com +ads.collegehumor.com +ads.collegemix.com +ads-colruytgroup.adhese.com +ads.com.com +ads.comediagroup.hu +ads.comeon.com +ads.comicbookresources.com +ads.comperia.pl +ads.consumeraffairs.com +ads.contactmusic.com +ads.contentabc.com +ads.contextweb.com +ads-cool.pro +ads.coopson.com +ads.corusradionetwork.com +ads.courierpostonline.com +adscpm.com +ads.cpsgsoftware.com +ads.cpxcenter.com +ads.cpxinteractive.com +ads.cracked.com +ads.crakmedia.com +ads.crapville.com +ads.crawler.com +ads.creativematch.com +ads.creative-serving.com +ads.cricbuzz.com +ads.crisppremium.com +ads.crosscut.com +ads.crossworxs.eu +ads.ctvdigital.net +ads.currantbun.com +ads.cursorinfo.co.il +ads.cvut.cz +ads.cyberfight.ru +ads.cybersales.cz +ads.cybertrader.com +ads.dada.it +ads.dailystar.com.lb +ads.danworld.net +adsdaq.com +ads.darikweb.com +ads.darkhardware.com +ads.databrainz.com +ads.datinggold.com +ads.datingyes.com +ads.dazoot.ro +ads.dbforums.com +ads.ddj.com +ads.dealnews.com +ads.dedicatedmedia.com +ads.deliads.com +ads.deliverimp.com +ads.deltha.hu +ads.democratandchronicle.com +ads.dennisnet.co.uk +ads.depositfiles.com +ads.designboom.com +ads.designtaxi.com +ads.desktopscans.com +ads.desmoinesregister.com +ads-de.spray.net +ads.detelefoongids.nl +ads.developershed.com +ads.deviantart.com +ads.devicebondage.com +ads-dev.youporn.com +ads.dichtbij.adhese.com +ads.digitalacre.com +ads.digitalalchemy.tv +ads.digital-digest.com +ads.digitalhealthcare.com +ads.digitalmedianet.com +ads.digitalpoint.com +ads.digitalthrottle.com +ads.dijitalvarliklar.com +ads.dimcab.com +ads.dir.bg +ads.directcorp.de +ads.directionsmag.com +ads-direct.prodigy.net +ads.discovery.com +ads.discreetad.com +ads.dk +adsdk.com +ads.dkelseymedia.com +ads.d-msquared.com +ads.doclix.com +ads.doctors.co.il +ads.domainbg.com +ads.domain.com +ads.domainoptions.net +ads.domeus.com +ads.dontpanicmedia.com +ads.dothads.com +ads.dotomi.com +ads.double.net +ads.doubleviking.com +ads.downloadaccelerator.com +ads.draugas.lt +ads.drf.com +ads.drivelinemedia.com +ads.drugs.com +ads.dumpalink.com +ads.dynamic-media.org +ads.eagletribune.com +adsearch.adkontekst.pl +ad.search.ch +ad.searchhound.com +ad.searchina.ne.jp +adsearch.pl +adsearch.wp.pl +adsearch.www1.biz +ads.easy-forex.com +ads.eatinparis.com +ads.eccentrix.com +ads.ecircles.com +ads.economist.com +ads.ecosalon.com +ads.ecrush.com +ads.edbindex.dk +ads.edipresse.pl +ads.edirectme.com +ad.se.doubleclick.net +ads.e-go.gr +ads.egrana.com.br +ads.ehealthcaresolutions.com +ads.einmedia.com +ads.eircom.net +adselect.nuggad.net +ads.electrocelt.com +ads.elitetrader.com +ads.elmaz.com +ads.emeraldcoast.com +ads.emirates.net.ae +ads.empoweringmedia.net +ads.emqus.com +adsend.de +ads.energy-torrent.com +ads.enliven.com +ads.enrd.co +adsense.clicking.com.tw +ad.sensismediasmart.com +ad.sensismediasmart.com.au +adsentnetwork.com +ads.epi.es +ads.e-planning.net +ads.epltalk.com +ads.eqads.com +ads.ereklama.mk +ads.ere.net +adserer.ihigh.com +ads.ero-advertising.com +ads.erotism.com +ads.ersamedia.ch +adserv001.adtech.de +adserv001.adtech.fr +adserv001.adtech.us +adserv002.adtech.de +adserv002.adtech.fr +adserv002.adtech.us +adserv003.adtech.de +adserv003.adtech.fr +adserv003.adtech.us +adserv004.adtech.de +adserv004.adtech.fr +adserv004.adtech.us +adserv005.adtech.de +adserv005.adtech.fr +adserv005.adtech.us +adserv006.adtech.de +adserv006.adtech.fr +adserv006.adtech.us +adserv007.adtech.de +adserv007.adtech.fr +adserv007.adtech.us +adserv008.adtech.de +adserv008.adtech.fr +adserv008.adtech.us +adserv2.bravenet.com +adserv2.meritdesigns.com +adserv.adbonus.com +adserv.aip.org +adservant.guj.de +adserv.bravenet.com +adserv.bulletinmarketing.com +adserve5.nikkeibp.co.jp +adserve.adtoll.com +adserve.advertising.com +adserve.ams.rhythmxchange.com +adserve.canadawidemagazines.com +adserve.city-ad.com +adserve.cpmba.se +adserve.donanimhaber.com +adserve.doteasy.com +adserve-east.technologygeeks.com +adserve.ehpub.com +adserve.gossipgirls.com +adserve.kikizo.com +adserve.mizzenmedia.com +adserv.entriq.net +adserve.podaddies.com +adserve.postrelease.com +adserve.profit-smart.com +adserver01.ancestry.com +adserver01.de +adserver.100free.com +adserver.163.com +adserver1.adbrands.co.il +adserver1.adserver.com.pl +adserver1.adtech.com.tr +adserver1.backbeatmedia.com +adserver1.economist.com +adserver1.eudora.com +adserver1.harvestadsdepot.com +adserver1.hookyouup.com +adserver1-images.backbeatmedia.com +adserver1.isohunt.com +adserver1.lokitorrent.com +adserver1.mediainsight.de +adserver1.mindshare.de +adserver1.ogilvy-interactive.de +adserver1.realtracker.com +adserver1.sonymusiceurope.com +adserver1.teracent.net +adserver1.wmads.com +adserver.2618.com +adserver2.adserver.com.pl +adserver2.atman.pl +adserver2.blueadvertise.com +adserver2.christianitytoday.com +adserver2.condenast.co.uk +adserver2.creative.com +adserver2.eudora.com +adserver2.exgfnetwork.com +adserver2.goals365.com +adserver-2.ig.com.br +adserver2.mediainsight.de +adserver2.mindshare.de +adserver2.news-journalonline.com +adserver2.popdata.de +adserver2.realtracker.com +adserver2.teracent.net +adserver.3digit.de +adserver3.eudora.com +adserver-3.ig.com.br +adserver.43plc.com +adserver.4clicks.org +adserver4.eudora.com +adserver4.fluent.ltd.uk +adserver-4.ig.com.br +adserver-5.ig.com.br +adserver.71i.de +adserver9.contextad.com +adserver.abv.bg +adserver.ad-it.dk +adserver.adreactor.com +adserver.adremedy.com +adserver.ads360.com +adserver.ads.com.ph +adserver.adserver.com.pl +adserver.adsimsar.net +adserver.adsincontext.com +adserver.adtech.de +adserver.adtech.fr +adserver.adtech.us +adserver.adtechus.com +adserver.adultfriendfinder.com +adserver.advertisespace.com +adserver.advertist.com +adserver.affiliatemg.com +adserver.affiliation.com +adserver.aidameter.com +adserver.aim4media.com +adserver.a.in.monster.com +adserver.airmiles.ca +adserver.akqa.net +adserver.allheadlinenews.com +adserver.alt.com +adserver.amna.gr +adserver.amnews.com +adserver.ancestry.com +adserver.anemo.com +adserver.anm.co.uk +adserver.aol.fr +adserver.archant.co.uk +adserver.artempireindustries.com +adserver.arttoday.com +adserver-as.adtech.advertising.com +adserver.asiafriendfinder.com +adserver.atari.net +adserverb.conjelco.com +adserver.betandwin.de +adserver.billiger-surfen.de +adserver.billiger-telefonieren.de +adserver.bing.com +adserver.bizhat.com +adserver.bizland-inc.net +adserver.bloodhorse.com +adserver.bluereactor.com +adserver.bluereactor.net +adserver.bluewin.ch +adserver.bondage.com +adserver.borsaitaliana.it +adserver.borsonline.hu +adserver.break-even.it +adserver.buttonware.com +adserver.buttonware.net +adserver.cams.com +adserver.cantv.net +adserverc.cliipa.com +adserver.cebu-online.com +adserver.cheatplanet.com +adserver.chickclick.com +adserver.click4cash.de +adserver.clix.pt +adserver.clubic.com +adserver.clubs1.bg +adserver.clundressed.com +adserver.co.il +adserver.colleges.com +adserver.com +adserver.comparatel.fr +adserver.com-solutions.com +adserver.conjelco.com +adserver.corusradionetwork.com +ad-server.co.za +adserver.creative-asia.com +adserver.creativeinspire.com +adserver.dayrates.com +adserver.dbusiness.com +adserver.developersnetwork.com +adserver.devx.com +adserver.digitalmedianet.com +adserver.digitalpartners.com +adserver.digitoday.com +adserver.directcorp.de +adserver.directforce.com +adserver.directforce.net +adserver.dnps.com +adserver.dotcommedia.de +adserver.dotmusic.com +adserver-e7.com +adserver.economic.bg +adserver.eham.net +adserver.emapadserver.com +adserver.emporis.com +adserver.emulation64.com +adserver-espnet.sportszone.net +adserver-eu.adtech.advertising.com +adserver.eudora.com +adserver.euronics.de +adserver.eva2000.com +adserver.exgfnetwork.com +adserver.exoticads.com +adserver.expatica.nxs.nl +adserver.eyeonx.ch +adserver.ezzhosting.com +adserver.filefront.com +adserver.finditquick.com +adserver.fixionmedia.com +adserver.flossiemediagroup.com +adserver.fmpub.net +adserver.fr.adtech.de +adserver.freecity.de +adserver.freenet.de +adserver.friendfinder.com +adserver.gadu-gadu.pl +adserver.gallerytrafficservice.com +adserver.gameparty.net +adserver.gamesquad.net +adserver.garden.com +adserver.gecce.com +adserver.gorillanation.com +adserver.gr +ad-server.gulasidorna.se +adserver.gunaxin.com +adserver.hardsextube.com +adserver.hardwareanalysis.com +adserver.harktheherald.com +adserver.harvestadsdepot.com +adserver.hellasnet.gr +adserver.hg-computer.de +adserver.hi-m.de +adserver.hispanoclick.com +adserver.hispavista.com +adserver.hk.outblaze.com +adserver.home.pl +adserver.hostinteractive.com +adserver.html.it +adserver.humanux.com +adserver.hwupgrade.it +adserver.icmedienhaus.de +adserver.ifmagazine.com +adserver.ig.com.br +adserver.ign.com +adserver.ilmessaggero.it +adserver.ilounge.com +adserver-images.adikteev.com +adserver.infinit.net +adserver.infotiger.com +adserver.interfree.it +adserver.inwind.it +adserver.iprom.net +adserver.irishwebmasterforum.com +adserver.ision.de +adserver.isonews.com +adserver.ixm.co.uk +adserver.jacotei.com.br +adserver.janes.com +adserver.janesguide.com +adserver.janes.net +adserver.janes.org +adserver.jolt.co.uk +adserver.journalinteractive.com +adserver.juicyads.com +adserver.kcilink.com +adserver.killeraces.com +adserver.kimia.es +adserver.kissfm.ro +adserver.kontextua.com +adserver.kylemedia.com +adserver.lanacion.com.ar +adserver.lanepress.com +adserver.latimes.com +adserver.legacy-network.com +adserver.libero.it +adserver.linktrader.co.uk +adserver.livejournal.com +adserver-live.yoc.mobi +adserver.lonuncavisto.com +adserver.lostreality.com +adserver.lunarpages.com +adserver.lycos.co.jp +adserver.m2kcore.com +adserver.magazyn.pl +adserver.matchcraft.com +adserver.merc.com +adserver.merciless.localstars.com +adserver.millionairemate.com +adserver.mindshare.de +adserver.mobsmith.com +adserver.moitepari.bg +adserver.monster.com +adserver.monstersandcritics.com +adserver.motonews.pl +adserver.myownemail.com +adserver.netcollex.co.uk +adserver.netcreators.nl +adserver.netshelter.net +adserver.newdigitalgroup.com +adserver.newmassmedia.net +adserver.news.com +adserver.news.com.au +adserver.news-journalonline.com +adserver.newtimes.com +adserver.ngz-network.de +adserver.nydailynews.com +adserver.nzoom.com +adserver.o2.pl +adserver.oddschecker.com +adserver.omroepflevoland.nl +adserver.omroepzeeland.nl +adserver.online-tech.com +adserver.onwisconsin.com +adserver.outpersonals.com +ad-serverparc.nl +adserver.passion.com +adserver.phatmax.net +adserver.phillyburbs.com +adserver.pl +adserver.planet-multiplayer.de +adserver.playtv.fr +adserver.plhb.com +adserverplus.com +adserver.pollstar.com +adserver.portalofevil.com +adserver.portal.pl +adserver.portugalmail.net +adserver.portugalmail.pt +adserver.powerlinks.com +adserver.pressboard.ca +adserver.pressflex.com +adserver.prodigy.net +adserver.proteinos.com +adserver.radio-canada.ca +adserver.ratestar.net +adserver.reklamstore.com +adserver.revver.com +adserver.ro +adserver.rtvutrechtreclame.nl +adserver.sabc.co.za +adserver.sabcnews.co.za +adserver.sandbox.cxad.cxense.com +adserver.sanomawsoy.fi +adserver.saxonsoft.hu +adserver.sciflicks.com +adserver.scmp.com +adserver.securityfocus.com +adserver.seniorfriendfinder.com +adserver.sextracker.com +adserver.sharewareonline.com +adserver.singnet.com +adserver.sitesense.com +adserver.sl.kharkov.ua +adserver.smashtv.com +adserver.snowball.com +adserver.softonic.com +adserver.softure.com +adserver.softwareonline.com +adserver.soloserver.com +adserversolutions.com +adserver.spankaway.com +adserver.spctl.com +adserver.spritmonitor.de +adserver.startnow.com +adserver.swiatobrazu.pl +adserver.synergetic.de +adserver.tappsgames.com +adserver.telalink.net +adserver.tele.net +adserver.te.pt +adserver.teracent.net +adserver.terra.com.br +adserver.terra.es +adserver.theknot.com +adserver.theonering.net +adserver.thirty4.com +adserver.thisislondon.co.uk +adserver.tilted.net +adserver.tqs.ca +adserver.track-star.com +adserver.trader.ca +adserver.trafficsyndicate.com +adserver.trb.com +adserver.tribuneinteractive.com +adserver.trojaner-info.de +adserver.tsgadv.com +adserver.tulsaworld.com +adserver.tvcatchup.com +adserver.tweakers.net +adserver.twitpic.com +adserver.ubiyoo.com +adserver.ugo.com +adserver.ugo.nl +adserver.ukplus.co.uk +adserver.unityads.unity3d.com +adserver.uproxx.com +adserver-us.adtech.advertising.com +adserver.usermagnet.com +adserverus.info +adserver.van.net +adserver.veruta.com +adserver.viagogo.com +adserver.virginmedia.com +adserver.virgin.net +adserver.virtualminds.nl +adserver.virtuous.co.uk +adserver-voice-online.co.uk +adserver.voir.ca +adserver.weakgame.com +adserver.webads.co.uk +adserver.webads.it +adserver.webads.nl +adserver.wemnet.nl +adserver.wietforum.nl +adserver.x3.hu +adserver.xpanama.net +adserver.ya.com +adserver.yahoo.com +adserver.zaz.com.br +adserver.zeads.com +adserve.shopzilla.com +adserve.splicetoday.com +adserve.viaarena.com +adserv.evo-x.de +adserv.free6.com +adserv.gamezone.de +adserv.geocomm.com +adserv.iafrica.com +adservice.aliexpress.com +adservicedomain.info +adservices.google.com +adservices.picadmedia.com +adservicestats.com +ad-servicestats.net +adserv.impactengine.com +adserving03.epi.es +adserving.autotrader.com +adservingcentral.com +adserving.cpxinteractive.com +adserving.favorit-network.com +adserving.fyi-marketing.com +adservinginternational.com +adserving.muppetism.com +adserving.unibet.com +adserv.internetfuel.com +adserv.jupiter.com +adserv.lwmn.net +adserv.maineguide.com +adserv.mako.co.il +adservme.com +adserv.muchosucko.com +adserv.mywebtimes.com +adserv.net +adservone.com +adserv.pitchforkmedia.com +adserv.postbulletin.com +adserv.qconline.com +adserv.quality-channel.de +adserv.roundrockmedia.com +adserv.usps.com +adserwer.afilo.pl +adserwer.intercon.pl +adserwer.o2.pl +ads.espn.adsonar.com +ad.sethads.info +ads.eudora.com +ads.eu.e-planning.net +ads.eu.msn.com +ads.euniverseads.com +adseu.novem.pl +ads.eurogamer.net +ads.evtv1.com +ads.exactdrive.com +ads.exactseek.com +ads.examiner.net +ad.sexcount.de +ads.exdynsrv.com +ads.exhedra.com +ads.exoclick.com +ads.exosrv.com +ads.expat-blog.biz +ads.expedia.com +ads.expekt.com +ads.eyeonx.ch +ads.ezboard.com +ad.seznam.cz +adsfac.eu +adsfac.net +ads.factorymedia.com +adsfac.us +ads.fairfax.com.au +ads.fark.com +ads.faxo.com +ads.fayettevillenc.com +adsfeed3.brabys.co.za +ads.ferianc.com +ads.fiat-bg.org +ads.fidelity-media.com +ads.filecloud.com +ads.fileindexer.com +adsfile.qq.com +ads.filmup.com +ads.financialcontent.com +ads.finzoom.com.tr +ads.first-response.be +ads.flabber.nl +ads.flashgames247.com +ads.fling.com +ads.flooble.com +ads.floridatoday.com +ads.flurry.com +ads.fmwinc.com +ads.focus-news.net +ads.fool.com +ads.footballmedia.com +ads.footymad.net +ads.fooyoh.com +ads.fora.tv +ads.forbes.com +ads.forbes.net +ads.forium.de +ads.fortunecity.com +ads.fotosidan.se +ads.fox.com +ads.foxkidseurope.net +ads.foxnetworks.com +ads.foxnews.com +ads.fredericksburg.com +ads.freebannertrade.com +ads.freecaster.tv +ads.freecity.de +ads.freeonlinegames.com +ads.freeskreen.com +ads.fresh.bg +ads.freshmeat.net +adsfresh.men +ads.fresnobee.com +ads.friendfinder.com +ads.ft.com +ads.fuckingmachines.com +ads.fuelo.net +ads.fulldls.com +ads.fulltiltpoker.com +ads.fuzzster.com +ads.gadget.ro +ads.gamblinghit.com +ads.gamecity.net +ads.gamecopyworld.no +ads.gameinformer.com +ads.gamelink.com +ads.game.net +ads.gamershell.com +ads.gamersmedia.com +ads.gamesbannernet.com +ads.gameservers.com +ads.gamespy.com +ads.gamespyid.com +ads.gamigo.de +ads.gaming-universe.de +ads.gamned.com +adsgangsta.com +ads.garga.biz +ads.gateway.bg +ads.gateway.com +ads.gawker.com +ad.sgdgjarfpp123.com +ad.sg.doubleclick.net +ads.geekswithblogs.net +adsgen.bangbros.com +ads.genericlink.com +ads.geornmd.net +ads.germanfriendfinder.com +ads.gettools.com +ads.ghettotube.com +ads.gigaom.com.php5-12.websitetestlink.com +ads.givemegay.com +ads.gladen.bg +ads.glasove.com +ads.glispa.com +ads.globeandmail.com +ads.globescale.com +ads.globo.com +ads.gmg.valueclick.net +ads.gmodules.com +ads.god.co.uk +ads.godlikeproductions.com +ads.gofuckyourself.com +ads.gold +ads.golfweek.com +ads.goodreads.com +ads.gorillanation.com +ads.gorillavid.in +ads.goyk.com +ads.gplusmedia.com +ads.gradfinder.com +ads.granadamedia.com +ads.gravytrainproductions.com +ads.greenbaypressgazette.com +ads.greenerworldmedia.com +ads.greenvilleonline.com +ads.grindinggears.com +ads.groundspeak.com +ads.groupcommerce.com +adsgroup.qq.com +ads.gsm-exchange.com +ads.gsmexchange.com +ads.guardian.co.uk +ads.guardianunlimited.co.uk +ads.gulflive.com +ads.gumgum.com +ads.gunaxin.com +ads.guru3d.com +ads.gusanito.com +ads.h2porn.com +ads.haber3.com +ads.haber7.net +ads.haberler.com +ads.halogennetwork.com +ads.hamptonroads.com +ads.hamtonroads.com +ads.happyidiots.nl +ads.hardwaresecrets.com +ads.hardwarezone.com +adsharenetwork.com +ad.sharethis.com +ads.harpers.org +ads.haskovo.net +ads.havenhomemedia.com +ads.hbv.de +ads.healthline.com +ads.hearstmags.com +ads.heartlight.org +ads.heias.com +ads.herald-mail.com +ads.heraldnet.com +ads.heraldonline.com +ads.heraldsun.com +ads.heroldonline.com +ads.he.valueclick.net +ads.hexun.com +ads.hicomm.bg +ads.hideyourarms.com +ads.highdefdigest.com +ads.hitbox.com +ads.hitcents.com +ads-hl.noktamedya.com.tr +ads.hlwd.valueclick.net +adshmct.qq.com +adshmmsg.qq.com +ads.hobyto.com +ads.hogtied.com +ads.hollandsentinel.com +ads.hollywood.com +ads.hookedmediagroup.com +ads.hooqy.com +ads.hornypharaoh.com +ads.horsehero.com +ads.horyzon-media.com +adshost1.com +ads.host.camz.com +ads.hosting.vcmedia.vn +ads.hotarena.net +ads.hothardware.com +ad.showbizz.net +adshow.it168.com +adshufffle.com +ads.hulu.com +ads.hulu.com.edgesuite.net +ads.humorbua.no +ads.hurra.de +ads.i12.de +ads.i33.com +ads.iafrica.com +ads.i-am-bored.com +ads.iawsnetwork.com +ads.ibest.com.br +ads.iboost.com +ads.ibox.bg +ads.ibryte.com +ads.ibtracking.com +ads.icn.bg +ads.icorp.ro +ads.icq.com +adside.com +ads.identads.com +ads.idgworldexpo.com +ad.si.doubleclick.net +ads.id-t.com +ads.iforex.com +ads.ign.com +adsignmaker.com +ads.ihaberadserver.com +ads.iknowthatgirl.com +ads.illuminatednation.com +ads.imaging-resource.com +ads.imarketservices.com +ads.imdb.com +ads.imeem.com +ad.simgames.net +ads.img.co.za +ads.img.globo.com +ads.imguol.com +ads.imgur.com +ads.immobilienscout24.de +ads.imposibil.ro +adsim.sabah.com.tr +ads.indeed.com +ads.indexinfo.org +ads.indiatimes.com +ads.indya.com +ads.indystar.com +ads.inedomedia.com +ads.inetdirectories.com +ads.inetinteractive.com +ads.inews.bg +ads.infi.net +adsinfo-active.biz +ads.infomediainc.com +ads-info-sec.biz +ads.infospace.com +adsinimages.com +ads.injersey.com +adsino24.com +ads.insidehighered.com +ads.insmarket.bg +ads.inspirestudio.net +ads.intellicast.com +ads.intergi.com +ads.internic.co.il +ads.inthesidebar.com +adsintl.starwave.com +ads.investingchannel.com +ads.inviziads.com +ads.iol.co.il +ads.ipowerweb.com +ads.ireel.com +ads.ireport.com +ads.isat-tech.com +ads.isoftmarketing.com +ads.isum.de +ad.sitelement.sk +ad.sitemaji.com +ads.itmcash.com +ads.itv.com +ads.itzdigital.com +ads.iwangmedia.com +ads.iwannawatch.to +ads.iwon.com +ads.jacksonville.com +ads.jeneauempire.com +ads.jenite.bg +ads.jetpackdigital.com +ads.jetphotos.net +ads.jewcy.com +ads.jewishfriendfinder.com +ads.jimworld.com +ads.jiwire.com +ads.jlisting.jp +ads.jobsite.co.uk +ads.joemonster.org +ads.joetec.net +ads.jo-games.com +ads.jokaroo.com +ads.jornadavirtual.com.mx +ads.jossip.com +ads.jpost.com +ads.jubii.dk +ads.juicyads.com +ads.juneauempire.com +ads.justhungry.com +ads.justpremium.nl +ads.justrelevant.com +ads.jwtt3.com +adsk2.co +ads.ka6tata.com +ads.kaktuz.net +ads.kaldata.com +ads.kanal3.bg +adskape.ru +ads.kartu.lt +ads.kazaa.com +ads.kelbymediagroup.com +ads.keywordblocks.com +ads.kickasstorrents.video +ads.kidssports.bg +ads.kinobox.cz +ads.kinxxx.com +ads.kiosked.com +ads.kixer.com +ads.kleinman.com +adsklick.de +ads.kmpads.com +ads.kokteyl.com +ads.kompass.com +ads.koreanfriendfinder.com +ads.kozmetika-bg.com +ads.krawall.de +ads.ksl.com +ads.kulinar.bg +ads.kure.tv +ads.kurir-info.rs +ads-kurir.providus.rs +ads.kyalon.net +adsland.men +ads.lanistaads.com +ads.laptop.bg +ad.slashgear.com +ads.layer-ad.org +ads.lehighvalleylive.com +ads.leo.org +ads.lesbianpersonals.com +ads.lfstmedia.com +ads.lifehealthpro.com +ads.lifesport.bg +ads.lilengine.com +ads.link4ads.com +ads.linkedin.com +ads.linki.nl +ads.linksponsor.com +ads.linktracking.net +ads.linuxfoundation.org +ads.linuxjournal.com +ads.linuxsecurity.com +ads.listingware.com +ads.list-universe.com +ads.live365.com +ads.livenation.com +ads.livepromotools.com +ads.livescore.com +ads.ljworld.com +ads.lmmob.com +ads.lnkworld.com +adsloads.com +ads.localnow.com +ads-local.sixapart.com +ads.localyokelmedia.com +ads.lovercash.com +ads.loveshack.org +ads.lubbockonline.com +ads.lucidmedia.com +ads.lucidmedia.com.gslb.com +ad.slutload.com +adslvfile.qq.com +adslvseed.qq.com +ads.lycos.com +ads.lycos-europe.com +ads.lzjl.com +ad.smaclick.com +ads.macnews.de +ads.macupdate.com +ads.madisonavenue.com +ads.madison.com +ads.magnetic.is +ads.mail3x.com +ads.mail.bg +ads.mail.com +ads.maksimum.net +ads.maleflixxx.tv +ads.mambocommunities.com +ads.manager.bg +ad.sma.punto.net +ads.marica.bg +ads.mariuana.it +adsmarket.com +ad.smartclip.net +adsmart.com +adsmart.co.uk +adsmart.net +ads.massinfra.nl +ads.masslive.com +ads.matiro.com +ads.matomymobile.com +ads.mcafee.com +ads.mdchoice.com +ads.mdotm.com +ads.mediaforge.com +ads.mediamayhemcorp.com +ads.mediaodyssey.com +ads.mediaturf.net +ads.mediatwo.com +ads.medienhaus.de +ads.mefeedia.com +ads.megaproxy.com +ads.meropar.jp +ads.metatron.co.il +ads.metblogs.com +ads.metropolis.co.jp +ads.mezimedia.com +adsm.gameforge.de +ads.mgnetwork.com +ads.miarroba.com +ads.mic.com +ads.millionairemate.com +ads.milliyet.cubecdn.net +ads.mindsetnetwork.com +ads.mindviz.com +ads.miniclip.com +ads.mininova.org +ads.mircx.com +ads.mixbg.net +ads.mixi.jp +ads.mixtraffic.com +ads.mlive.com +ads.mmania.com +ads.mm.ap.org +ads.mmediatags.com +ads.mndaily.com +ads.mnemosoft.com +ad.smni.com +ads.mobclix.com +ads.mobgold.com +ads.mobiledia.com +ads.mobilemarketer.com +ads.mobilityware.com +ads.mobygames.com +ads.moceanads.com +ads.modbee.com +ads.mofos.com +adsmogo.com +ads.moitesdelki.bg +ads.mondogames.com +ads.monetize-me.com +ads.money.bg +ads.monogram.sk +ads.monster.com +ads.mopub.com +ads.morningstar.com +ads.motor-forum.nl +ads.motormedia.nl +ads.mouseplanet.com +ads.movieweb.com +ads.mp3searchy.com +ads.mpm.com.mk +ads.mp.mydas.mobi +ads.mrgreen.com +ads.mrskin.com +ads.mrtones.com +ads.msn.com +adsm.soush.com +ads.mt.valueclick.net +ads.mtv.uol.com.br +ads.multimania.lycos.fr +ads.musiccity.com +ads.mustangworks.com +adsmws.cloudapp.net +ads.mybet.com +ads.mycricket.com +ads.myjizztube.com +ads.mylikes.com +ads.mysimon.com +ads.mytelus.com +ads.naftemporiki.gr +ads.nandomedia.com +ads.nationalgeographic.com +ads.nationalreview.com +ads.nationchannel.com +adsnative.com +ads.nativeinstruments.de +ads.ncm.com +ads.neg.bg +ads.neoseeker.com +ads.neowin.net +ads.nerve.com +ads.netbul.com +ads.netcommunities.com +ads.nethaber.com +ads.netinfo.bg +ads.netmechanic.com +ads.netrition.com +ads.netsol.com +ads.networkhm.com +ads.networksolutions.com +ads.networkwcs.net +ads.networldmedia.net +ads.neudesicmediagroup.com +ads.newcity.com +ads.newcitynet.com +ads.newdream.net +ads.newgrounds.com +adsnew.gsmarena.com +adsnew.internethaber.com +ads.newmedia.cz +ads.news359.bg +ads.newsbtc.com +ads.newsgeek.co.il +ads.newsint.co.uk +ads.newsminerextra.com +ads.newsobserver.com +ads.newsquest.co.uk +ads.newtention.net +ads.newtimes.com +adsnew.userfriendly.org +ads.ngenuity.com +ads.nicovideo.jp +ads.ninemsn.com.au +adsniper.ru +ads.nj.com +ads.nola.com +ads.nordichardware.com +ads.nordichardware.se +ads.northjersey.com +ads.novem.pl +ads.novinar.bg +ads.novsport.com +ads.nowrunning.com +ads.npr.valueclick.net +ads-nrc.adhese.com +ads.nrc.adhese.com +ads.ntadvice.com +ads.nudecards.com +ads.nudereviews.com +ads.n-ws.org +ads.nwsource.com +ads.nwsource.com.edgesuite.net +ads.nyi.net +ads.nyjournalnews.com +ads.nyootv.com +ads.nypost.com +ads.nytimes.com +ads.nyx.cz +ads.nzcity.co.nz +ads.o2.pl +ads.oddschecker.com +ads.offsidebet.com +adsoftware.com +ads.ogdenpubs.com +ads.okcimg.com +adsoldier.com +ads.ole.com +ads.olivebrandresponse.com +ads.olx.com +ads.omaha.com +adsomenoise.cdn01.rambla.be +adsonar.com +adson.awempire.com +ads.one.co.il +ads.onemodelplace.com +ads.oneplace.com +ads.o-networkaffiliates.com +ads.onlineathens.com +ads.online.ie +adsonlinemedia.com +ads.onlinevenditatio.space +ads.onvertise.com +ads.ookla.com +ads.open.pl +ads.opensubtitles.org +ads.optusnet.com.au +ads.oregonlive.com +ads.orsm.net +ads.osdn.com +ad-souk.com +ads.outpersonals.com +ads.oxymoronent.com +ad-space.net +adspace.ro +adspaces.ero-advertising.com +adspace.zaman.com.tr +ads.pandora.tv.net +ads.panoramtech.net +ads.paper.li +ads.papeteka.com +ads.parrysound.com +ads.partner2profit.com +ads.partystars.bg +ads.passion.com +ads.pastemagazine.com +ads.patch.com +ads.paxnet.co.kr +adsp.ciner.com.tr +ads.pcper.com +ads.pdxguide.com +ads-pebblemedia.adhese.com +ads.pebblemedia.adhese.com +ads.pe.com +adspeed.net +ads.peel.com +ads.peninsulaclarion.com +ads.pennet.com +ads.pennlive.com +ads.pennnet.com +ads.penny-arcade.com +ads.pennyweb.com +ads.people.com.cn +ads.people-group.net +ads.peoplespharmacy.com +ads.periodistadigital.com +ads.persgroep.adhese.com +ads.persgroep.net +ads.peteava.ro +ads.petvet.bg +ads.pg.valueclick.net +adsp.haberturk.com +ads.pheedo.com +ads.phillipsdata.us +ads.phillyadclub.com +ads.phillyburbs.com +ads.phonearena.com +ads.photosight.ru +ads.phpclasses.org +ads.pickmeup-ltd.com +ads.pictela.net +ad.spielothek.so +ads.pik.bg +ads.pilotonline.com +ads.pimdesign.org +ads.pinger.com +adspirit.de +adspirit.net +adspiro.pl +ads.pitchforkmedia.com +ads.pittsburghlive.com +ads.pixiq.com +ads.place1.com +ads.planet49.com +ads.planet-f1.com +ads.planet.nl +ads.plantyours.com +ads.playboy.bg +ads.playboy.com +adsplius.lt +ads.pni.com +ads.pno.net +ads.poconorecord.com +ads.pof.com +ads.pointroll.com +adsponse.de +ad-sponsor.com +ad.sponsoreo.com +ads.popfolkstars.com +ads.popularno.mk +ads.pornerbros.com +ads.portlandmercury.com +adsports.in +ads.postimees.ee +ads.powweb.com +ads.po-zdravidnes.com +ads.premiership.bg +ads.premiumnetwork.com +ads.premiumnetwork.net +ads.pressdemo.com +ads.pressflex.com +adspr.haber7.net +ads.pricescan.com +ads.primaryclick.com +ads.primeinteractive.net +ads.primissima.it +ads.printscr.com +ads.prisacom.com +ads.proboards.com +ads.profitsdeluxe.com +ads.profootballtalk.com +ads.program3.com +ads.pro-market.net +ads.pro-market.net.edgesuite.net +ads.propertycasualty360.com +ads.prospect.org +ads.proz.com +ads.pruc.org +ads.psd2html.com +adspserving.com +ads.publicdisgrace.com +ads.publicidad.net +ads.pubmatic.com +ads.pubsqrd.com +ads.purefuck.com +ads.pushplay.com +ads.p.veruta.com +ads.q1media.com +ads.qadserve.com +ads.qadservice.com +adsqqclick.qq.com +ads.queendom.com +ads.quicken.com +ads.quoka.de +adsr3pg.com.br +ads.rackshack.net +ads.racunalniske-novice.com +ads.radar.bg +ads.radiatemedia.com +ads.radioactive.se +adsradios.adswizz.com +ads.rampidads.com +ads.rasmussenreports.com +ads.ratemyprofessors.com +adsrc.bankrate.com +ads.rcgroups.com +ads.rcs.it +ads.rdstore.com +ads.realcastmedia.com +ads.realcities.com +ads.realmedia.com.br +ads.realmedia.de +ads.realtechnetwork.net +ads.reason.com +ads.recoletos.es +ads.reddit.com +ads.rediff.com +ads.redlightcenter.com +ads.redorbit.com +ads.redtube.com +ads.reduxmediagroup.com +ads.reembed.com +ads.referlocal.com +ads.reflexcash.com +ads.register.com +ads.reklamatik.com +ads.reklamlar.net +adsremote.scripps.com +adsremote.scrippsnetwork.com +adsremote.scrippsnetworks.com +ads.resoom.de +ads.retirementjobs.com +ads.returnpath.net +ads.revenews.com +ads.revenue.net +adsrevenue.net +ads.reviewcentre.com +ads.revsci.net +adsrich.qq.com +ads.right-ads.com +ads.rim.co.uk +ads.ripoffreport.com +ads-rm.looksmart.com +ads.rnmd.net +ads.roanoke.com +ads.rockstargames.com +ads.rodale.com +ads.rohea.com +ads.roiserver.com +ads-rolandgarros.com +ads.rol.ro +ads.rondomondo.com +ads.rootzoo.com +ads.rottentomatoes.com +ads-rouge.haber7.com +ads-roularta.adhese.com +ads.roularta.adhese.com +ads.rp-online.de +ads.rttnews.com +ads.rtvslo.si +ads.rubiconproject.com +ads.rude.com +ads.ruralpress.com +adsrv1.tapad.com +adsrv2.ihlassondakika.com +adsrv2.wilmingtonstar.com +adsrv.adplus.co.id +adsrv.ads.eniro.com +adsrv.advanced-television.tv +adsrv.bangbros.com +adsrv.bankrate.com +adsrv.deviantart.com +adsrv.dispatch.com +adsrv.eacdn.com +adsrv.ea.com +adsrv.emporis.com +adsrv.fashion.bg +adsrv.heraldtribune.com +adsrv.hpg.com.br +adsrv.iol.co.za +adsrv.lua.pl +adsrvmedia.adk2.co +adsrvmedia.adk2x.com +ad-srv.net +adsrv.news.com.au +adsrvr.com +adsrvr.org +adsrv.tuscaloosanews.com +adsrv.wilmingtonstar.com +ads.s3.sitepoint.com +ads.sabah.com.tr +ads.sacbee.com +adssafeprotected.com +ads.sagabg.net +ads.sanomalehtimedia.fi +ads.sapo.pt +ads.satyamonline.com +ads.savannahnow.com +ads.saymedia.com +ads.scabee.com +ads.schwabtrader.com +ads.scifi.com +adss.comeadvertisewithus.com +ads.scorecardresearch.com +ads.scott-sports.com +ads.scottusa.com +ads.search.bg +ads.seattletimes.com +ads.senddroid.com +ads.seniorfriendfinder.com +ads-seo.men +ads.seriouswheels.com +ads.servebom.com +ads.sexandsubmission.com +ads.sexforums.com +ads.sexier.com +ads.sexinyourcity.com +ads.sexspaces.com +ads.sfomedia.com +ads.sfusion.com +ads.shiftdelete.net +ads.shizmoo.com +ads.shoppingads.com +ads.shopstyle.com +ads.shorte.st +ads.shoutfile.com +ads.shovtvnet.com +ads.showtvnet.com +ads.sidekick.condenast.com +ads.sift.co.uk +ads.sify.com +ads.silive.com +ads.silverdisc.co.uk +ads.simpli.fi +ads.simtel.com +ads.simtel.net +ads.sina.com +ads.singlescash.com +ads.sitemeter.com +ads.sixapart.com +ads.skelbiu.lt +ads.skinected.com +ads.skupe.net +adssl01.adtech.de +adssl01.adtech.fr +adssl01.adtech.us +adssl02.adtech.de +adssl02.adtech.fr +adssl02.adtech.us +ads.sladur.com +ads.slava.bg +adssl-dc2.adtech.de +ads.slim.com +ads.sl.interpals.net +ads.smartclick.com +ads.smartclicks.com +ads.smartclicks.net +ads.smartdevicemedia.com +ads.smartolution.com +ads.smartshoppingads.de +ads.smowtion.com +ads.snowball.com +ads.socialreach.com +ads.socialtheater.com +ads.soft32.com +ads.softure.com +ads.sohh.com +ads.sol.no +ads.somd.com +ads.somethingawful.com +ads.songs.pk +ads.sonital.com +ads.sonobi.com +ads.space.com +adsspace.net +ads.specificclick.com +ads.specificmedia.com +ads.specificpop.com +ads.spilgames.com +ads.spintrade.com +ads.sport1.bg +ads.sportsblog.com +ads.sports.fr +ads.sptimes.com +ads.spymac.net +adssrv.nationmultimedia.com +ads.stackoverflow.com +ads.standartnews.com +ads.starbanner.com +ads.stardoll.com +ads.start.bg +adsstat.com +ads.static.adhood.com +ads.static.blip.tv +ads-stats.com +ads.stephensmedia.com +ads.stickyadstv.com +ads.stileproject.com +ads.stoiximan.gr +ads-stream.com +ads.strumarelax.com +ads.stupid.com +ads.suite6ixty6ix.com +ads.sumotorrent.com +ads.sun.com +ads.sunjournal.com +ads.sup.com +ads.superonline.com +ads.supplyframe.com +ads-support-info-notify.com +ads.svnt.com +ads.swiftnews.com +ads.switchboard.com +ads.sxx.com +ads.syracuse.com +ads.sysmesh.com +ads.tahono.com +ads.tarrobads.com +ad.stat.4u.pl +adstat.4u.pl +adstats.adviva.net +ads.tbs.com +ads.tdbank.com +ads.tdcanadatrust.com +ads-team-safety.esy.es +ads.teamyehey.com +ads.technoratimedia.com +ads.techtv.com +ads.techvibes.com +ads.techweb.com +ads.telecinco.es +ads.telegraaf.nl +ads.telegraph.co.uk +ads.tele.net +adstest.reklamstore.com +adstest.weather.com +adstextview.qq.com +ads.the15thinternet.com +ads.theawl.com +ads.thebugs.ws +ads.thecoolhunter.net +ads.thecrimson.com +ads.thefrisky.com +ads.thegauntlet.com +ads.theglobeandmail.com +ads.thehorse.com +ads.theindependent.com +ads.themoneytizer.com +ads.themovienation.com +ads.theolympian.com +ads.thesmokinggun.com +ads.thestar.com +ads.thestranger.com +ads.thetrainingofo.com +ads.thewebfreaks.com +adstil.indiatimes.com +ads.timesunion.com +ads.tiscali.com +ads.tiscali.fr +ads.tiscali.it +ads.tmcs.net +ads.tnt.tv +adstogo.com +adstome.com +ads.t-online.de +ads.top500.org +ads.top-banners.com +ads.top.bg +ads.topnovini.bg +ads.topwam.com +ads.toronto.com +ads.torrpedo.net +ads.totallyfreestuff.com +ads.townhall.com +adstrac.adk2x.com +ads.tracfonewireless.com +ads.tracking202.com +ads.trackitdown.net +ads.track.net +adstract.adk2x.com +ads.tradeads.eu +ads.trademe.co.nz +ads.traderonline.com +ads.traffichaus.com +ads.traffichunt.com +ads.trafficjunky.net +ads.trafficnews.bg +ads.trafficpimps.com +ads.traffikings.com +adstream.cardboardfish.com +adstreams.org +ads.treehugger.com +ads.tremorhub.com +ads.triada.bg +ads.tricityherald.com +ads.trinitymirror.co.uk +ads.tripican.com +ads.tripod.com +ads.tripod.lycos.co.uk +ads.tripod.lycos.de +ads.tripod.lycos.es +ads.tripod.lycos.it +ads.tripod.lycos.nl +ads.tripod.spray.se +ads.tromaville.com +ads-t.ru +ads.trutv.com +ads.tso.dennisnet.co.uk +ads.tucows.com +ads.tunein.com +ads.turkticaret.net +ads.tv7.sporta.bg +ads.tvtv.bg +ads.tw.adsonar.com +ads.twitter.com +ads.ucomics.com +ads.uigc.net +ads.ukclimbing.com +ads.uknetguide.co.uk +ads.ultimate-guitar.com +ads.ultimatesurrender.com +ads.uncrate.com +ads.undertone.com +ads.univision.com +ads.unixathome.org +ads.update.com +adsupply.com +ad.suprnova.org +ads.uproar.com +ads.up-value.de +ads.urbandictionary.com +ads.urlfan.com +ads.usatoday.com +ads.us.e-planning.ne +ads.us.e-planning.net +ads.usercash.com +ads.userfriendly.org +ads-us.pictela.net +ads.v3.com +ads.v3exchange.com +ads.vador.com +ads.vaildaily.com +ads.valuead.com +ads.vclick.vn +ads-v-darwin.hulu.com +ads.vegas.com +ads.veloxia.com +ads.ventivmedia.com +ads.veoh.com +ads.verkata.com +adsvert.com +ads.verticalresponse.com +ads.verticalscope.com +ads.vesperexchange.com +ads.vg.basefarm.net +ads.vgchartz.com +ads.viddler.com +ads.videoadex.com +ads.videoadvertising.com +ads.videobash.com +ads.videofen.com +ads.videohub.tv +ads.videosz.com +adsvids.com +adsvidsdouble.com +ads.vidsense.com +adsview2.qq.com +ads.viewlondon.co.uk +adsview.qq.com +ads.vimg.net +ads.vipcams.com +ads.virginislandsdailynews.com +ads.virtualcountries.com +ads.virtual-nights.com +ads.vjaffiliates.com +ads.vkushti.tv +ads.v-links.net +ads.vntsm.com +ads.vnuemedia.com +ads.vnumedia.com +ads.voyit.com +ads.vporn.com +adsvr.adknowledge.com +adsvr.deviantart.com +ads.vreme.bg +ads.vs.co +ads.vs.com +ads.vserv.mobi +ads.w3hoster.de +ads.w55c.net +ads.waframedia1.com +adswakeup.com +ads.wanadooregie.com +ads.waps.cn +ads.wapx.cn +ads.warcry.com +ads.watchmygf.net +ads.watershed-publishing.com +ads.wave.si +ads.weather.ca +ads.weather.com +ads.web1tv.de +ads.web21.com +ads.web.alwayson-network.com +ads.web.aol.com +ads.webattack.com +ads.webcafe.bg +ads.webcamclub.com +ads.web.compuserve.com +ads.webcoretech.com +ads.web.cs.com +ads.web.de +ads.webfeat.com +ads.webground.bg +ads.webheat.com +ads.webhosting.info +ads.webindia123.com +ads.webisleri.com +ads.webkinz.com +ads-web.mail.com +ads.webmasterpoint.org +ads.webmd.com +ads.webnet.advance.net +ads.websearch.com +ads.webshots.com +ads.websiteservices.com +ads.websponsors.com +adsweb.tiscali.cz +adsweb.tiscali.it +ads.webtools24.net +ads.weissinc.com +ads.wellsmedia.com +ads.weownthetraffic.com +ads.whaleads.com +ads.whi.co.nz +ads.whippedass.com +ads.whitelabelpros.com +ads.whoishostingthis.com +ads.wiezoekje.nl +ads.wikia.nocookie.net +ads.wikipartes.com +ads.wineenthusiast.com +ads.winsite.com +adswizz.com +ads.wnd.com +ads.worddictionary.co.uk +ads.worldstarhiphop.com +ads.worthplaying.com +ads.wunderground.com +ads.wwe.biz +ads.x10.com +ads.x10.net +ads.x17online.com +ads.xbiz.com +ads.xboxic.com +ads.xbox-scene.com +ads.xda-developers.com +adsx.greystripe.com +ads.xhamster.com +ads.xpg.com.br +ads.xposed.com +ads.xprofiles.com +ad.sxp.smartclip.net +ads.xtargeting.com +ads.xtra.ca +ads.xtra.co.nz +ads.xtramsn.co.nz +ads.xxxad.net +ads.xxxbunker.com +adsxyz.com +ads.y-0.net +ads.yadro.ru +ads.yahoo.com +ads.yam.com +ads.yankscash.com +ads.yap.yahoo.com +ads.yashi.com +ads.yeshanews.com +ads.yieldmedia.net +ads.yimg.com +ads.yimg.com.edgesuite.net +ads.yldmgrimg.net +adsy.lsipack.com +adsy.mail.bg +adsymptotic.com +adsyndication.msn.com +adsyndication.yelldirect.com +adsynergy.com +ads.ynot.com +ads.youporn.com +ads.yourfreedvds.com +ads.youtube.com +adsys.adk2x.com +adsys.insert.bg +adsyst.biz +adsystem.adbull.com +adsystem.simplemachines.org +adsys.townnews.com +ads.yvmads.com +ads.zajenata.bg +ads.zamunda.net +ads.zamunda.se +ads.zap2it.com +ads.zdnet.com +ads.zedo.com +ads.zeusclicks.com +ads.ztod.com +ads.zynga.com +adtactics.com +adtag.asiaone.com +adtag.msn.ca +adtago.s3.amazonaws.com +adtags-core-03-eu.adtags.pro +adtag.sympatico.ca +adtaily.com +adtaily.pl +adtangomedia.com +ad.tbn.ru +adtcp.ru +ad-tech.com +adtech.com +adtech.de +adtech.fr +ad.technoramedia.com +ad.technoratimedia.com +adtech.panthercustomer.com +adtech.sabitreklam.com +adtechs.com +adtech.us +adtechus.com +adtegrity.com +adtegrity.net +adtegrity.spinbox.net +ad.terra.com.mx +ad.terra.doubleclick.net +adtext.pl +ad.text.tbn.ru +ad.tgdaily.com +adtgs.adk2.co +adtgs.com +ad.th.doubleclick.net +ad.theequalground.info +ad.thehill.com +ad.thesimplecomplex.bg +ad.thetyee.ca +ad.thewheelof.com +ad.thinkmedia.cn +ad.thisav.com +adthis.com +ad.thoughtsondance.info +adthru.com +adtier.toboads.com +adtiger.de +adtigerpl.adspirit.net +adtiger.tk +ad.tiscali.com +adtlgc.com +adt.m7z.net +adtoll.com +adtology3.com +adtology.com +adtoma.com +ad.tom.com +ad.tomshardware.com +adtools2.amakings.com +adtools.gossipkings.com +adtools.matrix-cash.com +adtotal.pl +ad.touchnclick.co.kr +adtrace.org +adtrack1.waw.pl +adtrack.cimedia.net +adtracker.inmobi.com +adtracking.vinden.nl +adtrack.link.ch +ad.track.us.org +adtrack.voicestar.com +adtrade.net +adtrader.com +adtrade.ro +adtrading.de +adtradradservices.com +adtradr.com +ad.trafficmp.com +ad.trafficshop.com +ad.traffique.net +ad.traffmonster.info +adtrak.net +ad.trident.net +ad.triplemind.com +adtriplex.com +ad.turn.com +adturtle.biz +ad.tv2.no +ad.tw.doubleclick.net +ad.twitchguru.com +adtxt.prbn.ru +ad.ubnm.co.kr +ad-u.com +ad.uk.doubleclick.net +ad.uk.tangozebra.com +ad-uk.tiscali.com +a.dulderbulder.com +adult3dgames.com +adultactioncam.com +adultadvertising.com +adultadworld.com +adultadworld.directtrack.com +adultandteenchallengetexas.org +adultcomix.biz +adultdatingtest.worlddatingforum.com +adult.foxcounter.com +adultfreevideos.net +adultfriendfinder.com +adultfullhd.com +adultgalls.com +adultgatekeeper.com +adultimate.net +adultlinksco.com +adultmeetonline.info +adultmoda.com +adultmoneymakers.com +adultnet.in +adult.shengen.ru +adultwebhosting.info +adunit.cdn.auditude.com +adunit.chango.ca +adunit.chango.com +ad.u.nuggad.net +ad-up.com +ad.usatoday.com +ad.us.doubleclick.net +ad.userporn.com +adv0005.247realmedia.com +adv0035.247realmedia.com +adv.0tub.com +adv2.expres.ua +adv.440net.com +adv.440network.com +advabnr.com +adv.abv.bg +advaction.ru +adv.adgates.com +adv-adserver.com +adv.adtotal.pl +adv.adultpartnership.com +adv.adview.pl +adv.aftonbladet.se +adv.alice.it +adv.all-free-download.com +adv.alo.bg +ad.valuecalling.com +advanced-aluminium.co.uk +advancedcleaner.com +advancedigital-d.openx.net +advancedinput17.org +advancedmn.us.intellitxt.com +advancedsoftwaresupport.com +advance-group-2017.tk +advancehandling.dhdinc.info +advancemoversuae.bid +advance-ps.co.uk +advancetec.co.uk +advanceworks.cn +advancing-technology.com +adv.aport.ru +advariant.com +adv.arubamediamarketing.it +adv.bannercity.ru +adv-banner.libero.it +adv.bbanner.it +adv.blogupp.com +adv.bol.bg +adv.bookclubservices.ca +adv.casinopays.com +adv.consadbg.com +advconversion.com +adv.cooperhosting.net +adv.deltanews.bg +advdl.ammadv.it +adv.domino.it +adv.dontcrack.com +adv.drtuber.com +ad.ve.doubleclick.net +adv.elaana.com +ad.velmedia.net +adve.net +adveng.hiasys.com +adventory.com +adventurebuilders.in +adventureireland.co.uk +adventureparkcostarica.com +adveraction.pl +adver.pengyou.com +adverserve.austriacomplus.at +adverster.com +advert2.ananzi.co.za +advert.ananzi.co.za +advert.bayarea.com +advert-department-pages-info.twomini.com +advert.dyna.ultraweb.hu +adverterenbijnh.nl +adverterenbijsbs.nl +adverteren.vakmedianet.nl +advertere.zamunda.net +advert.eurotip.cz +advert.exaccess.ru +advertex.info +advert.funimation.com +advert.gameranger.com +advert.gittigidiyor.com +adverticum.com +adverticum.net +adverticus.de +advertise.com +advertiseireland.com +advertisement.bg +advertisementnl.112.2o7.net +advertisers.federatedmedia.net +advertiserurl.com +advertisespace.com +advertisingagent.com +advertising.aol.com +advertisingbanners.com +advertisingbay.com +advertising.bayoubuzz.com +advertising.bbcworldwide.com +advertisingbox.com +advertising.com +advertisingcom.122.2o7.net +advertising.dclux.com +advertising.embarcaderopublishing.com +advertising.entensity.net +advertising.ezanga.com +advertising.finditt.com +advertising.fussball-liveticker.eu +advertising.gfxartist.com +advertising.goldseek.com +advertising.guildlaunch.net +advertising.hiasys.com +advertising.illinimedia.com +advertising.ingame.de +advertising.justusboys.net +advertisingnemesis.com +advertising.online-media24.de +advertising.paltalk.com +advertising.rockettube.net +advertising.seenews.com +advertisingtag.net +advertising.thediabetesnetwork.com +advertising.wellpack.fr +advertising.yandex.ru +advertising.zenit.org +advertisment.unimatrix.si +advert.istanbul.net +advert.leo.org +advertlets.com +advert.livesportmedia.eu +advertmarket.com +advertmedia.de +advert.mediaswiss.rs +advertpro.investorvillage.com +advertpro.sitepoint.com +advertpro.ya.com +advert.rare.ru +advert.runescape.com +advert.ru.redtram.com +adverts.carltononline.com +adverts.creativemark.co.uk +adverts.digitalspy.co.uk +adverts.ecn.co.uk +advertserve.com +adverts.freeloader.com +adverts.im4ges.com +advertstream.com +advert-support-notify.info +advert.technews.bg +advert.travlang.com +advert.uloz.to +advert.uzmantv.com +advertwizard.com +adv.federalpost.ru +adv.freeonline.it +adv.freepornvs.com +adv.gazeta.pl +adv.gepime.com +adv.gratuito.st +adv.h2porn.com +adv.hwupgrade.it +advicead.hit.gemius.pl +advice-ads-cdn.vice.com +advice-ads.s3.amazonaws.com +ad-vice.biz +advice.hit.gemius.pl +adviceintl.com +advicelocal.mobi +advicepl.adocean.pl +ad.vidaroo.com +advideo.uimserv.net +adview.pl +adview.ppro.de +adv.ilsecoloxix.it +adv.ilsole24ore.it +adv-inc-net.com +ad.vippers.jp +ad.virtual-nights.com +adviseproltd.com +advisorfrance.com +advisormedia.cz +adviva.net +advizi.ru +adv.lampsplus.com +adv.livedoor.com +advloc.alice.it +advmaker.ru +adv.mangoadv.com +adv.marica.bg +adv.medicine.bg +adv.medscape.com +adv.merlin.co.il +adv-mydarkness.ggcorp.me +adv.netinfo.bg +adv.netshelter.net +adv.novinar.bg +advnt.com +ad-void.com +advokateg.ru +advombat.ru +adv-op2.joygames.me +adv.p2pbg.com +advplace.com +advplace.nuggad.net +adv.publy.net +adv.punto-informatico.it +adv.r7.com +adv.riza.it +adv.rockstar.bg +advrts-1.revenue-tracker.com +advs.adgorithms.com +advserver.xyz +adv.sexcounter.com +adv.speednet.bg +adv.starozagorci.com +advstat.xunlei.com +adv.strategy.it +adv.stznews.bg +adv.surinter.net +adv.svd.se +adv.swzone.it +adv.technews.bg +adv.tgadvapps.it +advt.webindia123.com +adv.uauaclub.it +ad.vurts.com +adv.virgilio.it +adv.webmd.com +adv.webvariant.com +adv.wisdom.bg +adv.wp.pl +adv.yo.cz +adv.zapal.ru +advzilla.com +adwaengg.com +ad.wanderlist.com +adware-guard.com +adware.kogaryu.com +adwareremovergold.com +adwarereport.us.intellitxt.com +ad.watch.impress.co.jp +ad.wavu.hu +ad.way.cz +adwcleaner.pl +adwcleaner.programmesetjeux.com +adwcleaner.telecharger.toggle.com +ad.weatherbug.com +adweb1.hornymatches.com +adweb2.hornymatches.com +ad.webisleri.com +ad.webprovider.com +adwenturehelp.club +ad.where.com +adwhirl.com +ad.wingads.com +ad.wiredvision.jp +adwitserver.com +adwitty.com +adword.coxslot.com +adwords2.paretologic.revenuewire.net +ad.words-google.com +adwordsgooglecouk.fectmoney.com +adwords.google.lloymlincs.com +adwords-gooogle-co--uk.fectmoney.com +adwords-gooogle-co-uk.fectmoney.com +ad-words.ru +adworks.rediff.com +adworldnetwork.com +adworx.at +adworx.be +adworx.nl +adwpro.adwareprof.hop.clickbank.net +ad.wretch.cc +adw.sapo.pt +ad.wsod.com +ad.wz.cz +adx.adform.net +adx.adosx.com +adx.adrenalinesk.sk +adx.adspirit.de +adx.allstar.cz +adx.atnext.com +adx.bixee.com +adx.chip.de +adx.darikweb.com +ad.xe.gr +adx.gainesvillesun.com +adx.gainesvillsun.com +adx.g.doubleclick.net +adx.groupstate.com +adx.hendersonvillenews.com +adx.heraldtribune.com +adx.ibibo.com +adxite-ads.com +adx.ocala.com +adxpansion.com +adxpose.com +adxprts.com +ad.xrea.com +adx.starbanner.com +adx.starnewsonline.com +adx.telegram.com +ad.xtendmedia.com +adx.theledger.com +adx.timesdaily.com +adxvalue.com +adyadashu.com +ad.yadro.ru +adyea.com +ad.yemeksepeti.com +ad.yieldlab.net +ad.yieldmanager.com +ad.yonhapnews.co.kr +adyoulike.omnitagjs.com +ad.yourmedia.com +ad-yt-bfp.doubleclick.net +adz2you.com +ad.za.doubleclick.net +adz.afterdawn.net +ad.zaman.com +ad.zaman.com.tr +ad.zanox.com +adzbazar.com +adzerg.com +adzerk.net +adzerk.s3.amazonaws.com +ad.zodera.hu +ad.zoglafi.info +ad.zompmedia.com +adzone.ro +adzones.com +adzone.stltoday.com +adzpower.com +adzservice.theday.com +ae1.com.pl +ae.adserver.yahoo.com +aeaer.com +ae.amgdgt.com +aed4uozi.com +aedilhaimushkiil.xyz +aedme.org.mx +aeep.com.au +ae-gb.mgid.com +aeghae5y.com +aeghie2.bid +aeghie6dien.info +aegis.anyhome.co.kr +aegis.secure-orders.net +ae.goodsblock.marketgid.com +aegt.com +aehistory.112.2o7.net +aeioukeyboard.com +aej5tua.top +aekaa5a.top +aekee1a.bid +a.ekolamis.com +aenie9u.bid +a.environmentaldefense.org +aeolustyreindia.com +aeonwarehousing.com +aerakis.com +aerfal.ga +aerfal.gq +aerialfiber.com +aerlingus2.solution.weborama.fr +aero2.ru +aeroarte.art.br +aerocom.co.id +aerogo.com +aerokits.net +aetnadentists.com +aetnaretireesplan.com +aetnaseniorprodcuts.com +aetv.112.2o7.net +a.evo.co.uk +aew9eigieng.info +aexp.demdex.net +aeysop.com +afa15.com.ne.kr +af-ad.co.uk +a.fandango.com +afantispy.com +a.farlex.com +afb-developers.pe.hu +afbellavista.com.ar +afb-services.96.lt +afcdongbac.edu.vn +af-cn.com +afcxvcrtytyq.at.ua +afdbande.cn +afdyfxfrwbfy.com +afe2.specificclick.net +afeez.leatherforgay.co.uk +afering.com +afe.specificclick.net +aff12.com +aff1.gittigidiyor.com +aff2.gittigidiyor.com +aff3.gittigidiyor.com +aff4.gittigidiyor.com +aff.adsurve.com +aff.adventory.com +affargenus.112.2o7.net +affbeat.com +affbuzzads.com +aff.foxtab.com +aff.gittigidiyor.com +affilcrtopcolle.112.2o7.net +affiliace.directtrack.com +affiliate.1800flowers.com +affiliate.2mdn.net +affiliate.a4dtracker.com +affiliate.ab1trk.com +affiliate.adgtracker.com +affiliate.affdirect.com +affiliate.aol.com +affiliate.baazee.com +affiliate.bfashion.com +affiliate.blucigs.com +affiliatecashpile.go2jump.org +affiliate.cfdebt.com +affiliate.doubleyourdating.com +affiliate.dtiserv.com +affiliate.exabytes.com.my +affiliate-fr.com +affiliate.fr.espotting.com +affiliate.friendlyduck.com +affiliatefuel.com +affiliatefuture.com +affiliate.gamestop.com +affiliate.gmtracker.com +affiliate.googleusercontent.com +affiliategroove.com +affiliate.gwmtracker.com +affiliate.hbytracker.com +affiliate.imperiaonline.org +affiliate.irotracker.com +affiliate.kitapyurdu.com +affiliate.mercola.com +affiliate.mlntracker.com +affiliate.mogs.com +affiliate.mymall.bg +affiliate.offgamers.com +affiliates.allposters.com +affiliates.arvixe.com +affiliates.babylon.com +affiliates.bet-at-home.com +affiliates.bhphotovideo.com +affiliates.digitalriver.com +affiliates.eblastengine.com +affiliates.genealogybank.com +affiliates.globat.com +affiliates.hookup.com +affiliatesign.com +affiliates.internationaljock.com +affiliates.lifeselector.com +affiliates.neteller.com +affiliates.pinnaclesports.com +affiliates.streamray.com +affiliates.thinkhost.net +affiliates.thrixxx.com +affiliates.ultrahosting.com +affiliates.upforitnetworks.com +affiliates.yourapprovaltracker.com +affiliate.techstats.net +affiliatetracking.com +affiliatetracking.net +affiliate.travelnow.com +affiliate.trk4.com +affiliate.viator.com +affiliatewindow.com +affiliation-france.com +affili.net +affimg.pop6.com +aff.indirdik.com +affinity.go2jump.org +affinity-xml.t.domdex.com +affitticesenatico.it +aff.naughtyconnect.com +affntwklnk.com +affordablefunfamilyvacations.com +affordablelocksmithgoldcoast.com.au +affordablewebsitesandmobileapps.com +afform.co.uk +affpartners.com +aff.primaryads.com +aff.promodeals.nl +affrh2015.com +affrh2019.com +affrh2023.com +aff.ringtonepartner.com +aff.shopmania.bg +aff.summercart.com +aff.tagcdn.com +afftrack001.com +afftrack.com +afftracking.justanswer.com +af-gb.marketgid.com +afi.adocean.pl +afilo.pl +afilv.adocean.pl +afinder.oewabox.at +afisz24.eu +afive.net +afkarehroshan.com +aflam0.com +aflameministryconsulting.com +afmuseum.com +afoakomfilmproject.com +afo.armandocamacho.com +afobal.cl +afora.ru +a.forkitz.com +a.fox.com +afp.qiyi.com +afraidtoask.us.intellitxt.com +a.frcls.fr +afreecatv.megaplug.kr +african-forest.com +africanmango900.pl +africanmango.pl +afrikultureradio.com +afslankpillen2017nl.eu +afsoft.de +afteonbladet.se +afterdawn.us.intellitxt.com +afterforum.com +afterlabs.com +afterwords.com.au +aftrk.com +afunnygames.com +afx.tagcdn.com +afyondogapeyzaj.com +ag1.hitbox.com +aga.adsv-cuisines.com +agacebe.com.br +agadelha.com.br +agahinameh.com +againstgay.com +agamgreetingscom.112.2o7.net +agape-nireekshe.com +agapovdg.ru +agardomains.com +agareload.netne.net +agatameblekonkurs.pl +agb-auto-ricardo.ch +agbmcom.112.2o7.net +agecheckadult.com +agegreetings.112.2o7.net +agen189.xyz +agencia-heidelberg.de +agency.thinkalee.ca +agentaipan.com +agentcruisereview.com +agenziagranzotto.it +agevs.com +aggiornamento57586546464.altervista.org +aggressor.by +aghanyna.com +a.giantrealm.com +agiextrade.com +agisdayra.com +agitrotto.it +agkn.com +a.glcdn.co +a.global.msads.net +agmsnag.112.2o7.net +agnapla.vard-forum.ru +agneskazmierczak.com +agnieszkapudlo-dekoracje.pl +agnusanddora.com +a.goember.com +agraphics.gr +agrasainschool.com +agreda.pluto.ro +agreement4.gdmachinery.net +agreement7.gdmachinery.net +agricoladelsole.it +agricolturaweb.com +agriristorante.com +agri-show.co.za +agriturismoalberobello.it +agroadamek.pl +agroeconom.kz +agroluftbild.de +agronutrientes.com.mx +agropecuariasantaclara.com.br +agrotech-r.ru +agrouptravels.com +agrupacionmusicalmarbella.com +agsdevelopers.com +agsdigital.com.br +a.gsmarena.com +agsteier.com +agstracker.com +ag.tags.crwdcntrl.net +agtecnlogy.com +agttechhk.agttechnologies.com +aguiatrailers.com.br +aguileranude.1stok.com +agungberbagi.id +agwebshots.112.2o7.net +agwoan.com +agyahooag.112.2o7.net +ag.yieldoptimizer.com +agysya.ru +ahadoj.pe.hu +ahalogy.com +ahbddp.com +ahbn1.hitbox.com +ahbn2.hitbox.com +ahbn3.hitbox.com +ahbn4.hitbox.com +ahczwz.com +ahdqja.com +a.heavy-r.com +ahemanagementcustomizehethermultid.com +a.heretv.com +ah-gb.marketgid.com +ahgwebapp.com +ah-ha.com +ahhpjj.com +ahh-teens.com +ahipegllx.top +a.hirovivi.com +ahjhsl.com +ahlstorm.com +ahlswh.net +ahlxwh.com +ahmadmustaqim.staff.unja.ac.id +ahmadrabiu.com +ahmazon.de +ahmcretail.com +ahmedabadbycycle.com +ahmedabadcabs.in +ahmedashid.com +ahmhls.com +ahn2phee3oh.info +aholyghost.com +ahopofo.com +ahpeace.com +ahr13318.myjino.ru +a.hspvst.com +a.huluad.com +ahw4eih.top +ahwydljt.com +ahxldgy.com +ahzahg6ohb.com +ahzhaosheng.com.cn +ahzh-pv.com +ahzxy.com +ai062.insightexpress.com +ai078.insightexpressai.com +ai087.insightexpress.com +ai113.insightexpressai.com +ai125.insightexpressai.com +aiacb.com +aibg.hitbox.com +aibl.hitbox.com +aibolit24.ru +aics.hitbox.com +aidee2e.bid +aidessdesenfantsdelarue.com +aid-golf-golfdust-training.tabrays.com +a.idio.co +ai.direct-software.com +aidps.atdmt.com +aidu-ads.de +aidu.ivwbox.de +aigames.mobi +ai-gb.marketgid.com +aigunet.com +aihelen.net +ai.hitbox.com +aileronx.com +ailincey.com +ailvgo.com +aim4media.com +aimayangzhi.com +aimes.com +aimfar.solution.weborama.fr +aimg.haber3.com +aimonking.com +a.imonomy.com +aims-j.com +aimvicenzaspa.it +a.independent.co.uk +aini321.com +aintdoinshit.com +aio.lp.mydas.mobi +aipp-italia.it +aippnetworks.com +aipssngo.org +airai7f.top +airbnb.com.account.sdisigns.ca +airbnb.com-verifymembership.work +airbnb.com.westpeak.ca +airbnb.discount.nom.es +airbnb-secure.com +aircrack-ng.softonic.fr +aircraft.evote.cl +air-edem.ru +airfoundation.org.pk +air-freshener.co.za +airlandsea.info +airline-ticket.gloses.net +airmax-kupony.pl +airmaxshoes-2016.com +airmaxy-konkurs.coolpage.biz +airmore.co +airnetinfotech.com +airpb.com +air-plane-ticket.beesearch.info +airsoft10.com +airsourceheatpump.in +airtyrant.com +airzonafederal.org +ai.satevis.us +aiscaco.in +aistat.net +aitligold.tripod.com +a.itpro.co.uk +aitsngnuu.angelcities.com +aiui.hitbox.com +aivae2o.to +aivae2o.top +aive3bi.bid +aiw1ohz.top +aiwoxin.com +aixiao5.com +aj2shil.bid +aj.600z.com +a.jadizayo.com +aj.adjungle.com +ajaicorp.com +ajakbytak.pl +ajakkirj.spring-tns.net +a.jandolav.com +ajarixusuqux.com +ajbhsh.edu.bd +ajcclassifieds.com +ajc.us.intellitxt.com +aj.daniweb.com +ajewishgift.com +ajiaxadbap1.ddns.net +ajinomoto.ec +ajkjobportal.com +ajkzd9h.com +ajokeaday.com +ajpcongo.org +a.jquerycdn.co.il +aj-tuning-1220.de +a.jumptap.com +ajuntamentodastribos.com.br +ajusa.net +ajzl8090.com +ak1.abmr.net +ak1s.abmr.net +ak.5.p2l.info +aka.accortech.com +akaads-espn.starwave.com +akabambd.com +aka-cdn.adtech.de +aka-cdn.adtechus.com +aka-cdn-ns.adtech.de +aka-cdn-ns.adtechus.com +akademiagreya.pl +akademiazarabianiawinternecie.pl +akademigeridonusum.org +akademihalisaha.com +akademisokagi.com +akaflieg-sb.de +akama.com +akamai.invitemedia.com +akamai.smartadserver.com +akamai.t.axf8.net +akariyer.com +a.karmatrail.club +aka-root.com +akasc.com +akatracking.esearchvision.com +a.kaytri.com +akazoo.pl +akbartransportation.com +ak.buyservices.com +ak.cr +akdenizozalit.com +akdenizyildizi.com.tr +akekeahmet.duckdns.org +akelmak.com +a.kerg.net +ak-gb.marketgid.com +akhilbhartiyejainmahasabha.in +a.kickass.to +a.kickassunblock.net +akihabaranews.us.intellitxt.com +a.kik.bg +akilles.com +a.kilomansa.com +a.kilorama.com +ak.imgfarm.com +akirkpatrick.com +akissoo.com +akita.kz +a.klaviyo.com +ak.maxserving.com +ako.cc +a.komoona.com +akopert73.co.uk +akorenramizefendiyurdu.com +ak.p.openx.net +akprotocolservices.com +ak.quantcast.com +akrpublicschool.com +ak.sail-horizon.com +aksao.com +aksdk-images.adikteev.com +akshatadesigns.in +aksonural.ru +akstha.com.np +aktif.haberx.com +aktivator-windows10.blogspot.com +aktobe.xkaz.org +aktrack.pubmatic.com +aktualisieren-ricardo.ch +aktualizacjafacebooka.blogspot.com +akuhni.by +akunstfanpageee.plischeksfanpage.ga +akuoman.com +akusherok.ru +akvamaster.dp.ua +akzmaihd.net +al1.sharethis.com +al.5.p2l.info +alabamabackpage.com +alabamarehabs.net +alaeolithi.roninlife.ru +alainfranco.com +alakoso-est.com +alaksaair.com +alamariacea.rusjohn.ru +alamgirhossenjoy.com +alamosportbar.com +alanstrack.com +alarash.com +alarmobninsk.ru +alaskaaair.com +alatmusikislami.co.id +a.law.com +albamargroup.com +al-banatbordir.co.id +albanypowerexchange.com +albanytimesunion.122.2o7.net +alberdinmobiliaria.com.ar +albergoabruzzo.com +alberguecasaanita.com +alberhhehsh.com +albertaplaygroundsurfaces.com +albiondrugs.com +alboautotrasportatori.it +album-6587961-136748.tk +albumsuper.info +alchemyworldwide.tt.omtrdc.net +alchenomy.com +alclick.com +alcochemphil.com +alcoenterprises.com +alcohol-treatment.gloses.net +aldaniti.net +aldeafeliz.uy +aldersgatencsc.org +aldik.com +alecctv.com +alecrimatelie.com.br +ale-fotogragia.bo.pl +alegratka.eu +ale-gratka.pl +alegroup.info +alejandraandelliot.com +aleksandr-usov.com +alekseevec.ru +alemeitu.com +alenty.com +alertgooqle.com +alert-login-gmail.com +alert.mac-notification.com +alert.police-patrol-agent.com +alert-virus-infection.com +alessandraleone.com +alessiacorvica.altervista.org +aletabarker.com +alex2006.friko.pl +alexanderinteriorsanddesign.com +alexandria90.etcserver.com +alexa-silver.com +alexa-sitestats.s3.amazonaws.com +alexbellor.my.id +alexbensonship.com +alexey-gromov.ru +alex-fitnes.ru +alexianer-service.de +alexisphotography.gr +alexkreeger.com +alexlito-interiors.online +alexmaster23.ru +alfa9.com +alfa-img.com +alfaizan.org +alfalakgifts.com +alfa-medosmotr.ru +alfan.com.mx +alfapro.ru +alfarabipharmacy.com +alfateksolutions.com +alfathermengg.com +alfatraffic.com +alfaturturismorp.com.br +alfaurban.com +alf-img.com +algerianembassy.co.in +algharbeya.com +algodon.net +alhamdtravel.com.pk +alheraschool.com +ali59000.free.fr +alialibaba.bugs3.com +alibaba.com.dongbangchem.com +alibaba.login.com.barkurenerji.net +alibabaslots.com +alibaba.svstyle.com +alibabbaa.bugs3.com +alibachir.cm +alibaiiba.bugs3.com +alibestsale.com +alibiaba.bugs3.com +alicegallo72.x10host.com +alicevisanti.altervista.org +aliclonepro.xyz +aliecspres.com +alienmade.com +alienwheel.es +alienwheels.de +aliexpresscashback.club +alif-ba-ta.com +aliflament.com +alifruitjuice.biz +a.ligatus.com +a.ligatus.de +al-iglasses.com +alihadram.com +alihanmaron.com +aliipage.hostingsiteforfree.com +a.liktirov.com +alindad.altervista.org +alipromo.com +alisat.biz +alisatilsner.com +alishantea-tw.com +alissonluis-musico.sites.uol.com.br +alistair-h.com +alivechapelint.com +a.livesportmedia.eu +alive-ua.com +alive.us.intellitxt.com +alixrodwell.com +aljannah.id +aljassarengineering.com +aljazeera.kz +aljob.net +alkalifeph.fr +alkzonobel.com +all2cul.com +all2lnk.com +all4invest.info +all4invest.ru +all4marriage.in +all4spy.com +all-about-you-sxm.com +alladvantage.com +allagha.vardtorg.ru +all.alisatilsner.com +allamericanmadetoys.com +allaskme.com +allbdpaper.com +allbest-medicalbillingandcoding-deals.com +allboard.xobor.de +allbritton.122.2o7.net +allcandl.org +allcarselectric.us.intellitxt.com +allcredits.su +alldubai.biz +allegra.1.p2l.info +allegresse.nu +allegro.hit.gemius.pl +allegro-pl-login.comxa.com +allendesign.com.au +allenwireline.com +allergiques.com +allergy.1.p2l.info +allergycenter.info +allerinternett.tns-cs.net +allesohnegirls.net +allettosrestaurant.com +allfet.info +allfoodtabs.com +allforlove.de +allforminecraft.ru +allfortune777.biz +all-games-twepsh.atwebpages.com +allgetaways.us.intellitxt.com +allgroupglass.com +allhiphop.us.intellitxt.com +allhqpics.com +alliance2121.com +alliance.adbureau.net +alliancetechnologyservices.com +alliesinsurance.com +allinonlinemarketing.com +all-internet-security.com +allistonrealtors.com +allisto.rusjohn.ru +allknow.info +allkrim.com +allluki.ru +allmaster.net +allnews24.in +allnews.md +all-number.com +allonfour.ru +all.orfr.adgtw.orangeads.fr +allosponsor.com +alloysteel.ru +alloywheelrefurbishments.com +allpanelinstallers.com.au +allpdfmags.net +allphausa.org +all-player.pl +allplayer.pl +allrefer.us.intellitxt.com +allsecure1verify.com +allseoservices247.com +allsetupsupdate.com +all-sex.shengen.ru +allsilver925.co.il +allsmail.com +allstarfestival.com +all-streaming-media.com +alltereg0.ru +allternate.de +all-tgp.org +alltheviews.com +alltraff.ru +all-tuts.com +alluringdrapery.com +allvalleypressurewashing.com +allvalleyspokane.com +allwinsun.com +allwomen.info +allwomenstalk.us.intellitxt.com +allxscan.tk +allyouneed.nu +almadinahschool.org.uk +almanargroup.sa +almasur.com +almaz-vostok.com +almeidadg.com.br +almstakanalcafe.se +almykia.rusjohn.ru +alnadhagroup.com +alnusairat.com +alo.asia +alobitanbd.com +aloha.sr +alojamentogratuito.com +alongarms.net +aloofly.com +alookthroughtheglass.com +alopary-oremfhkd.tk +alopsitta.roninlife.ru +alopsitta.rusjohn.ru +alopsitta.vard-forum.ru +alopsitta.vardtorg.ru +alot.com +alothmantravels.com +alpacopoke.org +alpa.co.za +alpes.icgauth.cyberplus.banquepopulaire.fr.websso.bp.13807.emparecoin.ro +alphabetshares.com +alphabirdnetwork.com +alphachemikaapp.com +alpha.easy-hit-counters.com +alphaforum.ru +alphahoverboards.com +alphalux.oewabox.at +alphaomegahomes.net +alphaprinthouse.org +alpharma.net +alphasite.indonet.co.id +alphavisions.net +alphaxiom.com +alphazone.com.br +alphonso.hebergratuit.net +alphonsor.rf.gd +alpinebutterfly.com +alpineconstructioninc.ca +alpineinc.co.in +alpinism.ru +alprazolamonline.findmenow.info +alprazolam.ourtablets.com +alqayam.com +alquilarmoto.com +alquimia-consultores.com +alrajhunited.com +alrakhaa.com +alrazooqitransport.com +alreadypartial.net +alruno.home.pl +al-saeed-plast.com +alsera.de +alshahintrading.com +alsharq.de +alshateamall.com +alsmanager.com +alsoknowsit.com +altabellahotels.com +altafista.com +altamayoztourism.com +altan5.com +altarac.ca +alta-realestate.com +altcointalk.co.uk +altecs.ca +alteretgo.com +alternatifreklamajansi.com +alternativa.pp.ua +alternativapzo.com.br +alternativeresources.net +alternativos.iw-advertising.com +altfarm.mediaplex.com +alt.impresionesweb.com +altmedia101.com +altonblog.ir +altoviews.com +altri.it +alt-servis.ru +alt.webtraxs.com +altzx.cn +alucmuhendislik.com +alugueldelanchasemangra.com.br +aluguemaq.com +aluma.it +alumaxgroup.in +aluminum.in +alupoint.com +alu-profi.de +alvatio.vardtorg.ru +alveris.ru +alvidis.se +alvisi.kiev.ua +alvisp.ru +alvoportas.com.br +alvran.com +alvtank.se +alwatengroup.com +alwaysirishshop.com +alwaysisoyour.info +alwqfajh.com +alwrig84.gamed.hop.clickbank.net +alxsite.com +alyeskaresort.com +alyssamilano.1stok.com +alyssamilano.ca.tt +alyssamilano.home.sapo.pt +alyssaprinting.com +alzallliance.org +alzheimerkor.hu +am15.net +am5abogados.com +ama-alliance.com +a.macuser.co.uk +ama.daten-sicherheitsdienst.net +ama.daten-ueberpruefungsservice.net +amadloglstics.com +amadolondon.co.uk +ama-fitness.com +amagle.com +amalzon-com.unlocked-account-now.com +amanahmuslim.id +amandaabelphoto.com +amanda-porn.ga +amanwelfare.org +amaralemelo.com.br +amaranthos.us +amarcello322.000webhostapp.com +amaremas.org.mx +amare.softwaregarden.com +a.marketgid.com +amarresyencantos.com +amasuv.in.net +amateurdevils.com +amateurgalls.com +amateurlivechat.org +amateurmatch.com +amateur-mature-sex.adaltabaza.net +amateurtubemovies.download +amateur.xxxcounter.com +amazcln.com +amaz.daten-ueberpruefungsservice.net +amazingabssolutions.com +amazingcounters.com +amazinggreentechshop.com +amazing-offers.co.il +amazingoilpainting.com +amazingpic.net +amazingtipsbook.com +amazingunigrace.com +amazingvacationhotels.com +amazionsticlemembs.com.bilinverif17.godgedrivoterms.co.uk +amazon-adsystem.com +amazonamzo.temp.swtest.ru +amazon.co.uk.security-check.ga +amazon-deineeinkaufswelt.com +amazon.de.konto-35810604.de +amazon.de.konto-35910201.de +amazon.de-kundencenter-konto1065188.com +amazon-hotline.com +amazoniaaccountsetting.com +amazonmerchants.122.2o7.net +amazonoffice.com.br +amazon-prirne.com +amazonrewads.ga +amazon.secure-center.org +amazon-seo-service.com +amazonshopbop.122.2o7.net +amazon-sicherheit.kunden-ueberpruefung.xyz +amazonsignin.lechertshuber.b00ryv9r20.de +amazon.webdirect.cf +amazx.org +ambahouseinteriors.in +ambasada.us +ambbar.com.ar +amberrilley.com +amberworldpro.com +amb-greiz.de +ambien.1.p2l.info +ambien.3.p2l.info +ambien.4.p2l.info +ambien.ourtablets.com +ambitiousagreement.com +ambogo.tk +ambselfiestreets.com +ambulanciaslazaro.com +ambutec.it +amch.questionmarket.com +amc.rotator.hadj1.adjuggler.net +amdftabasco.org.mx +am-display.com +amdvtest.112.2o7.net +amdzone.us.intellitxt.com +a.medialytics.com +amedia.tns-cs.net +ameensadegheen.com +ameeralimp.lk +amege.com +amehdaily.com +ameim.com +ameli75166.beget.tech +ameliasalzman.com +amelieassurancesmaladiess.eu +ameliservc-remb.com +amell.ir +amerarani.com +amercanfidelity.com +amer.hops.glbdns.microsoft.com +americanas-com-br-eletroeletronicos-desconto.cuccfree.com +americanas-ofertasimperdiveis.com +americanasonline.tw1.su +americanbaby.112.2o7.net +americancareconcept.com +american-carpet.com.tr +americanchemical.com.bo +americancontractbuyers.com +americandeofertasimperdivel2017.com +americaneagleoutfitt.tt.omtrdc.net +american-express-1v3a.com +american-express-4dw3.com +americanexpress.digital-webnet.com.br +american-express-n4q9.com +american-express-s3d2.com +american-express-s43d.com +american-express-s4a2.com +american-express-sn35.com +americanfitnessacademy.com +americanlearns.net +americanmasonry.net +americanmedia.us.intellitxt.com +americanmusicworldpianos.com +american.nu +american-prize-center.com +americansingles.click-url.com +americantribute.org +americash.com +amerijets.org +ameritradeamerivest.112.2o7.net +ameritradeogilvy.112.2o7.net +amer.rel.msn.com +amer.se +amex8000-95005.000webhostapp.com +amexopen.creditpointe.com +amexopenprod.122.2o7.net +amexopesx.com +amex-webcards.000webhostapp.com +a.mgid.com +amgratefullord.000webhostapp.com +amialoys.com +amiamitd.beget.tech +amicicannisusa.org +amidra.com +amigaozaoloja.com.br +amigoexpress.com.br +amigos1990.flywheelsites.com +amigospizzeria.se +a.milparota.com +aminev.com +amino-cn.com +amirabolhasani.ir +amirconstruction.com +a.mktw.net +ammmmazonm.temp.swtest.ru +amnaush.solutions +amn.doubleclick.net +amo122.com +a.mobify.com +a.mobile.toboads.com +a.modernmedicine.com +amodulco.vh62.hosterby.com +a.moitepari.bg +amoi.tn +a.monetate.net +amospalla.es +a.mouseflow.com +amoxicillin-amoxil-buy.com +amoxicillin.ourtablets.com +a.mozefakt.com +ampatss.com +ampedmedia.directtrack.com +amphion.se +amphorasf.com +ample-awards-today.us +amplifypixel.outbrain.com +amplitude-peinture.fr +ampmconsultants.tk +ampower.me +amranoof.cf +amricanfidelity.com +amrytt.adk2x.com +ams1-ib.adnxs.com +ams1.ib.adnxs.com +amscdn.btrll.com +am-se.com +a-msedge.net +amsfr.org +amskrupajal.org +amsolarpower.com +amsterdamgeckos.com +ams.toxity.biz +amstudio.net.in +amthanhmienbac.com +amt-k.ru +amu.adduraddonhere.info +amu.boxinstallercompany.info +amu.brandnewinstall.info +amu-d.openx.net +amu.helpyourselfinstall.info +a.muligov.com +amulrefrigeration.com +amung.us +amunow.org +amusecity.com +amu.twobox4addon.info +amv186.internetdsl.tpnet.pl +amvesys.com.au +amyfoxfitness.com +amygrindhouse.uk.intellitxt.com +amzingsuv.in.net +amznshopbop.122.2o7.net +an4u.com +anad.tacoda.net +anafartalartml.k12.tr +ana-fashion.com +anahtars.com +anaksma.info +anal-acrobats.com +analiticwebexperience.com +analogs.ga +analuciahealthcoach.com +analxxxclipsyjh.dnset.com +analysis.fc2.com +analysis.polarisoffice.com +analysthelp.com +analytic.ae.com +analyticcdn.globalmailer.com +analytic.detik.com +analyticdns.org +analytic.gatewayinterface.com +analytic-google.com +analytics.admob.com +analytics.adpost.org +analytics-ads.xyz +analytics.amakings.com +analytics.amilliamilli.com +analytics.analytics-egain.com +analytics.androidandme.com +analyticsapi.bsbportal.com +analytics-api-samples.googlecode.com +analytics.atdmt.com +analytics.atomiconline.com +analytics.aweber.com +analytics.bigcommerce.com +analytics.bleacherreport.com +analytics.bluekai.com +analytics.breakingnews.com +analytics.brightedge.com +analytics.clickdimensions.com +analytics.clickpathmedia.com +analytics.cloudron.io +analytics.cnd-motionmedia.de +analytics.codigo.se +analytics.colacoweb.net +analytics.dev.popdust.com +analytics.digit.in +analytics-digit-in.cdn.ampproject.org +analytics.disneyinternational.com +analytics-eu.clickdimensions.com +analytics.fairfax.com.au +analytics.fuckingawesome.com +analytics.gameforge.de +analytics.gazeta.pl +analytics.google.com +analytics.harpercollins.com +analytics.hayneedle.com +analytics.hgcdn.net +analytics.jabong.com +analytics.juggle.com +analytics.kaltura.com +analytics.ku6.com +analytics.kwebsoft.com +analytics.live.com +analytics.lk.api.ditto.com +analytics.localytics.com +analytics.logsss.com +analytics.mail-corp.com +analytics.mailmunch.co +analytics.mopub.com +analytics.msnbc.com +analytics.msnbc.msn.com +analytics.msn.com +analytics.mytvzion.pro +analytics.newsinc.com +analytics.newsvine.com +analytics.onesearch.id +analytics.ooyala.com +analytic.spamfighter.com +analytics.percentmobile.com +analytics.phando.com +analytics.picsart.com +analytics.pimproll.com +analytics.poolshool.com +analytics.posttv.com +analytics.prx.org +analytics.query.yahoo.com +analytics.radiatemedia.com +analytics.revee.com +analytics.r.msn.com +analytics.rogersmedia.com +analytics.rtbf.be +analytics.safelinking.net +analytics.sanoma.fi +analytics.services.kirra.nl +analytics.shareaholic.com +analytics.siliconexpert.com +analytics.sitewit.com +analytics.slashdotmedia.com +analytics.soup.io +analytics.spongecell.com +analytics.spotta.nl +analytics.springboardvideo.com +analytics.stg.springboardvideo.com +analytics.strangeloopnetworks.com +analytics.supplyframe.com +analytics.sutterhealth.org +analytics.tbs.com +analytics.theknot.com +analytics.thenest.com +analytics.thevideo.me +analytics.tout.com +analytics.trutv.com +analytics.upworthy.com +analytics.usdm.net +analytics.userreport.com +analyticsv2.dol.gr +analytics.vast.com +analytics.verizonenterprise.com +analytics.vodafone.co.uk +analytics.wishabi.ca +analytics.worldnow.com +analytics.yahoo.com +analytics.yolacdn.net +analytics.youramigo.com +analytics.zdbb.net +analyzer51.fc2.com +a.namemilky.com +a.namitol.com +anamol.net +ananashotel.com +anandayu.com +anant-e-rickshaw.com +anapa-inns.ru +anapalife.ru +anapixel.elmundo.es +anapixel.marca.com +anastylescreeze.co.uk +anatomytrains.co.uk +anat.tacoda.net +anayaoeventos.com +anaye.info +anayltics.kuikr.com +ancamei.com +ancestrymsn.112.2o7.net +ancestryuki.112.2o7.net +anchor.coadvertise.com +anchorpoint.co.za +anchorsd.com +anchor.stailamedia.com +anchorwheelmotel.com.au +ancientroom.com +andahoho88.com +andatrailers.com.au +andayiyuan.com +andeneshornmusikk.no +anderlechti.com +andersondiamonds.com +andezcoppers.com.br +andlu.org +andmcspadden.com +an-donut.com +andpolice.com +andpop.us.intellitxt.com +andq888.com +andrasmile.ro +andreandre.de +andreas-gehring.com +andrehosung.cc +andresjp.com +andrewmelchior.com +andrewrobertsllc.info +andrewtheis.net +andreyzakharov.com +andr.net +android4fun.org +androidads23.adcolony.com +androidandme.us.intellitxt.com +androidappworld.com +android.bcfads.com +android.bigresource.com +androidcentral.us.intellitxt.com +androidcommunity.us.intellitxt.com +androiddev.orkitra.com +android-guard.com +android-sdk31.transpera.com +androidsdk.ads.mp.mydas.mobi +androidsecurityplus.com +androids-store.com +android-style.com +android-systems.ru +an-droid-tv.de +android-vsem.org +andru40.ru +andrzej-burdzy.pl +andsto57cksstar.rr.nu +anduongjsc.com +anelkathe.tripod.com +anemia.xgamegodni.pl +anemwers.stronazen.pl +anetch.tradedoubler.com +anetdk.tradedoubler.com +anetfi.tradedoubler.com +anetit.tradedoubler.com +anetlt.tradedoubler.com +a.netmng.com +anetno.tradedoubler.com +anetse.tradedoubler.com +anet.tradedoubler.com +a.networkworld.com +anews.co.uk +anewyoufitness.com +anfsco.bid +angelangle.co.uk +angelas-place.com +angelinajolie.1stok.com +angelinajolie.ca.tt +angelinajoliepics.com +angelinfo.com +angelsinuniform.com +angelsshipping.com +angerstory.com +angiba.112.2o7.net +angiemaxie.trade +angieslist.tt.omtrdc.net +angigreene.com +anglewinks.com +angmar.112.2o7.net +angmil.112.2o7.net +angolotesti.it +angpar.112.2o7.net +angryshippflyforok.su +angtr.112.2o7.net +angts.112.2o7.net +angvac.112.2o7.net +anhangueraeducacional.com +anhuiguzhai.com +anhuihongdapme.com +anhui-rili.com +a.niklesrov.com +animacorretora.com.br +animal36.com +animal-drawings.com +animalgames.com.au +animali.deagostinipassion.it +animalrank.com +animaltoplist.com +animatemauricio.com.ar +a.nimdinb.com +animebox.com.ua +anime.dougasouko.com +anime-land.de +animeonline.net +anime.reactor.cc +animouche.fr +ani.railcentral.com.au +anitacatlaina.eu +anityag.com.tr +a-nj.1rx.io +anjakirmse.de +anjalika.co.in +ankandi.al +ankarasogukhavadepo.com +ankieta-online.pl +anklets.shengen.ru +ankoras.com +ankusamarts.com +anlimebel.kiev.ua +anm.112.2o7.net +anm.intelli-direct.com +anmira.info +an.mlb.com +anmledem.paypal.de.webapps.lappay.net +annabellecostanza.eu +annacsfn.dejm.pl +annalisedebbie.ru +anna-newton.com +annanicolesannanicolesmith.ca.tt +annanicolesmith.1stok.com +annazarov.club +annengdl.com +anniversary.com.sg +annonser.dagbladet.no +annoras-lifestyle.de +annuaire-autosurf.com +annualconsumersurvey.com +annualreports.tacomaartmuseum.org +anocars.com +anonamizer.com +anon.doubleclick.speedera.net +anonsociety.com +anonturk.com +anonymizeme.pro +anonymousdemographics.com +anonymous-net.com +anonymousproxy.tk +anonymousstats.keefox.org +anorak.uk.intellitxt.com +anothersuccess.com +anouslab.cmail20.com +anovatio.com +anphugia.com.vn +anrtx.tacoda.net +anrysys.popunder.ru +anseati.shedapplyangel.ru +an.secure.tacoda.net +anshrit.com +ansiway.com +anstanley.com +answerbag.us.intellitxt.com +answerexpect.net +answerhub.com +answers.us.intellitxt.com +answerzones.com +a.nt002.cn +an.tacoda.net +antalyaraftingmerkezi.com +antalya.ru +antarasecuriteprivee.com +antaresquimica.com.br +ant.com +antcompany.com +ant.conversive.nl +antdoguscam.com +anthonybailey.com.au +anthonydemeo.com +anticlown.com +anticodistretto.com +anticom.eu +anticrawler.org +antidepressants.1.p2l.info +antifa.co.at +antimusic.us.intellitxt.com +antiochpropertiesltd.com +antiscan.online +antispywareexpert.com +antispyware.onlinedownloads.org +antivirus-message.com +antivirus-online-scan5.com +anti-virus-removal.info +antivirus-scanner8.com +antivirus-scanner.com +antivirus-store.us +antjava.co.id +antoluxlda.com +antoniusali.com +antons-transporte.de +ant.trenz.pl +antventure.com +antyweb.push-ad.com +anugrahabadi.co.id +anuluj-dlug.pl +anuluj-mandat.pl +anulwyqw.com +anvikbiotech.com +an.worldbaseballclassic.com +anxiety.1.p2l.info +anxiety-depression.com.au +anxiousapples.com +an.yandex.ru +anyclip-d.openx.net +anycracks.com +anydomainfile.com +any-log.videe.tv +anyras.com +anythinghollywood.us.intellitxt.com +an.z5x.net +anzanish.tripod.com +anzhongkj.com +anzhuo6.com +anz.online.form-unsuscribe.id-6932885815.vranes.ca +anzonline.info +a.o333o.com +aocinc.co.jp +aodtobjtcenturycustomughtsboctobrhsouehoms.com +aoi.gourisevapeeth.org +a.oix.com +a.oix.net +aol.anmolsecurity.com +aolbks.122.2o7.net +aolcamember.122.2o7.net +aolcareers.122.2o7.net +aolcg.122.2o7.net +aolcmp.122.2o7.net +aolcommem.122.2o7.net +aolcommvid.122.2o7.net +aol.conservies.com +aolcsmen.122.2o7.net +aoldlama.122.2o7.net +aoldrambuie.122.2o7.net +aolfgitgl.esy.es +aolgam.122.2o7.net +aolgamedaily.122.2o7.net +aolikes.com +aoljournals.122.2o7.net +aollatblog.122.2o7.net +aollove.122.2o7.net +aolmailing.com +aolmov.122.2o7.net +aolmus.122.2o7.net +aolnews.122.2o7.net +aolnsnews.122.2o7.net +aolnssearch.122.2o7.net +aolpf.122.2o7.net +aolpolls.112.2o7.net +aolpolls.122.2o7.net +aolrfi.esy.es +aolsearch.122.2o7.net +aol.secure.ortare.cl +aolshred.122.2o7.net +aol.spb.su +aolsports.122.2o7.net +aolstylist.122.2o7.net +aolsvc.122.2o7.net +aolswitch.122.2o7.net +aolt.hit.gemius.pl +aoltmz.122.2o7.net +aoltruveo.122.2o7.net +aolturnercnnmoney.112.2o7.net +aolturnercnnmoney.122.2o7.net +aolturnersi.122.2o7.net +aoluk.122.2o7.net +aolukglobal.122.2o7.net +aolv.hit.gemius.pl +aolvideo.122.2o7.net +aolwbautoblog.122.2o7.net +aolwbcinema.122.2o7.net +aolwbdnlsq.122.2o7.net +aolwbengadget.122.2o7.net +aolwbgadling.122.2o7.net +aolwbluxist.122.2o7.net +aolwbpspfboy.122.2o7.net +aolwbtvsq.122.2o7.net +aolwbwowinsd.122.2o7.net +aolwinamp.122.2o7.net +aolwpaim.112.2o7.net +aolwpicq.122.2o7.net +aolwpmq.112.2o7.net +aolwpmq.122.2o7.net +aolwpmqnoban.112.2o7.net +aolwpnscom.122.2o7.net +aolwpnswhatsnew.112.2o7.net +aolyedda.122.2o7.net +aomendenmultipleoriductseirk.com +aomenduchangwanfabbs.com +aonegroup.in +aonikesi.com +aontoyangfortcnewhclenw.com +a.openinternetexchange.com +aos1738.com +aosexkontakte.net +aos.gw.youmi.net +aosoroofingfortcnewhclenwao.com +aos.wall.youmi.net +aoy2nor.top +aoyongworld.com +aoz9ied.bid +ap101.curves.com +ap669.com +ap76rmx3.accountant +ap778.com +apac.rel.msn.com +aparatosolucoes.com.br +aparentingstudy.com +apartamentypoleska.pl +apartmentbay.ru +apartment-mall.cn +apartmentratings.com +apartment.ru +apartments-baden-baden.de +ap-avisa.com +apbtmexico.org +apccargo.com +apcdubai.com +a.pcpro.co.uk +ap-design.com.ar +apdigitalorg.112.2o7.net +apdigitalorgovn.112.2o7.net +apelsinnik.website +apenologia.pt +aperionetwork.com +aperomanagement.fr +aperture.displaymarketplace.com +apex-ad.com +apexgames.org +apex.go.sonobi.com +apexlpi.com +apextechnotools.com +aphien.id +a.phormlabs.com +aphrodite.porntrack.com +aphrodite.railsplayground.net +aphrofem.com +api2.murdoog.com +api.7segments.com +api.access-mc.com +apiadanaknet-a.akamaihd.net +api.adcalls.nl +api.addnow.com +api.addthis.com +api.adip.ly +api.adlure.net +api.admob.com +api.admob.xiaomi.com +api.adquality.ch +api.adrenalads.com +api.adrtx.net +api.adsnative.com +api.adsymptotic.com +api.ad.xiaomi.com +api.affinesystems.com +api.airpush.com +apiallgeniusinfo-a.akamaihd.net +api.amplitude.com +api.analytics.omgpop.com +apiappenableinfo-a.akamaihd.net +api.atdmt.com +apibatbrowsecom-a.akamaihd.net +api.behavioralengine.com +apibeta.zeti.com +apibetweenlinesn-a.akamaihd.net +api.bigmobileads.com +api.bizographics.com +api.boomtrain.com +api.bounceexchange.com +apibrowsesmartne-a.akamaihd.net +api.bttrack.com +api-cache.adsnative.com +api.cheatsheet.me +api.circularhub.com +apicit.net +api.conduit.com +api.connatix.com +api.content.ad +api.content-ad.net +api.demandbase.com +apidiamondatanet-a.akamaihd.net +apidigidocketnet-a.akamaihd.net +api.d.xiaomi.com +api.ero-advertising.com +apifasterlightin-a.akamaihd.net +api.gameanalytics.com +apiholdingmypage-a.akamaihd.net +api.infinario.com +api.instantdollarz.com +api.intensifier.de +api.iperceptions.com +api.ipinfodb.com +api.iris.tv +apiitsthirteende-a.akamaihd.net +api.lanistaads.com +api.linkgist.com +apilinkswiftco-a.akamaihd.net +api.linkz.net +apiluckyleapnet-a.akamaihd.net +apimegabrowsebiz-a.akamaihd.net +api.mixpanel.com +apimossnetinfo-a.akamaihd.net +apimountainbikei-a.akamaihd.net +api.murdoog.com +api.myeforsa.pl +api.nrelate.com +apioasisspacenet-a.akamaihd.net +api.opencandy.com +api.optinmonster.com +api.optnmnstr.com +apioutoboxnet-a.akamaihd.net +apiparbion.com +api.petametrics.com +a.pipilida.com +apiportalmorecom-a.akamaihd.net +api.proofpositivemedia.com +api-public.addthis.com +apiqualitinknet-a.akamaihd.net +api.revcontent.com +api.sagent.io +apisecretsaucebi-a.akamaihd.net +api.segment.io +api.shoppingminds.net +apishops.ru +apis.murdoog.com +apispringsmartne-a.akamaihd.net +api.stathat.com +api.taboola.com +a.pitatagata.com +api.tns-cs.net +api.trackuity.com +api.truuapp.com +api.tumra.com +api.viglink.com +apiwebwebgetcom-a.akamaihd.net +api.wipmania.com +apiwoodensealcom-a.akamaihd.net +api.wundercounter.com +api.yieldmanager.com +api.yp.com +api.zanox.com +apkgvrddvanfnuiddlp.com +aplcricket.co.nz +ap.lijit.com +aplikacja-podgladacz.wirtualnie.pl +aplopalsecure.com +aplyaviator.com +apnaauto.net +apnavarsa.com +apnonline.112.2o7.net +ap.oasfile.aftenposten.no +ap.octopuspop.com +apode.simply-winspace.it +apodir.oewabox.at +apo.ero-advertising.com +apogeesourceinc.com +a.pokerplayermagazine.co.uk +apokryfy.pl +apoleoni.measurelighter.ru +apolloadlv.hit.gemius.pl +apopt.hbmediapro.com +aporg.112.2o7.net +aportun.com +apostelhuis.nl +a.postrelease.com +apotikmalabo.co.id +app-1485544335.000webhostapp.com +app-1490710520.000webhostapp.com +app-1502132339.000webhostapp.com +app-1509321099.000webhostapp.com +app-1510325760.000webhostapp.com +app1.letitbefaster.life +app1.letitbefaster.website +app1.letmacworkfaster.site +app1.letslowbefast.site +app2.letitbefaster.life +app2.letitbefaster.website +app2.letmacworkfaster.site +app2.letmacwork.world +app2.letslowbefast.life +app2.letslowbefast.site +app2.salesmanago.pl +app3.letitbefaster.life +app3.letitbefaster.website +app3.letmacwork.world +app3.letslowbefast.site +app3.rutarget.ru +app4com.bestgrade4update.trade +app4com.codecheckgroup.com +app4.letitbefaster.life +app4.letitbefaster.website +app4.letslowbefast.life +app4.letslowbefast.site +app4.letslowbefast.today +app5.letitbefaster.life +app5.letitbefaster.website +app5.letslowbefast.site +app.activetrail.com +app.adblockhyper.us +app.adsbrook.com +appall.biz +app-apple.info +app.appsflyer.com +apparelmachnery.com +apparelncs.com +apparel-offer.com +appartement-stumm.at +app.beanstalkdata.com +appcache.admission.net +app-carrinho-americanas-iphone-6s.cq94089.tmweb.ru +appcloudabd.com +appcloudstore.cloud +app.datafastguru.info +appdev.addthis.com +appearantly.com +apper.de +appfastplay.com +appfixing.space +appgamecheats.biz +app.getresponse.com +appgx.com +apphay.me +app-help-activities.com +app-icloud.com.br +appie-assist.com +appie-authenticate.com +appie-check.com +appie-forgot.com +appieid-license.com +appieid-monitor.com +appieid-tech.co.uk +appieid-verify.com +appieid-warranty.com +appie-license.com +appie-lphonenid.com +appie-submit.com +appie-tech.co.uk +appie-updates.com +appimmobilier.com +app-ios.org +appiq.mobi +app.ksent.net +apple0-icloud1.com +apple-110icloud.com +apple.799866074.cn +apple-alert-resolve.win +apple-alerts-resolve.win +apple.alimermertas.com +apple-answer.com +apple-aofer.top +apple-apple-appid.com +apple-appleidaccountauthentication-statement.com +apple.appleid-secure-account-private-co-ltd.com.dapurkecil.com +apple-appleid-securty-manager.ga +apple-appleid-services.tk +apple-appleid-unlocked.nut.cc +apple-apple-store-id.com +appleaxz.com +applebilling.officessl.com +apple.chasefeeds.com +applecheckdevice.com +apple.com-analysis-safety-antimalware-support.accountant +apple.com.clean-virus-mac.com +apple.com.confiduration.clients.updating.service.foxdizi.net +apple.com.icloud.billing.verifiy.9200938771663883991773817836476289732.valcla.com.br +apple.com-internet-security-review.info +apple.com-internet-security-review.review +apple.com-notice.info +apple.com-onlinesupport.host +apple.com-onlinesupport.site +apple.com-safetyalert.com +apple.com--------scanner.bid +apple.com-----scanner.club +apple.com-scan-virus-detected.com +apple.com-security-desktop-antimalware-support.download +apple.com-store.me +apple.com-supportcenter.pro +apple.com-supportcenter.website +apple.com------support.host +apple.com--validation.systems +apple.com-verify-account-information.entranceonline.org +apple.com.virus-mac.com +apple.com-webbrowsing-security.bid +apple.com-webbrowsing-security.download +apple.com-webbrowsing-security.review +apple.com-webbrowsing-security.science +apple.com-webbrowsing-security.site +apple.com-web-security-analysis.win +apple-customer--support.info +apple.dainehosre.com +apple-data-verification.com +apple-devicefind.com +apple-device-security91-alert.info +appledevice.us +apple-dispositivo.com +appledw.xyz +applee-conffig.irfani.pk +appleeid-restribution-unlocked1.info +apple-es.com +apple-fergotid.com +apple-find-appleios.com +apple-find-device.com +applefind-inc.com +apple-find-location.online +apple-findo.com +applefmi-support.com +apple-ger.com +apple-gps-tracker.xyz +apple-icilouds.com +apple-icloud-ios-support.com +apple-icloudlicd.com +apple-icloudlie.com +apple-icloud-location.com +apple-icloudql.com +apple-iclould.com.br +apple-icoxs10.com +appleicx.com +appleid4usa.com +appleid-accountlocked-verification.com +appleid-accountverify.com +appleid.app.intl-member.com +appleid.apple.benhviendakhoae.com +appleid.apple.com-62668c4bbac590730301a6a33fca390f.com +appleid.apple.com.d0c92f8b2a16e69758f90be6660e8508.com +appleid.apple.com-informationslockedaccount.tk +appleid.apple.com.manage-accountunlocked.info +appleid.apple.com-myaccount-login-page.com +appleid.apple.com.onefamilycatering.com +appleid.apple.com.paandiirspesciacad.org +appleid.apple.com.pribadys-support10.business +appleid.apple.com.received-notice2x.com +appleid.apple.com-subscriptions.manager784393.weekendtime.com.au +appleid.apple.com.webapps015.com +appleid-appleestore.com +appleid-applemusic.com +appleid.apple.restore-id.info +appleid.apple.session-verifty-account.ml +appleid.apple.statement-apps.info +appleidchinaios.com +appleid.com-cloud-update.net +appleid.com-fixed-account.net +appleid.comjp-fixed-account.net +appleid.easytogovacations.com +appleid-find-usa.com +appleid-find-verify.com +apple-id-icloud-appleid.com +appleid-icloud.cc +appleid-icloud-server.com +appleid-id.com +appleid-intlupdate-account.appleappsid.com +appleid-ituens.com +appleid.itunessupport.business +apple-id-itunes.webcindario.com +appleid-log.com +appleid-manage-photo.com +appleidmaps.com +appleid-mx.xyz +appleid-online-verifyuk.com +appleid.resolution-center.tubvi.com +apple-id-se.com +appleid-secure-account.ml +apple-id.secure.lockedaccount-verifydetails.com +appleid-secure-serviceaccount-verifykehed.tk +appleid-srote.com +appleidstoree.com +appleid.storesapple.com.internalsupport-log.com +appleid-supportappsintl-update.com +appleid.support-imdsa-confirmation.com +appleid-user-inc.com +apple-idvalidation.com +appleid-verfiied.com +appleid-verification.com +appleidverification.com.hdmombaca.com.br +apple-id-verification-locked-valldation.com +appleid-verifing.com +appleid-verify-different-loginip-updateconfirm.ducky-a1.business +apple-id-verify.net +appleid-websrc.site +apple-idyun.top +apple-ifcrot.com +appleildicloud.webcindario.com +apple.imagineenergy.com.au +appleinc-maps.com +apple-inc-server-icloud.com +apple-in-iphone.com +apple-iocuid.com +apple-iolsod.com +appleiom.com +apple-ios-appile.com +apple-iosfid.com +apple-ios-server.com +apple-iosvor.com +appleiphoneeight.com +apple-iphone-id.com +apple-iphones.com +apple-issue-support.xyz +apple-itnies.com +apple.it-secure1.store.apple.apple-idacount-italia.terapt.com +apple.itunesconnect.ru +apple-itwes.com +apple-iulcod.com +applejp-verifystore.icloud.applejp-verifystore.com +apple-kr.com +applelcloud-support.com +appleld.apple.com.t5j2kdkc88dd2m423-verif.info +appleld-appleld.com +appleld.apple-supports.servicemail-activity.com +appleld.com-res0lve-inf0rmati0n-acc0unt.ga +appleldisupport.com +apple-licid.com +apple-localizar-iphone.com +apple-lock-ios9.com +apple-login-appleit-assistenza-apple.com-support.itilprot.com +apple.mapconnect.info +apple.map-iphone.com +apple-mritell.com +apple-myiphone.com +applepayment.brianfeed.com +applepayments.gatewaybilling.appleid.euid01.apple-validation.com +apple.phishing.60731134x.cn +apple.phishing.799866074.cn +apple.phishing.at.all.possible.subdomins.of.gwtoys.cn +apple-phone-support.com +apple-privacy-account.ngrok.io +apple-protection.info +apple-retarl.com +apple-salet.com +applesecuritysupport.com +appleservice.com.e-matcom.com +apple-statement-for-update-informations.com +applestore.com-mobile.gift +apple-summary-report.com +apple-suporte-icloud.com +apple-support-cn.com +apple-support-services.net +applesupurt.com +apple-systemverification.com +apple-tart.com +apple-trusted.com +applets.sulekha.com +apple-ufficialeapple-store.supporto-tecnico.apple.intesasa.com +apple-updates.com +apple-usa.cf +apple-usa-ltd.com +appleushelp.com +apple-verfiy.com +appleverif.com +apple-verifyakunmu.login.xo-akunverify9huha.com +apple-verify-ios-icloud.com +apple--virus--alert.info +apple-vister.com +apple-whet.com +apple-xai.com +apple-xeid.com +applicationdesmouventsdirects.com +applicationg29.com +applicationpremium70.club +applicationstat.com +appl-id-apple-secure-account-recovery.com +applied-icloud.net +applift.com +app.logs-facebook.com +appltobackapp1le.com +applyexploercard.com +applyfix.tech +apply.pam-innovation.com +app.mailersend.co +app.mashero.com +app.medyanetads.com +appnexus.com +app-pageidentify.honor.es +app.pho8.com +appprices.com +app.pubserver.adhood.com +appr0ve.bdevelop.co.za +apprecovery.pe.hu +app-renew-signin-another-device.com +apprep.smartscreen.microsoft.com +approvedloans.online +approved.su +apps5.oingo.com +apps.admission.net +apps.advertlets.com +apps-analytics.net +appsaurus.com +apps.buzzcity.net +app.scanscout.com +apps.clickcash.com +apps.conduit-banners.com +appscout.us.intellitxt.com +appsdorado.com +app.seojee.com +apps-facebooksupportinc.ml +appsflyer.com +apps.id.net +appslore-scan.co +apps.mobilityware.com +apps.nastydollars.com +app.software-phile.com +appsolutionists.com +app-spotifyycloudpremim.verifyaccountpaymentmethode.com +apps-recovery-fan-page-2016.2fh.co +appsrv1.madserving.cn +appsservicehelpcenter.de +apps.store.secure.account.recovery.ipincoeg.tk +appsto30.beget.tech +app-store-com.acces-last-confirm.identityb545665852236.case-4051.pw +appstoresmobiles.com +app.super-links.net +apptester.tk +app.ubertags.com +appuntamentoalbuioilmusical.it +app-v0.com +app.winwords.adhood.com +appyaviator.com +app.yesware.com +app.yieldify.com +ap.read.mediation.pns.ap.orangeads.fr +apre.com.ar +a.predictvideo.com +aprendainglesya.com.ve +a.press24.mk +apricorni.vardtorg.ru +aprilbrinson.com +a.prisacom.com +apronconsulting.com +aproposde.com +aproveiteja.com +aprowerb.de +aproxtrack2.com +aprpackaging.com +apsaraicecreams.com +ap.senai.br +aps.media.adrevolver.com +apteka2000.com.pl +apteka2000.pl +apt-get.gq +aptitude.newversionupdatefreshand4you.space +aptitudetestshelp.com +aptra.mx +ap-transz.hu +apture.com +apxeo.info +apx.moatads.com +aqbly.com +aqps.com +aquablind.com +aquacarcleaning.be +aquacard.com +aquafuge6.com +aquapuremultiservicios.es +aquaquara365.com +aquarium-pro.ru +aquasoft.co.kr +aquasoft.us.intellitxt.com +aquatic.ca +aquiwef22.esy.es +ar1.atwola.com +ar.2.cqcounter.com +ar31.com +ar.5.p2l.info +ar7.atwola.com +ar9.atwola.com +arabellagroup.com +arabgirls.adultgalls.com +arabianbooks.com +arabiangown.com +arabicfoodexpress.com +arabmeet.com +arabond.bid +arabsanfrancisco.com +arabsexxxtube.com +arabseyes.com +arabtechmessenger.net +a.rad.live.com +a.rad.msn.com +ar.adserver.yahoo.com +aralitho.roninlife.ru +aramaicmedia.org +arank.com +arapahogov.com +arate.ru +ar.atwola.com +arbarkiv.se +arbcare.se +arbeiderspartij.be-spry.co.uk +arboe.oewabox.at +arbo.hit.gemius.pl +arbomedia.pl +arbopl.bbelements.com +arc1.msn.com +arc2.msn.com +arc3.msn.com +arc9.msn.com +arcadebanners.com +arcadefree.com +arcadepages.com +arcadeplayhouse.com +arcade.ya.com +arcangela.in +arcelikpendikservisi.gen.tr +archantilles.fr +archarleton.com +archbangla.com +architectchurch.com +architect-mind.com +architecturaldesigns.us.intellitxt.com +architecturebest.com +architecturedept.com.au +architecturememe.com +architekt-sittig.de +archive.coolerads.com +archive.preferati.com +archivesmonomenclatures.info +archiworld-fc.it +archlug.org +archpod.in +archtopmakers.com +archwiadomosci.com +arcipelagodelgusto.it +arclk.net +arcofoodservice.com +arcomtechnologies.com +arcor-clan.de +arcteryxsale.online +arcteryxstore.online +arctica-trade.com.ua +ardadisticaret.com +ardent-lotus.com +ardisetiawan.web.id +ardrone.swoop.com +ard.sexplaycam.com +ard.sweetdiscreet.com +ard.xxxblackbook.com +areagame.pl +areasnap.com +areastudio.net +arecio.work +are.clevernt.com +a.remarketstats.com +arena.altitude-arena.com +arena.altitudeplatform.com +arenagateto.com +arenamakina.com +arenanews.com.ua +arenasyquarzosindustriales.com +arenda-avtoprokat-krasnodar.ru +arendakvartir.kz +arendas.net +arendatora.ru +arenda-yeisk.ru +a.reqpostanza.com +are-ter.com +arewater.com +areyouabot.net +a.rfihub.com +argamez.com +argentinaglobalwines.com +arghamvillage.co.uk +argoauto.net +argussolarpower.com +ar.hao123.com +ariandange.com +arianfosterprobowljersey.com +ariboo.com +aricimpastanesi.com +ariel1.spaceprogram.com +arightcharlie.whodigital.com +aripaadee.hit.gemius.pl +aripaee.adocean.pl +aripipentruingeri.ro +arisac.gr +ariseandserve.org +arisiahomes.com +arisonafederal.org +arissulistyo-bookmade.co.id +arizonalionscamp.org +arizst.ru +arjunainvestment.com +arkansasjoe.com +arkartex.ru +arkberg-design.fi +arkinsoftware.in +arkitektmuseet.se +arklighting.co +arkmicro.com +arkoch.freshsite.pl +arlingtonmommy.com +arm2pie.com +armaanitravels.com +armadaneo.info +armagno.elkablog.ru +armanix.white.prohosting.com +armazemdafazendaatlantica.com.br +armazones.com +armenminasian.com +a.rmgserving.com +armleder.com +armsart.com +armstrongflooring.mobi +armtrans.com.au +arncpeaniordmpmitrformasupestancpeance.com +arnistofipop.it +arnsberg-openair.de +aronnaibaho.com +a.roritabo.com +aros-multilinks.com +a.rotibald.com +arouersobesite.free.fr +arpelsreplica.xyz +arprosports.com.ar +arqmdiaz.com.ar +arquitecturaeinteriores.com +arquitetup.com +arqxxg.com +arraiaame.sslblindado.com +arrassley.info +arraty.altervista.org +arrayshift.com +arrdismaticsltd.com +arriendomesas.cl +arrivaldatesen.com +arrowsports.de +arrowtravel.net +arsalanabro.com +arsch-loch.de +arsconsole.global-intermedia.com +arsindia.org +arstaparkbilvard.se +art-archiv.ru +artavenuegardenstudios.com +artcccp.com +artchiv.cz +art-co.com.pl +artcomix.com +art-curious.com +artdecointikreasi.com +artdeli.co.kr +artdestshop.eu +artebautista.com +artebinaria.com +arteenimagen.net +artefakct.com +artel116.ru +arteriaatelie.com +artesanoperfumista.com +artetallerkalfu.cl +artextildelcaribe.com +art-fashion.pl +arthadebang.co.id +arthalo.com +arthosurface.com +arthritis.atspace.com +arthurmiddletoncapit.tt.omtrdc.net +arthur-thomas.info +artica.nu +articlefuns.cn +articleidea.cn +articlesdirectoryme.info +artiescrit.com +artisangarricmickael.fr +artisanhands.co.za +artisbags.com +artistdec.com +artistdirect.us.intellitxt.com +artisticcreations.ca +art-music-rewardpath.com +art-n-couture.com +art-offer.com +art-offer.net +artofrenegarcia.com +artofrevo.com +art-photo-music-premiumblvd.com +art-photo-music-rewardempire.com +art-photo-music-savingblvd.com +artpicso.com +artsconsortium.org +artsybabic.xyz +art-tour.info.pl +artur-glowacki.pl +artvesu.com +artwork.aim4media.com +artycotallercreativo.com +aru1004.org +arubtrading.com +aruplighting.com +arvetellefsen.no +arvigoshop.com +arvision.com.co +ar.voicefive.com +a.rvttrack.com +arvut.org +arxmedicinadotrabalho.com.br +aryakepenk.com +aryamkenterprises.in +as1.advfn.com +as1.casinocity.com +as1.falkag.de +as1image1.adshuffle.com +as1image2.adshuffle.com +as1.inoventiv.com +as1.mistupid.com +as2.autoforums.com +as2.falkag.de +as3.falkag.de +as4.falkag.de +as5000.com +as.5.p2l.info +as.5to1.com +as9.pl +asaasa.pk +asaclaim.com +asacopaco.tk +as.adfonic.net +as.adwise.bg +asaglobalmedicalstore.com +a.sakh.com +asalogistics.net +asamaperfumes.com +asanroque.com +asansor24.net +asa.tynt.com +as.autoforums.com +as.bankrate.com +asbeirasporto.com +asbgenius.com +asbschildersbedrijf.be +asb.tynt.com +as.casalemedia.com +ascat.porn +ascayasociados.com +ascentive.com +aschins.com +aschreib.oewabox.at +a.scorecardresearch.com +ascout24.oewabox.at +a-scrip.org +asctmd.com +asdawest.com +asdfg.pro +asdfz.pro +asdkasid.knowsitall.info +asd.tynt.com +aseanstore.com +as.ebz.io +a.senolati.com +aserve.directorym.com +asess.com.mx +as.eu.angsrvr.com +as.featurelink.com +asfirey.com +asg01.casalemedia.com +asg02.casalemedia.com +asg03.casalemedia.com +asg04.casalemedia.com +asg05.casalemedia.com +asg06.casalemedia.com +asg07.casalemedia.com +asg08.casalemedia.com +asg09.casalemedia.com +asg10.casalemedia.com +asg11.casalemedia.com +asg12.casalemedia.com +asg13.casalemedia.com +as.gostats.com +asham.tourstogo.us +ashantibengals.com +asharna.com +ashburnnailsalon.com +ashegret.life +ashemaletune.com +ashleydrive.trailocommand.ml +ashnik.se +ashoesheestono.eu +a.shokala.com +ashokashipping.com +ashokdamodaran.com +a.shop.com +ashow.pcpop.com +ashsrightdirection.com +a.shulhanafuh.com +ashvale.com +asia-forum.ru +asiagiglio.com +asiahp.net +asianforceservices.com +asianrape.com +asianread.com +asiansexytube.webcam +asians.join4free.com +asian.streamate.com +asiantradersglobal.com +asiaok.net +asiapearlhk.com +asiawellness.com.sg +asiengirls.net +asilteknik.net +asinglewomanmovie.com +asiote.cf +asiribobo.info +asismen.com +asj999.com +askads.ask.com +askanativespeaker.de +askbook.de +askbot.com +ask-coder.com +askdoctorz.com +askfm-like.pl +askfmlike.pl +ask-gps.ru +askjeaves.co.uk +askjolene.ero-advertising.com +asklots.com +askmen2.us.intellitxt.com +askmen.thruport.com +askmen.us.intellitxt.com +askmets.com +askto.net +ask.webatall.com +aslads.ask.com +asliaypak.com +asm2.z1.adserver.com +asm3.z1.adserver.com +asmedia.adsupplyssl.com +as.medscape.com +asmi74.ru +asmxsatadriverin.aircus.com +asn.advolution.de +asn.cunda.advolution.biz +asociacioncar.com +asociatia-tipografilor-transilvania.ro +a.softconsultgroup.com +asophoto.com +asoppdy.com +asotrack1.fluentmobile.com +aspamuhendislik.com +aspects.co.nz +aspenvalleyrr.com +asphaltdesperados.de +asphaltsubcontractor.com +a.spicetv.com +aspirasidesa.com +aspirecommerceacademy.com +aspirin.about-tabs.com +as.pmates.com +asprintfreedom.com +asqcondenast.nuggad.net +asqlesechos.nuggad.net +asqnext.nuggad.net +asqrtl.nuggad.net +asreklama.com +asreonline.com +asrv-a.akamaihd.net +asrv-a.akamoihd.net +asrvrep-a.akamaihd.net +asrvvv-a.akamaihd.net +a.ss34.on9mail.com +assainissement-btp-guadeloupe.com +assalammulia.or.id +assculo.com +as-sec.casalemedia.com +asseenonpc.directtrack.com +asseenontvonline.ru +asseenontv.ru +asses.co.uk +assessni.co.uk +asset.ind.in +asset.pagefair.com +asset.pagefair.net +assets1.adroll.com +assets1.exgfnetwork.com +assets3.admulti.com +assets.adtaily.com +assets.buysellads.com +assets.cntdy.mobi +assets.customer.io +assets.igapi.com +assets.kixer.com +assets.luminate.com +assets.percentmobile.com +assets.popmarker.com +assets.tapad.com +assets.wetransfer.net.debrawhitingfoundation.com +assets.wetransfer.net.debrawhitingfoundation.org +asset.wetransfer.net.debrawhitingfoundation.org +as.sexad.net +assexyas.com +assgidablyhoosieraw.com +assinatura.com.pt +assistance-free.fr-post.com +assistance-free.info +assistantbilling.in +assistenza.agrelliebasta.it +assistenza.login-appleit-apple.com-support.itilprot.com +as.skydersolutions.com +a-ssl.ligatus.com +assoc-amazon.com +assocateservievamira.it +associatedcontent.112.2o7.net +associatelawyers.net +associatesexports.com +associazioneiltrovatore.it +assoleste.org.br +as.specificmedia.com +assromcamlica.com +asstraffic18.net +assumption.com.au +assureanmikes.xyz +assuredcapitalsolutions.com +assysm.com +astaimmobiliare.it +astalavista.box.sk +astatic.weborama.fr +a.stat.xiaomi.com +asthanabrothers.com +astilearning.com +astm.it +astorageplaceofanderson.com +astradirectory.com +astrocash.org +astrochicks.com +astromagicmaster.com +astromssportfoto.se +asturconciertos.com +a.submityourflicks.com +asu.msmu.ru +asuswrt.net +asvic.org +asvnm.000webhostapp.com +asv.nuggad.net +as.vs4entertainment.com +as.webmd.com +asy.a8ww.net +asyifacell.co.id +asyimoo.co.id +as.yl.impact-ad.jp +asymmetrymusicmagazine.com +async01.admantx.com +at8pah7.bid +a.tadd.react2media.com +at-adserver.alltop.com +at.amgdgt.com +a.tantella.com +atasoyzeminmarket.com +atat.co.kr +atatcross.com +atatfb2017.000webhostapp.com +atatikolo.com +at.atwola.com +atax.askmen.com +atax.gamermetrics.com +atax.ign.com +atax.teamxbox.com +at.campaigns.f2.com.au +at.ceofreehost.com +atc-inc.com +atdmt.com +a.teads.tv +ateasecafe.com +atefab.pingfiles.fr +atelielembrancaqueencanta.com.br +atelierprincesse.web.fc2.com +atemda.com +a.tempurpedic.com +atencionalusuario.com +atendimento.acess.mobi +atendimentoclientenovo.com +atendimentocnservicosempresas.com +atendimento-seguro.comunicadoimportante.co +atendimento-seguro-dados-bradesco.com.br.847kl.com +ateresraffle.com +aterramientos.com +atfarmsource.ca +atfxsystems.co.uk +atgeotech.com.au +at.gmads.net +a.thanksearch.com +atheiststudies.org +athena-ads.wikia.com +athenaie-fans.com +athenasoft.com.tw +athensprestigehome.us +athoi-inc.com +athomeconstruction.com +athomenetwork.hu +a.thoughtleadr.com +athsheba.vardtorg.ru +at-img1.tdimg.com +at-img2.tdimg.com +at-img3.tdimg.com +atinna.com +a.tiscali.co.uk +ativan.ourtablets.com +ativo-contrato.com.br +atlantaautoinjuryattorneys.com +atlantaconnectionsupplier.com +atlantaseguros.com +atlant-auto.info +atlanticacmobil.id +atlanticcarstereo.ca +atlanticcity.es +atlanticmedia.122.2o7.net +atlaschurchofmiracle.com +atlasdmt.com +atlas-nedvigimost.ru +atlassian.122.2o7.net +atlasvkusov.ru +atlcourier.com +atleticpharm.org +atl.my.bidsystem.com +atl.xmlsearch.miva.com +at.m1.nedstatbasic.net +atmagroup.ru +atmape.ru +atmmakarewicz.pl +atmodrive.top +atmovs.com +atm.sk +atm.youku.com +atofilms.com +atomalarm2013.de +atomicemergencyhotwater.com.au +at.ontargetjobs.com +atosac-cliente.com +a.total-media.net +atousauniversal.com +atousoft.com +atout-energie-69.com +atovh.local-finders.com +atrd.netmng.com +a.tribalfusion.com +a.triggit.com +atrk.alexametrics.com +a.trkme.net +atsel.com +atspace.de.intellitxt.com +ats.tumri.net +attachment-004.bloombergg.net +attachments.goapk.com +attack.mapbest.net +attcarsint.cf +att.com.loginaction.softwaresdevelopment.in +attdeviceunlock.com +attenione.x24hr.com +atterso.elkablog.ru +attexperince.com +atthelpservice.org +atti.velti.com +attnrt.net +att-promo.com +attractivitessoumissions.com +attribution.webmarketing123.com +attritionlarder.com +attrst.net +attxperience.com +atualizabrasil.com.br +atualizacaobancodigital.com +atualizacao-cadastral.com +atualizacaosegura30.serveirc.com +atualizar-cadastro.com +atualizeconta.com +atu-krawiectwo-slusiarstwo.pl +atulizj9.bget.ru +atutpc.pl +atv-cfmoto.ru +a.tvn.lv +atvplus.oewabox.at +a.twiago.com +atwola.com +atxappliancerepair.com +atxinspection.com +atyss.barginginfrance.net +au-01.adtomafusion.com +au052.insightexpress.com +au.2.cqcounter.com +au.adserver.yahoo.com +au.ads.link4ads.com +aubentonia.measurelighter.ru +auberge-du-viaduc.fr +au-cdn.effectivemeasure.net +auchansite.com +a.ucoz.net +a.ucoz.ru +auctechquotation.supply-submit.rogibgroup.com +auction50.com +auctionads.com +auctionads.net +auctionbowling.com +auctiondirectory.org +auction.unityads.unity3d.com +aud3g.com +auderda.ellogroup.ru +audi4e.oewabox.at +audia6.com +audible.112.2o7.net +audience2media.com +audiobangout.com +audio.cl +audiodeck.de +audio.de.intellitxt.com +audiofree.ru +audiomovil.cl +audioztrendhx.cf +audit.median.hu +audit.webinform.hu +a.udorik.com +aud.pubmatic.com +audubon01.com +audubonlandscapes.com +au.effectivemeasure.net +au-finance.com +a.ufraton.com +augami.net +augustogemelli.com +auhtsiginsessioniduserestbayu.3eeweb.com +aujourdhui.refr.adgtw.orangeads.fr +aumo123usedcarscom.112.2o7.net +aumoautomobilemagcom.112.2o7.net +aumoautomotivecom.112.2o7.net +aumoautomotivectl.112.2o7.net +aumocarsbelowinvoice.112.2o7.net +aumointernetautoguidecom.112.2o7.net +aumomotortrend.112.2o7.net +aumonewcarcom.112.2o7.net +aumotradeinvaluecom.112.2o7.net +aunewzcheck.com +au-pairs.com +a.update.51edm.net +a.upnorma.com +aupvfp.com +a.uralap.com +aurape.website +aureate.com +aurelius.httpool.com +aurovnp.net +ausbuildblog.com.au +ausergrubhof.info +ausgburg.de +aus.laola1.tv +auslieferung.commindo-media-ressourcen.de +aus-mec-tracking.adalyser.com +ausmepa.org.au +ausonetan.esy.es +auspice.augur.io +auspolice.com +aussiemethod.com +aussie-prizes.com +aussieroadtosuccess.com +aus-smv-tracking.adalyser.com +australianewzealandb.tt.omtrdc.net +australiansafetypartners.com.au +australiansuperaudit.com.au +australianwindansolar.com +australia-opening-times.com +austria1.adverserve.net +austria-car-rental.findworm.net +austria.oewabox.at +ausubelinstituto.edu.mx +autcontrol.ir +auth-account-service.com +auth-bedachungen.de +authenticationmacid.com +authenticationportal.weebly.com +authenticitylighting.com +authentos.com +auth.forfait.forfait-orange-fr.com +authorization-signin-sg.com +authprwz.info +authsirs.com +authtention-apple-recover.com +autismmv.org +autismo.bid +autizmus.n1.hu +auto2000.ru +auto4style.ru +auto.allewagen.de +autoanythingcom.112.2o7.net +autoaribagsettlement.com +autoatmseguro.com +auto-bannertausch.de +autobilan-chasseneuillais.fr +autobkk.com +autoblogger24.info +autobudpostach.club +autobytel.112.2o7.net +autobytelcorppopup.112.2o7.net +autochoixspinelli.com +autocomms.co.za +autocontext.begun.ru +autocopiative.ro +autocosmi.ro +autocounter.marketgid.com +autocountsoft.my +auto-deals247.com +autodo.info +autoescolasantarita.com.br +autofollowers.hol.es +autoforums.us.intellitxt.com +auto-fx.fr +autogap.com +autoglassalpha.com +autogrep.ru +autohipnose.com +autohits.dk +autokarykatowice.pl +autoklucz.eu +autoloans.com +autolombard-krasnodar.ru +automartloans.com +automaticsocialbookmarks.com +automobilemag.us.intellitxt.com +automobi.oewabox.at +automoneygenerator.biz +automoneygenerator.com +automotive-offer.com +automotive-rewardpath.com +automotive.us.intellitxt.com +auto-moto-elektronika.cz +automoto.oewabox.at +autonations.com +autonew.biz +autonewused.biz +autonomiadigital.com.br +auto-overview.com +autopartesdelcentro.com +autopflegeprodukte.com +autoplate.info +autopostoajax.com.br +autoreparatie.nl +autoreply.co.uk +autorevs.net +a.utorido.com +autorn.ru +auto.rusvile.lt +autoscout24.112.2o7.net +autosegurancabrasil.com +autoserv-2.nichost.ru +autosloansonlines.com +autos.msnbc.us.intellitxt.com +autospies.us.intellitxt.com +autosversichern.com +autotop.com.ua +autotrends.today +autoua.top +autoupdatenoreply61893124792830indexphi.mississauga-junkcar.com +autoupdate.update4ever.xyz +autoversion.de +autovideobroadcast.com +autoweb.112.2o7.net +auto.web.id +autowebmarket.com.ua +auto-windabweiser.de +autoworldnews.us.intellitxt.com +autoxls.ru +autoyokohama.com +auto-zapchasti.org +au.track.decideinteractive.com +au.youmi.net +a.uzekrs.com +a.uzotarak.com +av0713.tk +av356.com +av5k.com +avada.nycwebapps.com +availit.weebly.com +avalon.topbucks.com +avaniinfra.in +avanim.com +avanozhan.com +avantcreit.com +avantgarden-2.ro +avantgardevisions.com +avant-leasing.com.ua +avantlink.com +avantlog.com.br +avanz.pe +ava-s.de +avast-mail-security.download +avast.services +avazudsp.net +av-clean.com +avcounter10.com +avdata.com +avek.ru +a-velo.at +avenfeld.com +avenuea.com +aversian.com +aversis.net +av.ghura.pl +avgtechnologies.112.2o7.net +aviapanda.ru +aviav.co +aviav.eu +aviav.org +aviav.ru +aviav.ru.com +avidflygare.se +avidnewssource.com +avidtrak.com +avijehdaroo.co +a.villeges.com +aviodg.eu +avionselect.com +avirasecureserver.com +avis.cm +a.visualrevenue.com +avitocars.ru +avkzarabotok.com +avkzarabotok.info +avmanarts.com +avokka.com +avon.112.2o7.net +a.vonage.com +avoneus.com +avon-novosib.ru +avonseniorcare.com +avon-severozapad.ru +avon-ukraine.com +avpa.dzone.com +avpa.javalobby.org +avp.innity.com +avp-mech.ru +avppet.com +avrakougioumtzi.gr +avramstroy.ru +avres.net +avrinajos.com +avsads.com +a.vserv.mobi +avskype.com +avt.hit.gemius.pl +avtobanka.ru +avtobaraxlo.ru +avtocenter-nsk.ru +avtochehli.by +avtocredit-legko.ru +avtodiler63.ru +avtointeres.ru +avtolombard-krasnodar.com +avtolombard-krasnodar.ru +avtona100.ru +avtovolop.ru +avukatvar.com +avur.com +avzadsrv.com +awa-beauty.ru +awaisjuno.net +a.wakapita.com +awardspace.de.intellitxt.com +awardssystems.co.uk +awarenesstech.122.2o7.net +awaybird.ru +away.us.intellitxt.com +aw.bratimir.cpanel.in.rs +a.websponsors.com +a.webwise.com +a.webwise.net +a.webwise.org +aweisser.cl +awempire.com +awency.com +awesomeinstallsavaliableonlinetodaysafe.pw +awesome-nursing-degrees.com +awesomevipoffers.com +awe.usa.shedbd.org +awgur.ru +a.wikia-beacon.com +awilcodrlling.com +awin1.com +awinstore.com +a.wishabi.com +awkffaxch.top +awper2.ddns.net +awrz.net +aws2.support +axa3.cn +a.xanga.com +axbetb2.com +axbocz.net +axdget-sync.nuggad.net +ax-d.pixfuture.net +axel.hit.gemius.pl +aximsite.us.intellitxt.com +axiologybeaty.com +axisbuild.com +axisfinancial.org +axis-online.pl +axistri.com.br +axjp.cn +axkantravel.com +axotel.com +axpoium.echange.su +axp.zedo.com +axsg0ym.tvcjp.gq +axshare.co +axsrv.com +axtyaxgkptz.cc +axtzz.ulcraft.com +ayaanassociates.com +ayada.zapto.org +ayakino.net +ayanaspa.com +ayareview-document.pdf-iso.webapps-security.review-2jk39w92.ab5nights.com +ayboll.sgsrv.com +ayeartoforget.com +ay.eastmoney.com +ayehcleaners.com +ayejaytoonin.com +ayerbo.xhost.ro +ayile.com +ayjp.sisplm.ml +aynachatsrv.com +ayohz3o.top +ayoliburan.co.id +ayoontukija.com +a.yorilada.com +ayoubthex.myftp.biz +aysaoto.com +aytunmbagbeki.xyz +ayurjoy.com +ayurvedsolution.in +az27.pl +az361816.vo.msecnd.net +az512334.vo.msecnd.net +az.5.p2l.info +azadbdgroup.com +azadnegar.com +azarevi.dom-monster-house.ru +azarevi.vard-forum.ru +azarmalik.net +az-armaturen.su +azartmix.com +azartniy-bonus.com +azazaporn.com +azazaz.eu +azazu.ru +azbaseimages.net +azblock2000.com +azb.strony.tx.pl +azbukadiets.ru +azbukafree.com +azbuka-mo.ru +azcentra.app.ur.gcion.com +azcyhfizu.top +azerbal.ga +a.zeroredirect1.com +a.zeroredirect2.com +a.zeroredirect.com +a.zinovila.com +azitconsultants.com +a-zk9services.co.uk +azlawassociates.com +azlex.uz +a.zonolali.com +azoogleads.com +azoos.csheaven.com +a.zoot.ro +azovskoe-more.biz +aztasarim.com +azte.ch +azteou.com +azuldomar.com.br +azweb.info +azz.badazz.org +az-zubayr.com +b00kmarks.com +b00ryv9r20.de +b0b1o.bid +b100.takru.com +b120.takru.com +b130.takru.com +b140.takru.com +b180.takru.com +b18cz282n31.esy.es +b1.adbrite.com +b1.azjmp.com +b1fe8a95ae27823.com +b1.perfb.com +b.1s2.in.ua +b-1st.com +b2b.filecloud.me +b34rightym.com +b3a70b.t.axf8.net +b3d.com +b3.mookie1.com +b3-uk.mookie1.com +b4.3ddown.com +b44625y1.bget.ru +b4yourpregnancy.com +b5057c.r.axf8.net +b5media.us.intellitxt.com +b6roqgi.com +b.6sc.co +b7gqh.inbvq0t.top +b8t0c8.top +b92adrs.hit.gemius.pl +b92rs.adocean.pl +b9a.net +b.a2gw.com +ba2i.se +ba2qlo2w4kv9.net +ba.afl.rakuten.co.jp +baba.edu.np +babamlala.info +babanetwork.adk2x.com +babao.twhl.net +babes.ign.us.intellitxt.com +babespcs.com +babgod.hostmecom.com +babieca.com +bablonow.ru +b.abnad.net +babos.scrapping.cc +babs.com.ua +babs.tv2.dk +babugonjhighschool.edu.bd +babyboomernetworking.org +baby-care-ru.ru +babycentercom.112.2o7.net +babycenter.tt.omtrdc.net +babyf.oewabox.at +babyguns.ru +babylyst.com +baby.py.shangdu.com +babysitter.gen.tr +babywantsbling.com +bacherlorgromms.co.za +backbeatmedia.com +back.dog +backfill.ph.affinity.com +backgroundpictures.net +backkek228.ddns.net +backlink4u.net +backlinkwatch.com +backoffice.evobinary.com +backofficellc.com +backpaininstantrelief.com +backpedalcorsetry.com +backseatcuddler.us.intellitxt.com +backstock-records.de +backuperwebcam.weebly.com +backup-recovery32.xyz +backup-recovery33.xyz +backup-recovery34.xyz +backup-recovery35.xyz +backup-recovery36.xyz +backupservcies.des-stu.com +badaonz.com +badass-customs.se +b.adbox.lv +baddogservices.com +badlywantyou.top +b.admedia.com +b.admob.com +b.adnxs.com +badoeudn.com +b.ads1.msn.com +b.ads2.msads.net +b.ads2.msn.com +badservant.guj.de +bad-stars.net +badults.se +badusound.pl +badv.wp.pl +baersaratov.ru +bafta-cymru.org.uk +bag77.ru +bag86.com +bagcionderlab.com +bagpipermildura.com.au +bagslap.com +bagsonsale.online +bahadirelektronik.net +bahankarpetdasarmobilberkualitas.co.id +bahisstratejileri.info +bahklum-sajratho.tk +bahn.tv +baiadoseixal.cm-seixal.pt +baichenge.com +baiduccdn1.com +baidu.google.taobao.ieiba.com +baidukd.com +baidutv.baidu.com +baiduyisheng.com +baifa88.com +baigachahs.edu.bd +bailaran.com +baitalgaleed.com.sa +baixar-musicas-gratis.com +baixetudotorrent.com-br.xyz +baizun.bi2vl.com +bajankidorakz.com +baja-pro.com +bajasae.grupos.usb.ve +bajumuslimgamistaqwa.com +bakahungary.com +bakeonline.com +bakeri.com +bakici.com.tr +bakkenfail.com +baknizak-pajako.tk +baksman.com +baktria.pl +bakundencenter-sicherheitser.net +bakundenservice-sicherheit.net +bakuzbuq.ru +balabass.peerserver.com +balab.portx.net +baladur.ru +bala.getenjoyment.net +balajiedu.org +balajielectricals.co.in +balajigloves.net +balajipropertiesarcade.com +balakagroup.com +balakin.popunder.ru +balamatrimony.com +balancebuddies.co.uk +balbriggancinema.com +balexco-com.ga +bali-handicraft.com +balistyle.net +balitouroffice.com +baliundangan.id +baliwag.xyz +balkanfarma.org +balkanfarma.ru +balla-boo.se +balleralert.us.intellitxt.com +ballongdekor.se +ballsack.org +ballymoreboardingkennels.ie +balochrise.com +balois.worldbreak.com +balook.com +baloonwalkingpet.co.uk +b.alot.com +balsamar.org +baltgem.com +baltkagroup.com +baluis.gq +b.am15.net +bambi.ck.ua +bambini.ir +bambooclothings.com +bambuuafryk.com +bam.nr-data.net +bamo.xsl.pt +bam-pilot.iovation.com +bamrungrak.ac.th +banana.automaxcenter.ro +bananacashback.com +banana.dp.ua +bananarepubic.com +banan.tv +banat7wa.website +banati-bags.ru +banc0estad0.esy.es +bancamovil.imovilbcp.tk +banco-bb.com +bancodobrasil1.com +bancomers-enlinea-mx-net.net +bancovotorantimcartoes.me +bandadesarme.com.br +bandelstjohns.com +bandisintown.com +bandleader.com.br +bandoc.d-group.co.il +bandungpaperroll.co.id +banerator.net +baner.energy-torrent.com +banery.acr.pl +banery.netart.pl +banery.onet.pl +banex.bikers-engine.com +banex.search.bg +bangashreetti.org +bang-hotties.com +bangladeshnewstoday.com +bangnice.co +banicupi.tk +banik.redigy.cz +banizeusz.com +bank01.ads.dt.mydas.mobi +bank01.ads.mp.mydas.mobi +bank02.ads.dt.mydas.mobi +bank02.ads.mp.mydas.mobi +bank03.ads.dt.mydas.mobi +bank03.ads.mp.mydas.mobi +bank04.ads.dt.mydas.mobi +bank04.ads.mp.mydas.mobi +bank05.ads.dt.mydas.mobi +bank05.ads.mp.mydas.mobi +bank06.ads.dt.mydas.mobi +bank06.ads.mp.mydas.mobi +bank07.ads.dt.mydas.mobi +bank07.ads.mp.mydas.mobi +bank08.ads.dt.mydas.mobi +bank08.ads.mp.mydas.mobi +bank09.ads.dt.mydas.mobi +bank09.ads.mp.mydas.mobi +bank0famerikan.com +bank10.ads.dt.mydas.mobi +bank10.ads.mp.mydas.mobi +bank11.ads.dt.mydas.mobi +bank11.ads.mp.mydas.mobi +bank12.ads.dt.mydas.mobi +bank12.ads.mp.mydas.mobi +bank13.ads.dt.mydas.mobi +bank13.ads.mp.mydas.mobi +bank15.ads.dt.mydas.mobi +bank15.ads.mp.mydas.mobi +bank16.ads.dt.mydas.mobi +bank16.ads.mp.mydas.mobi +bank17.ads.dt.mydas.mobi +bank17.ads.mp.mydas.mobi +bank18.ads.dt.mydas.mobi +bank18.ads.mp.mydas.mobi +bank19.ads.dt.mydas.mobi +bank19.ads.mp.mydas.mobi +bank20.ads.dt.mydas.mobi +bank20.ads.mp.mydas.mobi +bank30hrs.com +bankakartsorgulamaislemleri.com +banka-navibor.by +bank.barclays.co.uk.olb.auth.loginlink.action.kyledadleh.com.au +bank.barclays.co.uk.olb.auth.loginlink.action.loginlink.action.loginlink.action.loginlink.action.desarrolloyestudioardeco.com +bank.barclays.co.uk.olb.auth.loginlink.action.loginlink.action.loginlink.action.loginlink.action.galatamp.com +bank.barclays.co.uk.olb.auth.loginlink.action.loginlink.action.loginlink.action.loginlink.action.totalbrakes.com.ar +bank.barclays.co.uk.olb.auth.registration.paymentreview.personalaccount.summarry.loginlink.action.31north62east.com +bank.barclays.co.uk.olb.auth.registration.paymentreview.personalaccount.summarry.loginlink.action.ortodontiacontagem1.com.br +bank.barclays.co.uk.olb.auth.registration.paymentreview.personalaccount.summarry.loginlink.action.thefloralessence.com +bankcrediti.ru +bankhsbconline.com +banki76.ru +banki-credit-online.ru +bankiem.pl +banking.capitalone.com.imoveisdecarli.com.br +banking-messages.com +banking.sparkasse.de-kundennummer-teqvjdmpplcgp4d.top +banki.onet.pl +bank-new.com +banknotification.ipmaust.com.au +bankofamerica-b-a.com +bankofamerica.chat-host.org +bankofamerica.com.account-update.oasisoutsourcingfirm.com +bankofamerica.com.brasskom.com +bankofamerica.com.checking.information.details.maqlar.net.br +bankofamerica.com.libfoobar.so +bankofamerica.com.login.informtion.update.new.myworkplacedigest.com +bankofamerica-com-login-support-bussnis-gold.com +bankofamerica-com-login-update-secure-online.com +bankofamerica.com-onlinebanking-online-banking.go.thevoiceofchinese.net +bankofamerica.com.propertisyariahtegal.com +bankofamerica-com-sigun-in-system-upgrade-new-year-we.com +bankofamerica.com.sy.login.in.update.new.sitkey.sarvarguesthouse.com +bankofamerica-com-system-fall-informtion-upgrade-into-go.rewewrcdgfwerewrwe.com +bankofamerica-com-system-login-in-informtion-sitkey-upgrade.org +bankofamerica-com-system-new-login-info-informtion-new-work.net +bankofamerica-com-system-new-upgrade-system-new.com +bankofamerica-com-unlocked-account.dassadeqwqweqwe.com +bankofamerica.com.update.info.devyog.com +bankofamerica-com-update-new-secure-loading-sitkey-onilne-pass.info +bankofamerica-com-updating-new-worki-secure.dfdsfsdfsdfdsfsd.com +bankofamerica.com.upgrade.informtion.login.sign.in.fasttrackafrica.org +bankofamerica-com-upgrade-informtion-new-secure.com +bankofamerica.com.yapitek.com.tr +bank-of-america-logon-online.usa.cc +bankofamericaonlineverification.zonadeestrategias.com +bankofamerica.tt.omtrdc.net +bankofamerica-verification.exaxol.com +bankofthewext.com +bankrate.112.2o7.net +bankrekeningkiezen.xyz +bankrekeningonline.xyz +bankruptcydishcargesettlement.com +bankruptcylawyers.click +bankwest.112.2o7.net +banlv.baidu.com +banman.isoftmarketing.com +banman.nepsecure.co.uk +bannanarepublic.com +banner.0catch.com +banner.1and1.co.uk +banner1.pornhost.com +banner2.inet-traffic.com +banner2.isobarturkiye.net +banner.50megs.com +banner.ad.nu +bannerads.anytimenews.com +bannerads.de +banner.adserverpub.com +bannerads.mantecabulletin.com +banner.adsrevenue.net +bannerads.zwire.com +banneradvertising.adclickmedia.com +banner.affactive.com +banner.ambercoastcasino.com +banner-a.oddcast.com +bannerbank.ru +banner.betfred.com +banner.betroyalaffiliates.com +banner.betwwts.com +banner.blogranking.net +bannerboxes.com +banner.buempliz-online.ch +banner.casinodelrio.com +banner.casino.net +banner.casinotropez.com +banner.cdpoker.com +banner.clubdicecasino.com +bannercommunity.de +bannerconnect.com +bannerconnect.net +bannerco-op.com +banner.cotedazurpalace.com +banner.coza.com +banner.cz +banner.date.com +banner.diamondclubcasino.com +banner-d.oddcast.com +bannerdriven.ru +banner.easyspace.com +banner.elisa.net +banner.euroads.no +banner.eurogrand.com +banner.europacasino.com +banner-exchange-24.de +bannerexchange.cjb.net +bannerexchange.troglod.com +bannerfarm.ace.advertising.com +banner.finn.no +banner.finzoom.ro +bannerflow.com +banner.free6.com +banner.freeservers.com +banner.getgo.de +banner.goldenpalace.com +bannergrabber.internet.gr +bannerhost.com +bannerhost.egamingonline.com +banner.hpmdnetwork.ru +bannerimage.com +bannerimages.0catch.com +banner.img.co.za +banner-img.haber7.com +banner.inyourpocket.com +banner.joylandcasino.com +banner.kanald.com.tr +banner.kiev.ua +bannerlandia.com.ar +banner.lbs.km.ru +bannerlink.xxxtreams.com +banner.linux.se +bannermall.com +bannermanager.bnr.bg +bannermarkt.nl +banner.media-system.de +banner.mindshare.de +banner.missingkids.com +banner.monacogoldcasino.com +banner.mymedia.bg +banner.newyorkcasino.com +banner.nixnet.cz +banner.noblepoker.com +banner.nonstoppartner.de +banner.northsky.com +banner.nttnavi.co.jp +banner.oddcast.com +banner.orb.net +banner.passion.com +banner.penguin.cz +banner.piratos.de +banner.play-asia.com +banner.playgatecasino.com +bannerpower.com +banner.prestigecasino.com +bannerpromotion.it +banner.publisher.to +banner.rbc.ru +banner.relcom.ru +banner.ringofon.com +bannerrotation.sexmoney.com +banners1.linkbuddies.com +banners2.castles.org +banners2.ero-advertising.com +banners.2lipslive.com +banners3.spacash.com +banners.4d5.net +banners.absolpublisher.com +banners.adfox.ru +banners.adgoto.com +banners.adnetmedia.lt +banners.adultfriendfinder.com +banners.adventory.com +banners.advidi.com +banners.affiliatefuel.com +banners.affiliatefuture.com +banners.affilimatch.de +banners.aftrk.com +banners.alo.bg +banners.alt.com +banners.amfibi.com +banners.amigos.com +banners.asiafriendfinder.com +banners.askmecca.com +banners.audioholics.com +banners.babylon-x.com +banners.betcris.com +banners.bghelp.co.uk +banners.bgmaps.com +banners.bigchurch.com +banners.bigmobileads.com +banners.blogads.com +banners.bol.com.br +banners.bol.se +banners.brinkin.com +banners.broadwayworld.com +banners.camdough.com +banners.cams.com +banner.scasino.com +banners.celebritybling.com +banners.clickon.co.il +banners.clips4sale.com +banners.clubseventeen.com +banners.content.rude.com +banners.copyscape.com +banners.crakcash.com +banners.crisscross.com +banners.czi.cz +banners.datecs.bg +banners.delivery.addynamo.com +banners.dine.com +banners.dir.bg +banners.direction-x.com +banners.directnic.com +banners.dnastudio.com +banners.dogfart.com +banners.dol.gr +banner.search.bg +banners.easydns.com +banners.easysolutions.be +banners.ebay.com +banner.sedem.bg +banners.e-dologic.co.il +banners.ero-advertising.com +bannerserver.com +banner-server.winecountry.com +banners.expressindia.com +banners.ffsbg.com +banners.flair.be +banners.flingguru.com +banners.free6.com +banners.freett.com +banners.friendfinder.com +banners.fuckbookhookups.com +banners.fuifbeest.be +banners.fulltiltpoker.com +banners.gayfriendfinder.com +banners.germanfriendfinder.com +banners.getiton.com +banners.globovision.com +bannersgomlm.buildreferrals.com +bannersgomlm.com +banners.host.bannerflow.com +bannershotlink.perfectgonzo.com +banners.icams.com +banners.images.streamray.com +banners.img.uol.com.br +banners.ims.nl +banners.inetfast.com +banners.iop.org +banners.ipotd.com +banners.iq.pl +banners.isoftmarketing.com +banners.japantoday.com +banners.jewishfriendfinder.com +banners.kfmb.com +banners.ksl.com +banners.lativio.com +banners.leadingedgecash.com +banners.linkbuddies.com +banners.looksmart.com +banners.lottoelite.com +banners.meccahoo.com +banners.mellowads.com +banners.millionairemate.com +banners.moreniche.com +banners.mymedia.bg +banners.mynakedweb.com +banners.nbcupromotes.com +banners.netcraft.com +banners.news1.co.il +banners.newsru.com +banners.nextcard.com +bannersng.yell.com +banners.nova.bg +banners.outpersonals.com +banners.outster.com +banners.oxiads.fr +bannerspace.com +banners.passion.com +banners.payserve.com +banners.pcsecurityshield.com +banners.pennyweb.com +banners.penthouse.com +banners.perfectgonzo.com +banners.pinnaclesports.com +banners.popads.net +banners.primaryclick.com +banners.realitycash.com +banners.resultonline.com +banners.rexmag.com +banners.romania-insider.com +banners.rspworldwide.com +banners.rude.com +banners.rushcommerce.com +banners.securedataimages.com +banners.seniorfriendfinder.com +banners.sexsearch.com +banners.sextracker.com +banners.spiceworks.com +banners.sublimedirectory.com +banners.swapfinder.com +banners.sys-con.com +banners.takru.com +banners.tempobet.com +banners.thegridwebmaster.com +banners.thestranger.com +banners.thgimages.co.uk +banners.thirdmovies.com +banners.thiswillshockyou.com +banners.thomsonlocal.com +banners.topcities.com +banners.toteme.com +banners.tribute.ca +banners.truecash.com +banners.tucson.com +banners.unibet.com +bannersurvey.biz +banners.valuead.com +banners.victor.com +banners.videosecrets.com +banners.videosz.com +banners.virtuagirlhd.com +bannerswap.com +banners.webcams.com +banners.webcounter.com +banners.webmasterplan.com +banners.weboverdrive.com +banners.weselltraffic.com +banners.wunderground.com +bannersxchange.com +banners.yllix.com +banner.synergy-e.com +banners.zbs.ru +banners.ztod.com +banner.tanto.de +banner.tattomedia.com +banner.techarp.com +banner.terminal.hu +bannertesting.com +banner.titan-dsl.de +banner.titanpoker.com +banner.tonygpoker.com +bannert.ru +bannerus1.axelsfun.com +bannerus3.axelsfun.com +banner.usacasino.com +banner.vadian.net +banner.vegasred.com +banner.vrs.cz +banner.webmersion.com +banner.webtools24.net +banner.wirenode.com +bannery.cz +banniere.reussissonsensemble.fr +bannieres.acces-contenu.com +bans.adserver.co.il +bans.bride.ru +banstex.com +bansuochina.com +bansys.onzin.com +bantam.ai.net +banterrra.com +ban.xpays.com +bao247.top +baodsajky.top +b.aol.com +baolinyouxipingtai.com +baomihua.co +baoshlda.com +baothainews.info +bapuviralhain.com +barafranca.iwarp.com +bar.baidu.com +barbarasdancefashions.com +barbaros.com +barbourjackets.online +barcai.com +barchi.ga +barckiesc.com +barclaycard.co.uk-personal-codeb6259568de39651d7a-login.id-107sbtd9cbhsbtd5d80a13c0db1f546757jnq9j5754675752468171.exaways.com +barclaydwight.com +barclays.co.uk.personalbanking.p1242557947640.p1242557947640.p1242557947640.093030023030230230002300239.braidingcenter.com +barclays.co.uk.personalbanking.p1242557947640.p1242557947640.p1242557947640.093030023030230230002300239.hptrading.co +barclaysghana.org +bard-real.com.ua +barefootshiatsumassage.com +barelpincho.com +barenessesities.com +barenthi-wertisob.tk +bar.freelogs.com +bargainbeautybuys.com +bargainpda.us.intellitxt.com +bargainracks.co.uk +barilliance.net +barker-homes.com +barksupport.at +barkurenerji.net +bar.mytotalsearch.com +bar.mywebsearch.com +barnesandnoble.bfast.com +barnfurnituremart.com +barnsemster.se +barrettatile.com +barrierefrei-im-alltag.de +barristers.ru +barriving.ga +barryoleary.co.uk +bartagamen-fan.de +bartnagel.tv +bartolini-systems.com +baryote.com +base234.000webhostapp.com +basebanner.com +basedow-bilder.de +baselinemag.us.intellitxt.com +bashtime.ru +basicohomes.co.uk +basicpolymers.com +basics.it +basisches-wasser.net +basital.de +basket-bordeaux.fr +baskettexture.com +bastardly.us.intellitxt.com +basterr.popunder.ru +b.as-us.falkag.net +basyapitrakya.com +batanga.net +batata2015.com +bat.bing.com +batch.iovation.com +batcoroadlinescorporation.com +bathroomreno.biz +bathroomsinbristol.com +bathroomsperth.com.au +bathtubb.in.net +batikdiajengsolo.co.id +batonnetstougespring.zuggmusic.com +baton-rouge-drug-rehabs.com +battlecarnival.su +battlefrontstar.ml +battleoftheprizes.club +battleon.directtrack.com +battlepeople.net +baublebar.sp1.convertro.com +bauhn.de +baumgarten-burgdorf.de +bausparen.bz.it +bavaria46.com +bavkstage.com +bawdybeast.com +b-aws.aol.com +b-aws.huffingtonpost.com +bawtrycarbons.com +baxtercreditunionoverdraftfeesettlement.com +baxtercreditunionoverdraftfeessettlment.com +baxtercreditunionoverdraftfessettlement.com +bayanicgiyimsitesi.somee.com +bayansayfasi.com +bayareagoferservice.com +bayoubuzz.advertserve.com +baypops.com +baystate.xyz +bayubuantravel.com +bayviewpartners.com +bazaar.tokyo +bazafilmowa.org +bazandegan.com +bazar.oewabox.at +bazaronline24.ru +bazasprawdzianow.pl +bazziebizzle.com +bb01abc4net.com +bb-acesso-web.ml +bbads.sv.publicus.com +bbads.sx.atl.publicus.com +bbatendimento.ml +bb-atualize.com +bb-atualize-conta.cf +bbautoatendimento-regularize.com +bbbnvkthwbwm.com +bbbopost.com +bbbrasileops211-001-site1.1tempurl.com +bbc.112.2o7.net +bbcasangaria.org +bbcdn-bbnaut.ibillboard.com +bbcdn.code.intext.billboard.cz +bbcdn.code.new.smartcontext.pl +bbcdn.delivery.reklamz.com +bbcdn.go.adevolution.bbelements.com +bbcdn.go.adlt.bbelements.com +bbcdn.go.adlv.bbelements.com +bbcdn.go.adnet.bbelements.com +bbcdn.go.arbo.bbelements.com +bbcdn.go.arbopl.bbelements.com +bbcdn.go.cz.bbelements.com +bbcdn.go.eu.bbelements.com +bbcdn.go.evolutionmedia.bbelements.com +bbcdn.go.idmnet.bbelements.com +bbcdn.go.ihned.bbelements.com +bbcdn.go.pl.bbelements.com +bbcdn.go.pol.bbelements.com +bbcdn-tag.ibillboard.com +bbcertificado.org +bbcnewscouk.112.2o7.net +bb.connextra.com +bbcontato.online +bb.crwdcntrl.net +bbcsportmania.com +bbehk.se +bbelements.com +b.bestcomputeradvisor.com +bbevillea.vardtorg.ru +bbg.d1.sc.omtrdc.net +bbingenieria.com +bbkiweeds.com +bblogspot.com +bb-mobi.com +bb.mobile.apksms.com +bbmobileappportal.com +bbnaut.bbelements.com +bbnaut.ibillboard.com +bbn.img.com.ua +bbnp.com +bbnwl.cn +bb.o2.eyereturn.com +bbouw.com +bbpama.com +bb.pessoafisicabb.com +bbqdzx.com +bbqlinksonline.com +bbrothersgroup.net +bbs.bjchun.com +bbschool-ksa.com +bbs.cndeaf.com +bb-seguro-auto.j.dnr.kz +bbs.hanndec.com +bbs.jucheyoufu.com +bbsoldes.fr +bbspeaks249.com +bbs.tiens.net.cn +bbs.ws +bbs.zgfhl.com +bbtec.net +bbtv.blinkx.com +bbuacomtlnemtalpe.net +bbvacontinental.co.at.hm +bbva-continental-pe.securepe.net +bbxcou.com +bbxmail.gdoc.sercelinsaat.com +bc.5.p2l.info +bc685d37-266c-488e-824e-dd95d1c0e98b.statcamp.net +bcanalytics.bigcommerce.com +b.casalemedia.com +bcbb.rubiconproject.com +bcb.it +bcbnationalsummit.com +bcc.bradweb.co.uk +bccc.kickme.to +bcgroup-sa.com +bc.kuaiche.com +bclib.credicomicrolending.com +bc.marfeel.com +bcmp.org +bcnn.ir +b.codeonclick.com +b.collective-media.net +b.computerworlduk.com +bcp.com.bo.onlinebchp-bo.com +bcp.crwdcntrl.net +bcprunzonasegura.com +bcpsegurovirtuall.com +bcpzonasegura.2viabep.com +bcpzonaseguras.informealdia.ovh +bcpzonaseguras-viabcp.online +bcpzonaseguras.viacbpc.com +bcpzonaseguras.viajepc.me +bcpzonasegura.viabeps.com +bcpzonasegura.viabup.com +bcpzonasegura.viahcp.com +bcpzonaseguravialbpc.com +bcpzonaseguraz.com +bcpzonaseguro.viabcp2.com +bcpzonasequira.com +bcq.aruh.ml +bcrekah.atwebpages.com +bctoad.com +bd0dc.v.fwmrm.net +bdbindia.com +bdbiosciences.co +bdb.oewabox.at +bd-dlstributors.com +bde3d.com +bde.be +b.detetoigrae.com +bd.fxxz.com +bdgadv.ru +b.digitalartsonline.co.uk +bdjdbyplaywobb.com +bdlife.cf +bdlive.top +bdnad1.bangornews.com +b.dotnetadvisor.info +b.ds1.nl +bdsmcompany.com +bdsmgalls.net +bdsmtours.com +bdtgn.co +bdv.bidvertiser.com +bdx.comclick.com +be2anywhere.com +be4anywhere.com +bea4.v.fwmrm.net +beachfrontio.com +beachpics.com +beacon-1.newrelic.com +beacon-2.newrelic.com +beacon-3.newrelic.com +beacon-4.newrelic.com +beacon-5.newrelic.com +beacon-6.newrelic.com +beacon.affil.walmart.com +beacon.afy11.net +beacon.clickequations.net +beacon.cracked.com +beacon.ehow.com +beacon.errorception.com +beacon.examiner.com +beacon.guim.co.uk +beacon.gutefrage.net +beacon.hookedmediagroup.com +beacon.jumptime.com +beacon.jump-time.net +beacon.krxd.net +beacon.lijit.com +beacon.livefyre.com +beacon.mediahuis.be +beacon.mhtr.be +beaconplanning.net +beacon.saymedia.com +beacon.scorecardresearch.com +beacon.searchlinks.com +beacon.securestudies.com +beacons.helium.com +beacons.hottraffic.nl +beacon.sojern.com +beacon.thred.woven.com +beacon.tracelytics.com +beacon.tunecore.com +beacon-us-iad2.rubiconproject.com +beacon-us-west.rubiconproject.com +beacon.walmart.ca +beacon.walmart.com +be.adserver.yahoo.com +be.ads.justpremium.com +beads.sx.atl.publicus.com +beaglebeatrecords.com +beamark.noiselolpainoff.com +beamfall.info +beam.hlserve.com +beamincrease.com +beamkite.com +bean-bang.ru +beanexperience.com +beanextra.com +beanrushcafe.com +beap.adx.yahoo.com +beap.gemini.yahoo.com +beardedcm.com +bearsonthemantlepiece.com +beastwear.com.au +beatmp3ru.ru +beatsandcovers.com +beatyhousesupporte.su +beauby.ru +beaucoupbottomband.com +beaumot.org +beautiful-girl-names.com +beautrition.vn +beauty-b0x.pl +beauty-bracelet.com +beauty-clinic.ru +beautyden.us.intellitxt.com +beauty.finaltips.com +beautyinsp.com +beauty-pack.pl +beauty-picz.cf +beautysafari.com +beautysane.ru +beautystudioswh.com +beauty-things.com +beaverday.biz +bebeformosura.com.br +bebenbesupper.altervista.org +bebo.crwdcntrl.net +bebucket654.oss-eu-central-1.aliyuncs.com +becconet.com +becel.atwebpages.com +becheese.ga +becheese.tk +bechloredu.bid +bechunk.com +becjiewedding.com +beckerbo.com +beckerseguros.com.br +beckerstaxservice.org +becl23.b2.gns.co.il +becomedebtfree.com.au +becomegorgeous.us.intellitxt.com +b.economedia.bg +becuo.com +bedach.stream +bedanc.si +bedandbreakfast.com +bedbreakfastcomo.it +bedcapdealers.com +bedroomdid.com +bedroomxoc.info +bedslx.info +beebreeding.net +beehandyman.com +beemartialarts.com +beespace.com.ua +befdg.com +beforegrunge.com +be-funk.com +beginsucceed.net +begleysigns.com +begun.ru +behave.nualias.com +behaynes.com +beheren.net +behindthenumbers.com.au +behtatarh.com +bei3.8910ad.com +beidahuangheifeng.com +beijingpifukeyiyuan.com +beijingvampires.com +beikehongbei.com +bei.nuggad.net +beixue8018.com +bekanmer01.mutu.firstheberg.net +beka.pl +bekkarihouda.com +belajarbasket.com +belanjasantai.id +beldiplomcom.75.com1.ru +belezasemtamanho.com +beliefnet.us.intellitxt.com +believeingod.me +belifoundation.org +belinka.com.ua +belinvestdom.by +belirak.com +belissimacentroestetico.com.br +belizkedip.tk +bellacouture.us +bell.adcentriconline.com +bellafemmebeauty.co.nz +bellagiopizza.ca +bellamii.co.uk +bellanapolionline.com +bella.thegalaxyweb.com +bellavistagardendesign.com.au +bellca.112.2o7.net +bellewiffen.com.au +bellglobemediapublishing.122.2o7.net +bellglovemediapublishing.122.2o7.net +bellinghambar.tk +bellsdelivery.com +bellserviceeng.112.2o7.net +belmon.ca +belointeractive.122.2o7.net +below0group.com +beloysoff.ru +belshar.com +belstaffstore.online +belstat.com +belstat.nl +beluxfurniture.com +bembemboss.5gbfree.com +bembemqwz2e.5gbfree.com +bemmaisperto.com.br +bemydate.mobi +benchemail.bmetrack.com +benchmarkcommunications.co.uk +bendixmaeder.de +be.nedstat.net +benefitslver.com +benfvickjrasa.com +b.engadget.com +benghui.org +benifitsaccess.org +benihpadiptsc.com +benimreklam.com +benpres-holdings.com +benrie.stream +bensbargains.net +b.ensighten.com +benstock.free.fr +bentala.com +benyuanbaina.com +beologopedie.nl +be-onlinemarketing.com +bephone.ga +beppe.com.br +berdasovivan.ru +bergaya.biz +bericolor.faith +berkahjaya.id +berketarim.com +berkleynude.ca.tt +berkshirecraftanddesign.com +berldk.nuggad.net +berlin-biokamine.de +berlininsl.com +berlin-macro-network.de +bernardo-plumbing.com +bernhardiner-vom-viehbachtal.de +beroepsperformancescan.nl +berp.com +berrymall.ru +berrymediaandsolutions.com +bertelwissenprod.122.2o7.net +beseenad.looksmart.com +be.sitestat.com +bespokeshelving.co.uk +besserreiten.de +besstbuy.com +best100catfights.com +best2017games.com +best4u.biz +bestadbid.com +bestadsforkeepingsafeyourcomptoday.pw +bestalco.ru +bestantivirussoftware.link +bestappinstalls.com +bestapps.com.pl +bestbillinsg.com +bestbondcleaning.wmehost.com +bestboy.top +best-businessman.ru +bestcadblocks.com +bestcalovebracelet.cn +bestcargologistics.com +bestchange.nu +bestchefcafe.ro +bestchoice.cf +bestcomputeradvisor.com +best-coupon-offer.com +bestcurs.org +bestdarkstar.info +bestdooz.com +bestdove.in.ua +bestdraws.com +bestempresas.es +bestescortagencies.net +bestfilesdownload.com +best-financialaid-offers.com +bestfolsomcarrepair.com +bestframingnailerreview.com +best-games.today +best-gasgrill.com +bestgift4you.cn +best-gsm.pl +bestimagecoollibrary.com +bestjobs.count.brat-online.ro +bestjobs.hit.gemius.pl +bestkfiledxd.cf +bestload.in +bestlolaray.com +bestmarriages.com +best-med-shop.com +bestmobilityscooterstoday.com +bestoffers.activeshopper.com +bestofferswalkmydogouteveryday.gq +bestofpicture.com +bestofupload.info +bestorican.com +bestorpstra.se +bestpen.at +bestpen.de +bestphoneapps.mobi +bestpons.net +bestpriceninja.com +bestpricerealestate.com.au +best-pr.info +bestprofits-there.com +best-quizy.pl +best-rated-offers.com +bestrecipes.ru +bestreview.site +best-search.cc +bestsearch.com +bestsearch.info +bestsearch.net +best-seo-offer.com +best-seo-software.xyz +best-seo-solution.com +bestserials.com +bestshockers.com +bestshopclub.su +bestshopperrewards.com +bestssaker.com +beststocktrend.com +bestsumppumpreviews.com +besttabletsupply.ru +besttestyiq24.pl +best-top.ro +besttop.su +besttru.qpoe.com +bestway.cz +best-way.men +bestwaystogetpaid.us +bestwebsiteawards.com +bestwebsitesawards.com +bestwm.info +bestwrinklecreamnow.com +bestyandex.com +bet.122.2o7.net +bet365.com +bet9a.com +betadailytelegraphatnewscorpau.files.wordpress.com +beta.easy-hit-counter.com +beta.easy-hit-counters.com +beta.easyhitcounters.com +beta.f.adbull.com +beta.galleries.paperstreetcash.com +beta.hotkeys.com +beta.newopenx.detik.com +betanews.us.intellitxt.com +beta.spb0.ru +bet-at-home.com +betblog.net +bet.ch +betclic.com +bet.demdex.net +beterdoctor.com +beterment.com +bethadelice.trade +bethesdamarketing.com +bethpagesetlement.com +bethpagesettelment.com +bethpagessettlement.com +betonka.pro +bet-online.petrovka.info +betononasos24.com +bet-prognoz.com +bettenversand.de +bettercatch.com +betterhdporn.com +betterhealtheverywhere.com +betterhg.112.2o7.net +betterhomeandgardenideas.com +betterlifefriends.com +betteroffers.review +betteronline.auth.clientform.rb.com.gardeninghelpersforyou.com +betterperformance.goldenopps.info +betterscooter.com +betting-online.petrovka.info +bettingwinning.se +betto.com +betune.onlinewebshop.net +betwinservice.com +beuamadrasha.edu.bd +beunhaas.biz +beveiligmijnkaart.nl +bevo-eu-west-1.adsnative.com +bextra.ourtablets.com +bextra-store.shengen.ru +beyaek3.top +beyan.host.sk +beykop.com +beyondhollywood.us.intellitxt.com +beyondwhois.com +bezcmexa.ru +bezeiqnt.net +bezglad.com +bezlepkoverecepty.sk +bez-limitu.tv +bezproudoff.cz +bezsporno.ru +beztuberkuleza.ru +bfast.com +bf.donnacastillo.com +bfgytu-indgtoy.tk +bfjf.online +b.fl1xfl1x.dynv6.net +bf.mocda1.com +bfoak.com +bf-tractor.com +bfw-vermittlungskontor.de +bfz.biz +bg.2.cqcounter.com +bg6s0.com +bga100.cn +bg.adocean.pl +bgbaner.com +b.getprizenow.top +bggde.adocean.pl +bggde-new.adocean.pl +bggr.me +bghaertytionaleresdecnace.net +bg.hit.gemius.pl +bgkfk.srikavadipalaniandavar.in +bgl1dr1-a-fixed.sancharnet.in +bgl1pp1-a-fixed.sancharnet.in +bglcusdhl.top +b.grabo.bg +b.grvcdn.com +bgscbochum.de +bg.search.etargetnet.com +bgs.qhedu.net +bg.static.etargetnet.com +bgtop100.com +bgwebads.com +bgy888.net +bhaibchain.com +bhajankutir.vedicseasons.com +bharatdefencekavach.com +bhardwajlawfirm.com +bhavanabank.com +bhavnagarms.in +bhawnabhanottgallery.com +bhcbbcrvutwv.com +bhclicks.com +bh.contextweb.com +bhdloen.com +bhejacry.com +bhfhdministre.com +bhftiness.com +bhgdiabeticliving.112.2o7.net +bhgdiy.112.2o7.net +bhgkitchenbath.112.2o7.net +bhgmarketing.112.2o7.net +bhgquilting.112.2o7.net +bhgremodel.112.2o7.net +bhgscrap.112.2o7.net +bhiconst.com +bhjhkim-jhgkjhds.tk +bhojendra.com.np +bhojpurtoday.com +bhpds.com +bhpipoz.pl +bhtotheventos.com.br +bhuiyansmm.edu.bd +bhyuu.com +bi2n4.com +bi2vl.com +bi.adview.pl +bianca.com.tr +bianche.it +biawwer.com +bibarakastore.id +bibitupian.com +bibitu.ru +biblicalbabies.com +bibrath.eu +bibys.com +bicgplewh.top +bicpzone.wwwsgss2.a2hosted.com +bidbuy.co.kr +bidclix.com +bidclix.net +bidentonrccom.122.2o7.net +bid.g.doubleclick.net +bid.openx.net +bid.pubmatic.com +bidr.trellian.com +bidswitch.net +bidsystem.adknowledge.com +bidsystem.com +bidtraffic.com +bidtrk.com +bidvertiser.com +biedronaa.5v.pl +bielertb.wemfbox.ch +biermanns-hof.de +bier.win +bif-ru.info +bigads.guj.de +bigairusa.com +bigames.online +bigapple.contextuads.com +bigbangmedia.com +bigbigforums.us.intellitxt.com +big-boards.info +bigbrandpromotions.com +bigbrandrewards.com +bigcareer.info +bigcities.org +bigclicks.com +bigdata.adfuture.cn +bigdata.adsunflower.com +bigdata.adups.com +bigdata.advmob.cn +bigfreelotto.com +biggeorge.com +biggestgiftrewards.com +bighop.com +bighow.net +bigip1.hitbox.com +bigip2.hitbox.com +bigiron4sale.com +bigjetplane.com +biglistofwebsites.com +bigmart.com.np +bigmobileads.com +bignow21.com +bigpage.de +bigpayout.go2jump.org +bigpenisguide.com +bigpond.122.2o7.net +bigrain.com +bigsmart.com +bigstoreoffers.co.uk +bigtits.xxxallaccesspass.com +bigwigpainting.com.au +bigwis.com +biiduh.com +bijuteriistarmd.ro +bikeforumsnet.skimlinks.com +bikemercado.com.br +bikerouteshop.com +bikeshophaidli.com +biketank.ga +biketoworkdaywinnipeg.org +bikhire.com +bikini-image.com +bilbaopisos.es +bilbob.com +bilbo.counted.com +bild.de.intellitxt.com +bilder-upload.eu +bild.ivwbox.de +bildsuche.ru +bildungsluecke.com +bildungsnetz-oberpfalz.de +bilgisayarmodifiyesi.com +biliginyecht.com +bilinhafestas.com.br +bill.agent.56.com +bill.agent.v-56.com +billboard.cz +billboard.nuggad.net +bill.ccbill.com +bill.ecsuite.com +billetterie.ca +billhoganphoto.com +billiard-classic.com.ua +billing-appleid.com +billing.netflix.user.solution.id2.client-redirection.com +billing-problems.com +billing.speedboink.com +billserv.tk +billsmithwebonlie.info +billsreviewjournal.com +bill.wiedemann.com +bilnytt.nu +bimatoprost-careprost.com +bimatoprost-careprost.com.ua +bimcotechnologies.com +bi.medscape.com +bimg.abv.bg +bi.mil.pl +bimonline.insites.be +bin1.kns1.al +binadroid.com +binarybuzzer.com +binary-clouds.com +binaryoptionscops.info +bin.clearspring.com +bingeeatingquiz.com +bingo8888.com +bingo-online.petrovka.info +bingorevenue.directtrack.com +bink.uk.intellitxt.com +binomo.com +binomo.kz +bin.pinion.gg +binsservicesonline.info +binyapub.com +bio-atomics.com +bio-beat.com +bioburger.gq +bioca.org +biogreencycle.com +bioito.cn +bio-japan.net +biolat.org +bio-market.kz +biomediaproject.eu +biomedizintechnik.com +bio-optomarket.ru +bioperfect.pl +biopro.ie +bioptron.med.pl +bioscorp.ru +biosmagazine.uk.intellitxt.com +bio.trade-jp.net +birbenins.com +bireysel-hizmet.com +bireysel-hizmetimiz.com +bireysell-islemlerim.com +bi-rite.co.za +birminghamphotographyclass.com +biroyatulhuda.sch.id +bir.snjack.info +birta.stats.is +birth-control.1.p2l.info +birzha-truda.eu +biserica-ieud.ro +bisericaromaneasca.ro +bishopallergy.com +bisikletoteli.com +bisimai.com +bisnispradipta.com +bist.ac.bd +bitads.net +bitburg.adtech.de +bitburg.adtech.fr +bitburg.adtech.us +bitcast-a.v1.iad1.bitgravity.com +bitcast-d.bitgravity.com +bitcoinpile.com +bitcoinplus.com +bitcoinremote.com +bitcoins-live.ru +bitcoinsmsxpress.com +bitcontract.ru +bit.do +bitmedianetwork.com +bitporno.sx +bitromix.com +bitsgigo.com +bitshostingdownloads.com +bitt.co.uk +bit-tech.uk.intellitxt.com +bittenandbound.us.intellitxt.com +bitter-buch.de +bitters.su +bivatek.com +bivestafrica.cd +bivouac-iguana-sahara-merzouga.com +biwwltvcom.112.2o7.net +biwwltvcom.122.2o7.net +biz2us.info +biz5.sandai.net +bizad.nikkeibp.co.jp +bizandlifesuccess.com +bizbash.co +bizbor.popunder.ru +bizcheapjerseyswholesalechina.com +bizcombd.com +bizfly.info +bizjournals.112.2o7.net +bizjournals-d.openx.net +bizlist.com.de +bizneed.com +biznesluxe.ru +biznesrealnost.ru +biznettvigator.com +biz-offer.com +bizographics.com +bizopprewards.com +bizpromotefreebooster.com +bizrate.com +bizru.info +biz-tie.com +biztocloud.com +biz.verify.apple.com.dgsfotografia.com.br +bizworld.co.th +bizzibeans.net +bj02.cww.com +bj04.com +bj7kpvd.gandjaltilogoki.com +bjanshee.ru +bjcvibh.com +bjdenon.com +bjdy123.com +bjetjt.com +bj-fengshi.com +bjhh998.com +bjhycd.net +bjhzlr.com +bjik.nu +bjjmywcb.com +bjmn100.com +bjorkbacken.nu +bjorksta.men +bjpgqsc.com +bjselectric.com +bjsieops.buyshouses.net +bjtysj.cn +bjxdzg.com +bjzksj.com.cn +b.kavanga.ru +bkbogosettlement.com +bkdresswala.com +bkgr.se +bkkjob.com +bkkwedding.com +bklaw.com.au +bkln.com.br +bkns.vn +bkook.cn +bkrntr.netmng.com +bkrtx.com +bkyvmj.info +bl11-253-38.dsl.telepac.pt +bl1nqz8yrf7tgdsq.tk +blabla4u.adserver.co.il +b.l-a-c.cn +blackantking.info +blackbreath.com +blackchek.popunder.ru +blackcurranthumidifiers.site +blackdnyc.com +blackfalcon3.net +blackfalcon5.net +blackgerman.net +blackhat.be +blackhatworth.com +blackhill.pp.ua +blackhogriflecompany.com +blackjacktalk.com +blackle.com +blackmouse1900.myjino.ru +blacknite.eu +blackops.kz +black.pk +blackpress.122.2o7.net +blackry.com +blacksheepatlanta.com +blacksnake.com +blacksoftworld.com +blacksportsonline.us.intellitxt.com +blackstormpills.org +blackuhurus.com +blackwitchcraft.ru +blagovest-med.ru +blanchardautosaleshoquiam.com +blarclaycardus.com +blasir.com +blasphemysfhs.info +blast4traffic.com +blastro.us.intellitxt.com +blastsruffs.co.za +blatant8jh.info +blaumen.com +blau-weiss-50-baabe.de +blauzsuzsa.square7.ch +blavia.00author.com +blazetradingllc.com +blde.ru +bldgblockscare.com +bleachkon.net +bledes.tk +bleepingcomputer.us.intellitxt.com +blekko.com +blenz-me.net +blessed2014.com +blessedtoblessministries.com +blessing.riva-properties.com +blessingspa.com +blessingstores.co.za +blethenmaine.112.2o7.net +blezd.tk +blickonl.wemfbox.ch +bliga.oewabox.at +bliman.com +blingbucks.com +blinhealth.com +blinknbuy.com +blinqblinqueenes.org +b.liquidustv.com +blisshealth.ca +blissinstalls.com +blissiq.com +blisstree.us.intellitxt.com +blitzadbg.hit.gemius.pl +blitzbg.adocean.pl +blitzkarte.de +blixiaobao1688.com +bllhicksco.com +blobar.org +blocjket.se +blockchain-verify.info +blockchaln.co.com +blockedfbservice.16mb.com +blocking-fb.000webhostapp.com +blockmetrics.com +block.sw1block.com +blockvhain.info +blockworld.ru +blog.3kingsclothing.com +blog.addthis.com +blogads.com +blogads.ebanner.nl +blogadswap.com +blogatcomunica.com.br +blog.axant.it +blog.broadcast-technology.com +blog.byethost.com +blog.canna.biz +blogchanie.com +blogcounter.com +blogcounter.de +blogerjijer.pw +blog.f00kclan.de +blog.fm120.com +bloggang.co +bloggedporn.com +bloggen.be +bloggerads.net +bloggernetwork-d.openx.net +bloggers.fuckyoucash.com +bloggers.nl +blog.guiket.com +blogherads.com +blog-hits.com +blogig.org +blog.koorg.ru +blog.koreadaily.com +blogmagnetix-wellness.se +blog.ndstudio.xyz +blogos.kz +blogporn.in +blogqpot.com +blogrankers.com +blog.raw-recruits.com +blog.remote-computer.de +blog.replacemycontacts.com +blogrush.com +blogs.rediff.com +blog.starweb.com.br +blogtalkradio.crwdcntrl.net +blog.tarotgratuito.org +blogtoplist.se +blogtopsites.com +blog.trianglewebhosting.com +blogtudosobrecabelos.com +blogvertising.pl +blog.yam.com +bloke.com +bloked-centers.my1.ru +blokeds-support.my1.ru +bloketoberfest.com +blommor.se +blooberfoo.ml +bloomingkreation.com +bloomingtonoptometrist.com +blossomkidsrehabcentre.com +blowfish.hitbox.com +blowmoldings.com +blownfreaks.com +blowngo.co.nz +blpd.net.au +blpmovies.com +blsmasale.com +blueadvertise.com +bluecrowngroup.us +bluecutsystem.com +bluediamondoffers.com +bluedownload.pl +blueendless.com +bluegas.com.au +bluehparking.com +bluejays-jerseys.us +bluekai.com +bluelagoonconstructions.com.au +bluelithium.com +bluemountain1.com +bluemountain2.com +bluemountainswalkingtours.com +bluemounten.com +bluerobot.info +bluesberry.se +bluescreenalert.com +bluescreenerrors.net +blue.sexer.com +bluesman.nu +bluestreak.com +bluewaffle.biz +bluewhaleweb.com +bluewinsource.weebly.com +bluewin.wemfbox.ch +bluga.com.ar +bluhostedbanners.blucigs.com +blumepower.net +blu.mobileads.msn.com +blushing.findgutterhelmet.com +blushsalon.com +blutoclothings.com +bluyonder.co.uk +bl.wavecdn.de +blwvcj.com +blyskawiczne-doladowania.blogspot.com +bma-autohaus.com +bm.alimama.cn +bm.annonce.cz +bmcampofertil.com.br +bmiexpress.co.uk +bmjahealthcaresolutions.co.uk +bm.met.vgwort.de +bmo1-onlineverification.com +bmo2016.al +bmo-accountlogin.com +bmo-accountsecurity.com +bmo-liveverifications.com +b.monetate.net +bmorealestate.com.ng +bmosecurity.net +bms.msk.bg +bms.sportal.ru +bms.xenium.bg +bmvip.alimama.cn +bmwhighperformers.com +bmwmoter.122.2o7.net +bmw-serviceweb.de +bmxtracksupply.net +b.myspace.com +bn-01.adtomafusion.com +bn.bfast.com +bndes.webcindario.com +bndparks.ir +b.nevadaprivateoffice.com +b.nex.bg +bnfastigheter.se +bng.in +bnk30livejs.112.2o7.net +bnkholic.112.2o7.net +bnkr8dev.112.2o7.net +bnlhh.co.uk +bnmgr.adinjector.net +bnmugu.com +bn.premiumhdv.com +bn.profiwin.de +bnrs.ilm.ee +bnsolutions.com.au +bnsoutlaws.co.uk +bnsportsbangladesh.com +bnsr.com +b.nt002.cn +bntbcstglobal.112.2o7.net +bnutuin.com +bnvxcfhdgf.blogspot.com.es +bnzonasegura.bnenlinea.net +boa-0918-verify-login-2014.icrb.cl +boaa.optimal-healthchiropractic.com +boa.chat-host.org +boa.coachoutletonlinestoresusa.com +boaonline.ga +board.classifieds1000.com +board.f00d.de +boardtown.com +boatingcampingfishing.com.au +boat.mccmatricschool.com +boatprinting.com +boattraider.com +boaverificationidentityform.iascoachingindia.in +boazpower.com +bobandvictoria.com +bobba.dzaba.com +bobbakers.net +bobbinstitch.com +bobbybootcamps.com +bobbysinghwpg.com +bobinoz.com +bocaditos.com.mx +bochemit.com.ua +bocoarchives.org +bodaclickusa.com +bodybuilding-shop.biz +bodydesign.com.au +bodyevo.co.za +bodyflying.se +bodymindsoulexpo.com.au +bodynsync.net +bodypackageshare.com +bodywork.school +boeotiation.com +boersego-ads.de +bofa24xsupport.gq +bofaverlfy.pe.hu +bogocn.com +bogra.educationfairbd.com +bohoth.com +boideourocarnes.com.br +boilingbeetle.com +b.oix.com +b.oix.net +boiywers.men +bojanke.org +bo.jumptap.com +bokee.allyes.com +bokepabc.com +bokhylle.no +bokotraffic.com +bokranzr.com +boksy.dir.onet.pl +boksy.onet.pl +bolaf.com +bolan.com.np +boldchat.com +boldride.us.intellitxt.com +bolerakopsoa.pw +bolero.wemfbox.ch +boleznikogi.com +bolezniorganov.ru +bolileather.com +bolitgorlo.net +bollebuikjes.be +bolo100.com +boloz.com +bolt.us.intellitxt.com +bomar-spa.com +bombla.org +bomcl.richmetrics.com +bomsensonamoda.com.br +bon1500.blogspot.com +bonanza-fortune.men +bonbonban.co.id +bon-bon-bon.pl +bondiwebdesign.com +bonerepresentacoes.com.br +bonetbienmanger.fr +bonette.ind.br +bongacams.com +bongiornos.info +bongs.com +bonintnewsktarcom.112.2o7.net +bonjo.bmbsklep.pl +bon-na-dzienkobiet2017.blogspot.com +bonnellspring.com +bonneville.112.2o7.net +bonniechakraborty.com +bonniercorp.122.2o7.net +bonoilgeogroup.com +bontril.1.p2l.info +bontril.ourtablets.com +bonuscashh.com +bonusdonat.ru +bonusmyonlineservices.com +bonusroulette.org +bonuswlf.bget.ru +bonux.nextview.ru +bonv.1gb.ru +bonvillan.com +bonykupony.pl +bony-na-dzienkobiet2017.blogspot.com +bony-paliwowe.pl +bonzbuddy.com +bonzibuddi.com +bonzybuddy.com +boobsimge.com +boogu.barginginfrance.net +booj7tho.com +bookav.net +bookclub-offer.com +bookhome.info +bookmaker-bet.com +bookmark4you.com +bookmark-ref-bookmarks-count.atwebpages.com +bookmark.t2t2.com +bookofkisl.com +bookproplus.com +books-media-edu-premiumblvd.com +books-media-edu-rewardempire.com +books-media-rewardpath.com +booksstar.pl +bookstar.pl +boole.onlinewebshop.net +boomads.com +boom.ro +boonwurrung.org.au +booostphone.pl +boostinsurence.com +boostmobile.112.2o7.net +boostmyppc.com +boost-my-pr.de +boostphone.gq +boostsoftware.com +bootcampton.com +bootdaily.us.intellitxt.com +boots.fotopyra.pl +bootstrap.livefyre.com +bootyoftheday.com +boquan.net +boracol-shop.de +boramind.co.kr +bora.studentworkbook.pw +borat.elticket.com.ar +bor-bogdanych.com +borders.112.2o7.net +bordobank.net +bori58.com +bori82.com +bormis.com +bornama.com.tw +born-genius.se +borntogrooipp.com +bororango.com +borrowanidea.com +borrower.it +borun.org +boryin.com +boryin.net +boschetto.de +boschetto-hotel.gr +boschservisigolcuk.org +bos.cnusher.in +bosecom.112.2o7.net +boslady.net +bosman.pluto.ro +bossenapan.co.id +bossmb.com +bos-tapreq01.jumptap.com +bos-tapreq02.jumptap.com +bos-tapreq03.jumptap.com +bos-tapreq04.jumptap.com +bos-tapreq05.jumptap.com +bos-tapreq06.jumptap.com +bos-tapreq07.jumptap.com +bos-tapreq08.jumptap.com +bos-tapreq09.jumptap.com +bos-tapreq10.jumptap.com +bos-tapreq11.jumptap.com +bos-tapreq12.jumptap.com +bos-tapreq13.jumptap.com +bos-tapreq14.jumptap.com +bos-tapreq15.jumptap.com +bos-tapreq16.jumptap.com +bos-tapreq17.jumptap.com +bos-tapreq18.jumptap.com +bos-tapreq19.jumptap.com +bos-tapreq20.jumptap.com +bostelbekersv.com +bostoncommonpress.112.2o7.net +boston-d.openx.net +bostongeekawards.joshbob.com +bostonglobe.demdex.net +boston.sandeeps.info +bostonsubwayoffer.com +botan-metan.ru +botd2.wordpress.com +botd.wordpress.com +bothwellbridge.co.uk +boticariovalepresent.home.sapo.pt +botoks-caly-film-online.htw.pl +botoks-online.pl +botosh.com +bots.configbinbots.info +bottleguy.com +bottlinghouse.com +botw.topbucks.com +bouda.kvalitne.cz +bougainville.com +bounceexchange.com +boushehri.com +boutiquell.almteam-consulting.com +boutique-miniature.com +bovusforum.com +bowlgirl.com +bowling.co.kr +bowlingle.com +bow-spell-effect1.ru +bowsvrpzdc.org +box.anchorfree.net +boxforminteriordesign.ph +boxingscene.us.intellitxt.com +boxofficebollywood.com +boycrazytoni.com +boydfiber.com +boyerfamily.net +boysandgirlsfamilydaycare.com.au +boz8899.com +bozhou.gov.cn +bpath.com +bp.blogspotl.com +bpc.bcseguridad.tk +bplenterprises.com +bpm.tags.bigpondmedia.com +bpro1.top +bps.beweb.com +bp.specificclick.net +bps.tesial-tech.be +bqbbw.com +bqqulmtfjfnfhilnxq.pw +br836.teste.website +bracalemusic.com +bracbetul.com +bracewellfamily.com +bradesco2.coteaquisaude.com +bradesco.com.br-atendimento.info-email.co +bradesco.it +b.rad.live.com +b.rad.msn.com +bradpittnow.us.intellitxt.com +br.adserver.yahoo.com +bradyhansen.com +brainbogs.com +brainboosting.club +brainboostingsupplements.org +braincash.com +brainerdsigns.net +braineyak.com +brainfall-d.openx.net +brainfox.com +brains2.biz +brainxs.us +brainyquote-d.openx.net +braip.com.br +brakrock.be +bramkasms365.pl +bramkasms.co +bramka-sms-online.pl +bramka-sms-za-darmo.pl +bramka-sms-zadarmo.pl +branchtist.com +brandedleadgeneration.com +brandehk.dk +brandermedia.com +brandieburrillphotography.com +brandinsideabrand.com +brandmeacademy.com +brandonadamsjewelry.com +brandonomicsenterprise.com +brandov.ru +brandreachsys.com +brandrewardcentral.com +brandschutztechnik-hartmann.de +brandsurveypanel.com +branservioceamiaiasrae.it +brans.pl +brapolice.com +brashbeers.com +brasilcandy.com +brassrule.com +braunholz-metallbau.de +brausincsystem.pro +brave.ebod.co.uk +bravegirlsclub.com +bravenet.com +bravenet.com.invalid +bravetools.net +bravo.israelinfo.ru +bravospots.com +brazelton.org +brazilanexpress.com +brazztech.com +brb.co.uk +br.comclick.com +breakfasttable.com +breaksurvey.com +break-the-chains.com +breastaugmentation.co.za +breatin.ga +brebeauty.com +brederup.se +brekthetravelquo.com +brendasgotababygurl.com +brendbutik.ru +brenz.pl +brevardmusic.com +brewdom.ru +brexitsolutions.com +br.fling.com +brg8.com +brgbiz.com +brgdwysti.top +briancrusso.com +brianweinstock.com +bribridee.com +bricksandstonesgossip.us.intellitxt.com +br-icloud.com.br +bridalsarebridals.com +bride1.com +bridge.ame.admarketplace.net +bridgecapitalsolutionscorp.com +bridgeglobal.org +bridge.sf.admarketplace.net +bridge.sfo1.admarketplace.net +bridgetrack.com +bridgetrack.speedera.r3h.net +bridgeviewmotel.men +briebailey.tripod.com +brightautoplast.trade +brightcove.112.2o7.net +brightexchanger.com +brighthomeuae.com +brighthouse.122.2o7.net +brighthub.us.intellitxt.com +brightinfo.com +brightonandhovekitchens.co.uk +brightonclick.com +brightroll.com +bright.su +brilliant-ep.com +brimstonehillfortress.org +bringyourteam.com +brisbanefashion.com +britishantiquefurniture.com +british-banners.com +britneyspears.1stok.com +britneyspears.ca.tt +brittish.com +brittlefilet.com +briut.fruitfuldemo.com +brk-rti.ru +br.meetlocals.com +b.rmgserving.com +br.naked.com +brnys.netmng.com +broadboundary.com +broadcaster.streamate.com +broadcastpc.tv +broadcast.piximedia.fr +broadent.vo.llnwd.net +broadlandautocare.com +broadmessedubai.com +broadspring.com +broadtech.co +broadwaygroup.in +broadwayinstitute.com +broadwaynepal.com +brodereverie-creations.fr +brokenheartart.net +brokergid.ru +brokertraffic.com +bromm.com +bromserivetw.com +bronotak.cn +brontelanguagecentre.com +bronxa.com +bronzeaid-a.akamaihd.net +bronzeandblack.com +brooklandcapital.com +brooksmadonald.com +brostechnology.com.ve +brothersmt2.tk +brothersoft.us.intellitxt.com +brothers-smaller.ru +brovarets.ru +browncustomsoftware.net.au +brownsmadisonspices.com +browsepulse-a.akamaihd.net +browseraccelerator.com +browserbreckalarm.info +browser-message.com +browserprotecter.com +browsesafemac.com +br.phorm.com +br.rawcomm.net +br.realitykings.com +br.rk.com +brsantandervangohbr.com +bruceclay.112.2o7.net +bruceelliottfashions.com +brucejohnson.5gbfree.com +brunaboianoski.com.br +brunga.at +brunkullanskrog.se +brunocarbh.com.br +brus.city +brus-vsem.ru +brutallyhonest.co +brutom.tk +brxserv-21.btrll.com +bryangarnier-am.com +bryansk.zrus.org +bryantangelo.com +brydie.com +brytyjskiekoty.com.pl +bsads.looksmart.com +bsblog.de +bsbrastreador.com +bscables.com.br +bsclick.adknowledge.com +bscodecs.com +b.scorecardresearch.com +bseaqmi.angelcities.com +bserver.blick.com +bsh-hausgeraete.de +b.siftscience.com +bsionlineshop.com +bs.israelinfo.ru +b.skinstore.com +b.sli-spark.com +bslukq.com +bsmarcas.com.br +bsmax.fr +bs-meta.yandex.ru +bsmjz.ga +bsnteamsports.co +bspixel.bidsystem.com +bsrv.adohana.com +bs.serving-sys.com +bstats.adbrite.com +b.stats.paypal.com +bsterra.com +bst.reedbusiness.com +b-styles.xyz +bsviyjbjoxyj.com +bswlive.com +bs.yandex.ru +bsz-schneeberg.de +b.szwzcf.com +btc4u.ru +btcom.112.2o7.net +btfile.mycosmetiks.fr +b.thanksearch.com +btig3di.com +btinternet.carreteiroonline.com.br +bt.linkpulse.com +btnativenav.com +btn.clickability.com +btn.counter.weather.ca +bt.phorm.com +btprmnav.com +bt.rs +bts-jewelry.com +b.t.tailtarget.com +bttrack.com +btvhdscr.com +btvn.ru +bt.webwise.com +bt.webwise.net +bt.webwise.org +btwosfunny.onthenetas.com +buatduityoutube.com +buau.com +bubblemixing.com +bubleclips.com +bucephalus.in +buchananshardware.com +bucharestcars.ro +buchawucha.com +buchedosa.ye.ro +buchislaw.com +buchsonconcept.com.ng +bucurie.org +budapestflughafentransfer.de +buddylites.com +budgetellakegeorge.com +budpost.com.ua +budsinc.com +budujemypodklucz.pl +buehne-fuer-menschenrechte.de +buffalogoesout.com +buffalorunpt.com +buffer-control.com +bufore.com +bugera.popunder.ru +bugsurf.com +buhwfdo.net +buigas.00it.com +builderonlinecom.112.2o7.net +builds.cngkitwala.com +buildtechinfrahub.com +buildviet.info +builtinsingapore.com +buk7x.com +bukharapiter.ru +bukisa.us.intellitxt.com +bukkake-bath.com +bukopinpriority.com +bulgariabg.com +bulkfoodscanada.com +bulksms.teamserv.com.eg +bulldog.122.2o7.net +bulldoglandia.com +bulletproofjobhunt.com +bulletsurenets.info +bulletsurenets.xyz +bullseye.backbeatmedia.com +bullzeye.rotator.hadj1.adjuggler.net +bullz-eye.us.intellitxt.com +bum0.com +bumble.cheapwebsitehoster.com +bum.com.ru +bumerangshowsites.hurriyet.com.tr +bumpshack.us.intellitxt.com +bumrungradflowers.com +bumskontakte.org +bunchi.com +bundasnovinhas.com +bundesloga.de +bundestagswahl.info +bundle-geoip.herokuapp.com +bungaemmaseserahan.com +bunnyforum.org +bunny-net.com +buntymendke.com +buo.cc +buonpescatoitaliano.it +bupropion-hcl.1.p2l.info +bupropion-sr-150-mg.us +buqayy0.livejournal.com +buqyxa.rincian.info +buraphwood.com +burcroff11.com +bureau.co.il +bureauxdescontrolesspga.com +burger-imperia.com +burgerspendingbusiness.kz +burghofbrueggen.de +buringle.co.mz +burkersdorf.eu +burkesales.com +burnettfarms.com +burn-fat.ga +burnfudd.in.net +burnheadrural.com +burns.adtech.de +burns.adtech.fr +burns.adtech.us +burn.settingsdata.store +burnvirusnow33.xorg.pl +burokomplet.cz +buroweb.com +burrinsurance.com +bursatiket.id +busanprint.net +buscandoempleointernacional.com +buscar-iclouds.com.br +buscar-id-icloud.com +buscar-meuiphone.com +buschen.oewabox.at +bushido.ie +bushing.com.mx +business32.xyz +businessbattle.tk +businesscoffeemedia.com +businessdeal.me +businessdealsblog.com +businessdirectnessource.com +businessdocs.org +businessedgeadvance.com +business-in-bangladesh.com +businessinsider.us.intellitxt.com +businessinsidr.com +businessknowhow.us.intellitxt.com +business.lbn.ru +businesslinedubai.ae +business-made-fun.com +businessmind.biz +business.msnbc.us.intellitxt.com +businessnet.co.za +businessphone-pages.com +businesspluspk.com +businesspundit.us.intellitxt.com +business.realtracker.com +business-rewardpath.com +businesstimes.co.tz +businessweekpoc.112.2o7.net +businesxxl.com +buskerdroid.com +bus-offer.com +buspar.1.p2l.info +buspirone.1.p2l.info +bustcream-pro.com +bustedcoverage.us.intellitxt.com +bustfraud.com.ng +bustysites.com +busunda.pop3.ru +busyphoneswireless.com +butalbital-apap.1.p2l.info +buthoprus.narod.ru +butiksaida.co.id +butiksulamansuteraklasik.com +butstrap.space +buttaibarn.com.au +buttcandy.com +buttermilkcirspytenders.com +butt-head.mos.ru +button.clickability.com +buttons-for-website.com +buttons.googlesyndication.com +buty-kupony.pl +butynike-zgarnij.coolpage.biz +buy-adipex.aca.ru +buy-adipex-cheap-adipex-online.com +buy-adipex.hut1.ru +buy-adipex.i-jogo.net +buy-adipex-online.md-online24.de +buy-adipex.petrovka.info +buyantiviralwp.com +buybest1.biz +buy-carisoprodol.polybuild.ru +buycbdoilonline.net +buy-cheap-phentermine.blogspot.com +buy-cheap-pills-order-online.com +buy-cheap-xanax.all.at +buy-cialis-cheap-cialis-online.info +buy-cialis.freewebtools.com +buycialisonline.7h.com +buycialisonline.bigsitecity.com +buy-cialis-online.iscool.nl +buy-cialis-online.meperdoe.net +buy-cialis.splinder.com +buyclomidonlaine.com +buycom.122.2o7.net +buycustomessaysonline.com +buy-diazepam.connect.to +buyessaynow.biz +buyfioricet.findmenow.info +buy-fioricet.hut1.ru +buyfioricetonline.7h.com +buyfioricetonline.bigsitecity.com +buyfioricetonline.freeservers.com +buy-flower.petrovka.info +buyfriend.ru +buyhitscheap.com +buyhoverboard.com +buy-hydrocodone.aca.ru +buyhydrocodone.all.at +buy-hydrocodone-cheap-hydrocodone-online.com +buy-hydrocodone.este.ru +buyhydrocodoneonline.findmenow.info +buy-hydrocodone-online.tche.com +buy-hydrocodone.petrovka.info +buy-hydrocodone.polybuild.ru +buy-hydrocodone.quesaudade.net +buy-hydrocodone.scromble.com +buyingedge.com +buyk.host.sk +buylasix-online.net +buylevitra.3xforum.ro +buy-levitra-cheap-levitra-online.info +buylevitraonline.7h.com +buylevitraonline.bigsitecity.com +buylicensekey.com +buy-lortab-cheap-lortab-online.com +buy-lortab.hut1.ru +buylortabonline.7h.com +buylortabonline.bigsitecity.com +buy-lortab-online.iscool.nl +buymeacofee.com +buynorxx.com +buyonlinelah.com +buyonshop.com +buypanicdisorderpill.com +buyparajumpers.online +buypaxilonline.7h.com +buypaxilonline.bigsitecity.com +buy-phentermine-cheap-phentermine-online.com +buy-phentermine.hautlynx.com +buy-phentermine-online.135.it +buyphentermineonline.7h.com +buyphentermineonline.bigsitecity.com +buy-phentermine-online.i-jogo.net +buy-phentermine-online.i-ltda.net +buy-phentermine.polybuild.ru +buy-phentermine.thepizza.net +buypillsorderonline.com +buyplatformbed.com +buypuppies.ca +buyscabiescream.com +buysellads.com +buyskype.ru +buy-tamiflu.asian-flu-vaccine.com +buy-ultram-online.iscool.nl +buyvalidsmtps.com +buy-valium-cheap-valium-online.com +buy-valium.este.ru +buy-valium.hut1.ru +buy-valium.polybuild.ru +buyvalium.polybuild.ru +buy-viagra.aca.ru +buy-viagra.go.to +buy-viagra.polybuild.ru +buyviagra.polybuild.ru +buy-vicodin-cheap-vicodin-online.com +buy-vicodin.dd.vu +buy-vicodin.hut1.ru +buy-vicodin.iscool.nl +buy-vicodin-online.i-blog.net +buy-vicodin-online.seumala.net +buy-vicodin-online.supersite.fr +buyvicodinonline.veryweird.com +buy-xanax.aztecaonline.net +buy-xanax-cheap-xanax-online.com +buy-xanax.hut1.ru +buy-xanax-online.amovoce.net +buy-zyban.all.at +buz2mobile.com +buzzadnetwork.com +buzzbox.buzzfeed.com +buzzfeed.d1.sc.omtrdc.net +buzzfoto.us.intellitxt.com +buzzhumor.us.intellitxt.com +buzz.mobiapp-games.com +buzznet.112.2o7.net +buzzonclick.com +buzzsumo.com +buzzurl.jp +buzzwall.digital-forerunners.com +bvalphaserver.com +bvlgaribracelet.xyz +bvlgariring.xyz +bvlgariwallet.xyz +bvo.ch +bvujpoddw.cc +bw1q.ccisisl.top +bw.ads.t-online.de +b-wallet.eu +b.webwise.com +b.webwise.net +b.webwise.org +bwegz.cn +b.wishabi.com +bwlx.prepedu.cn +bwos.be +bwp.download.com +bwp.lastfm.com.com +bwp.mp3.com +bwp.news.com +bx6.blrf.net +bxic0ho.com +bxnvdau.com +bxpaffc.com +bxznn.net +bxzxw.net +by98.com +by.adocean.pl +byareview-document.pdf-iso.webapps-security.review-2jk39w92.ab5nights.com +bycontext.com +by.essl.optimost.com +byet.org +byggaaltan.nu +byhyundai.com +byk49187.com +bymeacoffee.com +byme.se +by-nightlife.de +by.optimost.com +bypasser.net +byrukk.com +bytes.darktech.org +bytimedance.ru +bytim.net +byubroadcast.112.2o7.net +by.uservoice.com +byutv.d1.sc.omtrdc.net +byymhovnu.top +bzbk.pl +bzero1jewelry.net +b.zeroredirect1.com +b.zeroredirect2.com +b.zeroredirect.com +b.zog.link +bzresults.122.2o7.net +c01.smaato.net +c02.smaato.net +c03.adsummos.net +c03.smaato.net +c04.adsummos.net +c04.smaato.net +c05.smaato.net +c06.smaato.net +c07.smaato.net +c08.smaato.net +c09.smaato.net +c0.adalyser.com +c0.amazingcounters.com +c0.atm.pl +c0nfrim-supoort22.regist3r2.ga +c0ryp0pe.com +c10013.ic-live.com +c10014.ic-live.com +c10048.ic-live.com +c10050.ic-live.com +c10051.ic-live.com +c10054.ic-live.com +c10060.ic-live.com +c10063.ic-live.com +c10064.ic-live.com +c1024.ic-live.com +c10.smaato.net +c10.statcounter.com +c11370896.c.youradexchange.com +c11.smaato.net +c11.statcounter.com +c12.smaato.net +c12.statcounter.com +c1349.ic-live.com +c13.smaato.net +c13.statcounter.com +c14.smaato.net +c14.statcounter.com +c14.zedo.com +c15.smaato.net +c15.statcounter.com +c16.smaato.net +c16.statcounter.com +c17.smaato.net +c17.statcounter.com +c1839.ic-live.com +c18.smaato.net +c18.statcounter.com +c1921.ic-live.com +c1926.ic-live.com +c1935.ic-live.com +c1937.ic-live.com +c1947.ic-live.com +c1950.ic-live.com +c19.smaato.net +c19.statcounter.com +c1.adform.net +c1.amazingcounters.com +c1.atdmt.com +c1exchange.com +c1fsparts03-clients.com +c1.gostats.com +c1.navrcholu.cz +c1.nowlinux.com +c1.onedmp.com +c1.openx.org +c1.outster.com +c1.popads.net +c1.rfihub.net +c1.smartclick.net +c1.statcounter.com +c1.teaser-goods.ru +c1.thecounter.com +c1.thecounter.de +c1.xxxcounter.com +c1.zedo.com +c1.zxxds.net +c20.smaato.net +c20.statcounter.com +c21.smaato.net +c21.statcounter.com +c22.smaato.net +c22.statcounter.com +c2366475.c.youradexchange.com +c23.smaato.net +c23.statcounter.com +c242k.com +c24.smaato.net +c24.statcounter.com +c25.smaato.net +c25.statcounter.com +c26.smaato.net +c26.statcounter.com +c27.smaato.net +c27.statcounter.com +c28.smaato.net +c28.statcounter.com +c29new.smaato.net +c29.smaato.net +c29.statcounter.com +c2.amazingcounters.com +c2c738.r.axf8.net +c2.clickprotects.com +c2.gostats.com +c2.l.qq.com +c2.outster.com +c2.popads.net +c2.rfihub.net +c2.statcounter.com +c2.taboola.com +c2.tentaculos.net +c2.thecounter.com +c2.thecounter.de +c2.xxxcounter.com +c2.zedo.com +c30.smaato.net +c30.statcounter.com +c31.smaato.net +c31.statcounter.com +c32.smaato.net +c32.statcounter.com +c33.smaato.net +c33.statcounter.com +c34.smaato.net +c34.statcounter.com +c35000246.c.youradexchange.com +c35.smaato.net +c35.statcounter.com +c36.smaato.net +c36.statcounter.com +c37.smaato.net +c37.statcounter.com +c38.smaato.net +c38.statcounter.com +c39.smaato.net +c39.statcounter.com +c3.adalyser.com +c3.amazingcounters.com +c3club.es +c3.gostats.com +c3.gostats.ir +c3nter989.neww-d3vel0per44.ml +c3.openx.org +c3.outster.com +c3sngvwp.com +c3.statcounter.com +c3.thecounter.com +c3.xxxcounter.com +c3.zedo.com +c40.smaato.net +c40.statcounter.com +c41.smaato.net +c41.statcounter.com +c42.smaato.net +c42.statcounter.com +c43.smaato.net +c43.statcounter.com +c44.smaato.net +c45.smaato.net +c45.statcounter.com +c46.smaato.net +c46.statcounter.com +c47.smaato.net +c48.smaato.net +c49.smaato.net +c4.amazingcounters.com +c4dl.com +c4.gostats.com +c4.gostats.ru +c4.ic-live.com +c4.iwon.com +c4.maxserving.com +c4.mysearch.com +c4.myway.com +c4.statcounter.com +c4tracking01.com +c4.zedo.com +c50.smaato.net +c51.smaato.net +c52.smaato.net +c53.smaato.net +c54.smaato.net +c55.smaato.net +c56.smaato.net +c57.smaato.net +c58.smaato.net +c59.smaato.net +c5.amazingcounters.com +c5gfs346.caspio.com +c5.statcounter.com +c5.zedo.com +c60.smaato.net +c6530e.r.axf8.net +c6.adforgeinc.com +c6.amazingcounters.com +c6.edgesuite.net +c6.statcounter.com +c6.zedo.com +c753738.r38.cf2.rackcdn.com +c7.adforgeinc.com +c7.amazingcounters.com +c7.ic-live.com +c7.statcounter.com +c7.zedo.com +c8.amazingcounters.com +c8hfxkywb7.ignition3.tv +c8.statcounter.com +c8.zedo.com +c9.amazingcounters.com +c9d.pl +c9.statcounter.com +ca.2.cqcounter.com +ca3.revieworbit.com +ca4.revieworbit.com +ca.5.p2l.info +ca.abv.bg +ca.adserver.yahoo.com +caalnt.com +ca.altitude-arena.com +caam.es +cabanero.info +cabaniasmimmo.com.ar +cabehealthservices.net +cabeles.com +cabifygratis.info +cabinetmandel.com +cabinmysore.com +cablecar.us +cablevision.112.2o7.net +c.abnad.net +cabobabysitting.com +cabomarlinisportfishing.com +cabscochin.com +cacakenoku.com +cacapavayogashala.com.br +cache.addthiscdn.com +cache.addthis.com +cache.adm.cnzz.net +cache.adnet-media.net +cache.ad-serverparc.nl +cache.ads.kartu.lt +cache.adviva.net +cachebanner.europacasino.com +cachebanners.toteme.com +cachebanner.titanpoker.com +cachebanner.tonygpoker.com +cachebanner.vegasred.com +cache.betweendigital.com +cache.blogads.com +cache.btrll.com +cache.celtra.com +cache.daredorm.com +cache-dev.addthis.com +cache.directorym.com +cache.dtmpub.com +cache.gfrevenge.com +cacheimages.com +cache.izearanks.com +cache.realitykings.com +cacheserve.eurogrand.com +cacheserve.prestigecasino.com +cacheserve.williamhill.com +cache.specificmedia.com +cache-ssl.celtra.com +cache.unicast.com +cachewww.europacasino.com +cachuchabeisbol.com +caclclo.web.fc2.com +cacl.fr +ca.cqcounter.com +c.actiondesk.com +cactussoft.biz +c.ad6media.fr +cadastrabb.com +cadastramentos.online +cadastro-atualizado-web.com.br +cadastrodacopa.net +cadastrointernet.com.br +cadastromultplus.com +cadastropendente.com +cadastsac.sslblindado.com +cadaver.org +cad.chosun.com +c.adclickthru.net +cadenaradialcristianacusco.com +cadetcollegebhurban.edu.pk +c.adfirmative.com +c.adforgeinc.com +cadillacescalade.com +cadillacforums.us.intellitxt.com +cadmanipal.com +c.admob.com +cadres-express.com +c.adroll.com +cadxiedan.com +caea4e.r.axf8.net +caea4e.t.axf8.net +caesarsbenefitnow.com +cafatc.com +cafeart-kiel.de +cafe-being.com +cafecoc.com +cafedonasantina.com.br +cafefamilybd.com +cafekahpeltik.com +cafemom.d2.sc.omtrdc.net +cafemom.us.intellitxt.com +cafesmart.co.uk +cafeteraseurekas.com +cafevenicewhitton.co.uk +cagados.com +caganhomes.net +cah9ooy.bid +cahoots.com +cainabela.com +caixa.consulteeagendeinativosliberados.com +caixaefederal.com +caixafgtsinativo.com.br +caixa.inativosativosparasaque.com +caixa.suporteconsultafgtsinativo2017.com +cakeaway.se +cakedon.com.au +cakemediahq.com.au +cakes4allfamiliyes.for-the.biz +cakesplus.com.au +cak-gurcafe.id +calc-for-credit.ru +calcitynews.com +calcoastlogistics.com +calcularpagerank.com +calculate.de +calendar.protofilm.com +califia.imaginemedia.com +californiaautoinsurancehq.org +californianews.cf +californiastateparks.com +calimboersrs.16mb.com +caliresolutions.com +call4pc.co.uk +callawaygolfoutlet.online +callawaygolfstore.online +callawaypos.com +callbling.com +calledu.com +callejondelpozo.es +callingcardsinstantly.com +calllwave.com +callmd5map.com +call-of-duty.info +callusmiller.com +calmfoot.com +calouskype.over-blog.com +calstaterealty.us +calvaryassemblyofgod.org +calvarychapelmacomb.com +calvet.altervista.org +calworthingtonford.com +caly-film-online.pl +calzini.it +c.am10.ru +c.am11.ru +cam2cam.xlovecam.com +camapnaccesorios.com +camaracoqueirobaixo.com.br +c.amazon-adsystem.com +camberfam.de +cambonanza.com +cambouisfr.free.fr +cambridgeexecutivetravel.co.uk +cam.demdex.net +camdenmemorials.com +camdolls.com +camel-beach.com +cameljobfinal.com +cameradongbac.com +camerawind.com +camerondiaznude.1stok.com +camerondiaznude.ca.tt +camgeil.com +camillascake.it +camionsrestos.fr +camisariareal.com.br +cam-kontakte.org +camnares.org +camoandbows.com +camorg.net +campaign.bharatmatrimony.com +campaign.herworldplus.com +campaign.iitech.dk +campaign.indieclick.com +campaigns.f2.com.au +campaigns.interclick.com +campaign-tapad.s3.amazonaws.com +campamento.queenscamp.com +campanie.go.ro +campervantravels.com +campocomunicacionintegral.com +campushujbb.com +campusshop.com.ng +cams.enjoy.be +camservicesgroup.com +camua.bloxode.com +can1453.dynu.net +canadaalltax.com +canadabook.ca +canadafreepress.us.intellitxt.com +canadapost.112.2o7.net +canadattparts.com +canadianonlineagreementservices.kz +canalcliente-id.000webhostapp.com +canaldepirque.cl +canalprivadobb.info +canalrefugiados.org +canalvelo.fr +canastasmimbre.com +cancalgary.112.2o7.net +cancam.ro +cancelblockpages.co.nf +canceledpayment.com +cancel-email-request.in.net +cancelorderpaypal.com +cancel.published.help-private-page.net +cancel.transaction.73891347.atakanpolat.com.tr +cancel.transaction.73891347.itunes.apple.semsyayinevi.com +cancerandcareer.org +cancercaring.com +cancerlove.org +cancertreatmente.tt.omtrdc.net +canci.net +candcstuccoandstone.com +candelluxsklep.pl +candiceloves.us +candidatos.cl +candidography.com +cand.jp +candleglow.co.uk +candlelightclubkl.com +candlewooddentalcentre.com.au +candoxfloreria.com.mx +candsmasonryrestoration.net +candycrushshop.com +candy-glam-hp.com +candypeople.se +candytiner.com +caneleiraecia.com.br +canfaceoff.112.2o7.net +canfeng123.f3322.org +canfinancialpost.112.2o7.net +caniamedia.com +canimagen.cl +canimcalzo.com +canlitvmobil.com +canload.xyz +canmag.us.intellitxt.com +cannabislyric.com +cannabispicture.com +cannationalpost.112.2o7.net +cannedfood.asia +canoe.112.2o7.net +canoesdepot.com +canoncameras.in +canoncdriverq3.pen.io +canottowa.112.2o7.net +canrole.com +canshowcase.112.2o7.net +canteenfood.net +canthovietni.com +cantikcerdas.id +cantinhodagi.pt +cantire.122.2o7.net +canuck-method.com +canuckmethod.com +canuckmethod.net +canvashub.com +canwest.112.2o7.net +canwestcom.112.2o7.net +canwestglobal.112.2o7.net +canyonranchdestination.com +canyoustreamit.com +c.anytrx.com +canzoni.ru +caonlinesupportusers.selfip.org +capaassociation.org +capacitacion.inami.gob.mx +capacitacionyaprendizaje.com +capath.com +capcityadvcom.112.2o7.net +capcityadvcom.122.2o7.net +cape4down.com +capecodonlinecom.112.2o7.net +capella.122.2o7.net +capev-ven.com +ca.pf.fcgab.com +capillaseleden.com +capital0ne.com.confirm.3d8eb95941896baa079d0729de72607.bodybydesign.co.ke +capital4u.org +capitalandprojects.com +capital.count.brat-online.ro +capitale-one-bank-login-secured.edukasys.com +capitalone123.com +capitalone360.com.cy.cgi-bin.webscr.cmd.login-submit.dispatch.senategroveinn.com +capitalone.com.eastvalleynd.com +capital-one-com.englishleague.net +capital.one.comqzamart.pranavitours.com +capitaloneconfirmation.com.capital0ne.com.confirm.3d8eb95941896baa079d0729de72607.bodybydesign.co.ke +capitalorm.com +capitalpolicyinternational.com +capitaltrustinvest.com +capitolhillcounseling.com +capku.com +capone350.com +capshoreassetmanagement.com +captainquizz.de +captalclubdubai.com +capture.condenastdigital.com +capture-room.com +car4you.oewabox.at +carabela.com.do +caracteristiquesrenommes.it +caraddept.net +carambaba.com +carambo.la +caramori.com +caranikahsiri.com +carapics.com +carbonads.com +carbonads.net +carbonbrush.co +carbonite.tt.omtrdc.net +carboplast.it +carcleancarneat.com +card500.pochta.ru +cardgamespidersolitaire.com +cardiffbusinesscouncil.com +cardinalcorp.ml +cardiosport.com.ua +cardioweb.co.uk +cardmusical.com.sapo.pt +cardonaroofing.com +car-donation.shengen.ru +cardsdumps.com +cardserviceics-1t9y4rteg.logorder.com +cardserviceics-32paq23v2v031qf.afilliyapi.com +cardserviceics-bz4yxvk.boyalitim.com +cardserviceics-kyjvt75ts6ba4j1.neslehali.com.tr +cardserviceics-mjfsqu8i0ja5c2d.artdekors.com +cardserviceics-n3hxz38uj.artdekors.com +cardserviceics-pisps.artdekor.org +cardserviceics-qjyw8apd.boyalitim.com.tr +cardserviceics-ti0fgb7bih7r.boyalitim.com.tr +cardserviceics-yhczhqrbqz9an.neslehali.com.tr +cardsharp1.ru +cards.virtuagirlhd.com +cardul.ru +care2.112.2o7.net +care4it.com +careceditpay.com +careeducation.com +careermoovz.net +careers.112.2o7.net +careers.canwestad.net +careerspoint.in +careers-rewardpath.com +carehomecalicut.org +careington.co +carelan.com +carelis.com +carepoweryoga.com +carequinha.pt +careydunn.com +carfax.com.ua +cargostream.dk +caribbeanguestservices.com +caribbeankingship.com +carina-sy.de +caringplushomecare.com +car-insurance.inshurance-from.com +carisoprodol.1.p2l.info +carisoprodol.hut1.ru +carisoprodol.ourtablets.com +carisoprodol.polybuild.ru +carisoprodol.shengen.ru +carlandren.se +carlieostes.com +carloans.com +car-loan.shengen.ru +carloselmago.com +carlpty.com +carlsonradisson.112.2o7.net +carmanweathington.com +carmelitascartagena.es +carmenelectra.1stok.com +carmon.us +c.ar.msn.com +carmuffler.net +carolinasanchez.com +carolinesheriff.net +caroprometa.de +carpediem.sv2.biz +carpe-obscurum.de +carpetandupholstreycleaning.com +carpetdenfa.com +carpetfitters.co.uk +carpetsflooring.com.au +carp-island.com +carplanet.ru +carrier.bz +carry4enterprises.com +cars.constructionwitness.net +carsdined.org +cars.ign.us.intellitxt.com +carslberg.se +carson.getenjoyment.net +carsplate.com +car-stuff.us.intellitxt.com +cartaovirtual.no-ip.info +cartasi-info.it +cart.dbcloud.eu +cartechnic.ru +carteiro.pisem.net +carte-mps.com +cartierbraceletsreplica.pw +cartierbracelet.xyz +cartierjusteunclou.xyz +cartierlove2u.com +cartierlove2u.xyz +cartierlovebraceletreplica.xyz +cartierlovebracelet.xyz +cartierloveringreplica.xyz +cartierlovestore.com +cartierlovestore.xyz +cartierlove.xyz +cartierreplica.pw +cartierreplica.top +cartierreplica.win +cartierreplica.xyz +cartierring.xyz +cartiertrinity.xyz +cartierwatch.xyz +cartinca.com +cartoesportoseguro.com +cartoesvirtual.fromru.com +cartoonnetwork.122.2o7.net +cartoonpornguide.com +car-truck-boat-bonuspath.com +car-truck-boat-premiumblvd.com +cartujano-pre.de +carvip.com.ua +carze.com.es +casablancamanor.co.za +casadecarnessola.com.br +casadeculturasabia.org +casadulcedenuria.com +casaforsalerealestate.com +casalemedia.com +casalmedia.com +casamentoparasempre.com.br +casamonterosa.com +casanebiolo.com +casars.xyz +casasbahilas.com.br +casasdemaderaamedida.com +casasycosas.com +cascadelink.org +cas.clickability.com +cas.criteo.com +case-4051.pw +case.edu.nayakgroup.co.in +ca.service.enligne.credit-agricole.fr.stb.entreebam.inc-system.com +cases.app-revieworder.com +caseylong.agnesscott.org +cash2goldbar.com +cash4members.com +cash4popup.de +cash-advance.now-cash.com +cashadvancework.com +cashback.co.uk +cashbackwow.co.uk +cashcase.co.in +cashcount.com +cashcounter.com +cashcownetworks.com +cashcrate.com +cashengines.com +casher777soft.pw +cashfiesta.com +cashflowmarketing.com +cash.hi5fotos.info +cashkitten-a.akamaihd.net +cashlayer.com +cashonads.com +cashpartner.com +cashpromotions.biz +casino770.com +casinoasia.org +casino-gambling-online.searchservice.info +casinogames.com +casino-online.100gal.net +casino-on-net.com +casinopays.com +casinorewards.com +casinorewards.info +casinotraffic.com +casinotreasure.com +caskyrealty.com +caslemedia.com +casper.sp1.convertro.com +casszone.com +castedmango.com +castingbank.ru +casting.openv.com +castingshow-news.de.intellitxt.com +c.as-us.falkag.net +catalinkcashback.com +catalogovehiculos.dercocenter.cl +catalogs-parts.com +catashare.pw +catbears.com +cat-breeds.net +catchmeifyoucan5902.comli.com +catchvid.info +c.atdmt.com +catfishracingbodies.com +cathedralgolf.co.za +catherineminnis.com +catherinetruskolawski.com +catiaonline.com +catjogger.win +catmountainhoa.com +c.at.msn.com +catokmurah.com +cat.onlinepeople.net +catrg.peer39.net +cat-sa.com +cats-berlin.de +catsnooze.com +catsplit.com +caturismo.com.ar +cat-walker.se +catz4.com +caue971.org +cavaliersales.com +cavatina.com +caveavins.fr +caveki.com +cavelearning.com +cavemancircus.us.intellitxt.com +cayado.snn.gr +caymanlandsales.com +cayofamily.net +cazanele-dunarii.ro +cazoludreyditlubet.info +cazzigrossi.org +cb1.counterbot.com +cba.122.2o7.net +c.baidu.com +cb.alimama.cn +cb.amazingcounters.com +cbanners.virtuagirlhd.com +cbaol.112.2o7.net +cbaqa.co.il +cbb1smartlist12.click +cb.baidu.com +cbc.122.2o7.net +cbcca.112.2o7.net +cbcca.122.2o7.net +cbcengenharia.com.br +cbcincinnatienquirer.112.2o7.net +cbcnewmedia.112.2o7.net +cbcoffices.com +cbcseward.com +c.be.msn.com +c.betrad.com +cbglobal.112.2o7.net +cbgroup.co.uk +c.bigmir.net +c.bing.com +cb.iphantom.com +cbkcoaching.com +c.blogads.com +c-blog.ro +cbltda.cl +cbmall.com +cb.mdnhinc.com +cbmsn.112.2o7.net +cbox.ws +cbpublishing.blueadvertise.com +cbrezzy.info +c.br.msn.com +cbronline.uk.intellitxt.com +cbs.112.2o7.net +cbscom.112.2o7.net +cbsdigitalmedia.112.2o7.net +cbseguideline.com +cbsi.demdex.net +cbsncaasports.112.2o7.net +cbsnfl.112.2o7.net +cbspgatour.112.2o7.net +cbsspln.112.2o7.net +cbst.edu.bd +cbstelevisiondistribution.112.2o7.net +cbstv.us.intellitxt.com +cbtopsites.com +cbuzoo.comlu.com +cbzi.com +cc12797.counter.hackers.lv +cc5f.dnyp.com +cc9905.counter.hackers.lv +ccaltinbas.com +c.ca.msn.com +c.casalemedia.com +ccas.clearchannel.com +ccbill.com +ccbilleu.com +cc.bridgetrack.com +ccc00.opinionlab.com +ccc01.opinionlab.com +cc.chango.com +cc.connextra.com +cccsofflorida.com +ccc.sys.intl.xiaomi.com +ccc.sys.miui.com +ccdon.co +cc-dt.com +ccduniv.com +ccfadv.adv.br +c.cfjump.com +cc-gastro.de +ccgmetals.pw +c.chango.com +cc.iwon.com +ccjbox.ivyro.net +ccknifegiveaway.com +c.cliop.com +c.cl.msn.com +ccl.payments.appleid-apple.store.swdho.decoys.com.ar +c.cnstats.ru +c.cnzz.com +c.codeonclick.com +ccomglobal.net.in +ccpmo.com +ccragop.com +ccrbudgetca.112.2o7.net +ccrgaviscom.112.2o7.net +cc.simplereach.com +ccs.infospace.com +ccss.cr +cc.sys.intl.xiaomi.com +cc.sys.miui.com +cctjly.com +cctld.dk +cctv.adsunion.com +cctva.tv +cctvec.com +cctvinsrilanka.com +ccudl.com +cc.webpower.com +ccycny.com +cd23946.tmweb.ru +cd31411.tmweb.ru +cd8iw9mh.cricket +cd-ads.com +cda-filmy.com.pl +cda-played.pl +cda-player.pl +cdata.carambo.la +cdb.hitbox.com +cddarchitecture.com +c.de.msn.com +cdhomexpo.cn +cdiabetes.com +cdinterior.com.sg +c.dk.msn.com +cdlitong.com +cdmarquesdenervion.com +cdmedia.rotator.hadj7.adjuggler.net +cdmswj.com +cdn-01.yumenetworks.com +cdn1.adadvisor.net +cdn1.adexprt.com +cdn1.ads.brazzers.com +cdn1.ads.contentabc.com +cdn1.ads.mofos.com +cdn1.adspace.4tube.com +cdn1.clkads.com +cdn1.clkcln.com +cdn1.clkmon.com +cdn1.clkoffers.com +cdn1.clkrev.com +cdn-1.convertexperiments.com +cdn1.crispadvertising.com +cdn1.eyewonder.com +cdn1ht.traffichaus.com +cdn1.inner-active.mobi +cdn1.mysearchresults.com +cdn1.rmgserving.com +cdn1sitescout.edgesuite.net +cdn1.skinected.com +cdn1.smartadserver.com +cdn1.steelhousemedia.com +cdn1.telemetryverification.net +cdn1.traffichaus.com +cdn1.tribalfusion.com +cdn1.xlightmedia.com +cdn1.zopiny.com +cdn2.adsdk.com +cdn2.amateurmatch.com +cdn2.crispadvertising.com +cdn2.emediate.eu +cdn2sitescout-a.akamaihd.net +cdn3.adexprts.com +cdn3.emediate.eu +cdn3.optimizely.com +cdn3.telemetryverification.net +cdn454.telemetryverification.net +cdn4s.steelhousemedia.com +cdn5.js.ad.dotandad.com +cdn5.tribalfusion.com +cdn6.admatic.com.tr +cdn6.adspirit.de +cdn6.emediate.eu +cdn.8digits.com +cdn8.emediate.eu +cdn.accelerator.arsdev.net +cdn.ad4game.com +cdn.adbooth.net +cdn.adengage.com +cdn.adgear.com +cdn.adigniter.org +cdn.adikteev.com +cdn.adk2.co +cdn.adk2.com +cdn.admitad.com +cdn.admixer.net +cdn.adnxs.com +cdn.adosx.com +cdn.adpacks.com +cdn.adpdx.com +cdn.adplxmd.com +cdn.adquantix.com +cdn.adrotator.se +cdn.adrtx.net +cdn.adsafeprotected.com +cdnads.cam4.com +cdn.adservingsolutionsinc.com +cdn.adskeeper.co.uk +cdn.ads.ookla.com +cdn.adspirit.de +cdn.adsrvmedia.net +cdn.adstatic.com +cdn.adstract.com +cdn.adtrace.org +cdn.adtradr.com +cdn.adtrue.com +cdn.adual.net +cdn.advertserve.com +cdn.ad.xiaomi.com +cdn.ajillionmax.com +cdn.alleliteads.com +cdn.altitudeplatform.com +cdn.amateurmatch.com +cdn.amgdgt.com +cdn-analytics.ladmedia.fr +cdnanalytics.xyz +cdn.appdynamics.com +cdn.appendad.com +cdn.app.exitmonitor.com +cdn.appround.biz +cdna.runadtag.com +cdn.askosshunt.com +cdn.assets.craveonline.com +cdn.at.atwola.com +cdn.atdmt.com +cdn.atlassbx.com +cdn.atomex.net +cdna.tremormedia.com +cdn.atwola.com +cdn.augur.io +cdn.avmws.com +cdnaws.mobidea.com +cdn.banners.scubl.com +cdn.banner.thumbplay.com +cdn.beaconads.com +cdn.beaconpush.com +cdn.behavioralengine.com +cdn.bestssaker.com +cdn.betrad.com +cdn.bidvertiser.com +cdn.bigspeedpro.com +cdn.bispd.com +cdn.bisrv.com +cdn.blueconic.net +cdn.boomtrain.com +cdn.brcdn.com +cdn.broadstreetads.com +cdn.brsrvr.com +cdn.bttrack.com +cdn.buysellads.com +cdn.carbonads.com +cdncash.com +cdncash.net +cdncash.org +cdn.celtra.com +cdn.chitika.net +cdn.classicdanube.info +cdn.clic2pub.com +cdn.clicktale.net +cdn.comparemetrics.com +cdn.complexmedianetwork.com +cdn.constafun.com +cdn.content.exoticads.com +cdn.contentspread.net +cdn.cpmstar.com +cdn.cpxinteractive.com +cdn.cquotient.com +cdn.creative.medialytics.com +cdn.crowdignite.com +cdn.crowdtwist.com +cdn.crwdcntrl.net +cdn.cxense.com +cdn.dabhit.com +cdn.demdex.net +cdn.directrev.com +cdn.directtrk.com +cdn.districtm.ca +cdn.dmpcounter.com +cdn.doubleverify.com +cdn.download.sweetpacks.com +cdndown.net +cdn.dsultra.com +cdn.dustyorate.com +cdn.earnify.com +cdn.easy-ads.com +cdn.elasticad.net +cdn.employchannel.info +cdn.engine.4dsply.com +cdn.engine.adsupply.com +cdn.engine.phn.doublepimp.com +cdn.engine.trklnks.com +cdn.epicgameads.com +cdn.epommarket.com +cdn.evergage.com +cdn.exactag.com +cdn.exoticads.com +cdn.eyewonder.com +cdn.fastclick.net +cdn.firstimpression.io +cdn.firstlook.com +cdn.flashtalking.com +cdn.freefaits.com +cdn.freefarcy.com +cdn.freehalves.com +cdn.freehas.com +cdn.freehonor.com +cdn.freeimply.com +cdn.freeinfringe.com +cdn.freejabs.com +cdn.freejars.com +cdn.freejaw.com +cdn.freejax.com +cdn.freejlo.com +cdn.freelac.com +cdn.freelev.com +cdn.gatekeeper.tss.net +cdn.geni.us +cdn-gl.imrworldwide.com +cdn.go.arbo.bbelements.com +cdn.go.arbopl.bbelements.com +cdn.go.cz.bbelements.com +cdn.go.idmnet.bbelements.com +cdn.go.pol.bbelements.com +cdn.g.promosrv.com +cdn.gumgum.com +cdn.guttastatdk.us +cdn.hadj7.adjuggler.net +cdn.hanaging.info +cdn.hauleddes.com +cdn.heapanalytics.com +cdn.holdlads.com +cdn.iasrv.com +cdn.idtargeting.com +cdn.imgtty.com +cdn.innity.net +cdn.innovid.com +cdn.inskinmedia.com +cdn.installationsafe.net.s3.amazonaws.com +cdn.insta.playbryte.com +cdn.interactivemedia.net +cdn.intermarkets.net +cdn.investingchannel.com +cdn.ip.inpwrd.com +cdn.iqcontentplatform.de +cdn.kixer.com +cdn.komoona.com +cdn.krxd.net +cdn.lazymem.com +cdn.lazymic.com +cdn.libraries.inpwrd.com +cdn.likeaced.com +cdn.linksmart.com +cdn.listrakbi.com +cdn.luckyorange.com +cdn.mahmukhach.info +cdn.marketgid.com +cdn.matheranalytics.com +cdn.mdotm.com +cdn.media6degrees.com +cdn.media.innity.net +cdn.mediative.ca +cdn.mediavoice.com +cdnmedia.xyz +cdn.mega-tags.com +cdn.mercent.com +cdn.merchenta.com +cdn.mgid.com +cdn.mirageads.net +cdn.mobicow.com +cdn.mplxtms.com +cdn.msdwnld.com +cdn.mxpnl.com +cdn.mypcbackup.com +cdn.my-pc-cleaner.org +cdn.ndparking.com +cdn.nearbyad.com +cdnnetwok.xyz +cdn.nsimg.net +cdn.oas-c17.adnxs.com +cdn.oggifinogi.com +cdn.onescreen.net +cdn.onscroll.com +cdn.opensubcontent.com +cdn.optimatic.com +cdn.optimizely.com +cdn.optmd.com +cdn.orbengine.com +cdn.palomatik.info +cdn.pardot.com +cdn.permutive.com +cdn.petametrics.com +cdn.pickyopahs.com +cdn.pinion.gg +cdn.polmontventures.com +cdn.popcash.net +cdn.popmyads.com +cdn.popwin.net +cdn.program3.com +cdn.promo.pimproll.com +cdn.pubexchange.com +cdn.publicidad.net +cdn.qbaka.net +cdn.quantummetric.com +cdn.radiatewheel.info +cdn.redlightcenter.com +cdn.reporo.net +cdn.revcontent.com +cdn.riceateastcach.us +cdn-rtb.sape.ru +cdn.sagent.io +cdn.sail-horizon.com +cdns.amgdgt.com +cdn.scarabresearch.com +cdn.segment.io +cdn.shoppingminds.net +cdn.siftscience.com +cdn.siteanalytics.evolvemediametrics.com +cdns.mydirtyhobby.com +cdn-social.janrain.com +cdn.spectate.com +cdn.spoutable.com +cdn.springboard.gorillanation.com +cdns.privatamateure.com +cdnssl.clicktale.net +cdn-ssl-hosting.com +cdn.stat.easydate.biz +cdn.static.youmiad.com +cdn.static.zdbb.net +cdnsteelpro.com +cdn.stickyadstv.com +cdn.stroeerdigitalmedia.de +cdn.syn.verticalacuity.com +cdn.tabnak.ir +cdn.taboola.com +cdn.taboolasyndication.com +cdn.tagcommander.com +cdn.tapstream.com +cdn.targetfuel.com +cdn.teads.tv +cdn.teamskeetimages.com +cdnt.meteorsolutions.com +cdn.total-media.net +cdn.tracking.bannerflow.com +cdn.tradelab.fr +cdn.trafficforce.com +cdn.traffichunt.com +cdn.trafficstars.com +cdn.triggertag.gorillanation.com +cdn.turn.com +cdn.tynt.com +cdnt.yottos.com +cdn.udmserve.net +cdn.undertone.com +cdn.unityads.unity3d.com +cdn.usabilitytracker.com +cdn.userreport.com +cdn.us.goldspotmedia.com +cdn.vdopia.com +cdn.vibratebefore.win +cdn.viglink.com +cdn.visiblemeasures.com +cdn.westbaud.com +cdn.wg.uproxx.com +cdnw.ringtonepartner.com +cdn.www1.pip-pip-pop.com +cdn.wwwpromoter.com +cdn.yb0t.com +cdn.yieldmedia.net +cdn.yldbt.com +cdn.yottos.com +cdn.zarget.com +cdn.zeusclicks.com +cdpns.com +cdqyys.com +cdreviews.us.intellitxt.com +cdrinfo.us.intellitxt.com +cdrom-guide.us.intellitxt.com +cds26.ams9.msecn.net +cds.adecn.com +cdslog.contextweb.com +cdsusa.veinteractive.com +cdxbin.vulnerap.com +cdxninteractive.blueadvertise.com +cdyb.net +ceanol.cl +cease.it +ceas.md +c.eblastengine.com +cecash.com +ceccatouruguay.com.uy +ceceliaorelie.eu +cecilgrice.com +c.ecliks.com +cedco-op.com +ced.sascdn.com +cefe.gq +cefeida2.com +cef-empresa.com +c.effectivemeasure.net +cegutsohwum.com +cejewelry.xyz +celalgonul.com +celebitchy.us.intellitxt.com +celebrapack.com +celebrex.1.p2l.info +celebridiot.us.intellitxt.com +celebridoodle.us.intellitxt.com +celebrifi.us.intellitxt.com +celebrity-babies.us.intellitxt.com +celebritygirlfriend.co.uk +celebrity-gossip.us.intellitxt.com +celebritygruop.com +celebrityloft.com +celebritymound.us.intellitxt.com +celebritynation.us.intellitxt.com +celebrityodor.us.intellitxt.com +celebritypwn.us.intellitxt.com +celebrity-rightpundits.us.intellitxt.com +celebritysmackblog.us.intellitxt.com +celebritytoob.us.intellitxt.com +celebrityviplounge.us.intellitxt.com +celebritywonder.us.intellitxt.com +celebslam.tags.crwdcntrl.net +celebslam.us.intellitxt.com +celebsopics.com +celebuzz.us.intellitxt.com +celebwelove.com +celexa.1.p2l.info +celexa.3.p2l.info +celexa.4.p2l.info +celia.cz +celibert.kegtux.org +cellfun.mobi +cell-phone-giveaways.com +cellphoneincentives.com +cellulaexcel.com +cellulitecreamsite.com +celsosantana.com.br +celular-para-empresa.com +cemclass78.com +cementaresearch.se +cemevisa.co +cemieb.com +cengagecsinfosec.112.2o7.net +cengizsozubek.com +c-english.ru +c.enhance.com +cenkmen.com +cennoworld.com +cenokos.ru +cenoval.ru +cent.adbureau.net +centangle.com +centerfind.com +center-free-borne.com +center-help233.developer78-fanpage-new-verifikasi43.gq +center-message-mobile.com +centeronlineinfoapp-us.serveftp.org +centerpieces-with-feathers-for-weddi.blogspot.com +centerpointmedia.com +center-recovery-account.com +centers-fb.my1.ru +centertrk.com +centerwaysi.com +centralamericarealestateinvestment.com +centralbengaluru.com +centralcoastconservationsolutions.com +central-coast-handyman.com.au +centraldafestarj.com.br +centraletermice.us +central-expedia.info +centralhotelexpedia.it +central.iprom.net +centrallaboratorybundle.com +centralpennbuysell.com +centralwestwater.com.au +centralworldz.ml +centrdebut.ru +centreautotess.com +centre-indigo.org.ua +centreuniversitairezenith.com +centricabritishgas.d3.sc.omtrdc.net +centro-guzzi-bielefeld.de +centro-moto-guzzi.de +centro.pixel.ad +centru-inchiriere.ro +centrumcoachingu.com +centrumcz.hit.gemius.pl +centrumfilmow.pl +centrumplay.pl +century21keim.com +century21newhorizons.com +centurylinknetupdate.webeden.co.uk +centurylinkwebupdate1.webeden.co.uk +ceocms.com +ceo.efa-light.com +ceotrk.com +ceoxchange.cn +cephalexin.ourtablets.com +cepsube.org +cepteteb-bireysel.com +cepun.com +cerano.de +cerberus.entertainment.com +cercacamion.it +ceremoniesbydonna.com.au +cerkezkoypetektemizleme.net +cerslev.aiwsites.com +certificadodeseguranca.org +certificates123.in +certificates124.in +certificates125.in +certifiedaudisale.com +certified-toolbar.com +certifiedwinners.info +certify.alexametrics.com +cervejariacacique.com.br +cervejariasoberano.com.br +cerviacasa.it +cescon.ca +ce-services.co.uk +ceskarepublika.net +ceskydomov.alias.ngs.modry.cz +c.es.msn.com +cestlaviebistro.com +cete.ru +ceteunr.com +cet-puertovaras.cl +cetrk.com +ce.wielkaniespodzianka.pl +cezartabac.ro +c.f5mtrack.com +cfacarrosserie74.com +cf.addthis.com +cf.ads.kontextua.com +cfasync.tk +cfba.org.uk +cfbrr.com +cfcgl.com +cfcl.co.uk +cfederal.org +cf.effectivemeasure.net +cfg.adsmogo.com +cfg.datafastguru.info +cfg.mywebsearch.com +c.fi.msn.com +cfjump.com +cf.kampyle.com +cflak.com +cfl-cambodia.com +c.flx1.com +cfnmking.com +cfqpxzx.com +c.fqtag.com +cfrandle.ironside.tk +cfrfa.112.2o7.net +c.fr.msn.com +cfsaprts2-esapceclientse.com +cfs-ny.com +cfspart2-particuliers.com +cfsparts.declare-enlignes.com +cfspro1-espaceclients.com +cfsrating.sonicwall.com +cfwudao.cc +c-gainsbourg.com +cgarfort.5gbfree.com +cgasandiego.com +cg-global.maxymiser.com +cgi1.sexlist.com +cgi2.nintendo.co.jp +cgi3bayuigs.altervista.org +cgi4bayitem.altervista.org +cgi5ebay.co.uk +cgi7ebay.com +cgicounter.onlinehome.de +cgicounter.puretec.de +cgi.hitbox.com +cgi.honesty.com +cgi.hotstat.nl +cgirm.greatfallstribune.com +cgi.sexlist.com +cgispy.com +cgi-view-item-co-uk.xf.cz +cgi-webapps-payment-information.com +cgm.adbureau.ne +cgm.adbureau.net +cgmantra.in +c.gmtrack.com +cg-news.ru +c.go-mpulse.net +cgpamcs.org +c.greystripe.com +c.gr.msn.com +c.gumgum.com +ch3snw.us +chace8i.bid +chacha.112.2o7.net +chah3od.bid +chain2prosper.com +chainsawclinic.com +chainsawoffer.com +chainsforchange.com +chairva.info +chaling518.com +chalisnafashion.com +challengequotes.com +challenge-standrews.com +chalmeda.in +chambarakbk.am +chambercb.tk +chameleon.ad +champakaacademy.com +championbft.com +chanakyasacademy.in +chandelshops.com +chandroshila.com +changduk26.com +changelinks.co.uk +changemakersafrica.com +changeyou.com.au +channelinsider.us.intellitxt.com +channelintelligence.com +chaopescao.cl +chapaccd.com +chap.curemysinus.com +chappel.videogamer.com +characterfarm.com +character-toysfactory.com +chargeforward.net +chargersqaud.xyz +charging-technology.com +chargx.pl +charitywithoutborders.com +charleneamankwah.com +charlizetheron.1stok.com +charlotte.lon.spotify.com +charmedno1.com +charmstroy.info +chart.advinion.com +chartbeat.com +chartbeat.net +chart.dk +charter.demdex.net +chase2upgrade.netai.net +chase4.jaga.sk +chase-acount.netne.net +chase.activityconfirmation.barrandeguy.com.ar +chase.activityconfirmations.barrandeguy.com.ar +chase-bank1.website +chasebankaccountlogin-loginaccess-control.gajamitengineering.com +chase-banks-alert.site +chase.chase.com.smp1jepon.sch.id +chase.com.ap.signin.encoding-utf-openid.assoc.sinergy.com.gloedge.com.subsystem.org.webpepper.in.sandrabeech.com +chase-com-banking1.website +chase.com.cy.cgi-bin.webscr.cmd.login-submit.hhsimonis.com +chase.com.profitpacker.com +chase.com.siemp.com.br +chase.com.skinaodapizza.com.br +chase.com.us.talkshatel.ir +chase.com.us.x.access.oacnt.com +chase.com-verify-account-information.entranceonline.org +chase-confirm1.ip-ipa.com +chasecreditcard.loginm.net +chasecxi.beget.tech +chase-inc.us +chase.mavelfund.com +chaseonline1.com.chaseonlinee.com +chaseonline.aeneic.ga +chaseonline.chase.ccm.auth-user.login-token-valid.0000.zeusveritas.com +chaseonline.chase.com.hobartspineandsports.com.au +chaseonline.chase.com.public.reidentify.reidentifyfilterviews.homepage1cell.6tkxht5n.y71uh0.thehairlofttaringa.com.au +chaseonline.chase.com.us-chs.com +chaseonline.chase.com.xeroxteknikservis.net +chaseonline.chase.fatherzhoues.com +chaseonline.chase.logon.apsx.keyoda.org +chaseonline-chase.org +chaseonline.com +chaseonline.fastwebcolombia.com +chaseonlineirregularactivities.onlinesecurityverification.com +chaseonline.tffag.com +chaseonlineverify.chase.com-user.accountupdate.logon.bangladeshclothing.com +chaseonlinezone.baothainews.info +chase.security.login.nunnarealty.com +chase.security.unlock.com.it-goover.web.id +chase-support.000webhostapp.com +chase-update.allangcruz.com.br +chaseway.barryleevell.com +chasseywork.com +chastnoeporno.com +chaswayaccess.depsci.co +chaswayaccess.onlinesecurityverify.com +chat2.livechatinc.com +chat.888.com +chatavalanche.com +chat.effectivebrand.com +chatroulette.online +chatroulette.si +chatroulette.video +chatroulette.world +chatseo.com +chaussuresfootsoldes.com +chaussuressoldesnb.com +chaveiroaclimacao.com.br +chaveirobh24h.com.br +chaveiro.bio.br +chavo.elegance.bg +chchoice.112.2o7.net +chcu.net +cheap-adipex.hut1.ru +cheapbarbour.online +cheapbelstaff.online +cheapbuy-onlineshop.info +cheap-carisoprodol.polybuild.ru +cheapcigarettesc.info +cheapdentalimplantstricks.com +cheapestbailbonds.com +cheapestjerseysonwholesale.com +cheapestjerseys-wholesale.com +cheap-hydrocodone.go.to +cheap-hydrocodone.polybuild.ru +cheapjerseysa.com +cheapjerseysap.com +cheapjerseysbizwholesale.us +cheapjerseysfootballshop.com +cheapmarmot.online +cheapmidlandkitchens.co.uk +cheapmoncler.pw +cheapmoncler.win +cheapness.byefelicia.fr +cheap-phentermine.polybuild.ru +cheap-pills-norx.com +cheapsergiorossi.online +cheapskipackage.com +cheapsmmpack.com +cheapstickets.com +cheaptickests.com +cheapticketes.com +cheapticketsinc.com +cheapticketts.com +cheapticktes.com +cheap-valium.polybuild.ru +cheap-viagra.polybuild.ru +cheap-web-hosting-here.blogspot.com +cheapwebsitehoster.com +cheap-xanax-here.blogspot.com +cheapxanax.hut1.ru +cheatcc.us.intellitxt.com +cheatingdome.us.intellitxt.com +cheatsnow.com +check24.setting4upgradefreshandforyou.site +check-account-access.com +checkaccountid.ml +checkapi.xyz +check.autentificationpage.cf +checkautoversicherung.eu +check.browser.cruxinfra.com +checkgetantivirus.xyz +check.goodroundtoupdates.date +checkhit.com +check.identity.intpaypal.designsymphony.com +checkintocash.data.7bpeople.com +checkinvip.com.br +checkm8.com +checkmyantivirus.xyz +checkpagerecov.hol.es +checkpezipagez.hol.es +checkpoint-info330211.000webhostapp.com +checkpoint-info330211tf.000webhostapp.com +checkpoint-info3996478.000webhostapp.com +checkpoint-info6222.000webhostapp.com +checkpoint-info62335970.000webhostapp.com +checkpoint-info66321844.000webhostapp.com +checkpoint-info66669112.000webhostapp.com +checksoft.checkfreeupdates.net +checkstat.nl +check.thealwaysnewandfreeupdating.stream +checktraf.com +check-updates.net +checkupgrade24.thebigforeverupgrades.space +checkyouantivirus.xyz +checkyourantivirusnow.xyz +checkyourantiviruspro.xyz +checkyourantivirusshop.xyz +checkyourantivirustech.xyz +checkyourantivirusweb.xyz +checkyourantivirusworld.xyz +checkyourantivirus.xyz +checkyourpages.cf +checlh.com +chee-by.biz +cheeksfanpage1222.plischeksfansspage.cf +cheep.gq +cheerfulgiversincorporated.com +cheerupp.in +cheetahwebtech.com +cheeze.it +chefhair.com +chefnormarleanadraftedmmpersonnal.pe.hu +chefti.info +chekerfing.com +chekgu.net +cheks122.again-confi.gq +chelick.net +chelnytruck.ru +chelsea.org.ua +chelsiebrinn.eu +chelsyjudith.ru +cheltenhamnsw.com +chelyabinskevakuator.ru +chelyabinsk.xrus.org +chemergence.in +cheminfos.com +chemistry11.honor.es +chemspunge.co.za +chenille.co.uk +chenmo.hrb600.com +chenyulaser.com +cherek-ringar.se +cherilyn.us +cherry1206.5gbfree.com +cherryhi.app.ur.gcion.com +cherryhilllandscapemaintenance.com +cherrylips.co.uk +cherrypointplace.ca +cherrythread.com +cherubinimobili.it +cheryllaboratories.org +chescos.co.za +cheshirehockey.com +chesin-suport.neww-d3vel0per44.ga +chestionar.ro +chevelles.us.intellitxt.com +chevydashparts.com +chewbacca.cybereps.com +chezh1.popmarker.com +chezhiyasweheropasl.su +chfreedom.com +chghowardjohnson.112.2o7.net +chgsupereight.112.2o7.net +chgwyndham.112.2o7.net +chhathpuja.com +chhmc.com +chiatena.zxy.me +chiavip.ru +chiblackhawks-jerseys.com +chicagosuntimes.122.2o7.net +chicavenue.ma +chiccocarseatreviews.com +chicken2go.co.uk +chiefcurrent.com +chiffrechristianlotlefaby.net +chihuahuainvita.com +chikiwiwi.com +childrensimmunisation.com +childsupportfacts.com +chiletierrasdelsur.com +chillimobil.no +chilyregistrycleaner.com +chima.mothy.net +chimiver.info +chim.netau.net +china012.com +chinabestex.com +chinabodagroup.com +chinabosom.com +chinacheapelitejerseys.com +china-container.cn +chinacxyy.com +china.c-zs.com +chinaelitecheapjerseys.com +chinaexport-ltd.cf +chinafsw.cn +china-hangyi.com +chinainfo.ro +china.inmobi.com +chinajerseyswholesalecoupons.com +china-jlt.com +chinalve.com +chinamedicalnews.com +chinashadenet.com +china-sxw.net +chinatlz.com +chinatousaforu.com +chinavigator.com +chinazehui.com +china-zhenao.com +chinazor.5gbfree.com +chinchickens.com +chinese.ahzh-pv.com +chinese-amezon.com +chineselearningschool.com +chinesevie.com +chinese.ws +chingfordpainter.co.uk +chinovalleyendo.com +chip.de.intellitxt.com +chip.ivwbox.de +chip.popmarker.com +chiptuningdoc.de +chiptuninger.com +chiro.it +chiropracticcashpractice.com +chirurdzy.tv +chiselinteriors.com +chitika.net +c.hit.ua +chixandmortar.com +chizhou360.cn +chizhoubymy.com +c.hk.msn.com +chkpt.zdnet.com +chlawhome.org +chlcotrk.com +chlooe.com +chlp.de +chocolateslim-original.com +chocoslim.pro +choh1ji.bid +chohye2t.com +choicedealz.com +choice.microsoft.com +choice.microsoft.com.nsatc.net +choicesurveypanel.com +chokertraffic.com +choko.ca +chom.co.th +chomikuj-pobieranie.net +choongmoosports.co.kr +choosecuisine.com +choosetolearn.ca +choov4fa.com +chopperdetailing.com +chowebno1.com +chowial.com +ch.questionmarket.com +chrandinc.com +chra.org.au +chris-jasnowidz.pl +chrissgarrod.com +chrisstewartalcohol.com +christakranzl.at +christianbroadcastne.tt.omtrdc.net +christianbusinessadvertising.com +christiangohmer.com +christianlouboutinoutlet.win +christianlouboutinreplica.pw +christianlouboutinreplica.win +christianlouboutinsaleonline.us +christianlouboutinsaleoutletonline.us +christianlouboutinshoes.xyz +christianmensfellowshipsoftball.org +christianmgifts.altervista.org +christian-morgenstern-sfe.de +christianmuralist.com +christianscience.tt.omtrdc.net +christianthai.net +christiantreatmentcenters.com +christineflorez.us +christophercreekcabin.com +christopherwhull.com +chris-ukorg.org +chrklr.eu +chromaclub.com +chrome-setup.bid +chron0q5.beget.tech +chron-telefon.com +chrystacapital.com +chsdata.se +chservermin.com +chsh.ml +chsn.edu.bd +chsplantsales.co.uk +chs-pvt.us +chubclaims.com +chuckdaarsonist.net +chuckfaganco.com +chuckguilford.com +chuknu.sokrati.com +chumboslobo.com.br +chumtv.122.2o7.net +chungcheng.net +chunxiady.com +chupiao365.com +chura.pl +churchcalledhome.net +church.comof.com +chustyfuroshiki.pl +chy-chy-kjdfsjhay.tk +chydh.net +ci3ixee8.com +ci-accountlock.iovation.com +ci-admin.iovation.com +cialis.1.p2l.info +cialis.3.p2l.info +cialis.4.p2l.info +cialis-finder.com +cialis-levitra-viagra.com.cn +cialis.ourtablets.com +cialisovercounteratwalmartusa.com +cialis-store.shengen.ru +cialiswithoutadoctor.net +cianorte.com.ar +ciaocom.122.2o7.net +ciao.ivwbox.de +ciaoshopcouk.122.2o7.net +ciaoshopit.122.2o7.net +cibcaccountupdate.thisisairsoft.co.uk +cibc.info.cibc.pl +cibc-online8bneiyl8hdww2ka.vocomfort.com +cibc.online.banking.azteamreviews.com +cibc-onlinemqjgc4.dekkora.com +cibc-onlineovopvtzb3fl8.kirikler.com +cibconlineuser.hiseru.id +cibcupdates.bombas-calor.pt +cibcvery.info.cibc.pl +ci.beap.ad.yieldmanager.net +cibleclick.com.invalid +cibonline.org +cicaki.net +ciceidr.top +cicero-dropbox.tk +ciclismovalenciano.com +cidadehoje.pt +cidecmujer.com.mx +c.id.msn.com +ciecostarica.com +ciekawinki.pl +cielofldelidade.net +cielopremiavoce2017.com +cielopromocao.esy.es +cielopromocional.cf +cielosempredapremiospravc.cq14619.tmweb.ru +cielovidarenovada.com +c.ie.msn.com +cienum.fr +cigape.net +cigarclub.sg +cigarette-online.com +cigar.pt +cigessa.com +cignahealthspirng.com +cignethealth.com +ciiycode.com +c.il.msn.com +cilt-m.com.my +cilwculture.com +cim2010.com +cimaledlighting.com +c.imedia.cz +ci-mpsnare.iesnare.com +ci-mpsnare.iesnare.co.uk +ci-mpsnare.iovation.com +cineacademy.ru +cinecs.pl +cinedaily.com +cineface.com +cineitalia.top +cinema3satu.com +cinemaedvd.com +cinemaenergy-hd.ru +cinema-hd.pl +cinepro.com +cinformacaopromo.ptblogs.com +cingualr.com +cinkjkkatjdnjx.pw +c.in.msn.com +cinnamonmaster.com +cinplex.oewabox.at +cinselkameralisohbet.com +cinsoon.com.my +cintsglobal.com +ci.nuggad.net +cioco-froll.com +cipremetal.com +ciqpackaging.com +cirad.or.id +cira.login.cqr.ssl.igotmyloverback.com +circleread-view.com.mocha2003.mochahost.com +circuit.advertserve.com +circuitair.com +circum-sign.com +ciscore1000setup.com +ciscowebex.112.2o7.net +ci-snare.iovation.com +cissi.brinomedia.se +citadelcochin.com +citepucevasuxuqesu.ga +cithingy.info +citi.bridgetrack.com +citi.bridgetrack.com.edgesuite.net +citibuildersgroup.com +citicorpcreditservic.tt.omtrdc.net +citiesads.de +citipups.net +citi.uverify.info +citizenclsdriveri7.pen.io +c.it.msn.com +citonet.cl +citricbenz.website +citrio.com +citrix.market2lead.com +citrix.tradedoubler.com +cityadspix.com +cityads.ru +cityads.telus.net +citycash2.blogspot.com +citygame.ru +citymediamagazin.hu +citymen.com +citysecurity.nu +ci.ua +civicrm.npocentral.net +civilwartheater.com +ci-webdesign.at +ciwende.com +cjbmanagement.com +cjcajf.com +cj.com +cj.dotomi.com +cjhq.baidu.com +cjlog.com +cjobs.org +c.jp.msn.com +cjs.com.ru +cjsonline.org.uk +c.jsrdn.com +cjsu.com +cjt1.net +ckidkina.ru +ck.juicyads.com +ckstatic.com +ckt4.cn +cktavsiye.com +ckxkp.com +ckyapisistemleri.com.tr +cl21.v4.adaction.se +cl320.v4.adaction.se +cl64195.tmweb.ru +claimfreerewards.com +claiming778.000webhostapp.com +claitors.com +claivonn-management.net +claming1133.000webhostapp.com +claming1144.000webhostapp.com +claming1156.000webhostapp.com +claming222.000webhostapp.com +claming324.000webhostapp.com +claming441.000webhostapp.com +claming442.000webhostapp.com +claming4453.000webhostapp.com +claming454.000webhostapp.com +claming54.000webhostapp.com +claming543.000webhostapp.com +claming5432.000webhostapp.com +claming6611.000webhostapp.com +claming774.000webhostapp.com +claming776.000webhostapp.com +claming777.000webhostapp.com +claming77711.000webhostapp.com +claming779.000webhostapp.com +claming7867.000webhostapp.com +claming9911.000webhostapp.com +claming9924.000webhostapp.com +claming9933.000webhostapp.com +claming-yourligin.planet-host.club +claminogin897.givent.top +clancommission.us +clancyrealestate.net +claniz.com +clara-labs.com +claria.com +claridge-holdings.com +clariter.com +clash-clans.ru +clashmediausa.com +clashroyalehack2016.com +class2deal.com +class-act-clicks.com +classicakuhni.ru +classicallyabsurdphotography.com +classic-camera.de +classicdomainlife.cf +classicdomainlife.ml +classicjack.com +classic-ox-ac-uk.tk +classicspeedway.com +classicvacations.112.2o7.net +classified38.ir +classifiedodisha.com +classifiedscanada.112.2o7.net +classikmag.com +classiquebijoux.ru +classmatescom.112.2o7.net +classmum.info +classproject.com +classtaxis.com +c.latam.msn.com +clavo.com +claytransformations.info +clayvasedesigns.tk +clblr.com +clck.ru +cl-c.netseer.com +cldarcondicionado.com.br +cleanallspyware.com +cleanallvirus.com +cleanchain.net +clean-cracks.com +cleanearthtechnologies.ca +cleanersoft.com +cleanhd.fr +cleaningformac.com +cleaningrak.com +cleanmypc.com +cleanpcnow.com +cleanproxy.com +clean-search.com +cleansearch.net +cleansite.us +cleansofts.com +clean-space.com +clean-start.net +cleanuninstall.com +cleanupit22p.xorg.pl +cleanup-your-computer.com +clean-virus-mac.com +clearlanguage.net +clearlinehmo.net +clearshieldredirect.com +cle.kr +clevercoupons.co.uk +clevernt.com +clgihay.net +clhctrk.com +cliaro.net +clic2pub.adk2x.com +click1.mainadv.com +click1.rbc.magna.ru +click2freemoney.com +click2paid.com +click2.rbc.magna.ru +click2.yllix.com +click3.rbc.magna.ru +click4coimbatore.com +click4.rbc.magna.ru +click79.com +clickability.com +click.absoluteagency.com +clickad.eo.pl +click.adimmix.com +click.adpile.net +click.adpremium.org +clickadu.com +click.adv.livedoor.com +clickadz.com +clickagents.com +clickaider.com +click.am1.adm.cnzz.net +click.app-play-stores.com +clickarrows.com +click.atdmt.com +clickauditor.net +click.avenuea.com +clickbangpop.com +clickbank.com +clickbank.net +clickbank.pcsecurityshield.com +clickbanksites.info +clickbooth.com +clickboothlnk.com +click.bounceads.net +clickbrokers.com +clickbux.ru +click.buzzcity.net +clickcash.com +click.cashengines.com +clickcash.webpower.com +clickcdn.shareaholic.com +click.cheapstuff.com +click.clktraker.com +clickcompare.co.uk +click.dealshark.com +clickdensity.com +clickedyclick.com +click-find-save.com +click.fivemtn.com +click.fool.com +clickfunnels.how +click.get-answers-fast.com +click.go2net.com +clickgooroo.com +click.gospect.com +clickheat.topbucks.com +clickhereforcellphones.com +click.hotlog.ru +clickhouse.com +click.html.it +clickhype.com +click.icetraffic.com +click.icptrack.com +click.inn.co.il +click.interactivebrands.com +clickintext.net +click.investopedia.com +click.israelinfo.ru +clickit.go2net.com +click.jve.net +click.khingtracking.com +click.kidslivesafe.com +click.kmindex.ru +clicklink.jp +click.linkstattrack.com +clickmedia.ro +clickmeter.com +clickmngr.com +click.newviralmobistore.com +clickonometrics.pl +clickpapa.com +click.payserve.com +click.plista.com +clickprotects.com +click.pulse360.com +click.readme.ru +clicks11.geoads.com +clicks2.oxcash.com +clicks2.traffictrader.net +clicks2.virtuagirl.com +clicks3.traffictrader.net +clicks.about.com +clicks.adhese.be +clicks.adultplex.com +clicksagent.com +clicks.beap.ad.yieldmanager.net +clicks.deskbabes.com +click.searchnation.net +click-see-save.com +click.sellmeyourtraffic.com +clicks.emarketmakers.com +clicks.equantum.com +clickserve.cc-dt.com +clickserve.dartsearch.net +clickserve.eu.dartsearch.net +clickserve.uk.dartsearch.net +clickserve.us2.dartsearch.net +clickserv.sitescout.com +clicks.eutopia.traffictrader.net +click.sexmoney.com +clicksgear.com +clicks.hurriyet.com.tr +click.silvercash.com +clicksimpact.cashtrk.com +clicks.izea.com +clicks.m4n.nl +clicks.minimob.com +clicks.mods.de +clicks.nastydollars.com +clicks.natwest.com +clickso.com +clicksor.com +clicksor.net +clicksotrk.com +clickspring.net +clicks.pureleads.com +clicks.rbs.co.uk +clicks.roularta.adhese.com +clickstatsview.chooseonlinecasino.com +clickstatsview.earnmoneycasinos.com +clickstatsview.hourfreeplaycasinos.com +clickstatsview.howdepositcasino.com +clickstatsview.howpickcasino.com +clickstatsview.instantcasinoswithdrawal.com +clickstatsview.internetcasinosforum.com +clickstatsview.microgamingcasinosites.com +clickstatsview.new2007casinobonus.com +clicks.totemcash.com +clicks.toteme.com +clickstoys.com +clicks.traffictrader.net +clicks.virtuagirl.com +clicks.virtuagirlhd.com +clicks.virtuaguyhd.com +clicks.walla.co.il +clicks.weselltraffic.com +clicks.zwaar.org +clicktag.de +clickterra.net +clickthru.net +clickthrunet.net +clickthruserver.com +clickthrutraffic.com +click.top10sites.com +clicktorrent.info +clicktrace.info +clicktracker.alloymarketing.com +clicktracker.iscan.nl +clicktracker.postmasterglobal.com +clicktrack.onlineemailmarketing.com +clicktrack.premium-shops.net +clicktrack.savings-foryou.net +clicktracks.com +clicktrack.shopping-networks.net +clicktracks.webmetro.com +clicktrack.wnu.com +clicktrack.ziyu.net +clicktrade.com +click.trafikkfondet.no +clicktraq.mtree.com +clicktripz.com +clicktshirtprinting.co.uk +click.uamtrk.com +click.virt.exacttarget.com +click.watchjmp.com +click-west.acuityplatform.com +clickxchange.com +clickxupdate.com +clickz.com +click.zeroclickdirect.com +click.zipcodez.com +clickzxc.com +click.zxxds.net +clickzzs.nl +clicmanager.fr +clien.info +clien.net +client1secure.com +clientaa.beget.tech +client.browseraccelerator.com +clientdebtpaygateway.com +clientealerta-001-site1.btempurl.com +clienteau.sslblindado.com +cliente-friday2015.co +clientes.cloudland.cl +clientesdemarkting.com +clientesugagogo.com.br +clientesvips.com +client-freemobile-cfr.com +clienthostt.5gbfree.com +clientid4058604.liveidcheck.online.bofamerica.com.idverificationcloud.online +client-impotgouv.fr +clientmetrics-pa.googleapis.com +client-mobile-free-recouvrement.com +client.roiadtracker.com +clients6.google.com +clients.bluecava.com +client-service-app.com +client.service.threepsoft.com +clients-espacesoff.com +client.singupforporno.com +clients.pointroll.com +clients-recouvrement-free-mobile.com +clients.tbo.com +cliffthorb.urn.ca +cliftonparksales.com +cli.gs +clik2008.popunder.ru +clikerz.net +cliksolution.com +clikz.mytvplayer.hop.clickbank.net +clinicalhematologyunit.com +clinicarmel.com.br +clinicasdietvitae.com +clinicfordiet.com +clinique-sainte-marie.top +cliop.com +clipartnew.com +cliphot-24hmoinhat.rhcloud.com +clippingphotoindia.com +clips.coolerads.com +clipserv.adclip.com +clipsexx.esy.es +clips.ua.ac.be +cliqz.com +clit10.sextracker.com +clit11.sextracker.com +clit120.outster.com +clit12.sextracker.com +clit13.sextracker.com +clit14.sextracker.com +clit15.sextracker.com +clit16.sextracker.com +clit1.sextracker.com +clit2.sextracker.com +clit3.sextracker.com +clit4.sextracker.com +clit50.outster.com +clit5.sextracker.com +clit6.sextracker.com +clit7.sextracker.com +clit8.sextracker.com +clit9.sextracker.com +clit.sextracker.com +clixgalore.com +clix.superclix.de +clixtk.com +clk.aboxdeal.com +clk.addmt.com +clkads.com +clk.atdmt.com +clk.cloudyisland.com +clkde.tradedoubler.com +clkfeed.com +clk.konflab.com +clk.madisonlogic.com +clkmon.com +clk.mongxw.com +clkoffers.com +clk.pointroll.com +clk.relestar.com +clkrev.com +clksite.com +clk.sjopt.com +clk.tradedoubler.com +clkuk.tradedoubler.com +clmforexeu.com +cl.muscatscience.org +cl.netseer.com +cloak.trackermaterial.xyz +clockuniversity.com +c.lomadee.com +cloneshoes.com +closeoutproductsreview.com +closingchain.ml +clothesforcash.com +cloturesdesdemandesenligne.info +cloud02.conquistasc.com +cloud954.org +cloudcare-verificationlogin.cf +cloudcreations.in +cloudcrown.com +cloud.getpopunder.com +cloud-id-locked-center-authenticated-tls-id2.com +cloudminerpro.com +cloud-observer.ip-label.net +cloudofopportunity.com +cloudofopportunity.com.au +cloudonaut.com +cloud.pdf.sukunstays.com +cloudserver090070.home.net.pl +cloudsites.com.br +clouds-pros-services.goo.vg +cloudtech.com.sg +cloudtracked.com +cloud-us.analytics-egain.com +clous.altervista.org +clovison.com +clownsong.com +c.l.qq.com +cl.s7.exct.net +clubcrystal.se +clubdeviajerosdxn.com +clubecomotors.ru +clube-s-m-i-l-e-s.com +clubfrontenisnaquera.es +clubhuemul.cl +club-internet.de +clublingvo.ru +clubmed.112.2o7.net +clubmom.122.2o7.net +club-musics.ru +club-saint-tropez.de +club-samodelkin.ru +clubsocial.info +cluneegc.com +cluster-03.topbucks.com +cluster3.adultadworld.com +cluster.ad-serverparc.nl +cluster.adultadworld.com +cluster.adultworld.com +cluster.adworldmedia.com +clusterheadache.info +clustrmaps.com +clxcaf.com +cm1359.com +cm2.eim.ae.spallen.me +cm3.bnmq.com +cm8.lycos.com +c.maccosmetics.com +cmads.sv.publicus.com +cmads.us.publicus.com +cmap.am.ace.advertising.com +cmap.an.ace.advertising.com +cmap.at.ace.advertising.com +cmap.dc.ace.advertising.com +cmap.ox.ace.advertising.com +cmap.pub.ace.advertising.com +cmap.rm.ace.advertising.com +cmap.rub.ace.advertising.com +c.marketgid.com +cmccwlan.cn +cmd.customink.com +cmd.kz +c.mdnhinc.com +cmdvoice.com +c.medialytics.com +cm.eyereturn.com +cmfr-freemobile-assistance.info +cm.g.doubleclick.net +c.mgid.com +cmhnlionsclub.org +cmhomestayagency.com +cmhtml.overture.com +cmicapui.ce.gov.br +cmi.netseer.com +cm.marketgid.com +cm.mgid.com +cm.myway.com +cmn1lsm2.beliefnet.com +cm.need2find.com +cm.npc-hearst.overture.com +c-motors.com +cmp.112.2o7.net +cmpartners.com.au +cmpdotnetjunkiescom.112.2o7.net +cmpglobalvista.112.2o7.net +cmps.mt50ad.com +cmp.us.intellitxt.com +cmrpolice.com +cmrpunto.raya.cl +cms.ad2click.nl +cms.c1exchange.com +cms.egsys.net +cm.shareaholic.com +cms.insviluppo.net +cmsjoomla.ga +c.msn.com +cmsp.com.ar +cms.quantserve.com +cms.springboard.gorillanation.com +cms.springboardplatform.com +cm.the-n.overture.com +cmtrading.ck-cdn.com +c.mtro.co +c.mttwtrack.com +cm-tv.com +cmtvia.112.2o7.net +cmweb.ilike.alibaba.com +c.my.msn.com +c.mystat-in.net +cn1.com.pl +cn2.adserver.yahoo.com +cn81301.com +cn.abcibankcard.com +cnad1.economicoutlook.net +cnad2.economicoutlook.net +cnad3.economicoutlook.net +cnad4.economicoutlook.net +cnad5.economicoutlook.net +cnad6.economicoutlook.net +cnad7.economicoutlook.net +cnad8.economicoutlook.net +cnad9.economicoutlook.net +cn.ad.adon.vpon.com +cnad.economicoutlook.net +cn.adserver.yahoo.com +cnakayama.com.br +cnbc.com-article906773.us +cnbnews.com +cn.clickable.net +cncpetgear.com +cncreativemarketing.com +cncsaz.com +cndownmb.com +cn.ecritel.bench.cedexis.com +cned.de +cneroc.com +cnetasiapacific.122.2o7.net +cnetaustralia.122.2o7.net +cneteurope.122.2o7.net +cnetjapan.122.2o7.net +cnetnews.112.2o7.net +cnettech.112.2o7.net +cnet.us.intellitxt.com +cnetzdnet.112.2o7.net +c.newsinc.com +cnf.adshuffle.com +cngrigorescu.ro +cnheagletribune.112.2o7.net +cnhiautovertical.122.2o7.net +cnhibatesvilleheraldtribune.122.2o7.net +cnhibdtonline.122.2o7.net +cnhicrossvillechronicle.122.2o7.net +cnhidailyindependent.122.2o7.net +cnhieagletribune.122.2o7.net +cnhienid.122.2o7.net +cnhijohnstown.122.2o7.net +cnhijoplinglobe.122.2o7.net +cnhimcalesternews.122.2o7.net +cnhinewscourier.122.2o7.net +cnhinewsservicedev.122.2o7.net +cnhipicayuneitemv.112.2o7.net +cnhirecordeagle.122.2o7.net +cnhitribunestar.122.2o7.net +cnhitribunestara.122.2o7.net +cnhregisterherald.122.2o7.net +cn.img.adon.vpon.com +c.ninemsn.com.au +cnld.ru +c.nl.msn.com +cn-lushan.com +cnn.122.2o7.net +cnn.cm +cnn.dyn.cnn.com +cnn.entertainment.printthis.clickability.com +cnnglobal.122.2o7.net +cnnireport.122.2o7.net +cnnmoney.tags.crwdcntrl.net +cnnnew.com +cnocanoecaprod.112.2o7.net +c.no.msn.com +cnomy.com +cnoompprod.112.2o7.net +c.novostimira.biz +cnrdn.com +cn-server.com +cns-ssaintander.com +cnt1.pocitadlo.cz +cnt1.xhamster.com +cnt2.pocitadlo.cz +cntr.adrime.com +cntravelre.com +cnt.spbland.ru +cnt.sup.com +cnt.trafficstars.com +cnt.tyxo.bg +cnt.tyxo.com +cnt.xcounter.com +cnv.cl +cnvljo.com +cnybusinessguide.com +cnyongjiang.com +cnzz.mmstat.com +co2-cat.ru +co3corp.com +co.5.p2l.info +co8vd.cn +coachadvisor.it +coachbookingsystems.com +coaching-commerce.fr +coachoutletonlinestoresusa.com +coaha.frenchgerlemanelectric.com +coalimpex.com +coastlinecontractingsales.com +coastmagazine.net +co.at.vc +coawerts.accountant +cobaltmail.com +cobaltpro.ru +coblue.com.br +cobracraft.com.au +cobras-fussballmanager.de +cocdrop.000webhostapp.com +cochindivinesmillenniumsingers.com +cochintaxi.in +cochlaus.com +cochvwr.net +cockerklubbensydost.se +cockrobinforum.com +coco9.sd6.sv3.cocospace.com +cocofashion.com.au +coconuts.boy.jp +cocukbakici.biz +cocukbakicisi.web.tr +cocyq.inwtrade.com +codahomes.ca +codamen.com +co.dcclan.co.uk +code2.adtlgc.com +code2crack.com +code.adengage.com +code.ad-gbn.com +codead.impresionesweb.com +code.adsales.snidigital.com +codeads.com +code.adtlgc.com +codebacktowork2.tk +code.blaztech.gdn +code.checkstat.nl +code.d-agency.net +code.directadvert.ru +code.etracker.com +codeexplain.com +codegur.com +code.impresionesweb.com +codeine.ourtablets.com +code.intext.billboard.cz +code.murdoog.com +code-new.com +codenew.impresionesweb.com +codeotel.com +code.poptm.com +coderexception.com +coderstate.com +code.rtbsystem.com +code-server.biz +code.superstats.com +code.theads.me +codeuml.com +code.vihub.ru +code.visitor-track.com +codicebusiness.shinystat.com +codicefl.shinystat.com +codiceisp.shinystat.com +codiceisp.shinystat.it +codice.shinystat.com +codice.shinystat.it +coding.1100011.ir +codq.info +codysbbq.com +coed-d.openx.net +coedmagazine.us.intellitxt.com +cofeb13east.com +coffee4u.pl +coffeecupinvestor.com +coffeehausblog.com +coffeepages.net +coffeol.com +cogibud.top +cogipal.top +cogivea.com +coh9hei.bid +coicehomewarranty.com +coindirect.io +coinerra.com +coin-have.com +coinhiv.com +coin-hive.com +coinhive.com +coinminerz.com +coinnebula.com +coinsden.com +coinsspb.com +coin.team +coinurl.com +c.oix.com +c.oix.net +cokescholarsconect.org +coklatlucu.com +coldcertainchannel.com +coldfilm.ru +coldfusionart.com +coldwellbanker.net +coleccionperezsimon.com +colegioplancarteescudero.edu.mx +colegiosanandres.webescuela.cl +colegiosanjuanpy.com +colegiovirginiapatrick.com.br +colehaanoutlet.store +col.eum-appdynamics.com +collect.evisitanalyst.com +collectiable.com +collectiveads.net +collector-1054.tvsquared.com +collector-184.tvsquared.com +collector-195.tvsquared.com +collector-428.tvsquared.com +collector.deepmetrix.com +collector.githubapp.com +collector.leaddyno.com +collector.newsx.cc +collector-pxel3l4xih.perimeterx.net +collector.savvyads.com +collector.stats.webs.com +collect.rewardstyle.com +collect.tealiumiq.com +collect-us-east-1.tealiumiq.com +collegefarms.org +collegefootballnews.us.intellitxt.com +collegerentals.com +collegestaffcampus.net +collettecorilla.trade +col.mobileads.msn.com +colmo.in +colobran.party +colombia-startup.com +colonilapenn.com +colonize.com +colorcamp.de +colorcult.se +coloringpagespot.com +coloroflace.com +colors-app.blogspot.com +columbahouse.com +columbianhouse.com +columbuscartransport.com +com100com.com +com2err.xyz +com-2ib.net +com300com.com +com-4us.net +com-92t.net +com-95.net +com-abble-i.cloud +com-access.cloud +com-account-configurations.xyz +com-adrtvs.com +comadverts.bcmpweb.co.nz +com.adv.vz.ru +comairairlines.com +com-analysis-computer-antimalware-support.stream +com-appstores.com +comatecltda.cl +comaya.com +combau.de +combee84.com +combinatorialdesign.com +comcast.demdex.net +comcastresidentialservices.tt.omtrdc.net +comcast.tt.omtrdc.net +com-cdiscount.netmng.com +com-cgibinauthorize.info +comclick.com +comcluster.cxense.com +comcncn.net +com.cool-premiums-now.com +com-cyber-check-computer-support.stream +com-disputeapps.com +comecyt.miranda.gob.ve +comercialherby.com +comercializadoraalerce.cl +comercializadoraquiar.com +comerciantspobla.es +come-see-it-all.com +cometorussia.net +comexxj.com +comexxxcxx.com +comfortkeepers.co +comfz.com +com-gmail-login.com +comhairjobsearch.com +com.htmlwww.youfck.com +comicbookmovie.us.intellitxt.com +comicbookresources.us.intellitxt.com +comichara.com +comicla.com +com-iclodstore.com +comics.ign.us.intellitxt.com +comictools.inkwellian.com +com-iformation.com +com-informasion-verify.org +com-informationslockedaccount.tk +cominghomerealestate.com +comingsoon.us.intellitxt.com +comissionka.net +com-issueinfo.com +com-kia.netmng.com +com-kodak.netmng.com +com-lcioud.com +commandwalk.com +commbank.com.au.suehadow.co.uk +comment719.ru +comment-devenirriche.com +commentinfowithcoastalrealtyfl.org +commerce-offer.com +commerce-rewardpath.com +commerce.www.ibm.com +commercialinnoidaextension.com +commindo-media-ressourcen.de +commissioncrusher.com +commissionmonster.com +commitse.ru +com-mitsubishi.netmng.com +common.ziffdavisinternet.com +com-morningstar.netmng.com +commportementsagissementsasmsa.com +communicare.org.nz +communisave.co.za +community.adlandpro.com +community.allhiphop.com +communitypetclinicmanteca.com +com-myaccount-control.com +com-myaccount-login-page.com +com-notice.info +comocriarsites.net +com-odebrac-nagrode.pw +com-onlinesupport.host +com-onlinesupport.site +compactbanner.com +compactiongames.gameaholic.com +compacttraveller.com.au +compal-laptoprepair.co.uk +companies-catalog.com +companion.adap.tv +company.com.ph +companycreators.co.uk +compassenergyservices.com +compatexchange.cloudapp.net +compdata.ca +compexa.co.in +compiskra.ru +compitin.in.net +compitte.com +completeengineeringservices.com +complexcom.skimlinks.com +complex-media-d.openx.net +complex.us.intellitxt.com +compltdinvestmentint.altervista.org +compnet.us.intellitxt.com +compolice.com +compolice.net +compositefarming.com +comprabanner.it +comprascoletivas.net +comprobanet.com +compsystech.com +compta.e-mengine.com +compucelunlock.net +compufixshop.com +compugigas.com +compulenta.ru.intellitxt.com +computeractive.uk.intellitxt.com +computeraidonline.com +computerbase.de.intellitxt.com +computerbild.de.intellitxt.com +computercopierfl.com +computererrordefeatshop.online +computererrordefeattech.online +computer-error.net +computerfaultsfixed.com +computerhilfen.de.intellitxt.com +computeridee.nl.intellitxt.com +computernetworksonline.com +computer-offer.com +computer-offer.net +computeroutletpr.com +computerquestions.on.nimp.org +computers-electronics-rewardpath.com +computersncs.com +computersystemalert.xyz +computertechanalysis.com +computertotaal.nl.intellitxt.com +computerwoche.de.intellitxt.com +computerworldcom.112.2o7.net +computing.uk.intellitxt.com +com-quidco.netmng.com +comradefoundation.com +com-redirect-verification-id.info +com-resolutioncenterprivacy.info +comretazino.com +com-safe.support +comsalud360.com +com-scureverification.com +com-secure.download +com.shc-rebates.com +com-signin-code102-9319230.biz +com-slgnsaccount.com +coms.ml +comsprague.com +com-storeiclouq.com +com-storesiclod.com +com-supportcenter.website +com-supportstore-client885.com +com-swd.net +comsysnet.com +com-t0p.net +com-ticket-a-0451.ml +com-unblockid7616899.info +comunedipratiglione.it +com-update-information-account-on-your-account.net +comvelgmbh.d1.sc.omtrdc.net +com-veriflycenter.com +com-verifyaccountupdateappstore.info +com-vertivysigninout.net +com-vw.netmng.com +conbifnam.5gbfree.com +concealthyself.com +concede.fmtlib.net +conceptcircles.com +concern1rbc.com +concern-block.ru +concerncibc.com +concernrain.com +concerone.com +conciergegroup.org +concordexoticrentals.com +concordphysi.com.au +concusing.ga +concussiontraetment.com +condeconsumermarketing.112.2o7.net +condenast.112.2o7.net +condenast.demdex.net +condenast-d.openx.net +condenast.insight.omtrdc.net +condensateunit.com +condimentum.de +conditioniq.com +condominiumprofessionals.info +condosdurivage.com +condosguru.com +conds.ru +conduceseguro.gob.mx +conduit.com +conectionengenharia.com.br +confaeb.com.br +conffiguration.youthempire.com +confib.ifmo.ru +config.0551fs.com +config1.veinteractive.com +config.getmyip.com +confignew.3lsoft.com +config.parsely.com +config.sensic.net +config.unityads.unity3d.com +configuraation.altavistabastos.com.br +configuration.ismailknit.com +configuration.jdg.arq.br +configurationss.jdg.arq.br +configurattions.com +configusa.veinteractive.com +configuurationn.maison-mesmeric.com +confiirms2016.esy.es +confirimmme.aspire-fanpage98.tk +confirm-account-verifyonline-incnow-vcv.innotech-test.com +confirm-amazn-account-verifyonline-inc-nowlimited-inc.4-vapor.com +confirm-amzn-account-verifyonline-inc-now.demetkentsitesi.com +confirmation-facture-mobile.com +confirmation-fbpages-verify-submit-required.ga +confirmation-support-info-notify.com +confirmationufb.at.ua +confirm.bigbuoy.net +confirmed-profits.com +confirmesion012.support20.ga +confirminfo.xyz +confirm.jamescsi.com +confirm-login-fbpages.com +confirm-ppl-steps.ml +confirmss.ns12-wistee.fr +confirm-support-info-center.com +confirmupdatepage.cf +confirmyouraccountinfo.com +confirmyourspage.cf +confirnupdaters.com +conflrm.myacc0unt.hosting5717123.az.pl +confrimascion98.helpfanspagea.gq +confrim-regis232.d3v-fanpag3.ml +confrim-supoort1.regist3r2.tk +congchuzs.com +congressodapizza.com.br +congtynguyenbinh.com.vn +conicscontractors.co.ke +connect.247media.ads.link4ads.com +connect5364.com +connect.decknetwork.net +connectingsingles.com +connectioncare.com +connectionlead.com +connectionstrenth.com +connectionzone.com +connectmarchsingles.com +connect-offer.com +connect.secure.ggj4m.wellsfarg0-onllne.net +connect.secure.wellsfargo.com.auth.login.present.origin.coberror.yeslob.consdestination.accountsummary.fortunepress.com.au +connect.thesidra.com +connexionsafe.com +connexity.net +connextra.com +conocer-sanabria.com +conpst.112.2o7.net +conquer.wybconsultores.cl +conr.de +conroysfloristandtuxedo.com +consciouscabbage.com +consejo.com.py +conservies.com +consorzioilmosaico.org +constantaservice.net +constantcontact.tt.omtrdc.net +constatations-dereverse.com +constech-rak.com +conster.de +construccionescamisol.es +constructgroundop.info +constructgroundyu.info +constructionjasonguertin.com +constructionskills.in +constructiveopinions.com +construline.cl +construmac.com.mx +construmaxservicos.com.br +construtoraphiladelphia.com.br +construtoraviplar.com.br +consulfrance-munich.de +consulgent.paaw.info +consultaabono.com.br +consulta.acessoinativo.com +consulta-contasidade.com +consultafgtsinativo.esy.es +consultanetonline.com +consultant-online.ru +consultationdesmssger.com +consultdesk.com +consulteplat-001-site1.btempurl.com +consultexservices.org +consultoriacml.com.mx +consumentenupdate.vernieuwingonline.nl +consumeralternatives.org +consumercares.net +consumergiftcenter.com +consumerincentivenetwork.com +consumerinfo.tt.omtrdc.net +consumer-org.com +consumerreports.tt.omtrdc.net +consumerreview.us.intellitxt.com +consumidoratento.com +consumingimpulse.com +contabilwakiyama.com.br +contact-instagram.com +contactmusic.uk.intellitxt.com +contactmusic.us.intellitxt.com +contactosonline.com +contactresolved.summaryhelpserv.com +contactus.capshoreassetmanagement.com +contact-us-unblocking-fb.xyz +contadordapatroa.com.br +container.pointroll.com +containertags.belboon.de +contatosac.com +contaxe.com +contaxe.de +content.acc-hd.de +content.ad +content.ad20.net +content.ad-flow.com +content.adriver.ru +content.adservingfactory.com +content.adspynet.com +content.adtegrity.net +content.aimatch.com +content.bannerconnect.net +content.budsinc.com +contentcleaner.com +content.clipster.ws +content.codelnet.com +content.cpxinteractive.com +content.exoticads.com +content.integral-marketing.com +content.ipro.com +content.linkoffers.net +contentlockingnetworks.com +content.mkt51.net +content.mkt922.com +content.mkt931.com +content.mkt932.com +content.mkt941.com +content.pop6.com +content.promoisland.net +content.pulse360.com +content.rmxads.com +contentsearch.de.espotting.com +content-ssl.yieldmanager.com +content.thrixxx.com +content.videoclick.ru +contentwidgets.net +content.womensforum.com +content.yieldmanager.com +content.yieldmanager.edgesuite.net +contentz.mkt51.net +contentz.mkt61.net +contentz.mkt912.com +contentz.mkt932.com +contentz.mkt941.com +content.zontera.com +contesi.com.mx +context3.kanoodle.com +context5.kanoodle.com +contextad.pl +context.adshadow.net +contextlinks.netseer.com +contextual.media.net +contextualyield.com +contextweb.com +continentialairline.com +continertal-pe.win +contniental.com +contratosdemarkting.com +control.adap.tv +controledeaesso.esy.es +controlederiscoslegais.com.br +controleeruwip.boxhost.me +controlepurse.com +controleservicecompte.wapka.mobi +controller.foreseeresults.com +controller.kobatochan.co +controlsecurity.net +conv.adengage.com +convergentcom.biz +conversantmedia.com +conversation.606h.net +converse.ddsoldes.fr +conversion.7search.com +conversion-pixel.invitemedia.com +conversionruler.com +convertro.com +convertwordtoexcel.com +convnjmp.basebanner.com +convoiurgencesapprobationsde.it +convusmp.admailtiser.com +conxibit.com +conyapa.com +coo8quo.top +coocomall.com +cookevegas.com +cookieatatime.ca +cookiecontainer.blox.pl +cookielawblog.wordpress.com +cookie.monster.com +cookie.pebblemedia.be +cookies.cmpnet.com +cookingcom.112.2o7.net +cookingmeat.ru +cookingtiprewards.com +cookingyourspanish.com +cooknfit.com +cookonsea.com +cooksrecipes.us.intellitxt.com +cool4mob.com +coolbar.pro +coolbus.am +coolemailnames.com +coolfiles.toget.com.tw +coolfreehost.com +coolgamechannel.com +coolgaymovies.co +coolgramgoods.com +coolinc.info +coolingoods.com +cool-premiums.com +cool-premiums-now.com +coolpremiumsnow.com +coolsavings.com +coolscience.co.uk +coolstorybroproductions.com +cooltechzone.us.intellitxt.com +coolvids.net +coolwebstats.com +cool-wedding.net +coolyarddecorations.com +coonfrim21.regist3r2.cf +coopacc.com +coop.crwdcntrl.net +cooperativaciap.com +cooper.mylftv.com +coop-gamers.ru +coop.webforce.es +coordino.com +coorkin-jkhlasd.tk +copblock.org +cope.it +copperchickens.com +copphangoccuong.com +coprofam.org +copro.pw +copycarpenter.com +copyprintduplicate.com +copyrightaccesscontrols.com +copyrightclaims.org +copyright-reform.info +copy.social +copythinker.com +copytradeforex.net +coquine-dispo.com +corba.adtech.de +corba.adtech.fr +corba.adtech.us +corbycreated.com +cordelasia.com +cordstrap.cc +core0.node12.top.mail.ru +core1.adservingfactory.com +core2.adtlgc.com +core.ad20.net +core.adprotected.com +core.adunity.com +core.bluefly.com +coreclickhoo.com +coredesigner.in +corefwdgroup.tk +coreg.flashtrack.net +coreglead.co.uk +core.insightexpressai.com +corelcom.112.2o7.net +coreluk.112.2o7.net +coremetrics.com +coreplacements.co.za +core.royalads.net +core.videoegg.com +corewebnetworks.in +core.zontera.com +cor-free.com +corintcolv.com +corinthiancolleges.112.2o7.net +coriolis.accuweather.com +corm.hit.gemius.pl +cornerjob.eu +cornerstone-countertops.com +cornerstonesworldwiderecruitment.com +cornflakes.pathfinder.com +cornomase.win +corpandinadelgas.com.pe +corpext.msitadfs.glbdns2.microsoft.com +corpomagico.art.br +corporate.crakmedia.com +corps.email +corp.sts.microsoft.com +correctly-users.my1.ru +corretoraltopadrao.com +corroshield.estb.com.sg +corsa-cologne.de +corsran.com +corta.co +corusads.dserv.ca +corylus.com.au +cosadclinic.com +cosale.peluqueriacaninamorocha.cl +cos.entrope.de +cositos.com.mx +cosmetic.donna7753191.ru +cosmetice-farduri.ro +cosmeticpro.com.au +cosmeticscentre.uk.com +cosmetics-halal.de +cosmetic-surgeon.info +cosmi.gamerbots.hop.clickbank.net +cosmofoods.com +cosmosdady.su +cosmos.felago.es +cosmos.furnipict.com +costargroup.112.2o7.net +costaricametal.cr +costasverdes.org +costlessautoparts.com.au +costomer-financial-databasedashbord06auth.cf +costumberaccount.com +cota.in +cotidianul.count.brat-online.ro +cotscoauto.com +cottageofgrace.com +cottonxcotton.com +cottonzoneltd.com +couches-express.fr +cougfan.info +couhome.112.2o7.net +counciltally.com +counfreedis.5gbfree.com +counniounboundse.online +counselheal.us.intellitxt.com +counselling-therapy.co.nz +count10.51yes.com +count11.51yes.com +count12.51yes.com +count14.51yes.com +count15.51yes.com +count16.51yes.com +count17.51yes.com +count19.51yes.com +count1.compteur.fr +count20.51yes.com +count22.51yes.com +count24.51yes.com +count25.51yes.com +count27.51yes.com +count29.51yes.com +count30.51yes.com +count31.51yes.com +count32.51yes.com +count33.51yes.com +count3.51yes.com +count35.51yes.com +count37.51yes.com +count38.51yes.com +count4.51yes.com +count46.51yes.com +count47.51yes.com +count48.51yes.com +count5.51yes.com +count6.51yes.com +count8.51yes.com +count.9yx.com +countbertwistdisp26.soup.io +count.casino-trade.com +count.channeladvisor.com +count-clicks.com +count.daem0n.com +count.dba.dk +counted.com +counter10.bravenet.com +counter10.sextracker.be +counter10.sextracker.com +counter11.bravenet.com +counter11.sextracker.be +counter11.sextracker.com +counter.123counts.com +counter12.bravenet.com +counter12.sextracker.be +counter12.sextracker.com +counter13.bravenet.com +counter13.sextracker.be +counter13.sextracker.com +counter14.bravenet.com +counter14.sextracker.be +counter14.sextracker.com +counter15.bravenet.com +counter15.sextracker.be +counter15.sextracker.com +counter16.bravenet.com +counter16.sextracker.be +counter16.sextracker.com +counter17.bravenet.com +counter18.bravenet.com +counter19.bravenet.com +counter-1.adscounter.com.ua +counter1.bravenet.com +counter1.fc2.com +counter1.sextracker.be +counter1.sextracker.com +counter.1stblaze.com +counter20.bravenet.com +counter21.bravenet.com +counter22.bravenet.com +counter23.bravenet.com +counter24.bravenet.com +counter.24log.com +counter.24log.es +counter.24log.it +counter.24log.ru +counter25.bravenet.com +counter26.bravenet.com +counter27.bravenet.com +counter28.bravenet.com +counter29.bravenet.com +counter2.blog.livedoor.com +counter2.bravenet.com +counter2.freeware.de +counter2.hitbox.com +counter2.hitslink.com +counter2.sextracker.be +counter2.sextracker.com +counter30.bravenet.com +counter31.bravenet.com +counter32.bravenet.com +counter33.bravenet.com +counter34.bravenet.com +counter35.bravenet.com +counter36.bravenet.com +counter37.bravenet.com +counter38.bravenet.com +counter39.bravenet.com +counter3.bravenet.com +counter3.sextracker.be +counter3.sextracker.com +counter40.bravenet.com +counter41.bravenet.com +counter42.bravenet.com +counter43.bravenet.com +counter44.bravenet.com +counter45.bravenet.com +counter46.bravenet.com +counter47.bravenet.com +counter48.bravenet.com +counter49.bravenet.com +counter4all.dk +counter4.bravenet.com +counter4.sextracker.be +counter4.sextracker.com +counter4u.de +counter50.bravenet.com +counter5.bravenet.com +counter5.sextracker.be +counter5.sextracker.com +counter6.bravenet.com +counter6.sextracker.be +counter6.sextracker.com +counter7.bravenet.com +counter7.sextracker.be +counter7.sextracker.com +counter8.bravenet.com +counter8.sextracker.be +counter8.sextracker.com +counter9.bravenet.com +counter9.sextracker.be +counter9.sextracker.com +counter.aaddzz.com +counterad.de +counter.adultcheck.com +counter.adultrevenueservice.com +counter.advancewebhosting.com +counter.aport.ru +counteraport.spylog.com +counter.asexhound.com +counter.avp2000.com +counter.awempire.com +counter.bigli.ru +counter.bizland.com +counter.bloke.com +counterbot.com +counter.cam-content.com +counter.clubnet.ro +counter.cnw.cz +counter.co.kz +countercrazy.com +counter.credo.ru +counter.cz +counter.dieit.de +counter.digits.com +counter.dreamhost.com +counter.dt07.net +counter.e-audit.it +counter.execpc.com +counter.fateback.com +counter.gamespy.com +counter.gemius.pl +counter.goingup.com +counter.hitbox.com +counter.hitmir.ru +counter.hitslink.com +counter.hitslinks.com +counter.htmlvalidator.com +counter.impressur.com +counter.inetusa.com +counter.internet.ge +counter.inti.fr +counter.jasmin.hu +counter.joins.com +counter.kaspersky.com +counter.kmindex.ru +counter.letssingit.com +counter.marketgid.com +counter.megaindex.ru +counter.mgid.com +counter.mirohost.net +counter.mojgorod.ru +counter.mtree.com +counter.mycomputer.com +counter.netmore.net +counter.nope.dk +counter.nowlinux.com +counter.ok.ee +counter.paradise.net.nz +counter.pcgames.de +counter.personyze.com +counter.prohledat.cz +counter.rambler.ru +counter.rapidcounter.com +counter.relmaxtop.com +counters.auctionhelper.com +counters.auctionwatch.com +counters.auctiva.com +counter.search.bg +counter.sexhound.nl +counter.sexsuche.tv +counters.freewebs.com +counters.gigya.com +counters.honesty.com +counter.snackly.co +counter.sparklit.com +counter.spylog.com +counter.superstats.com +counter.surfcounters.com +counters.vendio.com +counters.xaraonline.com +counter.times.lv +counter.top100.penki.lt +counter.top.dating.lt +counter.top.ge +counter.topphoto.ru +counter.topping.com.ua +counter.tripod.com +counter.uq.edu.au +counter.w3open.com +counter.webcom.com +counter.web-marketolog.ru +counter.webmedia.pl +counter.webservis.gen.tr +counter.webtrends.com +counter.webtrends.net +counter.xeanon.com +counter.xxxcool.com +counter.yadro.ru +counter.yakbucks.com +counter.yakcash.com +counter.yesky.com +counter.zone.ee +count.freett.com +count.im +countinfo.com +counting.kmindex.ru +count.paycounter.com +count.pcpop.com +count.rbc.ru +count.rin.ru +count.rtl.de +country-chic.ru +countryweekly.us.intellitxt.com +count-server.sharethis.com +count.spiegel.de +counts.tucows.com +count.vivistats.com +count.west263.com +count.xhit.com +count.yandeg.ru +coupling-media.de +couponchief.122.2o7.net +couponfia.com +courierpostonline.us.intellitxt.com +courses.frp-vessel.com +courtshipgift.com +cousk.cf +covadhosting.biz +covai.stallioni.in +covenantoffire.com +coventrymedcare.com +cover9.adultfriendfinder.com +coverforest.net +cover.m2y.siemens.ch +covetnica.com +covetryhealthcare.com +covn.net +cowbears.nl +cowblog.fr +cowboy.contextuads.com +cowcotland.fr.intellitxt.com +cow.gutterheaters.org +coxemen.com +coxhsi.112.2o7.net +coxnet.112.2o7.net +coxnetmasterglobal.112.2o7.net +coxpalmbeachpost.112.2o7.net +coxtv.us.intellitxt.com +cozeh.com +cp53072.cloudhosting.lv +cp53091.cloudhosting.lv +cp864033.cpsite.ru +cp.abbp1.pw +cpabegins.ru +cpabien.pw +cpabuild.com +cpacampaigns.directtrack.com +cpaclickoffer.com +cpa-finances.com +cpageconstruction.com +cpagrip.com +cpajump.centenr.com +cpajunkies.com +cpalead.com +cpanel.nativeads.com +cparts1-partais.com +cparts-2clientspas.com +cparts.asouchose-espaceclients.com +cparts.imp-gouvs.com +cpatrack.leadn.com +cpatraffictracker.com +cpaway.afftrack.com +cpays.com +cpc4-bsfd8-2-0-cust595.5-3.cable.virginm.net +c.pebblemedia.be +c.ph.msn.com +cpi-istanbul.com +c.pinkvisit.com +c.pioneeringad.com +cpitalone.com.login.netzinfocom.net +cp.kobatochan.co +cpm10.com +cpm1.affiz.net +cpm20.com +cpm2.admob.com +cpm.admob.com +cpm.adspine.com +cpmadvisors.com +cpmaffiliation.com +cpm-solusi.com +cpmstar.com +cpm.super-links.net +cpm.tz4.com +cp.normstar.net +c.pocitadlo.sk +cpphotostudio.de +cp.pleasedontslaymy.download +cp.promoisland.net +cppx3.atspace.co.uk +cprbr.com +cpro.baidu.com +c.prodigy.msn.com +c.pt.msn.com +cpu.firingsquad.com +cpusall.112.2o7.net +cpuyehue.cl +cpv.popxml.com +cpwdhgwy.com +cpxdeliv.com +cpxinteractive.com +cq118114.net +cq58726.tmweb.ru +cq6688.com +cq850.com +cqcounter.com +cqji.artidentalkurs.com +cqlrpartbulkyf.com +cqtspj.com +cra-arc.gc.ca.bioder.com.tr +cra-arc-gc-ca.noads.biz +crabber.com +cracenterinterac.i5f.from-pa.com +crackfulldownload.com +crackguru.tk +crackspider.net +crackspider.us +cracksplanet.com +cracks.vg +crackzone.net +crackzplanet.com +craftburg.ru +crafthubs.com +crafticonline.com +craftingforwellness.org +craftinsta.ru +craftycowburgers.com +craftyenjoyments.co.uk +cragslistmobile.org +craiglsmobile.org +craigslist-438676487.890m.com +craigslist.account.verification.topmcf.com +craigslist.automade.net +crain.d1.sc.omtrdc.net +crakmedia.com +craktraffic.com +cramosvilla.com +crana.ie +crankyalice.com.au +cranly.net +crash-day.ru +crawlability.com +crawlclocks.com +craz.co +crazy2sales.com +crazyboost.pro +crazychimps.com +crazydeals.pl +crazyegg.com +crazyeshop.com +crazypopups.com +crazyprotocol.com +crchaudhary.com +crd.clan.su +creafi-online-media.com +c.realtytrac.com +creameet.com +creampie.afdss.info +creams.makeforum.eu +creandolibertad.net +create2fear.com +createatraet.com +createchservice.com +createfeartr3.com +create.followerinfo.xyz +create.leadid.com +createthegroup.122.2o7.net +createyourplatter.com.au +creatiby1.unicast.com +creationhomeappliances.in +creationprintersbd.com +creationthai.com +creativationshow.com +creative1cdn.mobfox.com +creative.ad121m.com +creative.ad131m.com +creative.adshuffle.com +creative.ak.facebook.com +creativeby1.unicast.com +creativeby2.unicast.com +creative.cc-dt.com +creativecdn.com +creative.clicksor.com +creative-ex.ru +creativehutindia.com +creative.medianexusnetwork.com +creative.nscash.com +creativepool.mk +creatives.adbetclickin.pink +creatives.ancoraplatform.com +creatives.as4x.tmcs.net +creatives.co.in +creatives.doubleclick.net +creatives.livejasmin.com +creatives.rgadvert.com +creativeteam.it +creative.whi.co.nz +creative.wwwpromoter.com +creative.xtendmedia.com +creativitygap.com +creativos.ads.uigc.net +creatrealyttittleinfo.co +creatrixads.com +credibleartstherapies.org +crediblegfj.info +crediblesourcing.co.uk +credicomercio.com.ve +credidcarma.com +credipersonal.com.ve +credistacks.com +creditauthpagev3.info +creditbootcamp.com +creditburner.blueadvertise.com +creditcard13.info +creditcard16.info +credit-card-application.now-cash.com +credit-card.message27.com +creditcardscom.112.2o7.net +credit-cards.shengen.ru +creditelcorp.com +creditload.us +creditmoney.com.ua +creditmutuel.fr-87.draytongossip.com +creditorrs.bid +credits-moins-cher.info +creditsoffer.blogspot.com +creditwallet.net +credity.ucoz.ru +credomobile.com +cremation.de +creme21new.web-previews.de +cresgnockng.com +crest3d.ru +crest-poloski.ru +creview.adbureau.net +crfuwutai.com +criandobolos.com.br +criardesenvolvimentos.com.br +criar.email +criativaartesrn.com.br +cribdare2no.com +cric.com.pk +cricketlovelycricket.com +cri.d1.sc.omtrdc.net +crimezone.nu +crimg.sv.publicus.com +crirussian.ru +crisotec.cl +crispads.com +crisptic01.net +criteo.com +critictruck.com +crllmzsy.top +crm247.co.za +crm.aaditech.com +crmbuyer.us.intellitxt.com +c.rmgserving.com +crmgto.loven.nl +crm.pinion.gg +crmspall.com +cr-mufg-jp.com +crnkovic-metal.hr +crnv.com.br +crocusdesign.se +croftgateusawrapcare.com +croop.pl +crops.dunight.eu +crop-topsnn.oucreate.com +crosenbloom.com +crosscountry-movers.com +crossfitsovereignty.com +crossleather.com +crosspixel.demdex.net +crossrockindo.com +crossyindiana.com +crowcom.com +crow-dc.ru +crowdcube.pl +crowdgravity.com +crowdignite.com +cro-wear.com +crownclam.com +crownmehair.com +crowntec.org +crrkkm-askjhnsz.tk +crtaidtaekbheweslotigersair.com +crtl.aimatch.com +crtv.mate1.com +crucedoslagosandinos.com +cruisecritic.112.2o7.net +c.ru.msn.com +crux.songline.com +crv.clickad.pl +crwdcntrl.net +crxart.go.ro +crybty.co +cryptmyexe.pw +cryptoassetfunding.com +cryptocoinjs.com +cryptokopf.de +crypto-loot.com +cryptonight.wasm +crystalbreeden28.000webhostapp.com +crystalforthepeople.com +crystallakevt.org +crystalslot.com +cryto-nemesis.xyz +cs1.adxpansion.com +cs1g.com +cs1.wpc.v0cdn.net +cs6hm.com +cs.adxpansion.com +csagov.jinanyuz.com +csbjkj.com +cscbarja.org +csc.beap.ad.yieldmanager.net +csc.beap.bc.yahoo.com +csccabouco.com +cscomnsinc.tk +c.scorecardresearch.com +cscwtalkto.site +csearsas.com +c.securepaths.com +csegurosural.com +c.se.msn.com +cserver.mii.instacontent.net +c.setterlistjob.biz +cs.exitmonitor.com +csfparts10-clients.com +csfparts1-proacces.com +csfparts-avisclients.com +c.sg.msn.com +csgo4.win +csgobestskinschoice.pl +cs-goskiny.blogspot.com +cs-goskiny.pl +csgostash.co +cshacks.partycat.us +csh.actiondesk.com +csharpcorner.us.intellitxt.com +c.silvinst.com +csinterinc.com +csk.ru +cslfayetteville.org +cs.luckyorange.net +csma95349.analytics.edgesuite.net +csmail.iggcn.com +c.smartclick.net +csmc.org +cs.montrealplus.ca +csm.rotator.hadj7.adjuggler.net +csnation.us.intellitxt.com +csonneiue.net +csoonlinecom.112.2o7.net +cs-passion.pl +csp.fastclick.net +c.spiegel.de +cspix.media6degrees.com +cs.prd.msys.playstation.net +cspsychology.com.au +csr.onet.pl +cs.sexcounter.com +cs-skin.pl +c.statcounter.com +cstatic.weborama.fr +cstrespsurvey.ca +c.supert.ag +cswilliamsburg.com +ct1.addthis.com +ct2.comclick.com +c.t4ft.de +ct.5.p2l.info +ctbdev.net +ctgjzaq2y6hmveiimqzv.glamxpress.co.uk +c.thanksearch.com +c.thecounter.de +c.thestat.net +c.th.msn.com +ctibank.com +cti.w55c.net +ctix8.cheaptickets.com +ctlinsagency.com +ctnetwork.hu +ctnsnet.com +ctologger01.analytics.go.com +ctrack07.optin-global.net +ctrack.optin-global.net +ctrack.trafficjunky.net +ctrck.com +ctrcqglobal.com +c.tr.msn.com +cts.channelintelligence.com +ctsde01.wiredminds.de +cts.w55c.net +cttracking08.com +cttuae.com +ctvcrimelibrary.112.2o7.net +ctvmaincom.112.2o7.net +ctvsmokinggun.112.2o7.net +ctvtsgtv.112.2o7.net +ctv.us.intellitxt.com +ctv.whpx8.com +ct-watches.dk +c.tw.msn.com +ctxtad.tribalfusion.com +ctxt.tribalfusion.com +ctylinkltd.com +cualuoimientrung.com +c.uarating.com +cube.ign.us.intellitxt.com +cubics.com +cubiertasbarcelona.es +cubis-uyeachs.com +cubook.supernew.org +cubs-jerseys.us +cucdn.genesismedia.com +cucinanuova.altervista.org +cucumba.co.uk +cudacorp.com +cueecomglobalbizlimited.com +cu.genesismedia.com +cugq.com +cuhaonline.co.uk +cuhmqe.com +cuijian.net +cuiland.info +cuisinebymaureen.net +cuisinex.be +cukierniatrzcianka.pl +c.uk.msn.com +cultiva.ga +culturalumnezia.ch +culturevie.info +cungiahan.com +cuongstare.com +cuoujvfi.angelcities.com +cupday.com +cupidformayor.com +cupomkinghost.com.br +cupqq.com +cuprovyg.com +curakum-poedss.tk +curcica.eu +curepipe.zezivrezom.org +curicar.com.br +curiouserdesserts.com +curl.ru +cursor.kvada.globescale.com +cursosofficecad.com +curtaincows.com +curtasgastronomia.pt +curvaplay.com +curves.com.sa +c.us1.dyntrk.com +cusimi.com +cusors.io +cusplacemnt.net +custem.ru +custodieva.ru +custom3hurricanedigitalmedia.com +customad.cnn.com +custom.allistracking.com +customboxes4less.com +customcatchcan.com +customcedarfencesofmichigan.com +customchocolate.business-for-home.com +customchopperstuff.com +customcollegeessays.net +custom-electric-guitar.com +customemadechannel.info +customer-bankofamerica-login-auth-verify.c8.ixsecure.com +customerbuilders.com +customerdispute.com +customergrowthsystems.com +customerguru.in +customerportfoliomanagement.com +customerpromos-a.akamaihd.net +customerscreensavers.com +customerserviceonline.co.za +customer-service.prefeituranamao.com.br +customerservice-supportcenter.com +customerstatus.co +customersupporthelp.com +customer.support.paypa-ie.istanbulva.org +customersupportus.net +customer-verification-center.info +custom-iyj6.frb.io +custom-product-labels.com +customprojectservices.com +customrubbermolding.com +customsboysint.com +customsua.com.ua +customtreeservices.com.au +custom-wrs.api.responsys.net +cutalltheshit.com +cutcoins.com +cutecushion.com +cuttings.com +cuyovolkswagen.com +cv.apprupt.com +cv.bsvideos.com +cvcsd.emporikohaidari.gr +cvdimensisolusindo.com +c.velaro.com +cvety24.by +cvfbgnhgfdfbngfb.royalcolombia.com +cvio365.com +c.vrvm.com +c.vserv.mobi +cvsksjaya.co.id +cvt.mydas.mobi +cvvy.com +cw8.pl +cwatv.com +cwaustralia.com +cwc-flow.com +c.webtrends.com +c.webwise.com +c.webwise.net +c.webwise.org +cwettqtlffki.com +cwf.co.th +c.w.inmobi.com +cw-international.com +cwipta.com +cwmgaming.com +cw.nu +cwpaving.com +cwportal.112.2o7.net +cx81.com +cx.atdmt.com +cxfd.net +cxiozg.com +cxoadfarm.dyndns.info +cxociocom.112.2o7.net +cxocomdev.112.2o7.net +cxpixel.bidsystem.com +cxpromote.com +cxsuocwucvxky.com +cxtad.specificmedia.com +cxzv260ad-system.16mb.com +cya2.net +cyanpolicyadvisors.com +cyareview-document.pdf-iso.webapps-security.review-2jk39w92.gymwiso.gq.sonicwl.ml +cyberable.com +cyberacademy.ac.zm +cyberbounty.com +cyberdefender.122.2o7.net +cyberider.net +cyber-incentives.com +cybermarine.in +cybermecca.com +cybermonitor.com +cyberscat.com +cybertechcomputo.com +cybertown.ru +cyberzine.com +cybilling.com +cyclobenzaprine.1.p2l.info +cyclobenzaprine.ourtablets.com +cyclops.prod.untd.com +cyclosporina.com +cydoor.com +cye-fscp.com +cylm.jh56.cn +cy-m0ld.com +cynosurecattery.com.au +cynosure-systems.com +cynthialemos1225.ddns.net +cypernhuset.se +cypgroup.com +cyppolice.com +cyprusbuyproperties.com +cyprusrentalvilla.co.uk +cyprussed.net +cyseal.cyveillance.com +cyse.tk +cytotecenvenezuela.com +cz11.clickzs.com +cz11.clickzzs.nl +cz15.co.vu +cz2.clickzs.com +cz3.clickzs.com +cz4.clickzs.com +cz4.clickzzs.nl +cz5.clickzs.com +cz5.clickzzs.nl +cz6.clickzs.com +cz7.clickzs.com +cz7.clickzzs.nl +cz8.clickzs.com +cz8.clickzzs.nl +cz9.clickzs.com +cz.adocean.pl +c.za.msn.com +czaragroup.com +czarnypunktgra.pl +czas-na-fb.blogspot.com +czat.wp.pl +czbaoyu.com +cz.bbelements.com +czc014cd0a-system.esy.es +c.zeroredirect1.com +c.zeroredirect2.com +c.zeroredirect.com +czgtgj.com +cz.hit.gemius.pl +czhjln.com +czhyjz.com +czmedia.com +czmzkz-wiejyh.tk +cznshuya.ivnet.ru +czqmc.com +cz.search.etargetnet.com +cz.static.etargetnet.com +czwndl.com +czyjtonumertel.pl +d077aa.r.axf8.net +d0t.ru +d.101m3.com +d1054130-28095.cp.blacknight.com +d10.zedo.com +d1171912.cp.blacknight.com +d11.zedo.com +d1.24counter.com +d12tr1cdjbyzav.cloudfront.net +d12.zedo.com +d13dhn7ldhrcf6.cloudfront.net +d14.zedo.com +d1fc8wv8zag5ca.cloudfront.net +d1.kuai8.com +d1l6p2sc9645hc.cloudfront.net +d1.openx.org +d1piupybsgr6dr.cloudfront.net +d1.playboy.com +d1v9u0bgi1uimx.cloudfront.net +d1.windows8downloads.com +d1xfq2052q7thw.cloudfront.net +d1z2jf7jlzjs58.cloudfront.net +d1zatounuylvwg.cloudfront.net +d1.zedo.com +d24.0772it.net +d24n15hnbwhuhn.cloudfront.net +d.254a.com +d26b395fwzu5fz.cloudfront.net +d2bgg7rjywcwsy.cloudfront.net +d2c8v52ll5s99u.cloudfront.net +d2cgumzzqhgmdu.cloudfront.net +d2nq0f8d9ofdwv.cloudfront.net +d2o9ozfswytaqz.cloudfront.net +d2oh4tlt9mrke9.cloudfront.net +d2tgfbvjf3q6hn.cloudfront.net +d2vg62nuq66wql.cloudfront.net +d2vig74li2resi.cloudfront.net +d2zah9y47r7bi2.cloudfront.net +d2.zedo.com +d31qbv1cthcecs.cloudfront.net +d32k27yvyi4kmv.cloudfront.net +d33f10u0pfpplc.cloudfront.net +d342r80tvdrdhm.cloudfront.net +d343246.u-telcom.net +d3.800vod.com +d3anogn3pbtk4v.cloudfront.net +d3c3cq33003psk.cloudfront.net +d3darkzone.com +d3dcugpvnepf41.cloudfront.net +d3fd89.r.axf8.net +d3oltyb66oj2v8.cloudfront.net +d3oxtn1x3b8d7i.cloudfront.net +d3player.com +d3qxwzhswv93jk.cloudfront.net +d3sir3.com +d3ujids68p6xmq.cloudfront.net +d3.zedo.com +d4.cumshots.ws +d4i26h5k23qp1arzdbxwhzmkm.net +d4.zedo.com +d5h.pl +d5nxst8fruw4z.cloudfront.net +d5.zedo.com +d660441.u-telcom.net +d662653.u-telcom.net +d6.c5.b0.a2.top.mail.ru +d6y5.ads.pof.com +d6.zedo.com +d720031.u-telcom.net +d74.com.pl +d7.zedo.com +d8hdn8j37dk.pw +d8rk54i4mohrb.cloudfront.net +d8x.pl +d8.zedo.com +d.91soyo.com +d925d6eb.amy.gs +d989123.u-telcom.net +d99q.cn +d9d0e0.r.axf8.net +d9.zedo.com +da.2000888.com +da3a9edfe0868555.secured.yahoo.com.wcgrants.com +daalmorse.com +daarmowe-doladowania.ovp.pl +daarquitectura.com.ar +daarulfataa.com +dabannase.com +dabaocaigou.com +dabcc.us.intellitxt.com +d.abnad.net +daboas.com +dabulamanzi.co.za +dacdac.com +da.ce.bd.a9.top.list.ru +dacounter.com +dadabada.com +dadf.com +d.adgear.com +dadiniz.com +dadirehberi.net +d.admob.com +d.adnetxchange.com +dadossolicitado-antendimento.sad879.mobi +dadparty.com +d.adroll.com +d.adserve.com +dads.new.digg.com +d.ads.readwriteweb.com +d.adxcore.com +daebae.tk +daehaegroup.com +daehoshipinc.tk +daeskldaslol.com +dafatiri.com +da.geracaotrict.com.br +d.aggregateknowledge.com +d.agkn.com +daguogroup.com +dah0ooy4doe.info +dailycaller.us.intellitxt.com +dailyfinancefix.com +dailygab.us.intellitxt.com +dailyheraldpaddockpublication.112.2o7.net +dailymotion.demdex.net +dailypetphoto.com +dailyrank.net +daily-saver.com +dailysports.us +dailystab.us.intellitxt.com +dailystrength.org +dailytech.us.intellitxt.com +daimlerag.122.2o7.net +daimlerag.d2.sc.omtrdc.net +dairyindia.in +daisybok.se +daithanhtech.com.vn +daizheha.com +dajiashige.com +dajiperu.com +dakhinerkonthosor.com +dakic-ia-300.com +dakowroc.pl +dakselbilisim.com +dalavia.ru +dal.d.la +dalecom.com +dalepietra.ro +daliestotal1.com +dalstonhallholidaypark.co.uk +daltontvrepair.com +dalystone.ie +damacheights.com +damamaty.tk +damavader.com +damavandkuh.com +damdifino.net +damedingel.ya.ru +dame-ns.kz +damicoortopedia.com.br +dammameast.tl4test.com +damm.royalfootweardistrict.com +damnashcollege.edu.bd +damnimcute.us.intellitxt.com +dampfer-flotte.de +damyb.ga +danasdirt.us.intellitxt.com +danashop.ru +danawardcounseling.com +danban.com +dance-alarm.de +dancecourt.com +dancemusictalent.com.au +dancestudioberlin.com +dancezonne.co.za +dancing-irish.com +danddtruckrepair.com +dandingo.go2jump.org +dandiyabeats.in +da.newstogram.com +danger-phentermine.allforyourlife.com +dangitravelrecharge.in +dangphoto.trade +danhgiaxemay.com +daniaviation.com +danislenefc.info +daniweb.us.intellitxt.com +dankasperu.com +dannapcs.com +dano.net.cn +danschawbel.com +dansguardian.org +dansrehberi.net +dantech-am.com.br +dantianclinic.com +danusoft.com +daooda.com +daoudi4.mystagingwebsite.com +dap.digitalgov.gov +dap.ntua.gr +dapper.net +d.applovin.com +d.applvn.com +daptravel.com +dapxonuq.ru +daquiacola.com.br +darakht.com +daralasnan.com +dardenrestaurants.112.2o7.net +dareenerji.com +darengumase.com +darikspaceadbg.hit.gemius.pl +dariowiz.com +darkbooks.org +darkermindz.com +darkhorizons.us.intellitxt.com +darknesta.com +darlamack.us.intellitxt.com +darmebel.com.ua +darm.net +darmowedoladowania25.blogspot.com +darmowedoladowania50zl.wordpress.com +darmowe-doladowania.net.pl +darmowe-doladowania-uniia.ovp.pl +darmowe-doladowanie.pl +darmowe-ebooki.com.pl +darmowefilmy.eu +darmowefilmy.to +darmowe-gierki.eu +darmowe-liczniki.info +darmowetesty.com +darmowygenerator.blogspot.com +darmowyminecraftpremium.jimdo.com +darodar.com +darseo.popunder.ru +darsresearch.com +dart.chron.com +dartz.fr +darussal.am +darvocet.ourtablets.com +daryinteriordesign.com +daryntaraz.kz +dasamusica.com +dasariconstuctions.com +dasch.pl +daselefonbuch.de +daserste.ivwbox.de +dasezhan8.com +dasezhanwang.com +dash001.prxio.site +dashbo15myapp.com +dashboard.adcalls.nl +dashboardjp.com +dashboardnew.adcalls.nl +dashbord-accountsecure-mppconatiners-verify.com +dashgreen.online +daskoerpchen.de +dasretokfin.com +das-wichtigste-im-leben.de +data0.bell.ca +data1.scopich.com +data2.gosquared.com +data2.perf.overture.com +data.abebooks.com +data.adsrvr.org +data.ads.t-online.de +data.alexa.com +data.apn.co.nz +dataasmierci.blogspot.com +databased.com +databaseranch.com +data.browseraccelerator.com +data.captifymedia.com +datacapture.serving-sys.com +data.cmcore.com +data.cnn.com +datacollect6.abtasty.com +dataconnectinfotrends.com +data.coremetrics.com +data.cpalead.com +data.de.coremetrics.com +data.emimino.cz +data.ero-advertising.com +data.eroadvertising.com +data-failover.eroadvertising.com +data.flurry.com +data.gosquared.com +data.kataweb.it +dataloading.net +data-mining.tk +data.mistat.intl.xiaomi.com +data.mistat.xiaomi.com +data.mobclix.com +data.murdoog.com +data.nal.usda.gov +data.namesakeoscilloscopemarquis.com +data.queryly.com +datarescue.cl +data.ritzcarlton.com +data-service-de.info +datashreddergold.com +datasitcherheit.ml +datasmierci01.blogspot.com +datasponsors.com +datastore24.ru +datattro.xyz +data.vtc.pw +data.webads.co.nz +dataxsv.com +dateck.com +dateme.ru +datenhaus.info +datenschutz-de.cf +datenvergleich.com +dateset.upgradeyoursystem24.com +date.ventivmedia.com +date-withme.com +datin.com +datingadvertising.com +datingsales.com +dating-time-now.com +datingverify.org +datongqu.com +dattinggate.com +dau43vt5wtrd.tk +d.audienceiq.com +daufans.cu.ma +dauphinswanriverneepawaconservatives.ca +davcoglobal.com +davebestdeals.com +daveryso.com +david44i.bget.ru +davidcandy.website.pl +davidgoldberg12.com +davidmooreauthor.com +davidrita.com +davidruth.com +davinciitalia.com.au +davisa.se +davisliumd.com +dawnframing.com +dawninvestmentfrem.com +dawnnationaladvertiser.com +dawnsworld.mysticalgateway.com +daxa.ro +daxia123.cn +daxtvambuohmc.com +daydo-app.com +daydream-studio.ru +daylogs.com +daymusam.com +day-news.info +dayseeingscenery.com +db0.net-filter.com +db0.sitestats.com +db1.sitestats.com +db2.net-filter.com +db2.sitestats.com +db3aqu.atdmt.com +db3.net-filter.com +db3.sitestats.com +db4.net-filter.com +db4.sitestats.com +db5.net-filter.com +db5.sitestats.com +db621f3a.amy.gs +db6.net-filter.com +db6.sitestats.com +db7.net-filter.com +db7.sitestats.com +dbadk.nuggad.net +dbbkaidian.com +dbbkinternational.info +dbbsrv.com +dbdoc-views.d3an1ght.com +dbg52463.moatads.com +db-hardware.fr +dbimbem.axfree.com +dbios.org +d-black.bz +dbmkfhqk.bloger.index.hr +dbonline.ch +dboxsecure.com +dboyairlines.com +dbpanels.com.au +db.riskwaters.com +dbs.advertising.com +dbs-asia.com +dbsbaink.com +dbsbankingnetworkusa.com +dbsbintnl.ml +dbtechno.us.intellitxt.com +d.buyescorttraffic.com +dbyeecumaj.com +dbyemen.com +db.zurpit.com +dc-14aa6cc6.ibertecnica.es +dc-36fc9da3.ipforverif.com +dc43.s290.meetrics.net +dc-4ddca2aa.afyondogapeyzaj.com +dc56.s290.meetrics.net +dc.5.p2l.info +dc61.s290.meetrics.net +dc-7f7f33e6.renewalss.com +dc8xl0ndzn2cb.cloudfront.net +dc-a7b5f905.salintoshourt.com +dcabkl.com +d-cache.microadinc.com +d-cache.microad.jp +dcads.sina.com.cn +dcanscapital.co.uk +dcapps.disney.go.com +dc-b5657bf1.hopewhitepages.com +dc-b66548ee.hostaawebsite.com +dc.bizjournals.com +dccallers.org +dccsolution.com +dcdfvjndrcdioyk.hostingsiteforfree.com +dc-eb63dae8.dop.tv +dce.nextstat.com +dc-f4eb4338.handssecure.com +dcfiber.dk +dcfmmlauksthovz.com +d.chango.com +dcheathlink.com +dcj-nn.ru +dc.kaboodle.com +dckappa.widespace.com +dclk.haaretz.co.il +dclk.haaretz.com +dclk.themarker.com +dclk.themarketer.com +dcm5.com +dcm.eim.iafoundation.com +dcm.hazren.com +d.cntv.cn +dcproxy1.thrunet.com +dcrgroup.net +dc.sabela.com.pl +dc.sify.com +dcsmarketing.directtrack.com +dcs.netbiscuits.net +dcstest.wtlive.com +dc-storm.com +dcs.wtlive.com +dctracking.com +dcvaad06ad-system.esy.es +dc.webtrends.com +dc.widespace.com +dcxbmm.com +ddasdeadmsilatmaiui.arlamooz.net +d.dc121677.com +dd.connextra.com +dddcc.com +ddd.gouwuke.cn +dddionedorps.5gbfree.com +dddumbo.com +ddewhub.xyz +ddewlab.xyz +ddewnow.xyz +ddirectdownload-about.com +ddkoo.com +ddllpmedia9.info +ddlmega.net +ddneh.cf +ddnk.advertur.ru +ddobnajanu.club +ddos.93se.com +ddospanel.com +ddpills.com +dd-seo.cn +ddsoldes.fr +ddsqkuwwv.top +de007.net +de17a.com +de1.frosmo.com +de1.pl +de.2.cqcounter.com +de.5.p2l.info +deaconandbeans.com +de.ads.adviva.net +de.adserver.yahoo.com +de.ads.justpremium.com +deadwalking.tv +dealdotcom.com +dealerportal.comcater.com.au +dealfancy.com +dealighted.com +dealing.com.ng +dealitright.click +dealmasstitch.com +dealnews.122.2o7.net +dealroom.dk +dealsbydarlene.com +dealscottage.com +deals-for-dental-implant.com +dealwifi.com +deanmoore.ie +deanne1125.games1.hop.clickbank.net +deanoshop.co.id +deanrodriguez22.com +dear-diary.ru +dearerfonder.info +deb5d7g54jmwb0umv5wsmuvd8f7edr86de.mavikoseerkekyurdu.com +debichaffee.info +debility.adelgazar360.es +deblokeer-helpdesk.nl +deblokgsm.free.fr +deboralavoro.it +debservers.pw +debtbudgeting.com +debtbusterloans.com +debt.shengen.ru +debuttheatre.org +decentsourcingbd.com +decenttools.com +decide-pay.idclothing.com.au +decisiveducks.com +decisive-wallet.de +decknetwork.net +decocakeland.top +decodeglobal.net +decografix.com +decomed.net +decorationspcs.com +decorator.crabgrab.cl +decorazilla.com +decorvega.es +decota.es +decouvre.la +decrolyschool.be +decsan.com +decsol.com.ar +decvbnm.com +dedahuagong.com +dedarcondicionado.com.br +de-daten-pp.cf +de.demdex.net +dedetizacaoriodejaneiro.com.br +ded.gostats.com +dedicheanonime2017.altervista.org +dedline.pl +dedyseg.com.br +deepblue-derfilm.de +deepc.cc +deepitsolution.com +deepstone.net +deepword.net +deesharitouristhub.com +def-014.xyz +def.5.p2l.info +defactodisegno.com +defenderxtactical.com +defensecheck.xyz +defensewives.com +deflorationvirgins.com +defmach.com +defungo.com +defuseitgame.com +defygravity.com +degerlund.net +degirmenyeri.com.tr +degoedefee.be +degoedegeburen.be +de.grmtech.net +deguta.beidahuangheifeng.com +de.hosting.adjug.com +de.ioam.de +deioapolxikeujgunheuay.net +dejavu-now.tk +dejavuvintage.ca +dejesuswebdesign.com +dejm.pl +dekhoregional.com +dekoration.us +dekorcasa.com +dekorfarb.pl +dekorkeramik.ru +de-kundencenter-konto10217301.de +del1.phillyburbs.com +delaponitan.pw +delaraujo.com.br +delaren.be +delawareonline.us.intellitxt.com +delayreferat.ru +delb2.myspace.com +delb.mspaceads.com +delb.myspace.com +delconewsnetwork.us.intellitxt.com +deleondeos.com +deletefriend.pl +deletespyware-adware.com +delfiadee.hit.gemius.pl +delfiadlt.hit.gemius.pl +delfiadlv.hit.gemius.pl +delfiee.adocean.pl +delfilt.adocean.pl +delfilv.adocean.pl +delfilv.hit.gemius.pl +delfin-aqua.com.ua +delfi.spring-tns.net +delhaizegruop.com +delhioneresidences.net +deliciousdiet.ru +delightdriving.com +delightful.112.2o7.net +deliveroow.club +delivery1.topad.mobi +delivery2u.com.my +delivery.adnetwork.vn +delivery.ad.newsnow.net +delivery.adrecover.com +delivery.ads-creativesyndicator.com +delivery.ads.gfsrv.net +delivery.adyea.com +delivery.a.switchadhub.com +delivery-cdn-cf.adswizz.com +delivery.clickonometrics.pl +delivery.c.switchadhub.com +delivery.d.switchadhub.com +delivery.e.switchadhub.com +delivery.first-impression.com +delivery.g.switchadhub.com +delivery.hornyspots.com +delivery.ipvertising.com +delivery.loopingclick.com +delivery.myswitchads.com +delivery.optimatic.com +delivery.platform.switchads.com +delivery.reklamz.com +delivery-s3.adswizz.com +delivery.swid.switchadhub.com +delivery.swid.switchads.com +delivery.switchadhub.com +delivery.switch.whatculture.com +delivery.thebloggernetwork.com +delivery.trafficbroker.com +delivery.trafficforce.com +delivery.trafficjunky.net +delivery.us.myswitchads.com +delivery.w00tads.com +delivery.way2traffic.com +delivery.yourfuckbook.com +deliv.lexpress.fr +deliziedelpassato.it +dellalimov.com +dellinc.tt.omtrdc.net +deloitte.122.2o7.net +delononline.com +deloo.de +deloton.com +delphicom.112.2o7.net +delrico.net +deltaagent747.hopto.org +deltadisseny.com +deltagroup.kz +delta-line.men +delta.rspcdn.com +delux-clas.com +deluxechoc.com +deluxedumps.com +demandbase.com +demaror.ro +demarsnc.it +demayco.com +demdex.net +de.mediaplayercodecpack.com +demenageur.com +demimoorenude.1stok.com +deming.it +demisuganda.org +demo02.firstdigitalshowcase.com +demo1.dandbplants.com +demo1.zohaibpk.com +demo.advertising.com +demodomain.cz +demo.firefighterpreplan.com +demogwa.casino-on-net.com +demo.ithreeweb.com +demonews.us.intellitxt.com +demopack.es +demoq.use-trade.com +demo.sp-kunde.de +demo.vertexinfo.in +demr.mspaceads.com +demr.myspace.com +demr.opt.fimserve.com +dencocomputers.tk +dengi-pod-zalog-nedvizhimosti.ru +dengi-vsem2008.ru +denguru.us.intellitxt.com +deniroqf.com +denisbank.com +deniseinspires.com +denise.lon.spotify.comspclient.wg.spotify.com +denise.mccdgm.net +deniseorsini.com.br +deniserichards.1stok.com +deniven.1bb.ru +denizlihorozusatisi.com +denkwerkstatt.info +dennispearsondesign.com +dennispublishing.112.2o7.net +den-noch24.ru +denommeconstruction.ca +denoncocoon.pl +densart.com +dentairemalin.com +dentalbible.com +dentalcarre.us +dentalcliniclondonontario.com +dentalcoaching.ro +dentalimplantformula.com +dentalimpllants.com +dentalpearls.com.au +dentaltools.biz +dentalwitakril.com +dentistsouthyarra.com.au +dent-lux.com.pl +denver.cx +denverpost.112.2o7.net +denviya-sakumj.tk +depaolizortea.it +depart.febriansptr.tk +departmennotic.000webhostapp.com +departmens.into.responce-admins.com +de-payp.al-serviceguard.info +depolakoeasre.pw +depo.realist.gen.tr +depositfiles-porn.ga +deposito.traffic-advance.net +depot147-dpd.de +depotpakmin.id +deptosalpataco.com.ar +dercocenteryusic.cl +derechodefamiliacr.com +derekaugustyn.co.za +derekhail.us.intellitxt.com +dereksing.top +derekthedp.com +derenhukuk.com +derevesendeco.com +derinceozelders.com +derkeiler.com +derkompass.com.br +dermavito.se +derstandard.nuggad.net +derstand.oewabox.at +derunhaltbare.de +desarrollocorp.com +desarrolloliderazgopersonal.com +desbloquear-online.ml +desbloqueioacesso.cf +desb.mspaceads.com +descargar-musica-gratis.net +descargas2.tuvideogratis.com +descargatelocorp.co +desentupaja.com.br +desenvolvimentosdesites.com.br +deserado.tk +deseretdigitalmedia.tt.omtrdc.net +deseretnews.112.2o7.net +desertsportswear.com +desertsunlandscape.com +deshevo-nedorogo.ru +desifever.com +design14.info +design61.ru +designbloxlive.com +designbuildinstall.net.au +designcenter.at +designcss.org +designdapur.com +designdevise.com +designer.ski +design-ideas.info +designingcustomerexperience.com +design-lands.ru +design.mangoxl.com +design-melon.de +designqaqc.com +designtechnica.us.intellitxt.com +desinstalacion.deletebrowserinfection.com +desireddestinations.com +desirevandoorne.nl +de.sitestat.com +deskhelp.my-free.website +desk.mspaceads.com +desk.opt.fimserve.com +desksupportmanagements.com +desktop-report.info +deskuadrerock.es +desmonali.id +dessertcount.com +dessertkart.com +de.ssl-paypalservice.com +destefanisas.it +destinationrealestate.com +destinationsrvmaine.com +destore.com +destre45.com +destructoid.us.intellitxt.com +desv383oqqc0.cloudfront.net +desynt.org +details.aineroft.com +details.information.center.interac-support.akunnet.com +details.information.center.security.interac.akunnet.com +details.information.privateclaim.care.ciiade.com.ar +detalizaciya-tut.biz +detective01.ru +detectorcarecenter.in +detik.serving-sys.com +detki-opt.ru +detodomigusto.com.co +detox-kit.com +detox.shengen.ru +detroithardcore.com +detskehry.cz +detskie-konstruktory.ru +detskie-zabavi.ru +dety653.from-wv.com +deunce68rtaint.rr.nu +deurschebank.de +deutsche-banh.de +deutschehobbyhuren.net +deutscher-handwerker-service-mallorca.com +deutschland123.de +deutschlandscard.de +dev101.hitbox.com +dev102.hitbox.com +dev103.hitbox.com +dev1.redanchormedia.com +dev34.dioniqlabb.se +dev3lop2er.fanpage112.cf +dev40.dioniqlabb.se +dev78.dioniqlabb.se +dev.adforum.com +devanirferreira.com.br +dev.appleleafabstracting.com +devart.adbureau.net +dev.doublepimp.com +dev.ehay.ws.singin.it.dell.justinebarbarasalon.com +devel0per11.regisconfrim.cf +developer23-fanpage.new-verifikasi-fanpage89.tk +developer.cdn.com.kz +developer-center67-fanfage00999.register09888.tk +developer.qbicblack.com +developerzone.co.in +developmn.org +dev.enec-wec.prospus.com +dev.flurry.com +devfw.imrworldwide.com +dev.hitbox.com +deviantart.crwdcntrl.net +deviants.ru +device.maxmind.com +deviltorrents.pl +devinherz.com +devitravelsmys.com +devlp1.linkpulse.com +dev.maiomall.com +dev.maruemoinschere.fr +dev.media.adxpansion.com +dev.metallonova.hu +dev.mitzvah-store.com +dev.mtmshop.it +dev.no8.cc +devochki.top +devothird.gdn +devournoob.ddns.net +dev-service-free.pantheonsite.io +dev.sfbg.com +devshed.us.intellitxt.com +dev.soletriangle.com +devstvennik.com +dev-supoort00.regis-fanpageee-confirm.ml +dev.targetpoint.com +dev.trafficforce.com +devutilidades.com.br +devv-c0nfr1m.verifikasion1.ga +dev.visualwebsiteoptimizer.com +dev.wrathofshadows.net +dewa.lookseedesign.ca +dewhynoengineering.com.ng +dewimaharani.co.id +dexdexprod.112.2o7.net +dexolve.info +de.zapmeta.com +dfclamp.com +dfd-3432342342.life +dfdgfd.armandoregil.com +dfdsfadfsd.com +dfdsfsdfasdf.com +dfed.erkin.com.tr +dff7tx5c2qbxc.cloudfront.net +dfg.boutiquedepro.net +dfiles.me +dfml2.com +dfp.doubleclick.net +dfrtcvlab.xyz +dfsdf.desio-web.co.at +dfsdfsdf.rumahweb.org +dfsfs.com +dft.cl.dynad.net +dfwu1013.info +dfwu1019.info +dfzf.net +dgapconsult.com +dgbangyuan.cn +dgb-odenwaldkreis.de +dgboiler.cn +dgdaerxing.com +dgenuiservscrow.co.uk.micro36softoutlook17.mainesseproptscrillar.com +dgim2014.de +dgit.com +dgm2.com +dgmaustralia.com +dgpaotui.com +dg.specificclick.net +dgwzzz.com +dgy5158.com +dh956.com +dharold.com +dhauzja511.co.cc +dhe-iappsstore-bin.com +dhitracker.com +dhivyaacreations.com +dhldelivermethod.tk +dhlexpress.phoenixfirecheer.org +dhlparcel.southtoch.com +dhlworldwide.com.varifyaddress.process.scholleipn.org +dhlyteam4dhlsupport.netau.net +dhorvathdesign.com +dhr.com.na +dhsnystate.com +dhubria.com +dhu.royalfootweardistrict.com +di1.shopping.com +di7wee8.top +diadosnamorados.fromru.com +diadospaisamericanas.com +diaflora.hu +diagnosticautomobile.fr +diagnostics.support.microsoft.com +dial4data.com +dialam-plus.ru +dialerporn.com +dialog.pt +dialrank.com +diamariscreatejoy.com +diamonddepot.co.za +diamondgardenbd.net +diamondmakeup.pl +diamondnailspa.com +diamoney.com.my +diana.lon.spotify.com +dianepiette.co.uk +dianomi.com +diansp.com +diapi.webgains.com +diarioaconcagua.com +di.aruh.ml +diaryofagameaddict.com +diasdopais43-001-site1.ctempurl.com +diatoetsen.com +diazduque.com +diazepam.ourtablets.com +diazepam.razma.net +diazepam.shengen.ru +di-banner-se.c.richmetrics.com +diboine.com +dibrunamanshyea.it +dicallidesign.com.br +dice-profit.top +dichvutangsub.com +dichvuvesinhhanoi.com +dickssportinggoods.com +dicky.pl +dicrophani.com +didacticro.count.brat-online.ro +didactiplayperu.com +didrex.1.p2l.info +didtal.com +didtheyreadit.com +dieanwaelte.de +diebold-schausteller.de +diego-fc.com +diegolopezcastan.com +die-hauensteins.com +diendanpokemon.com +dientumotcuocgoi.com +dieschnitter.de +diesel-parts28.ru +dieselvehicles.com +dieswaene.com +dieta-lux.pl +dieta-personalna.eu +dieta-personalna.pl +diethealthresource4u.com +dietoftoday.ca.pn +dietpharmacyrx.net +diet-pills.hut1.ru +dietsante.net +dietsinreview.us.intellitxt.com +dieutribenhkhop.com +dieuveny.com +diewaescherei.de +diff1.smartadserver.com +diff2.smartadserver.com +diff3.smartadserver.com +diff4.smartadserver.com +diff5.smartadserver.com +differentdesk.com +diff.smartadserver.com +difusoragoiania.com.br +digantshah.com +digest-project.ru +digg.analytics.live.com +digiaquascr.com +digi-box.com +digikulture-d.openx.net +digilander.libero.it +diginet.112.2o7.net +diginetlt.hit.gemius.pl +digiquads.com +digistats.westjet.com +digital4adro.hit.gemius.pl +digital4ro.adocean.pl +digital-ads.s3.amazonaws.com +digital-cable-descrambler.planet-high-heels.com +digital-control.com.cn +digitaldesign.ch +digitaldsp.com +digitaldudesllc.com +digitalfaq.com +digitalfirst-d.openx.net +digitalfruition.co.uk +digitalgrid.co.in +digitalhomediscountptyltd.122.2o7.net +digitalhome.us.intellitxt.com +digitallyours.com +digitalmagic.co.za +digitalmediaonline.us.intellitxt.com +digitalmediaventures.com +digitalmediawire.us.intellitxt.com +digital-menu.com +digitalmerkat.com +digitalmonestary.com +digitalmuladi.com +digitalorbitgroup.com +digital-sale.su +digitaltrends-d.openx.net +digitaltrends.us.intellitxt.com +digital-video-processing.com +digitalwebcastillo.com +digital-world.de.intellitxt.com +digitechwebdesigning.com +digit-life.uk.intellitxt.com +digizilla.com +dignitasdata.se +dignitiyhealth.com +diguing-store.net +dihantelecom.com +diigitalacesso.esy.es +dijgen.net +dikesalerno.it +diktatstarten.de +dikx.gdn +dilalpurhs.edu.bd +dildofotzen.net +dileconme.hotmail.ru +dillards.112.2o7.net +dilnqd.net +dilogflow.com +dimarsbg.com +dimaux.ga +dimc.edu.bd +dimenal.com.br +dimensionnail.ro +dimeprice.com +diminishedvalueoforegon.com +dimitrowedding.com +dimkino.ru +dimpam.gq +dimplexx.net +dimsnetwork.com +din8win7.in +ding-a-ling-tel.com +dingentis.com +dingew.com +dinglihn.com +dinkelbrezel.de +dinkolove.ya.ru +dino1.ddf.al +dinoadserver1.roka.net +dinoadserver2.roka.net +dinoambre.com +dinsalgsvagt.adservinginternational.com +dintecsistema.com.br +diocese-santo-amaro.com +dionic.ae +dionneg.com +dioxyde.de +diplomadoidiomas.com +diplomaticagent.us +diplomz.ru +dippitydome.com +dipstar.org +dipticlasses.in +diramio.org +dirbg.hit.gemius.pl +dircobuilders.co.za +direcong.com +directaclick.com +directads.mcafee.com +directaggregator.info +directaxes.com +directhackerz.tk +directivepub.com +directleads.com +directlinkq.cn +director4u.com +directoriodecomercioexterior.net +directoryclothingspace.com +directorym.com +directpaymentplan.co +directplugin.com +directpowerrewards.com +directrev.cloudapp.net +directrev.com +directsalepro.su +directtrack.com +directtv.tt.omtrdc.net +directwinsale.su +directxex.com +direct-xxx-access.com +di.rlcdn.com +dir.opank.com +dirtyhipstertube.com +dirtyje.ws +dirtyrhino.com +dirtytalk101com.skimlinks.com +disabledmatrimonial.com +disablegoogleplussync.pythonanywhere.com +disablepage2017.cf +disable-uac.com +disccglobal.112.2o7.net +disccstats.112.2o7.net +disc-file.pl +dischannel.112.2o7.net +disciple.de +disco.flashbannernow.com +disco-genie.co.uk +discountbarbour.online +discountbaron.com +discountcancun.com +discountclick.com +discountedtourism.com +discounthomestore.com +discountliv.com +discounts32.xyz +discount-savings-more.com +discountsfor.us +discovercard.112.2o7.net +discover.connect.weelpointz.com +discoverdemo.com +discover.dnsi.co.za +discoverecommerce.tt.omtrdc.net +discovertreasure-a.akamaihd.net +discovertreasurenow.com +discreethotels.com +dis.criteo.com +di-se.c.richmetrics.com +disestetigi2016.info +dis.eu.criteo.com +dishusarees.com +diskursbygg.se +disney-movie.org +disneystote.com +dis.ny.us.criteo.com +dispatch.admixer.co.kr +dispatcher.oewabox.at +dispatch.login.dlethbridge.com +dispenser-rtb.sape.ru +displayadsmedia.com +display.digitalriver.com +display.gestionpub.com +display.provenpixel.com +dispo.de +disqusads.com +disrupt.com.co +disruptingdinnerparties.com +dis.sv.us.criteo.com +distancephotography.com +dist.belnk.com +distillery.wistia.com +distlodyssee.com +distractify-d.openx.net +distribuidoraderetentores.com.br +distribuidoraglobalsolutions.com +distribuidorasantana.com +distributieriemshop.nl +distributorgalvalumeimport.com +distrilamadrid.com.ar +distripartes.com +distver.ru +dis.us.criteo.com +ditapsa.com +ditavonteese.info +dittel.sk +div.as +divatraffic.com +divavillage.advertserve.com +divecatalina.com +diviconect.com.br +divinedentalhome.com +divinediagnosis.com +divinehost360.com +divine.lunarbreeze.com +divinephotosdrve.com +divinevirginhair.org +divingdan.com +divisioncore.com +divx.112.2o7.net +divx.adbureau.net +divx.it +diwa-labs.com +diwangjt.com +dixonscouk.112.2o7.net +dixonslnkcouk.112.2o7.net +diyfood.us.intellitxt.com +diy-handmade-ideas.com +diyshuttershop.co.uk +dizajnpogleda.com +dizinar.ir +dizzcloud.com +dj3.com.pl +djalmatoledo.com.br +djangoproject.co +djbanners.deadjournal.com +djbdohgfd.com +djcalvin.com +djcombox.pl +dj-cruse.de +djdj.k7physio.com +djekxa.ru +djeps.popunder.ru +djffrpz.cf +djfsml.com +djhexport.com +djibeacon.dowjoneson.com +djonwatch.ru +djsitepro.com +djsrp.com +djstools.com +dj-sx.com +djugoogs.com +djwnatural.go2cloud.org +djxmmh.xinhua800.cn +dk1.siteimprove.com +dk4ywix.com +dk.adserver.yahoo.com +dkb01.webtrekk.net +dkbscuba.com +dkdsoooslap.5gbfree.com +dk.gmads.net +dk-gmtdmp.mookie1.com +dkhfld.net +dkhl.de +dklmgdmadrasha.edu.bd +dkspqpprnsmmte.com +dkt2000.co.kr +dk-tonstudio.de +dktr.ru +dkvorota.ru +dkwm.suwan.co.id +dl01.faddmr.com +dl1blu.de +dl1d2m8ri9v3j.cloudfront.net +dl1.ezthemes.com +dl9ksm.de +dl.admon.cn +dlauten.bplaced.net +dl.bestofupload.info +dl.bzgthg.com +dl.downf468.com +dldsn.com +dl.ezthemes.com +dl.futureus.com +dlfxlbx.info +dl.gameplaylabs.com +dl.heima8.com +d.liadm.com +d.ligatus.com +dljmine.com +dl.keywordstrategy.org +dlldlldll.sytes.net +dlmag.us.intellitxt.com +dl.microsword.net +dlmyfile.com +dl.ncbuy.com +dl.neodownload.webcam +dlorganic.com +dl.ourinfoonlinestack.com +dl-plugin.com +dlslw.com +dltags.com +d.lumatag.co.uk +dl.uvwcii.com +dlvr.readserver.net +dlya-android.org +dmacdoc.com +dmcbilisim.com +dmcontactmanagement.122.2o7.net +dm.demdex.net +dmeserv.newsinc.com +dmitrievskiy.ru +dmitted.info +dmlevents.com +dm.mlstat.com +dmmusic.eu +dmn2.bjpeu.edu.cn +dmp.adform.net +dmpbmzbmtr8c40a.jonesnewsletter.com +dmp.gravity4.com +dmpm.ru +dmp.theadex.com +dmp.vihub.ru +dms.netmng.com +dms-sw.ru +dmtracker.com +dmtracking2.alibaba.com +dmtracking.alibaba.com +dm.travelocity.com +dmvguidecom.112.2o7.net +dmwq.com +dmzjs.net +dnads.directnic.com +dn.adzerver.com +dn-agrar.nl +dnaofsuccess.net +dncorg.com +dn.c.richmetrics.com +dndchile.cl +d.neodatagroup.com +dnepr-avtospar.com.ua +dnepropetrovsk.mistr-x.org +dneprsvet.com.ua +dnetshelter3.d.chango.com +dni.agcdn.com +dnjq.com +dnliren.com +dnps.com +dnps.us.intellitxt.com +dns2.net1.it +dns3.tor-server.com +dns.ecfavor.info +dnse.linkpulse.com +dnsnamesystem.club +dns-vip.net +dntdmoidars.link +doab.toptradepro.su +dobasu.org +dobre-programy.pl +doc2sign.info +doc.accountonlinesecurelogin.legacyhomesolutions.ca +doccu.000webhostapp.com +doc.doc.instruction.ukfrn.co.uk +docdrive.info +docfind.oewabox.at +doc.kidsthatgo.com +dock.inmobi.com +docksalmon.com +dockybills.com +doc.lookseedesign.ca +docments.nstrefa.pl +docorstv.com +docs1.iwon.com +docscloud.download +docscloud.info +docsign.libra.id +docsignverification.com +docsiign.ladyofelegance.net +docsolids.com +docs.pinion.gg +docs.pyrthon.org +docstoc.com +docstool.net +doctissimo.fr +doctor-alex.com +doctorch.com +doctorlokman.com +doctormakarova.ru +doctorovcharov.uz +doctorsassociatesrx.112.2o7.net +doctorsdirectory.net +doctor.tc +doctorvj.com +documensllll.square7.ch +documentational.000webhostapp.com +document.damnashcollege.edu.bd +document.oyareview-pdf-iso.webapps-securityt2jk39w92review.lold38388dkjs.us +document.pdf.kfunk.co.za +documents.intermedhx.com +documents-online.ml +documents-signature.com +document-via-google-doc.bottlerockethq.com +document-viewer.000webhostapp.com +documetation.losecase.com +docurhody.com +docusfilereview.com +docusign.dvviagens.com +docusiign.marinlogistica.com.br +docviewprocess.bplaced.net +dodajlike.pl +dodajsteam.pl +dodelynnell.trade +dodgedartsweepstakes.com +dodian.site50.net +dodlive.mil +dodostats.com +dodyexportwear.com +doeco.ru +doeitech.com +dofeb.frenchgerlemanelectric.com +dofficepro.com +dogbreedspicture.net +dog.ca +dogclothing.store +dogcommerce.com +dog.halfbirthdayproducts.com +dogoimage.com +dogpial.com +dogpile.112.2o7.net +dog-portrait.com +dogwoofdigital.com +dohdai9.bid +doheth.co.uk +doinbaxrg.com +doisamaisv.com.br +d.oix.com +dojave-united.com +dojki-hd.com +dojoomla.com +dok.do +dokfilms.net +doktester.orgfree.com +doktoronline.no +dokumentalkino.net +doladowania50pln.blogspot.com +doladowaniasteam.pl +doladowania-telefonu.pl +doladowanie.02k.pl +doladowanie50pln.blogspot.com +doladowanie50pln.ujm.pl +doladowanie.as9.pl +doladowanieplus24.pl +doladowanie.za.pl +doladowanie.zx8.pl +doladuj50.pev.pl +doladuj-50zl-promocja.pl +doladuj-5gb-lte.pl +doladujfona.net +doladujfona.org +doladuj-steam.pl +doladujsteam.pl +doladuj-tutaj.blogspot.com +dolar1.com +dolbak.com +dolce-sportro.count.brat-online.ro +dolite.com +dollarrentcar.com +dollars-worldwide.com +domain2008.com +domainanalyzing.xyz +domaincdn.xyz +domaincounseling.com +domaineaneblanc.com +domainedesmauriers.fr +domainfwd.com +domainfwding.com +domaining.in +domainpark.sitelutions.com +domainplayersclub.com +domainpro.ir +domainroam.win +domains.googlesyndication.com +domainsponsor.com +domainsteam.de +domain-submit.info +domainsystemname.club +domain-tracker.com +domain.webkeyit.com +dombiltail.com +domcran.net +domdex.com +domenov.ru +domifondery3d.com +domifondery.com +domik-derevne.ru +dominaelmasaje.com +dominateforex.ml +domination.ml +dominicasanunciata.org +domini.cat +dominionenterprises.112.2o7.net +domino-s.ru +dominoziele.pw +dominterior.org +domkinawyspie.nspace.pl +domkultury.pl +dom-monster-portal.ru +domnicpeter.in.net +domoysshop.ru +dom-pchely.com.ua +domusline.org +domusre.com +domwpm.stream +domznaniy.ru +donaldtrumpscandals.com +donataconstructioncompany.com +donationcoders.com +donconectus.com +doneperfect.cf +doneperfect.ga +doneperfect.gq +dongphuccamranh.com +dongsungmold.com +donna7753191.ru +donnez-votre-avis.org +do-not-tracker.org +donotwatch.org +donrigsby.com +dont-starve-guide.fr +dontwatch.us +donval.112.2o7.net +donvito.unas.cz +doodle.oewabox.at +doojoo3.bid +dookioo.com +doom.cl +doom-reborn.de +dooqu7f.top +doormill.gdn +doors.co.kr +doradcazabrze.pl +doranidazole.com +doratopelase.pw +dorianusa.com +dormantbankaccounts.com +dormia143.com +dorminymedical.net +dorm.torbath.ac.ir +dornier-verlage.de +dorratex.tn +dortxn.com +dorukosafe009.altervista.org +dory.co.kr +do.sdu68.com +doshmanshenasi.com +doska-vsem.ru +dostavimvdom.ru +dostavka-v-krym.com +dostavka-v-ukrainu.ru +dosugcz.biz +dosug-lux.ru +dosuperbeet.com +dosuperbets.com +dos.velek.com +dota2-shop.biz +dotcomsecrets.com +dotcrux.com +dotecnia.cl +dotidom.net +do.time786.com +dotnetadvisor.info +dotnetdotcom.org +dotnet.endai.com +dotphase.com +dotred.se +dotster.112.2o7.net +dotsterdomaincom.112.2o7.net +dotsterdotsteraug08.112.2o7.net +dot.wp.pl +dotzup.com +douate.com +double8.me +doubleclick.com +doubleclick.de +doubleclick.ne.jp +doubleclick.net +doublepimp.com +doubleviking.us.intellitxt.com +doubleyourdating.directtrack.com +doubtfulrainstorm.com +doudouguo.com +d-ouentai.com +doughlane.000webhostapp.com +douglas01.webtrekk.net +douglasgordon.net +dougmlee.com +doukinrfn.com +dounloads.net +doutorled.eco.br +dove.saymedia.com +dowayhome.com +dowdenphotography.com +dowelsobject.com +dowiecznosci.pl +dowjones.122.2o7.net +down.0551fs.com +down1oads.com +down20156181952.top +down2.feiyang163.com +down3.feiyang163.com +down.3lsoft.com +down.72zx.com +downads.com +downcdn.in +downcdn.net +down.cdnxiazai.pw +down.cdnxiazai.ren +down.cdyb.net +down.downcdn.me +down.downcdn.net +down.downxiazai.net +down.downxiazai.org +down.feiyang163.com +downflvplayer.com +downgradepc.update-plus.net +down.guangsu.cn +down.hit020.com +downholic.com +down.kuaixia.com +downlaod1.vstart.net +downlaodvideo.net +downlaod.vstart.net +downlaod.xiaocen.com +download1.pacificpoker.com +download207.mediafire.com +download2.marketengines.com +download32.us.intellitxt.com +download.56.com +download.58611.net +download.abetterinternet.com +downloadadvisory.com +downloadally.com +downloadapps.tech +download-archiver.ru +download.ascentive.com +downloadblackberry.com +download.browseraccelerator.com +download.cdn.0023.78302.com +downloadcdn.com +download.cdn.downloadquick.net +download.cdn.jzip.com +download.cdn.sharelive.net +download.cdn.torchbrowser.com +do-wn-lo-ad.com +downloadcypher.com +downloaddash.com +download.dns-vip.net +download.downloadquick.net +downloaddy.net +downloaded.adeforsa.pl +downloaded.pl +downloadedsoftware.com +downloadeer.net +downloader12.ru +downloadespe.com +downloadfile.eu +downloadfiles.pl +download.filmfanatic.com +downloadfused.com +download.fyxm.net +download.game-store.es +download.grandcloud.cn +download.hitbox.com +downloaditalia.it +downloadkakaotalk.com +downloadlo.com +downloadmefiranaratb1972.xpg.com.br +downloadmpplayer.com +download.mywebsearch.com +downloadoc.com +downloadold.xiaocen.com +downloadprivate.com +download.qweas.com +download.realtimegaming.com +downloadri.com +downloadroot.com +downloadscanning.com +downloadscenter.pochta.ru +downloads-finereader.ru +downloads.larivieracasino.com +downloads-mobile.com +downloads.mytvandmovies.com +downloads.pcsecurityshield.com +download.suxiazai.com +downloads-whatsapp.com +downloadthesefile.com +downloadthesefiles.org +download.torchbrowser.com +download.ttrili.com +downloadtuesday.com +downloaduj.pl +downloadupload.com +downloadvendors.com +downloadwarez.org +download.yesmessenger.com +download.ytdownloader.com +download.yuyu.com +downloadz.us +down.meituview.com +down.mykings.pw +downtownturkeytravel.com +downtuptv.gq +down.tututool.com +down.unadnet.com.cn +downvids.net +down.xiazai2.net +down.xiazaidown.org +downxiazai.org +downyouxi.com +doxyporno.com +doyouhaveacellphone.com +dp2.specificclick.net +dpbolvw.net +dpboxxx.com +dpcdn-s06.pl +dpda.net +dp.dpessoal.com +d.peoplesearchads.com +dpgcw0u2gvxcxcpgpupw.jornalalfaomega.com.br +dp.g.doubleclick.net +dpgjjs.com +d.phormlabs.com +dpihatinh.gov.vn +dpja.com +d.plugrush.com +dpm.demdex.net +dp-medien.eu +d-press.com +dprtb.com +dp.specificclick.net +dpw.co.id +dqfix.org +dqs001.adtech.de +dqs001.adtech.fr +dqs001.adtech.us +dquestengineering.com +dqw.eu +dqxaszsk.angelcities.com +dr0pb0xsecured.fileuploads.com.circusposter.net +dra.amazon-adsystem.com +dr.adservinginternational.com +draft.deliverygo.com.br +dragansmatblogg.se +dragonflym.com +dragriieworks.com +dragzebra.com +drahmad.com.pk +drahtlosunterwegs.de +dra.iesnare.com +drainsninvx.square7.ch +drank.fa779.com +drapple.pl +drawnings.5gbfree.com +drbedidentocare.com +drbradreddick.info +drc-egypt.org +drc-group.net +drdae.biz +drdavidlinks.net.au +drdiscuss.com +drdobbs.us.intellitxt.com +dreamad.org +dreambrides.co.za +dreamchaser1.org +dreamdrama.tv +dreamhome.112.2o7.net +dreamhome3.com.vn +dreammates.112.2o7.net +dreamplay.movies01.hop.clickbank.net +dreamsexshop.com.br +dreamwhistlerz.com +dream-x.net +dreamzinterior.in +dreamzteakforestry.com +dreaneydental.com +drehenunddrechseln.de +drei.oewabox.at +drei-stimmen.de +dresden-blaues-wunder.de +dressleggings.com +drewbarrymore.ca.tt +drewbear.org +drewex.slask.pl +drgangubaihangalgurukul.com +drgeittmannfoundation.info +drg.medegid.ru +drg.tervam.ru +drillsaw.ru +drinksomecoffee.com +drive13.tripod.com +drive770.com +drive90.com +drive.chelae.com +drive.codenesia.web.id +drivelikeyoulivehere.com +drivepark.ru +driverguide.us.intellitxt.com +driverush.net +drivesaverdatarecovery.com +drive.videoclick.ru +drivewaycleaninghatfield.co.uk +drivewithchasesecurity.lestudiolum.net +drivewith.com +driving.kiev.ua +driving-lessons-birmingham.org.uk +drivotracker.com +driwsrdki.net +drizzydrake.us.intellitxt.com +drjoedisenza.com +drkenherman.com +drkktyagsd.net +drkvrvidyasagar.com +drluismendozavalera.com +drmcmm.baidu.com +d.rmgserving.com +drm.licenseacquisition.org +drnanditeshnilay.com +drnnawabi.com +drnovasmiles.com +drobebill.tranchespay.cf +drobox.japahall.com.br +droboxlounges.com +drogensumpf.de +droidlook.net +dromedarisagencies.com +dropanchorrealtymaine.com +dropboissecur.info +dropbox0.tk +drop.box.com-shared231.comicfish.com +dropboxdema.aguntasolo.club +dropbox.disndat.com.ng +dropboxdocdoc.com +dropboxdocufile.co.za +dropboxfilecustomizesever.recollaborate.org +dropboxfile.news24x7.com.au +dropbox.fr-voir-le-documet.eu-inc.info +dropbox.i9edu.net.br +dropboxincc.dylaa.com +dropboxlogin.name.ng +dropbox.lolog.net +dropbox.mini-shop.si +dropboxnewfile.com +dropboxofficial.5gbfree.com +dropbox.preciouspetforever.com +dropbox-update.orugallu.biz +dropboxupload.com +dropbox.weelpointz.com +dropboxx51.tk +dropbox.xclubtoronto.com +dropboxxx.byethost14.com +drop.clubedamaturidade.org.br +dropdatalines.com +dropdrop.vienna-eg.com +dropebox.us +dropfileviewer.com +dropkick.oewabox.at +droplbox.com +dropllox.com +droppedresponse.com +droppy.sakinadirect.com +dropqaq.xf.cz +dropyh.com +drowle.com +drpargat.com +drpenelopeisherwood.com.au +drrt.h18.ru +drs2.veinteractive.com +dr.soso.com +drsuvidhahomeopathic.com +drteachme.com +drucker-patonen.de +drugdetox.shengen.ru +drughelporganizations.com +drug-online.petrovka.info +drug-rehab-oklahoma.com +drugrehabslouisiana.org +drugscom.us.intellitxt.com +drugspowerstore.com +drugstoreforyou.com +drug-testing.shengen.ru +druk3d.com.pl +drumcash.com +drunkenstepfather.com +drunkmoms.net +drupa.com +druzhbany.ru +drvicky.com +drvy.com +drymagazine.com.br +ds.247realmedia.com +dsa.csdata1.com +ds.advg.jp +ds-aksb-a.akamaihd.net +ds.amateurmatch.com +dsbdshbns.com +ds.contextweb.com +ds.cybereps.com +dsdglobalresources.com +dsds-art.com +dserver.hw.net +d.serve-sys.com +ds.eyeblaster.com +dsf.10eurosbonheur.org +dsf.academiebooks.org +dsfonts.com +dsg.affaireenligne.org +d.shareaholic.com +dsiarena.com +ds.ign.us.intellitxt.com +ds.keshet-i.com +d.skimresources.com +dsladvogados.com.br +dslfinder.com +ds-ll.serving-sys.com +dsnextgen.com +ds.onet.pl +dsp07.ads.tremorhub.com +dsp.adfarm1.adition.com +dsparking.com +dsp.xapads.com +d.srui.cn +dssct.net +ds.serving-sys.com +d.sspcash.adxcore.com +dstroy.su +dstvincapetown.co.za +dsum-sec.casalemedia.com +dsxwuc.aeaglekt.top +dsyxzl.com +dt.admission.net +dt.adsafeprotected.com +d.tailtarget.com +dtdeizlzq.top +dtdn.cn +d.tds.adlabs.ru +d.thanksearch.com +dt.linkpulse.com +dtm1.eim.ae.fulfillmentireland.ie +dtm.advertising.com +dtmbazar.com +dtorgi.ru +d-track.send.microadinc.com +d-track.send.microad.jp +dt.scanscout.com +dts.innovid.com +dtstesting.com +d.t.tailtarget.com +d.turn.com +duaenranglae.com +duaishingy.info +dualvaccine.com +dubaidesertrose.com +dubaisecurity.com +dubaishoreexcursions.com +dubai-vakanties.com +dub.mobileads.msn.com +dubstep.onedumb.com +dubsundays.com +duchieu.de +duckdomen.duckdns.org +duckhuontaychan.com +ducky-a1.business +dudae.com +dufatanye.org +duffanndphelps.com +duft-haus.de +dugoutreport.com +dujur.barginginfrance.net +dukamaki.com +duluthtrading.tt.omtrdc.net +dumbtorrent.com +dumika.pl +dumpsterbinrentalnearme.com +dumpstern.de +dunmunntyd.net +dunpanchor.com +dunsanychase.com +duokan.co +duongphuocviet.info +dupl2000.com +duplicashapp.com +duplicatefilecleaner.com +duponthomesforsale.com +durencelaw.us +durst.homeworksolving.com +duryeefinancial.com +dus10cricket.com +dusmin.com +dustihome.se +dustyorate.com +dutyfree.com.ru +duurmwgtbt.com +duye08.com +dvd-famille.com +dvdhentai.net +dvdmanager-203.sv2.biz +dverimegapolis.ru +dvervmoskvu.ru +dv-fw-a-nat.iovation.com +dvkresources.com.sg +dvmyanmar.com +dvpost.usa.cc +dvprojekt.hr +dvr.biz.ua +dvrlists.com +dvropen.com +dvxboiyxj.top +dvyiub.com +dvzwh.voluumtrk.com +dwanandassociates.com +dwbgdywefi.myjino.ru +dwcentre.nl +dwclick.com +dwcreations.net +dwdpi.co.kr +dwebdesign.web.id +dwellersheritage.advancementconsultants.com +d.wiyun.com +dwjobs.com +dwnlad.ws +dwnloader.com +dws.reporting.dnitv.com +dwst.co.kr +dwtracking.sdo.com +dwttmm.com +dx13.downyouxi.com +dx2.97sky.cn +dx7.97sky.cn +dx7.haote.com +dx9.97sky.cn +dxcrystal.com +dxinxn.com +dxipo.com +dxneservice.com +dx.steelhousemedia.com +dy.admerize.be +dy.adserve.io +dyareview-document.pdf-iso.webapps-security.review-2jk39w92.gymwiso.gq +dygc.com +dyhh.com +dyhtez.com +dylaa.com +dym.com.br +dynad.website.bg +dynainbox.com +dynamic1.anandtech.com +dynamic1.dailytech.com +dynamic2.anandtech.com +dynamic.aol.com +dynamic.cannedbanners.com +dynamic.exaccess.ru +dynamic.fmpub.net +dynamichomeinspections.net +dynamichospitalityltd.men +dynamicresearch.in +dynamis.com.pl +dyn.emetriq.de +dyn.loolav.space +dyn.naiadsystems.com +dyntraq.mtree.com +dyshagi.ru +dyspnoeic-patrols.000webhostapp.com +dy.testnet.nl +dyt.net +dytt8.org +dz2fz0bgyq9tn.cloudfront.net +dzbk.dhxctzx.com +dzdqa5e6.5gbfree.com +d.zeroredirect2.com +d.zeroredirect.com +dzitech.net +dzl.baidu.com +dzughf.com +dzwiekowe.com +dzxcq.com +dzynestudio.neglite.com +dzzrenjanin.rs +e0.extreme-dm.com +e100.yt.srs.doubleverify.com +e101.yt.srs.doubleverify.com +e102.yt.srs.doubleverify.com +e103.yt.srs.doubleverify.com +e104.yt.srs.doubleverify.com +e105.yt.srs.doubleverify.com +e106.yt.srs.doubleverify.com +e107.yt.srs.doubleverify.com +e108.yt.srs.doubleverify.com +e109.yt.srs.doubleverify.com +e110.yt.srs.doubleverify.com +e111.yt.srs.doubleverify.com +e112.yt.srs.doubleverify.com +e1.addthis.com +e1.cdn.qnsr.com +e1.extreme-dm.com +e1r.net +e1.static.hoptopboy.com +e1.zedo.com +e24dp.tns-cs.net +e2b8u3v8.map2.ssl.hwcdn.net +e2bworld.com +e2.cdn.qnsr.com +e-2dj6wfk4ehd5afq.stats.esomniture.com +e-2dj6wfk4ggdzkbo.stats.esomniture.com +e-2dj6wfk4gkcpiep.stats.esomniture.com +e-2dj6wfk4skdpogo.stats.esomniture.com +e-2dj6wfkiakdjgcp.stats.esomniture.com +e-2dj6wfkiepczoeo.stats.esomniture.com +e-2dj6wfkikjd5glq.stats.esomniture.com +e-2dj6wfkiokc5odp.stats.esomniture.com +e-2dj6wfkiqjcpifp.stats.esomniture.com +e-2dj6wfkocjczedo.stats.esomniture.com +e-2dj6wfkokjajseq.stats.esomniture.com +e-2dj6wfkowkdjokp.stats.esomniture.com +e-2dj6wfkykpazskq.stats.esomniture.com +e-2dj6wflicocjklo.stats.esomniture.com +e-2dj6wfligpd5iap.stats.esomniture.com +e-2dj6wflikgdpodo.stats.esomniture.com +e-2dj6wflikiajslo.stats.esomniture.com +e-2dj6wflioldzoco.stats.esomniture.com +e-2dj6wfliwpczolp.stats.esomniture.com +e-2dj6wfloenczmkq.stats.esomniture.com +e-2dj6wflokmajedo.stats.esomniture.com +e-2dj6wfloqgc5mho.stats.esomniture.com +e-2dj6wfmysgdzobo.stats.esomniture.com +e-2dj6wgkigpcjedo.stats.esomniture.com +e-2dj6wgkisnd5abo.stats.esomniture.com +e-2dj6wgkoandzieq.stats.esomniture.com +e-2dj6wgkycpcpsgq.stats.esomniture.com +e-2dj6wgkyepajmeo.stats.esomniture.com +e-2dj6wgkyknd5sko.stats.esomniture.com +e-2dj6wgkyomdpalp.stats.esomniture.com +e-2dj6whkiandzkko.stats.esomniture.com +e-2dj6whkiepd5iho.stats.esomniture.com +e-2dj6whkiwjdjwhq.stats.esomniture.com +e-2dj6wjk4amd5mfp.stats.esomniture.com +e-2dj6wjk4kkcjalp.stats.esomniture.com +e-2dj6wjk4ukazebo.stats.esomniture.com +e-2dj6wjkosodpmaq.stats.esomniture.com +e-2dj6wjkouhd5eao.stats.esomniture.com +e-2dj6wjkowhd5ggo.stats.esomniture.com +e-2dj6wjkowjajcbo.stats.esomniture.com +e-2dj6wjkyandpogq.stats.esomniture.com +e-2dj6wjkycpdzckp.stats.esomniture.com +e-2dj6wjkyqmdzcgo.stats.esomniture.com +e-2dj6wjkysndzigp.stats.esomniture.com +e-2dj6wjl4qhd5kdo.stats.esomniture.com +e-2dj6wjlichdjoep.stats.esomniture.com +e-2dj6wjliehcjglp.stats.esomniture.com +e-2dj6wjlignajgaq.stats.esomniture.com +e-2dj6wjloagc5oco.stats.esomniture.com +e-2dj6wjlougazmao.stats.esomniture.com +e-2dj6wjlyamdpogo.stats.esomniture.com +e-2dj6wjlyckcpelq.stats.esomniture.com +e-2dj6wjlyeodjkcq.stats.esomniture.com +e-2dj6wjlygkd5ecq.stats.esomniture.com +e-2dj6wjmiekc5olo.stats.esomniture.com +e-2dj6wjmyehd5mfo.stats.esomniture.com +e-2dj6wjmyooczoeo.stats.esomniture.com +e-2dj6wjny-1idzkh.stats.esomniture.com +e-2dj6wjnyagcpkko.stats.esomniture.com +e-2dj6wjnyeocpcdo.stats.esomniture.com +e-2dj6wjnygidjskq.stats.esomniture.com +e-2dj6wjnyqkajabp.stats.esomniture.com +e2.emediate.se +e2.extreme-dm.com +e2i.com.br +e2.molbuk.ua +e2parts.com +e2.zedo.com +e35fbf.t.axf8.net +e3.adpushup.com +e3f364.r.axf8.net +e3yt5.at-band-camp.net +e45-cvb.cashixirbozdur.com +e5a87pq.com +e65ew88.com +e705.net +e818.com.cn +e89.friendfinder.com +eaarogyabharati.com +e.abnad.net +eaccnj.org +eachdayisagift.review +eachingsystemcreero.club +eadexchange.com +e-adimages.scrippsnetworks.com +e.admob.com +e.adpower.bg +eads-adserving.com +e-ads.eqads.com +ead.sharethis.com +ead-soft.popunder.ru +eadsrv.com +eadvtywooqmufnjo.com +e.ad.xiaomi.com +eaeacom.112.2o7.net +eagamesuk.112.2o7.net +eagleexteriorsllc.com +eaglemiles.112.2o7.net +eagleofislands.com +eandsgallery.com +eap7gcb.com +eaplay.ru +eapogocom.112.2o7.net +earl-brown.info +earle2rise.000webhostapp.com +earnmygift.com +earnpointsandgifts.com +earshot.org.uk +earthcontrolsys.com +earthequipments.com +earthlink000.hostingsiteforfree.com +earthlink.122.2o7.net +earthlink.net.in +earthlnkpsplive.122.2o7.net +earthses.org.in +eas1.emediate.eu +eas2.emediate.eu +eas3.emediate.eu +eas3.emediate.se +eas4.emediate.eu +eas5.emediate.eu +eas8.emediate.eu +eas.almamedia.fi +e.as-eu.falkag.net +eas.hitta.se +eas-seo.com +e-assistance-freemobile.net +east.05tz2e9.com +eastbayfixers.com +eastchiropractic.com +eastcircleksa.com +eastendtandoori.com +eastglass.com +easthamsuperette.com +eastmoney.allyes.com +eastmountinc.com +eastsideboxing.us.intellitxt.com +eastviewestateonline.co.za +easyadservice.com +easyadvertonline.com +easyautohajj.com +easyball.de +easycoloncare.com +easycommerce.cf +easydownload.pl +easyedu.net +easy.eu.ai +easyfit-online.de +easyhitcounters.com +easyhits4u.com +easyjewelrystore.com +easymobilesites.co.uk +easync.io +easypenetrationguys.com +easyshoppermac.com +easytuningshop.ru +easyukraine.com +easy-web-stats.com +easyweb.tdcanadatrust.secureserver.host1.customer-identification-process.b88600d8.com +easyweb.tdcanadatrust.yousufrehman.com +eatingwell.us.intellitxt.com +eatnatural.hk +eatpaste.com +eatps.web.aol.com +eatw.com +eavgwy5suy.tk +e-avon.ru +ea.zebestof.com +ebackback.com +eb.adbureau.net +e.baidu.com +ebankacilik-ziraat.xyz +ebank-ofamerica-online-com.tk +e-banner.lookmy.info +e-bannerx.com +ebara.cc +ebaumsworld.us.intellitxt.com +ebay1.112.2o7.net +ebay.acconto.sigin.it.jetblackdesign.com +ebayadvertising.com +ebayadvertising.triadretail.net +ebay.bucketlist-shop.com +ebaychristmas.com +ebaycn.doubleclick.net +ebay-id0251.de-kundeninformationen2333233.ru +ebayit-dp.nuggad.net +ebay.it.ws.it.mezarkabristanisleri.com +ebay-kleinanzeigen.de-item188522644.com +ebay-kleinanzeigen.de-item23881822.com +ebay-kleinanzeigen.de-users.com +ebay-loginsicherer.de-kundeninformationen2333233.ru +ebay.net.ua +ebaynonreg.112.2o7.net +ebayreg.112.2o7.net +ebayrelevancead.webmasterplan.com +ebayreportitem272003404580.uhostfull.com +ebay-sicherheiten.de-kundeninformationen2333233.ru +ebaysignalvendeurn873201670.uhostall.com +ebaytw.doubleclick.net +ebayus.112.2o7.net +ebay.ws.it.ws.mezarkabristanisleri.com +ebcom.112.2o7.net +eb.dd.bluelinecomputers.be +ebdr2.com +ebdr3.com +ebertandroeper.com +ebesee.com +ebiads.ebiuniverse.com +e-bill.eim.cetinemlakmersin.com +ebilleim.fileview.us +ebill.emirates.cetinemlakmersin.com +ebill.etisalat.fourteenstars.pk +ebill.etisalat.iafoundation.com +ebillportal.fileview.us +ebills.cetinemlakmersin.com +ebills.etisalat.cetinemlakmersin.com +ebills-recon1.t-a-i-l.com +ebills.thetrissilent.com +e-biznes.info +eblastengine.upickem.net +ebocornac.com +e-bony-1500zl.blogspot.com +ebony.streamate.com +ebookeo.pl +ebookstonight.com +ebook.tryslimfast.com +eb.prout.be +ebrandingforsuccess.com +ebsupply.org +ebsy.es +ebta.com.au +ebtmarketing.com +e-buyeasy.com +ebuytraffic.com +ebuzzing.com +ec1.hitbox.com +eca5cee.top +ecaatasehir.com +ecanadanow.us.intellitxt.com +ecard4all.com +ecarecosmetics.com +ec.atdmt.com +ecbaccounting.co.za +ecbarbados.ba +e-cbleue.com +eccltdco.com +ecdlszczecin.eu +ecdn.firstimpression.io +ecdtrk.com +ece5stats1.theglobeandmail.com +ecess1.cdn.continent8.com +ecestats.theglobeandmail.com +ec-file.info +echijafra.co.id +echnaton.ru +echoa.randbinternationaltravel.com +echobaddest.us +echocreativemarketing.com +echo.teasernet.ru +echurchnetwork.net +ecialde.it +ecigg.com +ecig-ok.com +ecircle-ag.com +eclean.or.kr +eclick.vn +eclipse1999.de +eclkmpbn.com +eclkmpsa.com +eclkspbn.com +eclkspsa.com +ecocaredemolition.com +ecocleaningservice.ca +ecolecampus.com +ecoledejauche.be +e-collantes.com +ecollections.anexcdelventhal.com +ecollection.upgd-tec4n.com +ecomadserver.com +ecomak.cl +ecommercepartners.com.au +ecommerce-seo.com +ecommercetimes.us.intellitxt.com +ecommstats.s3.amazonaws.com +ecomp3.ru +e-comunia.com +econocom-sharepoint.com +econom.co +economika.net +economisttestcollect.insightfirst.com +economymoving.net +econt.elegance.bg +ecookna.com.ua +ecos.e-mailcom.co.uk +ecoslimit.review +ecoslimmer.pro +ecostarfoam.com +ecoswiftcleaners.com +ecoupons.com +ecov.com.br +ecpmrocks.com +ecs1.engageya.com +ecsaconceptos.com +ecs.demdex.net +ecsol.com.au +e-cte.cn +ectestlampsplus1.112.2o7.net +ecutrack.com +ecxcite.com +ecxtracking.com +eczq.net +ed16c02e.amy.gs +edarood.com +ed.at.is13.de +ed.at.thamaster.de +edchiu.com +edcm1ebill.caroeirn.com +eddamedia.linkpulse.com +eddamedia.tns-cs.net +e-debtconsolidation.com +edei8nu.top +edelmiranda.com +edelstahlschornstein-123.de +edelweiss-secretariat.com +edf.fr.kfskz.com +edgarbleek.com +edge.analytics.brightedge.com +edge.aperture.displaymarketplace.com +edge.ayboll.com +edge.bayanazdirandamla.com +edge.bnmla.com +edgeceilings.com.au +edgeio.com +edge.metroleads.com +edge.quantserve.com +edge.reporo.net +edge.simplereach.com +edgeslade.com +edgewaterconst.com +edibrooks.com +edictosylegales.com.ar +edietsmain.112.2o7.net +edinburgtxacrepair.com +edipresse.adocean.pl +edipresse.hit.gemius.pl +edirect.hotkeys.com +editmedios.com +editoriasa.rda.it +edits.mywebsearch.com +edivision.pl +edkorch.co.za +edmedsnow.com +edmunds.112.2o7.net +edmundsinsideline.112.2o7.net +e-doladowania.com.pl +edoladowanie.com.pl +e-domzil.de +edosushicresthill.com +e-dot.hut1.ru +edreeams.com +edsa.112.2o7.net +edsa.122.2o7.net +edscustommufflers.com +ed-shop01.ru +edsimportaciones.com +edsse.com +e.dtscout.com +eduardohaiek.com +educanetserviceaccounts.weebly.com +educasystem.com +educatemetv.com +education1.free.fr +education-cz.ru +educationmanagementllc.112.2o7.net +educationmanagementl.tt.omtrdc.net +education-rewardpath.com +educationtree.com +educing.info +educontest.net +edu-offer.com +edusophia.org +edusunday.org +edv-donner.com +edvme.de +edwardomarne.com +edwinkonijn.com.au +edzom.hu +ee77ee.com +ee93d0dc.ngrok.io +ee.adocean.pl +eeba4ai.top +eec-courier.com +eecky.butlerelectricsupply.com +ee-club.ru +ee.connextra.com +eeewwwwwwee.jvp.lk +eegad.freeservers.com +eega.hit.gemius.pl +eegde.adocean.pl +eegoh7o.bid +ee.hit.gemius.pl +eejee8x.bid +eekro.cruisingsmallship.com +eellcll.com +eelsoup.net +eemahm5.bid +eemie2a.top +eeocadeasettlment.com +eepn.us.intellitxt.com +eepohporrlejon.com +eeps.me +eequa9a.top +eerie5a.bid +eeroo.frost-electric-supply.com +e-erotic.pl +eeshansplace.com +eest3necochea.com.ar +eestermanswagenberg.nl +eetho.cruisingsmallship.com +eeu.pl +eex5sao.top +ef5ahgoo.com +efam4.info +efanguide.us.intellitxt.com +efashionsolutions.122.2o7.net +efax-delivery-id18.com +efdilokulu.com +efecto7.com +efeeders.com +ef.enu.kz +effectiveaid.org +effectivebrand.com +effectivemeasure.com +effectivemeasure.net +effexor-xr.1.p2l.info +efficiencyempregos.com.br +efilile.de +efimec.com.pe +efimlvqxgogcasvlucgr.com +efkt.jp +efluxmedia.uk.intellitxt.com +efnor-ac.com +eforsa.pl +eforu.com +efreedom.net +e.freewebhostingarea.com +eftps.com +efugl.iptvdeals.com +e-gamma.es +egbmbdey.net +egernfoerdefrit.eu +eggantitrustsettlement.com +egg.formationpros.net +eggfred.com +eggis.noiselolpainoff.com +eggmag.co.uk +egift-gamerooms.000webhostapp.com +egift-septembers.000webhostapp.com +egine.zhengongfupills.com +egitimcisitesi.com +egodiuto.ru +egofile.pl +egofiles.pw +egoldenglove.com +egotastic.us.intellitxt.com +egovaleo.it +egrthbfcgbnygbvc.com +egvar.net +egypolice.com +egypolice.net +ehadvicedev.112.2o7.net +ehair4u.com +eharmony.112.2o7.net +eharmony.tt.omtrdc.net +eharmony.us.intellitxt.com +ehg-247internet.hitbox.com +ehg-accuweather.hitbox.com +ehg-acdsystems.hitbox.com +ehg-adeptscience.hitbox.com +ehg-affinitynet.hitbox.com +ehg-aha.hitbox.com +ehg-amerix.hitbox.com +ehg-apcc.hitbox.com +ehg-associatenewmedia.hitbox.com +ehg-ati.hitbox.com +ehg-attenza.hitbox.com +ehg-autodesk.hitbox.com +ehg-baa.hitbox.com +ehg-backweb.hitbox.com +ehg-bestbuy.hitbox.com +ehg-bizjournals.hitbox.com +ehg-bmwna.hitbox.com +ehg-boschsiemens.hitbox.com +ehg-bskyb.hitbox.com +ehg-cafepress.hitbox.com +ehg-careerbuilder.hitbox.com +ehg-cbc.hitbox.com +ehg-cbs.hitbox.com +ehg-cbsradio.hitbox.com +ehg-cedarpoint.hitbox.com +ehg-clearchannel.hitbox.com +ehg-closetmaid.hitbox.com +ehg-commjun.hitbox.com +ehg.commjun.hitbox.com +ehg-communityconnect.hitbox.com +ehg-communityconnet.hitbox.com +ehg-comscore.hitbox.com +ehg-corusentertainment.hitbox.com +ehg-coverityinc.hitbox.com +ehg-crain.hitbox.com +ehg-ctv.hitbox.com +ehg-cygnusbm.hitbox.com +ehg-datamonitor.hitbox.com +ehg-digg.hitbox.com +ehg-dig.hitbox.com +ehg-eckounlimited.hitbox.com +ehg-esa.hitbox.com +ehg-espn.hitbox.com +ehg.fedex.com +ehg-fifa.hitbox.com +ehg-findlaw.hitbox.com +ehg-foundation.hitbox.com +ehg-foxsports.hitbox.com +ehg-futurepub.hitbox.com +ehg-gamedaily.hitbox.com +ehg-gamespot.hitbox.com +ehg-gatehousemedia.hitbox.com +ehg-gatehoussmedia.hitbox.com +ehg-glam.hitbox.com +ehg-groceryworks.hitbox.com +ehg-groupernetworks.hitbox.com +ehg-guardian.hitbox.com +ehg-hasbro.hitbox.com +ehg-hellodirect.hitbox.com +ehg-himedia.hitbox.com +ehg.hitbox.com +ehg-hitent.hitbox.com +ehg-hollywood.hitbox.com +ehg-idgentertainment.hitbox.com +ehg-idg.hitbox.com +ehg-ifilm.hitbox.com +ehg-ignitemedia.hitbox.com +ehg-intel.hitbox.com +ehg-ittoolbox.hitbox.com +ehg-itworldcanada.hitbox.com +ehg-kingstontechnology.hitbox.com +ehg-knightridder.hitbox.com +ehg-learningco.hitbox.com +ehg-legonewyorkinc.hitbox.com +ehg-liveperson.hitbox.com +ehg-macpublishingllc.hitbox.com +ehg-macromedia.hitbox.com +ehg-magicalia.hitbox.com +ehg-maplesoft.hitbox.com +ehg-mgnlimited.hitbox.com +ehg-mindshare.hitbox.com +ehg.mindshare.hitbox.com +ehg-moma.hitbox.com.112.2o7.net +ehg-mtv.hitbox.com +ehg-mybc.hitbox.com +ehg-newarkinone.hitbox.com.hitbox.com +ehg-newegg.hitbox.com +ehg-newscientist.hitbox.com +ehg-newsinternational.hitbox.com +ehg-nokiafin.hitbox.com +ehg-novell.hitbox.com +ehg-nvidia.hitbox.com +ehg-oreilley.hitbox.com +ehg-oreilly.hitbox.com +ehg-pacifictheatres.hitbox.com +ehg-pennwell.hitbox.com +ehg-peoplesoft.hitbox.com +ehg-philipsvheusen.hitbox.com +ehg-pizzahut.hitbox.com +ehg-playboy.hitbox.com +ehg-presentigsolutions.hitbox.com +ehg-qualcomm.hitbox.com +ehg-quantumcorp.hitbox.com +ehg-randomhouse.hitbox.com +ehg-redherring.hitbox.com +ehg-register.hitbox.com +ehg-researchinmotion.hitbox.com +ehg-rfa.hitbox.com +ehg-rodale.hitbox.com +ehg-salesforce.hitbox.com +ehg-salonmedia.hitbox.com +ehg-samsungusa.hitbox.com +ehg-seca.hitbox.com +ehg-shoppersdrugmart.hitbox.com +ehg-sonybssc.hitbox.com +ehg-sonycomputer.hitbox.com +ehg-sonyelec.hitbox.com +ehg-sonymusic.hitbox.com +ehg-sonyny.hitbox.com +ehg-space.hitbox.com +ehg-sportsline.hitbox.com +ehg-streamload.hitbox.com +ehg-superpages.hitbox.com +ehg-techtarget.hitbox.com +ehg-tfl.hitbox.com +ehg-thefirstchurchchrist.hitbox.com +ehg-tigerdirect2.hitbox.com +ehg-tigerdirect.hitbox.com +ehg-topps.hitbox.com +ehg-tribute.hitbox.com +ehg-tumbleweed.hitbox.com +ehg-ubisoft.hitbox.com +ehg-uniontrib.hitbox.com +ehg-usnewsworldreport.hitbox.com +ehg-verizoncommunications.hitbox.com +ehg-viacom.hitbox.com +ehg-vmware.hitbox.com +ehg-vonage.hitbox.com +ehg-wachovia.hitbox.com +ehg-wacomtechnology.hitbox.com +ehg-warner-brothers.hitbox.com +ehg-wizardsofthecoast.hitbox.com.hitbox.com +ehg-womanswallstreet.hitbox.com +ehg-wss.hitbox.com +ehg-xxolympicwintergames.hitbox.com +ehg-yellowpages.hitbox.com +ehg-youtube.hitbox.com +ehho.com +ehkonsultointi.com +ehnova.com.br +ehomeupgrade.us.intellitxt.com +e-hosting.hut1.ru +ehow.us.intellitxt.com +ei0sj6fwb1.yonalon.com +ei1yie3.top +eiclouds.net +eidosconsultores.com +ei.imbucurator-de-prost.com +eiirplefrostbitecycz.com +eijaes6.top +eim.etisalat.lareservadeluge.com +eim.iwcstatic.kirkwood-smith.com +einah7p.bid +einelsokhnaport.com +e.invodo.com +eiphi3j.bid +eipi.paaw.info +eiqikan.com +ei.rlcdn.com +eisenstein.dk +eitbglobal.ojdinteractiva.com +eite.asia +eiv.baidu.com +eiwrwjc.com +eixst.ru +eixu1wu.top +ejayne.net +ejdercicegida.com +ejk.ca +ejohnny.org +ejs.hitbox.com +ekabox.ru +e-kasa.w8w.pl +ekaterinburg.shkolamebel.ru +ekaterinburg.xrus.org +e.kde.cz +ekitappdfoku.com +ekmas.com +ekmouwoo.com +ekn-art.se +ekobata.ru +ekomellefrictionlessv.com +ekonkursowoip6.pl +ekosmetyki.net.pl +eko-styk.pl +ekpebelelele.com +ekraft.org +ekromy-dmasdn.tk +eksmebel.by +ekspertmed.com +ekstraservices.com +ekto.ee +ekvkevooaj.5gbfree.com +e-kwiaciarz.pl +ela-dagingayam.co.id +eladkarako.com +eladkarako.github.io +elaineradmer.com +elainpsychogenesis.com +elas.cl +elasticchange.com +elbintattoo.com.br +elbosquecitoinfantil.com +elchoudelmaster.net +elcondor21.000webhostapp.com +eldiariodeguadalajara.com +eleamtech.com +elearnconsulting.com.au +electosake.com +electra-jjh.com.br +electrest.net +electrica-cdl.com +electricfence.levsantronic.ro +electricianservices.us +electricwheelchairsarea.com +electrik-avenue.com +electrimafrica.com +electromorfosis.com +electronetwork.co.za +electronicadirect.com +electronicarts.112.2o7.net +electronicmarketplacesltd.net +electronicoscigarrillos.es +electronics-bonuspath.com +electronicscity.com +electronics-offer.net +electronicspresent.com +electronics-rewardpath.com +electronista.us.intellitxt.com +electro-prom.com +elegantcerarnic.com +elegislative.com +elektir.ru +elektriki-spb.ru +elektrischeziga.livejournal.com +elektrischezigarette1.blog.pl +elektrischezigarette1.onsugar.com +elektrischezigarette2.devhub.com +elektrischezigarette2.onsugar.com +elektrischezigarettekaufen2.cowblog.fr +elektrischezigaretten1.blogse.nl +elektrischezigaretten2.beeplog.com +elektroheizung-direkt.de +elektroinstal-nr.us +elektromax-serwis.pl +elektronischezigarette2.mex.tl +elektronischezigarettekaufen1.beeplog.com +elektronischezigarettekaufen1.myblog.de +elektronischezigarettekaufen2.tumblr.com +elektronischezi.livejournal.com +elektro-studio24.pl +elektrozigarette1.dreamwidth.org +elektrozigarette2.webs.com +elektrozigarettekaufen1.devhub.com +elektrozigarettekaufen2.blogse.nl +elektrozigaretten1.postbit.com +elektrozigaretten1.tumblr.com +elektrozigaretten1.webs.com +elektryczne-rozdzielnie.pl +elementale.xyz +element-motors.ru +elements8.com.sg +e-lena.de +elenaivanko.ru +elephantqueue.com +elespectador.ga +eletricabt.com.br +eletrosattelecom.com +elew72isst.rr.nu +elexprobe17.com +elfakirnoureddine.com +elfqrin.tk +elidelcream.weebly.com +eliehabib.com +eliotfirmdistrict.com +elisehagedoorn.com +elison.co.ke +elitalebbie.eu +elite-bijou.com.ua +elitebodyworks.us +elitecommunications.co.uk +elite-crack.ml +elitedaily-d.openx.net +elitediplom.de +elite.dl-kl.com +elitedollars.com +elitefx.in +elitegenerator.com +elitepcgames.com +eliteplatinum.com +eliteride.limo +elitesecurityagencynj.com +elite-sex-finders.com +elite.sextracker.com +elitesportsadvisor.com +elitetoplist.com +elithavuzculuk.com +elixirrack.com +elizabetes.net +elizabethschmidtsa.com +elizerbeth.org +eljt.com +elkablog.ru +elkacentr.ru +elldtlibfnwj.com +ellenmcnamara.com +ellenproffitjutoi.org +ellieison.com +ellisonsite.com +elmacho.xyz +elmar.rzeszow.pl +elmirador.com.ve +elmissouri.fr +el-nation.com +elninotips.com +elocelote.com +elocumjobs.com +elogix.ca +eloqua.122.2o7.net +elorabeautycream.com +elotakarekossag.konnyuhitel.hu +eloxal.ru +eloyed.com +elpaidcoi.com +elpanul.cl +elpatodematapalo.com +el-puebloquetantodi.com.ve +elqudsi.com +elsobkyceramic.com +elstal.com.pl +eltorrente.cl +e-ltvp.inmobi.com +elusive.ru +elv3-tslogging.touchcommerce.com +elvel.com.ua +elvenar.com +elvismuckens.com +elys.com.br +emadialine.ro +emadzakaria.com +emahoney.net +emaiil163.cf +emailaccountlogin.co +emailaccountverificatiemp.com +emailadvantagegroup.com +emailcostumers-limited.com +emailed.userprofileupdates.com +email.exacttarget.com +email-google.com +emaillifecoaching.com.au +email.otherinbox.com +email.positionly.com +emailproductreview.com +email-reflex.com +emailsrv6.gdn +emanuelecatracchia.altervista.org +emapadserver.com +emapen-eg.com +emarketer.com +e-marketing.entelchile.net +e-markowi.pl +ematcsolutions.com +e-matelco.com +emaxhealth.us.intellitxt.com +e.maxtraffic.com +embassy.cn +embassysigns.co.uk +embeddedarch.com +embed.insticator.com +embedle.com +embedor.com +embed.sendtonews.com +embed-stats.rbl.ms +embrari-1.cn +embratel21.home.sapo.pt +embratel21tabela.webcindario.com +embroidery2design.com +embuscadeprazer.com.br +emc.122.2o7.net +emcland.co.uk +emea-bidder.mathtag.com +emea.rel.msn.com +emediate.dk +emediate.eu +emeiqigong.us +emeraldbusiness.com.ng +emeraldstore.biz.id +emerarock.com +emergedmind.com +emergencyactionplan.org +emergencybriefing.info +emergentmartialarts.com +emerginguniverse.com +e-m.fr +emgcontabilidade.com.br +emilieetabel.free.fr +emiliehamdan.com +emilsviluppo.it +eminemticket.freespaces.com +eminfoway.com +emiratesnbbd.com +emisja.adsearch.pl +emisjawidgeet.onet.pl +emistian.com +emits.iptvdeals.com +emkainstal.pl +emlakbook.com +emmanuvalthekkan.com +emobile-free-service.info +emoji-bedeutung.de +e.monetate.net +emoticonsn.xyz +emotikonfb.com +emotions.uk +empaquesdipac.com +empathica.com +empe3net7.neostrada.pl +empirepoker.com +empis.magix.net +employ22.112.2o7.net +employ26.112.2o7.net +employersfinder.com +employment.112.2o7.net +emporium-asak.com +empoyeenavigator.com +emrcare.com +emrlogistics.com +ems2bmen.com +emtinstant.net-kish.net +emt-interac.mussmandesign.com +emt-refund-deposit.azkacompanies.com +emtsent.crystalls.com +e-multiplus.96.lt +emwin.org +en.altezza.travel +en.avatarstinc.com +enbutique.com +encodable.com +encoding.8openid.assoc.handle.usflexopenid.claimed.id.asdwe21a1e23few143ew.wt154t23dg1sd.2g1456er1.241as53321.30.asrrr21sa.0d1w5421.sa1e54t21y.0er1iy.laduscha.com.au +encore1lili.bloxode.com +encyclocentral.us.intellitxt.com +encycloscope.com +end70.com +en.dd.blueline.be +endeavorlc.net +endeveren.com +endometriosi.men +eneloop.ca +enemydone.net +enemyfeet.net +enemywife249.ru +energiaon.pl +energosp.idl.pl +energydiet24.ru +energydiet-info.ru +energy-fizz.com +energyinsprofiles.gleefulgames.com +energym.ro +energyproactive.com +energyresourcesinternational.com +energyshares.co +energy-ua.com +energyutilityservices.com +enertech.co.nz +enerweb.oewabox.at +enet.cl +e.nexac.com +enfermedadmitral.com.ve +enfys.me.uk +engage2.advanstar.com +engage.everyone.net +engager.tmg.nl +engage.speedera.net +enge-fotzen.info +engel69.de +engelfire.com +engelsizyolculuk.com +engenhoweb.com.br +eng.findadvertise.com +engine2.adzerk.net +engine.4chan-ads.org +engine.4dsply.com +engine.adbooth.com +engine.adclick.lv +engine.adland.ru +engine.adspynet.com +engine.adsupply.com +engine.adzerk.net +enginebay.ru +engine.carbonads.com +engine.cmmeglobal.com +engineeringenterprise.net +engine.espace.netavenir.com +engine.fl-ads.com +engine.goodadvert.ru +engine.influads.com +engine.letsstat.nl +engine.nectarads.com +enginenetwork.com +engine.phn.doublepimp.com +engine.rbc.medialand.ru +engine.rorer.ru +engine.spotscenered.info +engine.spoutable.com +engines-usa.com +engine.trklnks.com +engine.turboroller.ru +engine.widespace.com +engine.xclaimwords.net +englandsgreatestwomen.com +englandsqau.com +englate.com +english.ahzh-pv.com +englishangelslearning.com +englishdictionaryfree.com +englishgamer.com +english-interpreter.net +englishlessons.su +englishunlimited.co.in +eng.trkcnv.com +enguzelpornolar.com +enhand.se +en.hd8888.com +en-house-eg.com +enhouston.com +enigmasoftware.com +enirocode.adtlgc.com +enirodk.adtlgc.com +eniro.hit.gemius.pl +eniro.tns-cs.net +enjeiie.com +enkeled005.com +enkennedy.com +enklawy.pl +enkobud.dp.ua +enlgine-freemobile-service.info +enligne.authentifications.e-carste.com +en.likefever.org +en.minormetal.cn +enmx.cu.ma +enn.advertserve.com +enning-daemmtechnik.de +en.ntdzkj.com +ennvoy.com +enogy.de +enolpharma.com +enoratraffic.com +enormon.ga +enp1xfxf.top +enpointe.com.au +enpresse.1.p2l.info +enquete-annuelle.info +enquisite.com +ensenadasportfishing.com +enskedesquashclub.se +enslinhomes.com +e.nspmotion.com +ensscapital.com +ent7.fc-training.co.uk +entercasino.com +enternet.ee +e-n-t-e-r-n-e-x.com +enterprise-admin.hitbox.com +enterprise.hitbox.com +enterprisemediagroup.112.2o7.net +enterprisenewsmedia.122.2o7.net +enterprise.telesat.com.co +enter-security.000webhostapp.com +enter.sexlist.com +entertainment.msnbc.us.intellitxt.com +entertainment.msn.us.intellitxt.com +entertainment-rewardpath.com +entertainment-specials.com +entertainmentwise.us.intellitxt.com +enteryouremail.net +enthuse.computernetworksonline.com +enticemetwo.yzwebsite.com +entitatsambcor.org +entk.net +entoblo.viploadmarket.ru +entofarma.com +entornodomestico.net +entourageepisodes.net +entraco.sn +entrantsoftware.com +entrecard.s3.amazonaws.com +entrepreneur.122.2o7.net +entrepreneurpoc.122.2o7.net +entrepreneur.us.intellitxt.com +entretiencapital.com +entry-stats.huffingtonpost.com +en.ultrex.ru +e-nutzername.info +envaksac.com +envaseslotusama.com +enva-systems.de +envatomarket.pk +envelbank.pl +enviolista.info +enviosinfinito.com +enviousminds.co.za +environmentalgraffiti.uk.intellitxt.com +envirosysme.com +envirotambang.com +e-n.y-1shz2prbmdj6wvny-1sez2pra2dj6wjmyepdzadpwudj6x9ny-1seq-2-2.stats.esomniture.com +e-ny.a-1shz2prbmdj6wvny-1sez2pra2dj6wjny-1jcpgbowsdj6x9ny-1seq-2-2.stats.esomniture.com +enzcal.com +enzirve.com +eo7iesa.bid +eoccompany.de +eocjw.com +eol1.egyptonline.com +eonerealitty.com +eonline.pl +eonpal.com +eon.tags.sitetagger.co.uk +eontarionow.us.intellitxt.com +eopaypal.co.uk +eoptionmailpack.com +eorogo.top +eoxzjk.com +epaceclientsv3-orange.com +epay-clientesv3-0range.com +epaypiol.co.uk +epc-expedia.eu +epconengg.com +epebuild.112.2o7.net +epicbrogaming.com +epicparty.info +epicwebmedia.com +epidered.ga +epiplagrafeiou.com.gr +epi-spa.com +e-planning.net +eplans.112.2o7.net +eplarine.com +eplay.es +epliki24.pl +epmads.com +epmclk.com +epmidias.com.br +epne.com +epngo.bz +e-poker-2005.com +epomads2.4shared.com +epost.122.2o7.net +eprofy.ru +eps-analyzer.de +epsihologie.com +epson-printer-ink.beesearch.info +eptmskmrp.top +epyonseislp.net +epyrscuok.top +eqads.com +eqjp.net +eqpolaikiuyresacbeyufa.org +equallyyolked.com +equifaxbreachsetlement.com +equifaxseurity20l7.com +equifaxsttlement.com +equipe157.org +equipopvp.com +equip.yaroslavl.ru +equityarm.com +eqvoeupxmwhshv.com +eqx.smartadserver.com +eralph.tk +erank.eu +erashowcase.com +erdotntexplore.net +erdves.bid +erectile.bid +erectile.byethost33.com +eredijovon.com +ereko.ru +eremedia.112.2o7.net +e-revolution.com.bd +erg.boutiquedepro.net +erg.cyberebook.info +ergo-eg.com +eriakms.com +ericandersson.ca +ericcson.se +ericmaddox.us +ericsandra.com +ericzworkz.free.fr +erie.smartage.com +erimo-marimo.com +eritrean111.prohosts.org +ermail.pl +ernesto.link +ero-advertising.com +eroov.iptvdeals.com +eropeansafetyinfo.com +eropornosex.ru +eroslavia.org +erot.co +erotic-girls.org +erotichypnosis.co.uk +eroticworld-traunstein.de +erotik0049.com +erotikchat-24.com +erotik-kostenlos.net +erotiknovellen.se +erotikstories.ru +erotiktreff24.info +erotisch-daten.be +erotische-geschichten-xxl.com +erotium.de +ero-tv.pl +err.000webhost.com +err1.9939118.info +err2.9939118.info +err3.9939118.info +err.agava.ru +err.chicappa.jp +errdoc.gabia.net +errictandalex.kenaidanceta.com +err.lolipop.jp +error.000webhost.com +error404.000webhost.com +error.banan.cz +errorception.com +error.demdex.net +errordoctor.com +error.fc2.com +error-files.com +errorfix2.link +errorfixed.co.in +errorfixing.space +errorfixing.tech +errorfix.link +error-found.xyz +error.freewebsites.com +error.hostinger.eu +error.intuitext.ro +errorkillers.net +errormarket.club +errornuker.software-phile.com +error.pimproll.com +errors.perfectgonzo.com +error-warning-alert-critical-5x.com +err.spring-tns.net +ers534435.000webhostapp.com +ersecompany.com +erskineheath.com.au +ertcareers.com +ertecgroup.com +erth.se +ertya.com +ertyu.com +erufu7p.bid +erupt.fernetmoretti.com.ar +eryuop.xyz +es5.com +es.adserver.yahoo.com +esafetyvest.com +esassociacao.org +esat.com.tr +esat-ea95.com +esbeltaforma.com.br +escape.insites.eu +escid.like.to +escoladiaconalsantoestevao.com.br +escolafavodemelpetropolis.com.br +escolamusicarts.com.br +escort-ambiente.de +escort-girl-strasbourg.xyz +escortplius.com +escort-russian.com +escortscripti.net +escortslet.net +escueladebaileandanza.com +ese24hs.com.ar +esellerate.net +esemeso.pl +esepc.com +eservice.e-mengine.com +e-service.jpdm.edu.bd +eset.122.2o7.net +e.sexad.net +esg.hitbox.com +esgic.1.p2l.info +es.gmads.net +eshedgroup.com +esherrugby.com +eshop4u.jp +eshop.md +esigerp.net +esilahair.com +eskk.pl +eskosvet.com.ua +eslanto.com +eslay.xyz.fozzyhost.com +es.nedstat.net +esnm.ru +esoad.frost-electric-supply.com +e-socios.cf +esomov.com +es.optimost.com +esoteric.in +espace-centre-miseajour-g3-enligne.credit-agricole.fr.mostpowerfuldua.com +espaceclientesv3-orange.com +espaceclients-v5-orange.com +espacecllientsv3-orange.com +espaceeclientsv3-orange.com +espaceinventoristes.com +espace-oney.fr.service.misajour.spectralgaming.com +espacescllientsv3-orange.com +espacescllientsv4-orange.com +espace-security-alert.com +espaciotecno.com +espaziodesign.com +espdesign.com.au +espinozza.com.br +espn-ak.starwave.com +espndotcom.tt.omtrdc.net +espn.footprint.net +e-sporty.com.pl +espresso-reklam.eu +esquareup.com +esrz.net +essencecomercial.com +essenciadoequilibrio.net +esse-project.bid +es.sitestat.com +essmann-hamburg.de +estabay.com +estadofisio.com +estaminet-halluin.com +estat.com +estatement-eim.cetinemlakmersin.com +e-statement.vallpros-as.com +estateparalegals.net +esteemedrealty.com.au +esteleoneida.trade +estelight.ru +este-line.com.ua +estellefuller.com +estelle.us.intellitxt.com +estetica-pugliese.com +esther.lon.spotify.com +estibot.com +estilo.com.ar +estoa.frost-electric-supply.com +estudiobarco.com.ar +estudiohotmusic.com.br +estudiokgo.com.ar +estudio-nasif.com.ar +estyleblog.xyz +estylepublishing.com +esuks.com +esvkxnpzlwth5f.com +esycap.cl +esysports.com +e-system.w3000549.ferozo.com +etacisminapathy.com +etad.telegraph.co.uk +e-taekwang.com +etah6wu.top +etahub.com +e.targetfuel.com +etargetnet.com +etbld.com +eten-users.us.intellitxt.com +eternalbeautyballarat.com.au +eternal.reklamlab.com +eternitymobiles.com +e.thanksearch.com +ethanslayton.com +ethanwalker.co.uk +ethan.wang +ethemtankurt.com +ethnicafrique.com +ethnicfacilities.com +ethnicking.com +ethoflix.com +ethpolice.com +etiiisallat.bugs3.com +etisalat.ae.lareservadeluge.com +etisalat-apari.fixedtofit.com.au +etisalatebill.net +etissalat.ultimatefreehost.com +etissialat.bugs3.com +et-lnterac-online.com +etm-consult.de +etn.fm +etnkorea.com +etracker.de +etrade.com.ph +etransfer-interaconline-mobiledeposit879.com +etransfer-mobility-refund.com +etr-interac.com +etrk.asus.com +etr-mobile1.com +ets-grup.com +etstemizlik.com +ett.swpu.edu.cn +et.twyn.com +etxlzx.net +etxoqljgp.top +etymonline.co +etype.adbureau.net +eu1.heatmap.it +eu1.madsone.com +eu1.recompenses.win +eu1.snoobi.com +eu2.madsone.com +eu-adcenter.net +eu-appleid-service.com +eubuild.com +eu-cookie-law.info +eudotacje.eu +eue.collect-opnet.com +euforiafryz.pl +eugenevaultstorage.com +euib.iewical.eu +eukhostreview.org +eumundi-style.com +eu-myappleidservices.com +euniverseads.com +eu.npario-inc.net +eu.nuggad.net +eu-pn2.adserver.yahoo.com +eu-pn4.adserver.yahoo.com +eupornstar.info +eu-px.steelhousemedia.com +eur.a1.yimg.com +eurekster.com +euriskosrl.it +euro2016-doladowanie.blogspot.com +euro3d.eu +euroad1.advantage.as +euroasia-p.com +eurobaba.com +euroclick.com +euroclicsl.com +eurodach.ru +euro-doladowania.blogspot.com +eurodont.com +eurofoodthai.pw +euro-forest.ml +eurolatexthai.com +euromasterclass.ru +euromix.it +euronis-free.com +euro-option.info +europabusinfo.de +europages.com.ru +europcareer.com +europe-academy.net +europe.adserver.yahoo.com +european-torches.ru +europeanwatches.ru +europe-systems.de +europianmedicswantseafood.com +europol.europe.eu.france.id647744160-2176514326.h5841.com +europol.europe.eu.id214218540-7444056787.h5841.com +euros4click.de +eurosamodelki.ru +euroskat.ru +eurostar.122.2o7.net +eurostrands.com +euro-vertrieb.com +eu-sonar.sociomantic.com +eusta.de +eu.track.digitaladsystems.com +eu-u.openx.net +eu.xtms.net +evaairline.com +evaashop.ru +ev.ads.pointroll.com +evangelische-heimstiftung.de +evania.adspirit.de +evans.babajilab.in +evansvillesurgical.net +evasive.expertwitnessautomaticdoor.net +evbeacon.networksolutions.com +eveley.club +ev-elisabeth-krankenhaus.de +evengrollighromsof.net +evening-dating-club.info +evenmedia.com +event.2leva.bg +eventaken100villageauto.in +eventbrite.122.2o7.net +eventkalender.com +eventlogger.soundcloud.com +event-log.videe.tv +event.ohmyad.co +eventoselepanti.com.mx +event.paypay.viipz.com +events3alt.adcolony.com +events.adwidecenter.com +events.boomtrain.com +events.foreseeresults.com +events.indyloyaltyclub.com +events.kalooga.com +events.streamrail.net +events.webflowmetrics.com +eventtracker.videostrip.com +event-tracking.com +event-travel.co.uk +evepdaggiesports.112.2o7.net +evepdaikencom.112.2o7.net +evepdbrazossports.112.2o7.net +evepdcharleston.112.2o7.net +evepdeagledev.112.2o7.net +everestclick.com +everestmarc.com +everetthomes.ca +evergage.com +evergreencorato.com +everonenergies.com +everydaygays.com +everydayhealth.demdex.net +everydresses.com +everyjoe.us.intellitxt.com +everythingisstory.com +everytin.tunerwrightng.com +evesaddictin.com +ev.ib-ibi.com +eviboli576.o-f.com +evidencecleanergold.com +evidyabharati.net +evifnoipv2.ddns.net +evilbeetgossip.us.intellitxt.com +evile.co.uk +evilstalin.https443.net +eviltracker.net +evisiontech.lk +e-v-kay.com.ng +evkc.com +evlilikfoto.com +evodownload.com +evogarage.com +evogretmeni.com +evolucionmexicana.com.mx +evolutionarmy.com +evolved-design.co.uk +evolventa-ekb.ru +evolvia.se +evrotekhservis.ru +evtrk.com +evvzcyjf.com +evwr.hitbox.com +ev.yieldbuild.com +evymcpherson.com +ewamertaccout.info +ewbio.cn +ewebarticle.info +ewebcounter.com +eweek.us.intellitxt.com +ewekoshop.com +eweuisfhef.spreadyourwingswithpanna.co.uk +ewfqiogowyou.com +ewsabilene.112.2o7.net +ewscorpuschristi.112.2o7.net +ewscripps.112.2o7.net +ewsmemphis.112.2o7.net +ewsnaples.112.2o7.net +ewstcpalm.112.2o7.net +ewstv.abc15.com +ewsventura.112.2o7.net +ewubo.net +exactadvertising.com +exacttarget.com +examfx.co +examinercom.122.2o7.net +examineyourantivirus.xyz +examnotes.us.intellitxt.com +exasked.com +exawn.xyz +ex.banner.t-online.de +excale.net +excaliburfilms.com +excel-cars.co.uk +excelclean.com +excellent.michaelanthonyrobinson.com +excelwebs.net +exchangead.com +exchange.adswizz.com +exchange.bg +exchangecash.de +exchangeclicksonline.com +exchange-it.com +exchange.nativeads.com +exchanges-bet.com +exchange.xbiz.com +exchsrvportal.com +exchu.com +excite.us.intellitxt.com +exclaim.goldenteamacademy.cl +exclinsxe.com +exclusiotv.be +exclusivebrass.com +exclusive-collections.com +exclusivegiftcards.com +exclusiveholidayresorts.com +exclusivobraatendimento.com +exct.net +execulink.112.2o7.net +executehosting.com +executivebillard.com +executivecoaching.co.il +executiveimagenutrition.com +exelator.com +exeos.ws +exesxpediapartenerecentrale.com +exeupp.com +exgfsbucks.com +exhibitionplus.eu +exhibits4court.com +exigostrategic.ro +exit76.com +exit-ad.de +exitexchange.com +exitfuel.com +exit-o.com +exit.oxcash2.com +exits1.webquest.net +exits2.webquest.net +exits.adultcash.com +exit.silvercash.com +exitsplash.s3.amazonaws.com +exit.xpays.com +exityield.advertise.com +exity.info +exmasters.com +exnjadgda1.doubleclick.net +exnjadgda2.doubleclick.net +exnjadgds1.doubleclick.net +exnjmdgda1.doubleclick.net +exnjmdgds1.doubleclick.net +exoclick.com +exogripper.com +exonline.info +exonnet.net +exoogle.com +expatlines.com +expdom.com +expedia1.112.2o7.net +expedia4.112.2o7.net +expedia6vt.112.2o7.net +expedia8.112.2o7.net +expedia.ca.112.2o7.net +expedia-centrale.it +expediacentralpartenere.com +ex.pedia.it +expedia-loginpartner.it +expediapartenerecentraleese.com +expediapartenerecentrales.com +experianservicescorp.122.2o7.net +experiencebank.com +expertblog.info +experteerads.com +expertland.net +expertnaya-ocenka.ru +expertpodarkov.com +expertsbatch.com +expertsexchange.112.2o7.net +experts.us.intellitxt.com +expired-targeted.com +explode-vt.de +exploit0day.top +explore2be.com +exploremerida.com +explorenow.altervista.org +explorer342.in +explorer343.in +explorer344.in +expochiriqui.com +expo-max.com +expomobilia.net +exponential.com +exportshop.us +expowin.com +expreseen.se +expressaffiliatesite.com +expresselectro.ru +expressface.mx +expressomatogrosso.com.br +express-submit.de +expresstoplivo.ru +express.uk.intellitxt.com +exsexytop.tk +extads.net +ex.technor.com +exteinmsw.com +extended.dmtracker.com +extener.org +extensiidinparnatural.com +extensions-32.xyz +extensions-34.xyz +external.dmtracker.com +external.stealthedeal.com +ext.host-tracker.com +extintoresneuman.cl +extlabs.io +extntechnologies.us.intellitxt.com +ext.privacyassistant.net +extrabot.com +extractorandburner.com +extra.eboundservices.com +ex-traffic.com +extratorrentt.cc +extravod.pl +extreembilisim.com +extremal-blog.com +extremedeal.de +extreme-dm.com +extremeoverclocking.us.intellitxt.com +extremepornos.net +extremereach.com +extremesports.kz +extremetech.pl +extremetech.us.intellitxt.com +extremetracking.com +extremez.net +extrovert.122.2o7.net +extstat.com +eyeblaster.com +eyebuy.co.za +eyelike.com.ua +eyemagination.com +eyeota.net +eyereact.eyereturn.com +eyereturn.com +eyes.by +eyesondesign.net +eyes-on-you.ga +eyeviewads.com +eyewonder.com +e.yieldmanager.net +eyprvinskycattederifg.com +eyrossi.altervista.org +ez8motelseaworldsandiego.com +ezboard.bigbangmedia.com +ezdownloadpro.info +ezeebookkeeping.com.au +ezeetokart.com +ezeike.com +e-zeitung.de +ezemuor.xyz +e.zeroredirect2.com +e.zeroredirect.com +ezgds.112.2o7.net +ezhune.com +ezigarettekaufen1.hpage.com +ezigarettekaufen2.blox.pl +ezigarettekaufen2.mpbloggar.se +ezigarettekaufen2.yolasite.com +ezigarettekaufen.myblog.de +ezigarettenkaufen1.deviantart.com +ezigarettenkaufen1.pagina.gr +ezigarettenkaufen2.dreamwidth.org +ezigarettenshop1.yolasite.com +ezigarettenshop2.myblog.de +ezigarettenshop2.postbit.com +ezigaretteshop2.mywapblog.com +ezigaretteshop2.vefblog.net +ezigaretteshop.webs.com +ezmm.ru +ezofest.sk +ezoporady24.com.pl +ezoteryka24h.pl +e-zshopper.activeshopper.com +ezsolutionspk.com +eztalmodtam.hu +ezthemes.com +ezthemes.ezthemes.com +eztracks.us.intellitxt.com +eztweezee.com +ezula.com +ezvngyael.top +ezxdxeqmudhnqv.ivydancefloors.com +ezxs.com +f00kclan.de +f012.de +f03.smaato.net +f04.smaato.net +f05098.privacy4browsers.com +f05.smaato.net +f06.smaato.net +f07.de +f07.smaato.net +f0815.de +f08.smaato.net +f09.smaato.net +f0d17983842b7f39c5106534523e6644.org +f10.smaato.net +f11098.privacy4browsers.com +f11.smaato.net +f12.smaato.net +f13.smaato.net +f14.smaato.net +f150123.privacy4browsing.com +f15.smaato.net +f16.smaato.net +f17.smaato.net +f18085.privacy4browsers.com +f18.smaato.net +f19.smaato.net +f1.p0y.com +f20.smaato.net +f21.smaato.net +f22.smaato.net +f23.smaato.net +f24.smaato.net +f25.smaato.net +f26.smaato.net +f27.smaato.net +f28.smaato.net +f29.smaato.net +f2communitynews.112.2o7.net +f2nbt.112.2o7.net +f2ncracker.112.2o7.net +f2network.112.2o7.net +f2nmycareer.112.2o7.net +f2nsmh.112.2o7.net +f2ntheage.112.2o7.net +f2.p0y.com +f30.smaato.net +f31.smaato.net +f32.smaato.net +f33.smaato.net +f34.smaato.net +f35.de +f35.smaato.net +f36.smaato.net +f37.smaato.net +f38.smaato.net +f39.smaato.net +f3.p0y.com +f40.smaato.net +f41.smaato.net +f42.smaato.net +f43.smaato.net +f44.smaato.net +f45.smaato.net +f46.smaato.net +f47.smaato.net +f48.smaato.net +f49.smaato.net +f4.p0y.com +f50.smaato.net +f51.smaato.net +f52.pl +f52.smaato.net +f53.smaato.net +f54.smaato.net +f55.smaato.net +f56.smaato.net +f57.smaato.net +f58.smaato.net +f59.smaato.net +f5biz.com +f5mtrack.com +f60.smaato.net +f8350e7c1.se +f8b2b9.su +faacebok.pl +fabar.outwar.com +fabbapadre.org +fabianomotta.com +fabians-fyi-stores.com +fabiocaminero.com +fabiogoleirooficial.com +fabioklippel.com.br +fabiy.fastcomet.site +fable.in.ua +fabluxwigs.com +fabre-aubrespy.fr +fabresourcesinc.com +fabrics-store.com +fabriquekorea.com +fabryka-chinczykow.blogspot.com +fabryka-haftu.com.pl +fabulousfirearms.com +facadecleaners.com +facbok.ml +facbook-fan-page-adare-namayen-like-us-on.tk +faccebo0kmobille.000webhostapp.com +faceadicto.com +faceapp.eu +facebok.paikesn.com +facebokznajomi.blogspot.com +facebook3d.com.br +facebookaplikacje.blogspot.com +facebookasciiart.com +facebooka.se +facebook-authentication-login-com.info +facebook.bebashangat.ml +facebook-bella-fati.serverlux.me +facebook.cm +facebook-color.5v.pl +facebookcolors24.blogspot.com +facebook.com.accounts.logins.userids.349574.23ud82.com +facebook.com.accounts.logins.userids.355111.23ud82.com +facebook.com.esa-snc.com +facebook.com.f4r5.pw +facebook.com-fbs.us +facebook.com-info.download +facebook.com.linkedstate.in +facebook.com-------mobile---read---new--terms--224874725.peraltek.com +facebook.com-------mobile---read---new--terms--340590087.peraltek.com +facebook.com-o.me +facebook.com.piihs.edu.bd +facebook.com-profile-100008362948392.site88.net +facebook.com.skiie.com +facebook.com-------validate----credentials----new-tos--19182121.enkaemlak.com +facebook.corn.profile.php.id.c983a7028bd82d1c983a7028bd82d4.bah.in +facebookcrawl.co.cc +facebookdating.link +facebookfansigned.comlu.com +facebook.fasting.tk +facebook-fb-terms.com +facebook.fun-masti.net +facebookinc.122.2o7.net +facebook.jolims.tk +facebook.khmerinform.com +facebook-kolor.blogspot.com +facebookkoloruj.blogspot.com +facebookkviewer.blogspot.com +facebookloginaccountattempt.com +facebookloginsignin.com +facebookloginuse.netai.net +facebooklovesispain.tk +facebook-marketplace.artqs.com.my +facebookmarkt.xyz +facebook-page1048534.site88.net +facebook-photos.pl +facebook-proxy.hi5.com +facebook-repto1040s2.ahlamountada.com +facebooks.app11.lacartelera.info +facebook-securitycheck.com +facebook.sell-clothes23.com +facebook.serulom.tk +facebook-servce.com +facebook-support-customers.com +facebooksupport.gear.host +facebook-support-team.com +facebookszpieg.glt.pl +facebooktbtoolbar.ourtoolbar.com +facebookum.com +facebookunblocking.com +facebook.unitedcolleges.net +facebook-update-info.com +facebook.urmas.tk +face-book.us.id5684114408.up-hit.gdn +face-book.us.id9528506606.up-hit.gdn +facebookut.ml +facebook-uzaleznienie.wirtualnie.pl +facebook.verify-account.co.in +facebookvivn.com +facebook.webservis.ru +faceboolks.info +faceboook-replyei0ki.montadalitihad.com +faceboserve.it +facebu0k.comli.com +facecandy.com +facecooks2.com +facecup.top +face.hostingx.eu +face-kolor.rdx.pl +facemail.com +faceoff.112.2o7.net +facepodgladacz.glt.pl +faceroute.pl +facesphoto.ru +faceszpieg.pl +facetools.pl +faceviewe.blogspot.com +face--viewer.blogspot.com +face-vip.ujm.pl +facewatch.pl +facilpravc.com.br +facta.ch +factfully.com +factiva.122.2o7.net +factory.je +factorysafecenter.com +factory.se +factorywheelstoday.com +facturemobiile-free.com +faculdadecdl.edu.br +faculdadeestaciodesa.com.br +facultymailb.jigsy.com +faculty-outlook-owaportal.my-free.website +fadergolf.com +f.admob.com +fadzulani.com +fae5ret.to +fae5ret.top +faeecb0ock.info +faena-hotel.com +faeph6ax.com +faggotry.com +fahrrad.bikesshop.de +fahrschule-viersen.de +fahvoxmhh.top +faire-part-mariage-fr.fr +fairfaxau.d1.sc.omtrdc.net +fairfaxau.demdex.net +fairfax.demdex.net +fairfu.com +fairjets.de +fairwaytoyou.com +faithawooaname.info +faithbasewealthgenerators.com +faithbibleweb.org +faithbreakthroughs.org +faithfulfascination.com +faixasdf.com.br +faiyazahmed.com +faiz-e-mushtaq.com +fakehandbags.xyz +faktopedia.com.pl +falajesus.com.br +falconexport.com +falconsafari.com +falconsafe.com.sg +falcoware.com +falisha.co.id +falkag.net +fallencrafts.info +fallingwallsvpn.com +falllow.gq +faloge.com +falqpyukcuk.com +falsewi.com +falstaff.oewabox.at +falvitmama.pl +famfight.com +familien-autos.de +familienzahnaerzte.com +familiesteurs.be +family1st.ca +familyholiday.ml +familyhomefinance.com.au +familylobby.net +family-offer.com +familyphysician.ru +familytiesshopes.co.za +familyupport1.com +familywreck.org +famir.com +famix.xyz +famous-pics.com +famvir.1.p2l.info +fan-almobda.com.sa +fanatics.112.2o7.net +fancycake.net +fandc.in +fandlr.com +fangoria.us.intellitxt.com +fangqianghuaye.com +fannu.com +fannyc.se +fanoboi.com +fanpage-center33.verifikasiii-again.tk +fanpagedirector.de +fanpagee.find-news-register.gq +fanpagerobot.com +fanrep.oewabox.at +fansedge.co +fanserv-d.openx.net +fanskoda.pl +fanspage-centerr78.verifikasi-acc0un98.tk +fanspage.recovery-accounts.cf +fansppagee.verifikasion1.tk +fantasycomments.org +fanticsgroupltd.xyz +fanticy.com +fap2babes.com +faptitans.com +faq-candrive.tk +faqsnter-payments-declined.com-account.com +faqts.us.intellitxt.com +far0m.somaliaworking.org +faracontrol.ir +fardaus.com +farecastcom.122.2o7.net +fargomailactivate.minijozveh.ir +fari07.fabrikatur.de +farkyaratin.com +farm26.ru +farmaciasm3.cl +farmerbuddies.com +farmerfootdrums.com +farmingworm.com +farmius.org +farm.plista.com +farmprofi.net +farmsimulator2017.pl +farsped.com +faschooler.id +f.as-eu.falkag.net +fashioncollection58.com +fashionindeed.ml +fashionjewelryspot.net +fashionkumbh.com +fashion-mk.net +fashion-ol.com.pl +fashion-stickers.ru +fashion-tube.be +fashionweek.nl +fashion.youthdeveloper.com +fas.nirmala.life +fast.adobe.demdex.net +fast-adv.it +fast.bet.demdex.net +fast.bostonglobe.demdex.net +fast.cbsi.demdex.net +fastclick.co +fastclick.com +fastclick.com.edgesuite.net +fastclick.ir +fastclick.net +fast.condenast.demdex.net +fastcounter.bcentral.com +fastcounter.com +fastcounter.linkexchange.com +fastcounter.linkexchange.net +fastcounter.linkexchange.nl +fastcounter.onlinehoster.net +fastcrawl.com +fast.de.demdex.net +fast.dm.demdex.net +fastdownload10.com +fast.ecs.demdex.net +fast.everydayhealth.demdex.net +fastfads.com +fast.fairfaxau.demdex.net +fast.fairfax.demdex.net +fast.fedex.demdex.net +fastfixing.tech +fast.ford.demdex.net +fast.gannett.demdex.net +fast.gm.demdex.net +fasthealthycare.com +fastherbsshop.ru +fast.iyogi.demdex.net +fastlane-adv.rubiconproject.com +fastlane.rubiconproject.com +fast-lost4tmz.world +fast-mac-upp.com +fast.marthastewart.demdex.net +fastmedsprogram.ru +fast.mtvn.demdex.net +fast.nbcots.demdex.net +fast.nbcu.demdex.net +fastnclick.com +fast.nfl.demdex.net +fast.nrjgroup.demdex.net +fastonlineusers.com +fastpay.pl +fast.philly.demdex.net +fastpopunder.com +fast.postmedia.demdex.net +fast-rescure.com +fast.sears.demdex.net +fast.swa.demdex.net +fast.td.demdex.net +fast.telstra.demdex.net +fast.torontostar.demdex.net +fast.twc.demdex.net +fastwebcounter.com +fast-wordpress-start.com +fatasiop.com +fatbackandcollards.us.intellitxt.com +fatbackmedia.us.intellitxt.com +fatcatrewards.com +fatfasts-4tmz.com +fatfasts-4tmz.world +fatfreekitchen.us.intellitxt.com +fatjewel.com +fatmaelgarny.com +fatmajaya.co.id +faucethubggrip.linkandzelda.com +faucett.bid +faulks.net.au +faunusaff.afftrack.com +fauth.fasting.tk +fauth.jolims.tk +fauth.myago.tk +fauth.serulom.tk +fauth.urmas.tk +faux.romhost.me +favicon.com +favorcosmetics.com +favoritemoney.ru +favornews.com +favourlinks.com +fawcettinsurance.com +faxinasja.com.br +fayosae.webcam +faz99.com +faze-clan.com +fazeebook.com +fazhongcai.com +faz.ivwbox.de +fb-account-notification.gq +fbadder.com +fba-mexico.com +fbbaodantri.byethost32.com +fb.cashtraffic.com +fbcolor0141.blogspot.com +fbcolor0156.blogspot.com +fbcolor071.blogspot.com +fb-color.qpq.pl +fb-colors.ct8.pl +fb-colors.pl +fb.com.accounts.login.userid.293160.2bjdm.com +fb.com--------validate---account----step1.yudumay.com +fbconfirmpageerror.co.nf +fbcpublications.com +fbfredericksburgcom.112.2o7.net +fbfreegifts.com +fb-generalpair1.at.ua +fbgroupslikes.2fh.co +fbi.gov.id402037057-8235504608.d9680.com +fbirdkunsolt.biz +fbkepo.com +fbkmnr.112.2o7.net +fb-kolor.blogspot.com +fbk-triocrepes.se +fbku.com +fblauncher.000webhostapp.com +f.blogads.com +fblyks.2fh.co +fb-m.cu.cc +fbmev.de +fb-next-security.rumahweb.org +fb-next-securityss.rumahweb.org +fboffensive.000webhostapp.com +fbooklove.my3gb.com +fbpageerror.co.nf +fbpageunblock.co.nf +fb-podglad5.blogspot.com +fb-podglad6.blogspot.com +fbpodgladacz.wordpress.com +fbpodgladaj.pl +fbpodglad.blogspot.com +fb.postmee.xyz +fbs1092.esy.es +fbsbk.com +fbsecurity3425.net23.net +fb-security-center-inc.xyz +fb-security-central.xyz +fb-security-page.cf +fbservice.esy.es +fbs-info.za.pl +fbsystemunblckpage.co.nf +fbsystemunlockedpages.co.nf +fbsystemunlockpage.co.nf +fb-szpieg.com +fb-szpieguj.likesyou.org +fbtool.glt.pl +fbtools.glt.pl +fbtwoupdates.com +fbuf.cn +fbunlockedsystempage.co.nf +fbunlockedsystempages.co.nf +fbunlocksystempages.co.nf +fbverify.biz +fbverifydenied.cf +fbview4.cf +fbviewerv75.blogspot.com +fb-viwer.5v.pl +fbwijzxgingn.000webhostapp.com +fbwkolorach.pl +fb-zmiana-koloru.pl +fccministries.org +fcc-thechamps.de +fcds.affiliatetracking.net +fceq.com +fcg.casino770.com +fcijobsportals.in +fc.jouleadserver.com +fclyon.basket.free.fr +fcm-makler.de +fcnmbnig.com +fcolors.pl +fcssqw.com +fcstats.bcentral.com +fcubeindia.com +fc.webmasterpro.de +fd.aarousha.com +fdads.sv.publicus.com +fdbdo.com +fdblgzwoaxpzlqus9i.com +fdcbn-url-photos.zyro.com +fdcdoc.com +fdfamen.com +fdff44.r.axf8.net +fdff44.t.axf8.net +fdg.10eurosbonheur.net +fdimages.fairfax.com.au +fdkcwl.com +fdp-stjohann-ost.de +fdsshub.xyz +fdsslab.xyz +fdssnow.xyz +fdsspro.xyz +fdssweb.xyz +fdsvmfkldv.com +fdugfudghjvbehrbjkebkjvehjvks.cf +fdzone.org +fe1-au.imrworldwide.com +fe1-fi.imrworldwide.com +fe1-it.imrworldwide.com +fe2-au.imrworldwide.com +fe3-au.imrworldwide.com +fe3-gc.imrworldwide.com +fe3-uk.imrworldwide.com +fe4-uk.imrworldwide.com +fe7ooni.top +feaecebook.com +fealq.com +feaqwetysddasoerfaocoweldoa.com +fearcrow.com +featuressaloonspa.com +fe-au.imrworldwide.com +fe.brandreachsys.com +fecasing.com +fecebook.world +feci3hyzic3s90be8ejs.jornalalfaomega.com.br +fedchik.org.ua +fedderserv.net +federaciondepastores.com +federalcop.com +federalexpresscareers.com +federalgovernmentauctions.org +federalincorporationcanada.ca +federal-student.loan +federaltaxagent.com +federatedstores.com +federicksofhollywood.com +federicomontero.com +federpescatoscana.it +fedex.demdex.net +fedex-support.macromilling.com.au +feed3.hype-ads.com +feedads.g.doubleclick.net +feedads.googleadservices.com +feed.afy11.net +feedbackcensus.com +feedbackexplorer.com +feedback.microsoft-hohm.com +feedbackresearch.com +feedback.search.microsoft.com +feedback.windows.com +feed.hype-ads.com +feedjit.com +feed.peakclick.com +feeds.global-intermedia.com +feeds.videosz.com +feedsweep.us.intellitxt.com +feeds.weselltraffic.com +feeds.wise-click.com +feed.trafflow.com +feed.validclick.com +feedx.bidsystem.com +fee-hydrocodone.bebto.com +feelazur.de +feelfabulous.com.br +feel-planet.com +feelvo.com +feenode.net +feerere.kagithanetemizlik.net +feeriaclub.ru +fefasxixperu.com +fefo.gdn +fegh.kgune.com +feicht.com +feieo.com +feilongjiasi.com +fei.pro-market.net +feitopravccadastro.mobi +feixiangpw.com +fejsbuk.com.ba +fejs-colors.blogspot.com +fejsopodgladacz.blogspot.com +fejs-podgladacz.pl +fejs-podgladamy.pl +fejspodgladamy.pl +fejspodgllaadacz.blogspot.com +fejspodglladacz.blogspot.com +fejstools.pl +fekehack.duckdns.org +fekrhegypt.com +felanco.heliohost.org +felceconserve.com +fe.lea.jubii.dk +fe.lea.lycos.de +fe.lea.lycos.es +fe.lea.spray.se +felicesfiestas.com.mx +felipenetomegafest.com +femalefirst.uk.intellitxt.com +female-v.1.p2l.info +femaleviagra.findmenow.info +femalewrestlingnow.com +femdomempire.co +femdom.twiclub.in +femeedia.com +femexbaile.com +femmesdenudees.com +femme-silicone.com +fenc.daewonit.com +fencepostbooks.com +fendacamisetas.com +fengfengtie.com.cn +fengfengtiecrv.com.cn +fengfengtiessp.com.cn +fengshangtp.net +fengshuijia.com.cn +fengyixin.com +fenipourashava.com +fenit.net +fennudejiqiang.com +fenomenoparanormal.com +fenoyl.batcave.net +fenshaolu.com.cn +fensterfaliraki.com +fentiaoji.cn +feorina.ru +ferdimac.com +feriadelosautos.com +feriamarket.cl +ferieboligkbh.dk +ferienblockhaus-feldberg.de +ferien-in-badsaarow.de +ferienwohnung-kueste.de +ferlafashion.com +fermersovet.ru +fermosur.com +fernandoexavier.com.br +fernandorega.com +fernbahner.de +feroapierlicakbrmuaiofcaz.com +ferrago.uk.intellitxt.com +ferrari.org.ru +ferremonroyeu.com.co +ferreteriacorver.com +ferretsoft.com +ferrokim.com.tr +ferrotodo.com +fertilitetsradgivningen.se +fervent-diagonals.000webhostapp.com +ferventind.com +fervortracer.com +fesebook.ga +festival140caracteres.com +festivalbecause.org +festival.cocobau.com +festusaccess1111.wapka.mobi +festusdiy.co.uk +fetisch-schuhshop.de +fetish-art.net +fetishfitnessbabes.com +fetishinside.com +fetishlocator.com +fetroshok.ru +fettefrauen.net +fettzeppelin.de +feu7654te.isa-geek.org +feya-tuapse.ru +fezbonvic.info +fezshaonakov1.com +ff1.telemetryverification.net +ff2.com +ffaceebook.xyz +ffbb9039.amy.gs +ffb-community.de +ff.connextra.com +ffeifh.com +fff.dailymail.co.uk +fffddd11.cn +ffgamen.com +fflotte.oewabox.at +fforum.pisz.pl +ffrggthty.2fh.in +ffsi.info +fftrack.pro +ffxcam.fairfax.com.au +fgawegwr.chez.com +fg.bibleandbullets.com +fgcumeewaplo.com +fggtf.com +f.gj555.net +fgj.us +fgmindia.com +fgoogle.com +fg.softguy.com +fgtkmcby02.eu +fgtrrpro.xyz +fgtsaquecaixa.esy.es +fgts-caixa.esy.es +fgtsconsultar.com +fgtsinativocaixa.com.br +fgts-saldoinativo.cf +fgtstudosobre.esy.es +fgyirai.com +fhasbargen.de +fh-falkon.pl +fhg.digitaldesire.com +fhgfffdsf9.appspot.com +fhlyou.net +fhmonline.us.intellitxt.com +fhm.uk.intellitxt.com +fhm.valueclick.net +fhoc.ml +fhukaja.pl +fhvhvctycyujh.5gbfree.com +fiancee.com.au +fiancevisacover.com +fiaxgledv.top +fiberastat.com +fibrilacion-auricular.com +ficcionaliza.angelcities.com +fichiers-orange.com +fickblock18.com +fickenbumsen.net +fickenprivat.info +fickkontakte.org +fickluder69.com +fidelity.auth.currentthinkingsolar.com.au +fidelity.com-secure.maravill.cl +fidelity.com.secure.onlinebanking.com-accountverification.com.rosepena.com +fidelityfunding.com +fidelity.rotator.hadj7.adjuggler.net +fidellty.com +fideln.com +fid-fltrash.125mb.com +fidgetspinner.5v.pl +fidspinner.pl +fiestamusic.se +fif49.info +fifa17-coins.pl +fifa-coins.online +fifgdbooosgt.com +fifththirdbanking.verification.onlineservice.darwintoylibrary.com.au +fifththirdbank.verification.onlinebanking.darwintoylibrary.com.au +fightagent.ru +fighterequipments.com +fightingcancer.net +fightline.us.intellitxt.com +fighttrain.net +figlio.se +figlobal.112.2o7.net +figuringmoneyout.com +fijiairways.nz +filadestor.co.za +filamentcentral.com +file151desktop.info +file168desktop.info +file244desktop.info +file8desktop.com +file9275dropbox.pcriot.com +filebay.org +fileboxvault.com +filecdn2.dotandad.com +filecom.net +filedocudrive.com +file.doc.viewer.salemgauch.com +filedownload.com.pl +filedownloads.pl +file-dropbox.info +filedudes.us.intellitxt.com +fileengine.org +file-error-09x38.gq +filefilter.weebly.com +filefinder.pl +file-folders.pl +filefolders.pl +filefortune.com +fileice.net +file.ipinyou.com.cn +fileman.pl +file.masterdonatelli.com +file.mm.co.kr +fileoasis.net +filepdfl.info +fileredirectttr.com +filerockstar298.weebly.com +filerom.com +files4.downloadnet1188.com +files4.securedownload01.com +files5.downloadnet1188.com +files5.securedownload01.com +files.adbrite.com +files.adspdbl.com +files.bannersnack.com +files.brothersoft.com +filescloud.pl +filesdownloads.pl +files.dsnetwb.com +fileserver03.com +fileserver.co.kr +fileserver.net +filesfolders.pl +filesfordownloadfaster.com +files.goodadvert.ru +files.goosedigital.ca +file-share365.com +file-share.pl +files-host.pl +filesmonster.porn +files.native.ad +files.opentestdrive.com +filespeedy.net +filespeedy.org +files.tailsweep.com +fileston.com +filestrue.com +filesvine.com +files-www2.adsnative.com +filetpgoog.com +fileup.com.pl +filipinobalikbayantv.com +filipino.serveblog.net +filkhbr.com +fillening.2fh.co +fillmewithhappiness.com +fillmprodsinfo.co.za +fillmytank4free.com +fillthehotblanks.cayaparra.com +film4sun.com +filmasy.pl +film-base.pl +filmbokep69.com +filmdrunk.us.intellitxt.com +filme-online-subtitrate.info +filmetricsasia.com +filmfanatic.com +filmforcedvd.ign.us.intellitxt.com +filmgo.ru +filmidivx.com +filmingphoto.com +filmland.pl +filmline.pl +filmofon.pl +filmomaniacy.pl +film-one.ru +filmonline24.pl +filmonline.com.pl +filmonlinepl.blog.pl +filmoo-maniacy.blogspot.com +filmowabaza.pl +filmowo.com.pl +film-owo.pl +filmplay.pl +filmschoolrejects.us.intellitxt.com +filmschoolsforum.com +films-hd.pl +filmslk.com +filmstew.us.intellitxt.com +filmthreat.us.intellitxt.com +filmu.pl +filmu.ru +filmwad.us.intellitxt.com +filmy-365.pl +filmy3d.eu +filmy.a33.pl +filmy-cda.com.pl +filmycda.pl +filmyfort.in +filmyiseriale.biz +filmy-i-seriale.pl +filmynet.eu +filmyonlinebezlimitu.pl +filosvybfimpsv.ru.gg +fil.ru +filter.adsparkmedia.net +filter.adxfactory.com +filter.eclickz.com +filter.mediacpc.com +filter.onwardclick.com +filunika.com.ru +filxbus.de +filzgalerie.de +fim.122.2o7.net +fimserve.askmen.com +fimserve.com +fimserve.ign.com +fimserve.myspace.com +fin.adbureau.net +finalchampion2016.hol.es +finalcrashtest.co.nz +finally.nu +final-music.info +finance2village.com +finance.b3p.cn +financehint.eu +financeloan.us +finance-offer.com +financepoints.eu +financetip.eu +financialiguard.com +financialnewsupdates.com +financiamentoseemprestimospessoal.com +finanskarriere.com +finanzmeldungen.com +finatime.ivwbox.de +fincalabella.com +find1friend.com +findacheaplawyers.com +findadvertise.engine.adglare.net +findaltitudeandlongitude.com +findanysex.com +findapple.ru +findapps.in.net +findbestvideo.com +findclan.org +findcommerce.com +find-contact.com +finder.cox.net +finders.hopto.org +findfavour.com +findgiftcode.com +findicloudphones.com +findid-icloud.com +findit-quick.com +find-maps-icloud.com +findmenow.info +findmydevice-apple.com +find-myiphone6.com +findmyiphone-accounts.com +findmyiphone-gr.com +findmyiphone-id-support.com +findmyiphone-trackdevice.com +findmylphone-applecare.com +findmyph0ne.com +findmyphoneicloud.com +findom-garant.ru +findpik.com +findqualitinsurance.com +findsexguide.com +findthe.pet +findynamics.com +findyourcasino.com +fineclicks.com +finehardwoodfurniture.com.au +finejewelryshop.ru +finemanteam.com +finerplater.no +fingerprintingasap.com +fingit.com +finishedupdate.safesystemupgrade.org +finishhim123d.com +finkarigo.com +finnhair.co.uk +finsa-apple.com +finsolutions.top +finstroy.net +finteks.ru +fin.tips +finuse.com +fioda.com +fioe.info +fiona.ai.net +fioricet.1.p2l.info +fioricet.3.p2l.info +fioricet.4.p2l.info +fioricet-online.blogspot.com +fips.uimserv.net +fircecymbal.com +fireads.men +firebid.pl +firecash.org +firecpa.com +firefender.com +fireflypeople.ru +firehorny.com +firehouse651.com +firelanepictures.com +firestallion.com +firesub.pl +firges.com +firingsquad.us.intellitxt.com +firma-legion.ru +firoxy.com +firoznadiadwala.com +firstamericanhomeshield.com +firstbaptisthuntington.org +firstcapitalltd.com +firstchoicereadymix.in +firstconsumers.com +first-donwloads.com.br +firstfinda.info +first-fruits.co.za +firstgame.xyz +firstinsurancefunding.co +firstlightera.com +first.nova.cz +firstshowing.us.intellitxt.com +firststandardpath.com +firststeptogether.com +first-ware.com +fishadz.pressflex.net +fishclix.com +fisherofmenuiffh.com +fishingwholesale.us +fishsoft.ru +fishum.com +fishv.ml +fi.sitestat.com +fit-as.de +fitfaiyt.beget.tech +fitfloponline.store +fitges.oewabox.at +fit-im-puls.de +fitnessarea.net +fitnessecho.com +fitnessequipmentreviewer.com +fitnesshealthreporter.com +fitnessnutritionreview.com +fitness.org.za +fitnesspiks.com +fitnessteam24.pl +fitness-video.net +fitsystembyphiloren.com +fiuxy.com +five.partner.archive-it.org +fivesix.de +fixbonus.com +fixcleaner.com +fixedmyerror.net +fixedmypc.co.in +fixedmypopup.co.in +fixedmyslowpc.co.in +fixedyourissue.co.in +fixerr0066.xyz +fixerrorresolved.co.in +fixeventmanagement.com +fixio-pc-cleaner.com +fix-mac-apple-error-alert.info +fixmypcerrors.com +fixmypcsystem.co.in +fixnow2.in.net +fixnow3.in.net +fixnow.in.net +fixturesdesign.com +fixurprob03.xyz +fix-website-errors.com +fixya.us.intellitxt.com +fix-your-pc-now.in +fizdeals.com +fizikdefteri.com +fizjodent.lebork.pl +fizjoterapia.5v.pl +fizyka.umk.pl +fjglobalinc.org +fj.hmtcn.com +fjjslyw.com +fjlhh.com +fjronmao.com +f-js1.spotsniper.ru +fkct.com +fkdpzz.com +fkhfgfg.tk +fkiloredibo.com +fkj8.com +fkjmnihtwnwk.com +fkjxzzc.com +fkooaee.angelcities.com +fl01.ct2.comclick.com +fl.5.p2l.info +flagcounter.com +flamingocanada.com +flandresbaseball.com +flangask.com +flaschenpost-ms.de +flash4fun.com +flash4promo.ru +flashadtools.com +flashbannernow.com +flashbanners.static.ard.sexplaycam.com +flashbanners.static.ard.xxxblackbook.com +flashbook.com.au +flashcasino.com +flashdem.fr +flashdigitals.com +flashinku.com +flashmagazine.us.intellitxt.com +flashmediaportal.com +flash-ore-update.win +flashplayer-adobe.com +flashplayer_macro.kit.net +flashplayer.net.ru +flash.quantserve.com +flashsavant.com +flashtalking.com +flatbook.pl +flatfeejaxhomes.com +flatterra.com +flaviamedia.ro +flavordecision.com +flavy.fastcomet.site +flayconcepts.com +fleblesnames.com +fleshlightcash.com +flex4launch.ru +flexbanner.com +flex.comonwealthplc.com +flexdon.se +flexeril.1.p2l.info +flexfuel.co.zw +flexiblesigni.com +flexicall.co.uk +flex.msn.com +flexsealproduct.com +flextra.1.p2l.info +fl-hoa-directory.info +flipcurecartinnovasion.club +flipper.top +flipsphere.ru +flipvine.com +flirt4free.com +fliteilex.com +flitero.de +flluae.com +flndmiphone.com +f-loaded.de +float.2693.bm-impbus.prod.ams1.adnexus.net +floatfeast.com +floatingads.madisonavenue.com +floating-share-buttons.com +flocshoppingdoc.com +flonase.1.p2l.info +flonase.3.p2l.info +flonase.4.p2l.info +floodprincipal.com +floorconstruction.co.za +flooringinstallation-edmonton.com +floor-inspector.com +floorworksandplus.com +floresdemadera.cl +florianocontabil.com.br +floriculturabouquet.com.br +floridaconstitutionalamendment.com +floridahuntingfishingadventures.com +floridakneepain.org +floridamhca.org +floridamobilebillboards.com +floridaschollchoice.org +floridasvanrentalspecialists.com +floridat.app.ur.gcion.com +florida-tourism.net +floridayachtpartners.com +florievenimente.com +florineff.ql.st +flowbils.cf +flower1shop.com +flowerandcrow.com +flower.bg +flower-online.petrovka.info +flowerpower.info +flowersbazar.com +flowers-offer.com +flowgo.com +flow.lawyerisnearme.com +floworldonline.com +flowtec.com.br +flowwwers.com +fl.paddletheplanet.com +flppy.sakinadirect.com +flprog.com +flpw.com +fls.au.doubleclick.net +fls.doubleclick.net +fls-eu.amazon-adsystem.com +fls-na.amazon-adsystem.com +fls-na.amazon.com +fls.uk.doubleclick.net +flttracksecure.com +flu23.com +fludgwererqo.at +flukebiomedicai.com +fluoxetine.1.p2l.info +flurry.com +flutesongmedia.com +fluxcontrol.de +flx367.lporirxe.com +flycast.com +flycell.pl +flyfoto.nu +flyfsx.ch +flying-chefs.de +flying-indians.de +flyingmag.com.122.2o7.net +flyingmag.us.intellitxt.com +flynicki.de +flypeach.co +flyskyhawk.com +flytourisme.org +fm120.cn +fm120.com +fm.3tn.com.br +fm588.com +fmads.osdn.com +fmarchzeetequwxtw.wang +fmcasaba.com +fmcurling.org +fm.erp.appinsg.com +fm.hollybricken.com +fmi-info-apple.xyz +fmi-location-support.com +fmmyjoutpgkwf.com +f.monetate.net +fmoroverde.com +fms2.eyewonder.speedera.net +fms2.pointroll.speedera.net +fmsads.com +fm-upgrade.ru +fnacmagasin.solution.weborama.fr +f.nexac.com +fnf-industrietechnk.com +fnlpic.com +fnmsk.ru +f-nod1.adsniper.ru +f-nod2.adsniper.ru +fnyoga.biz +fo4n.com +fo5.a1-downloader.org +foamcash.com +foanforcash.com +fo-api.omnitagjs.com +focalink.com +focusbaiduafp.allyes.com +focusedvisual.com +focusin.ads.targetnet.com +focus.met.vgwort.de +fodder.qq.com +fodder.tc.qq.com +fodelsedagspresenter.nu +fogem.com +fogwatch.com +foh6bah.top +foi2vie.bid +fok.nl +fokus.at +folamsan.kovo.vn +foldersfiles.pl +folkaconfirm.com +folkd.put.omnimon.de +folkspants.com +followersinsta.pl +following-technology.com +followinsta.pl +follow.kr +followtwo.com +folloyu.com +folod55.com +folorunsoheritage.com +folowsite.com +fomai.com +fondationtaylor.com +fondazioneciampi.org +fondprof.oewabox.at +fonecta.leiki.com +fonemo.se +f-online.de +fonse.com +fontanaresidence.ro +fontrow.com +fontsquirrel.co +foo.cosmocode.de +foodbook.comli.com +food-drink-bonuspath.com +food-drink-rewardpath.com +food.dtu.dk +foodfood.xyz +foodiepeeps.com +foodiqr.com.au +foodmixeroffer.com +food-offer.com +foodsensenutrition.com +foodstests.com +foodsupplements.com.au +foodtechinc.com +foodtolerance.com +foogjddl.co.nf +footbalive.org +footerroll.admedia.com +foothillsmc.com.au +footymad.uk.intellitxt.com +foras-trading.kz +forbattradittsalj.se +forbesattache.112.2o7.net +forbesauto.112.2o7.net +forbesautos.112.2o7.net +forbescollect.247realmedia.com +forbescom.112.2o7.net +forbes.us.intellitxt.com +ford.112.2o7.net +fordcres.com +ford.demdex.net +fordoman.om +ford-welt.de +foreclousure.com +foreclousures.com +foreign.dt00.net +foreignpolicy.advertserve.com +forensicpsychiatry.ru +forestersrest.com +foreverdivine.com.au +foreverlovinghands.com +forex21.ru +forexadv.eu +forex-affiliate.net +forex-bank.se +forex-broker.hut1.ru +forex-chart.hut1.ru +forexgb.ru +forex-indextop20.ru +forex-instruments.info +forex-market.hut1.ru +forex-news.hut1.ru +forex-online.hut1.ru +forex.osobye.ru +forex-procto.ru +forex-signal.hut1.ru +forex-trade.hut1.ru +forextrader.ru +forex-trading-benefits.blogspot.com +forextrading.hut1.ru +forexunion.net +forgiveme.ru +forgotten-deals.com +forkliftbatterycharger.co.uk +formalyzer.com +formationpros.net +formessengers.com +formigadoce.com.br +forminecrafters.ru +formlabs.it +forms.earnmydegree.com +forms-mtm.ru +formulariohome.com +formularzkonkursowy.eu +formularz-odbioru-nagrody.info.pl +formularz-wygranego2017.eu +formularz-wygranego.eu +forodvd.com +foroushi.net +forpackningsutveckling.se +forpostlock.ru +forrentarubacom.domainstel.org +forsex.info +forskningsresultat.se +forttec.com.br +fortunecity.us.intellitxt.com +forum-4-all.de +forum.afwajamal.com +forum.alicefans.se +forum.amplecredit.com +forum.angelinfo.com +forum-assistance.info +forum.bestcollegehunt.com +forum-boost.site50.net +forum.briko.pl +forum.buskerdroid.com +forum.cartomantieuropei.com +forum.cefey.ru +forum.classicality.pl +forumcomm-d.openx.net +forum.creekpad.com +forum.d99q.cn +forum.dairyfreeuk.com +forum.dejm.pl +forumdelivros.com +forumdifotografia.it +forum.doctissimo.fr +forumediainc.us.intellitxt.com +forum.emarkowo.pl +forum-engineering.ru +forum.envergadura.com +forum.geizads.de +forum.hiderefer.net +forum.ingfoto.ru +forum.ircasia.org +forum.kegtux.org +forum.kitcar.fr +forum.lamarea.co +forum.like108.com +forum.lostivan.com +forum.masterchild.ru +forum.meinskype.de +forum.misteria.su +forum.mittnamn.nu +forum.muzclubs.ru +forum.nekoplus.com +forum.oifc.in +forum.onlygags.com +forum.poker4life.ru +forumprofi.de +forum.ragnarokdeep.com +forum.recluse.me +forum.rickcperry.com +forum.rotator.hadj7.adjuggler.net +forums.123.st +forum.scriptevolution.com +forums.cybercitizens.com +forum.slntech.net +forums.masalapics.in +forum.soldaten.ca +forum.soloalfa.it +forum.stfi.pl +forum.stilgi.ru +forums.toucharcade.com +forum.tvmir.org +forum.uprainbowpride.com +forum.voxiz.fr +forumwns.home.amu.edu.pl +forum.worldofgem.ru +forum.zxconsulting.com +forvideo.at +forwardhomes.lk +forwoodenergy.com +fosight.com +fossilsgs.com +fotekportraits.co.uk +foto-basa.com +fotoelektra.lt +fotographik.eu +fotohornet.se +fotologaso.miss-web.es +fotolog.crwdcntrl.net +fotomonto.pl +fotopop.club +fotoreflect.com +fotosexyy.altervista.org +foto-sisek.porngalleries.top +foto-telok.net +fototravel.eu +foto-weinberger.at +fotoxxxru.com +fotxesl.com +fotzen-ficken.com +found-applein.com +foundation-basketball.de +foundationi4.org +found-iphone.me +fountain.com.au +fourriverschurch.com +fourthgate.org +four-u.com +foxamw.112.2o7.net +foxcom.112.2o7.net +foxcounter.com +fox.fingalcsrnetwork.ie +foxidol.112.2o7.net +foxinsocks.ru +foxinteractivemedia.122.2o7.net +foxionserl.com +foxiyu.com +foxlimited.top +foxmanwer.pw +foxnews.demdex.net +foxnews.tt.omtrdc.net +foxnews.us.intellitxt.com +foxsimpsons.112.2o7.net +foxsports.us.intellitxt.com +foxtechfpv.com +foxtv.us.intellitxt.com +foxydeal.com +fpcclicks.com +fpctraffic2.com +fpctraffic.com +fpesa.net +fphdhqyyvqmqy.com +fplr.biz +fp.oneshotdate.com +fpqsjbqee.top +fp.uclo.net +fp.valueclick.com +fqdjri.info +fqsjzxyey.com +f.qstatic.com +fqtag.com +fr.1sponsor.com +fr.2.cqcounter.com +fr.64.clickintext.net +fr.85.clickintext.net +fra1-ib.adnxs.com +fr.a2dfp.net +fracesc.altervista.org +fr.adserver.yahoo.com +fragmentserv.iac-online.de +fra-log.com +frame-ur-work.com +framing-art.men +framkart.com +francisco-ayala.myjino.ru +franecki.net +franhealey.com +frank1.ddf.al +franka.in.net +frankcalpitojr.com +frankfisherfamily.com +frankihostessy.pl +franklinawnings.us +franklinleadershipcenter.com +frankrock.com +franksucks.com +frankuhlenbrock.de +fransiza.sk +franziska-rosenfeld.de +fra-photobox-tracking.adalyser.com +fr.apple.com-services-assistance-recuperations-des-comptes.com +fraserbabe.com.au +fraternalismescroissants.it +fratpoet.com +fratz.oewabox.at +frauschmip.com +fraydamaryellen.ru +frbizlist.com +fr.cim.clickintext.net +fr.classic.clickintext.net +frcls.fr +frcservice.com.br +frcsgroup.com +freakads.com +freakingjoes.cf +freakycheats.com +freakygems.oucreate.com +fredrickfrank200.000webhostapp.com +fredriksdallidkoping.se +free1.usa.realtracker.com +free2apps.in.net +free411games.com +free.adultcomix.biz +free-adup.com +freeanzeigen.de +free.aol.com +freebanner.com +free-banners.com +freebiegb.co.uk +freebiesms.co.uk +freebitcoinfaucet.website +freebitcoins.online +freebitmoney.com +freecamdollars.com +freecameraonus.com +freecameraprovider.com +freecamerasource.com +freecamerauk.co.uk +freecamsexposed.com +free.cartoonpornguide.com +freecast.ivwbox.de +freecharge.demdex.net +freechat.llil.de +freechecknow.freeupgradelive.com +freecodecs.us.intellitxt.com +free.content.streamray.com +freecoolcash.com +freecoolgift.com +free-counter.5u.com +free-crochet-pattern.com +freedailydownload.com +free-deals.faith +freedesignerhandbagreviews.com +freedinnersource.com +freedoladowania.pl +freedomart.cz +freedomcentralnews.com +freedomcitychurch.org +freedomental.com +freedownloadcenter.uk.intellitxt.com +freedownload.in.net +freedownloadmanager.uk.intellitxt.com +freedownloadzone.com +freedvddept.com +freeelectronicscenter.com +freeelectronicsdepot.com +freeelectronicsonus.com +freeelectronicssource.com +freeentertainmentsource.com +freefblikes.phpnet.us +free-fbook-traffic.com +free-fb-traffic.com +free-floating-buttons.com +freefoodprovider.com +freefoodsource.com +freeforums.org +freeforumsorg.skimlinks.com +freefuelcard.com +freefuelcoupon.com +freegame2all.com +freegamedl.net +free-game-downloads.mosw.com +freegamesplay.online +freegamessource.com +freegasonus.com +freegasprovider.com +freegeoip.net +free-gift-cards-now.com +freegiftcardsource.com +freegiftcode.com +freegiftreward.com +free-gifts-comp.com +free-gluten.ru +freegoogla.vicp.net +freegroupvideo.popunder.ru +freehackpl.com +freehanbam.net +freehealthpoints.com +freehelpforu.co.in +free.hostdepartment.com +free.hotsocialz.com +freeimghost.trafflow.com +freeinvisiblecounters.com +freeipodnanouk.co.uk +freeipoduk.com +freeipoduk.co.uk +free.iwf.com.my +freejabs.com +freelances-online.com +freelaptopgift.com +freelaptopnation.com +free-laptop-reward.com +freelaptopreward.com +freelaptopwebsites.com +free-leurs.com +freelifetimefuckbook.com +freelogs.com +freelotto.com +freelyrics.win +freem1.5gbfree.com +freemags.cc +freemaintenancesysforpcandmac.top +freemasstraffic.com +freemb17.cloud +freemedia.in.net +freeminecraft.cc +freeminecraftgiftcode.net +freemobcompte.net +freemobileaps.eu +freemobile.compte.portabilite-fmd.net +freemobile-enligne.com +freemobile-espace.com +free-mobile-facture.com +freemobile.fr-services-facturations.originthenovel.com +free-mobile.globaldataince.com +free-mobile.host22.com +free.mobile.infoconsulte.info +freemobilepe.com +free-mobile.reactivei-idfrs.com +freemobile.recouvrement.webmaster-telecommuns.net +freemobile.tombola-produits.com +free-money.host.sk +freenation.com +freenew.net +freenode.info +freenom.link +freeoffers-toys.com +freeolders.com +freeonlineusers.com +free-onlinlive.rhcloud.com +freepattern.ru +freepayasyougotopupuk.co.uk +freepay.com +freepayment-loginonline-account-com.cf +freeplasmanation.com +freeproxysites.win +free.realtracker.com +freerestaurantprovider.com +freerestaurantsource.com +free-rewards.com-s.tv +freeseedsonline.com +freeserials.spb.ru +freeserials.ws +freeservmobidata.com +free-share-buttons.com +freeshoppingprovider.com +freeshoppingsource.com +freesitetest.com +free-social-buttons.com +freestar-d.openx.net +free-stats.com +freestats.com +free-stats.i8.com +freestats.tv +free-stock-illustration.com +freetangodownload.com +free.thesocialsexnetwork.com +freethingstodoinfrance.com +freetvonline.com.pl +freeuploader.com +freeuploader.ml +free-viagra.polybuild.ru +freevideo.biz.nf +freevideodownloadforpc.com +free-video-tool.com +free-virus-scan.100gal.net +freewarehome.us.intellitxt.com +freewarepalm.uk.intellitxt.com +freewebcards.com +freewebcounter.com +freewebs.com +freewebtown.com +freewhatsappload.com +freewl.xinhua800.cn +free.xxxcounter.com +freezemac.tech +freezwrap.com +freightmatellc.com +fremd7.ir +french-wine-direct.com +frequiry.com +freshberry.com.ua +freshchoiceeb5.com +freshdz.com +freshfeed.jp +freshiuz.com +freshmac.space +freshshake.net +freshsuperbloop.com +fresht990.com +freshtime.com.pk +freshupdate.safesystemupgrade.org +fr-espaceclientscv3-orange.com +fr-espaceclients-orange.com +fresshly.5gbfree.com +fretiolo.com +frevolore.com +freza-sverlo.ru +fr.fabulashesbytrisha.com +friendlist.pl +friendlyduck.com +friends4events.com.mx +friendslistfbb.blogspot.com +friendsofdocteurg.org +friendsofkannur.com +friendsofolajones.org +friendtest.us.intellitxt.com +friendviewer.pl +frigonare.com +friket.com +frillasboutiqours.co.uk +fripp54.xyz +frisconsecurity.com +friskvardskupongen.se +frivgame250.com +frizkon.com +fr.mediaplayercodecpack.com +fr-mobilefree.com +fr-mobileid-free.info +fr-mobiles-free.info +fr-mobille-free.info +fr.netlog.com +frntiernet.net +froggytest.fr.intellitxt.com +froggytube.com +frojdafsverige.se +froling.bee.pl +fromform.net +fromgoddesstogod.com +fromhelps54.recisteer43.tk +from-register23.d3v-fanpag3.cf +fromru.su +fromslowmactofastmac.com +frontend-loadbalancer.meteorsolutions.com +frontiertradegroup.com +frontpaddockcafe.com.au +frontpagecash.com +frontpagemixtapes.com +frontpage-stats.rbl.ms +frontrangedharmapunx.com +front.ru +front.to +frostsalex.su +frostsaley.su +frostsalez.su +frozenhits.webradioo.net +fr-paypal-free.com +frpcpaabkn.com +frranciscanalliance.org +frs7.com +fr-service-free.net +fr.sitestat.com +fr.slidein.clickintext.net +fr-subiscribe-free.info +frtya.com +frtyb.com +fruitlauncher.com +frutescent-chase.000webhostapp.com +frutimports.com.br +fr.westernunion.com.fr.fr.session-expired.html.trupaartizan.ro +fryzjerstwogogu.pl +fs10.fusestats.com +fs-11.com +fsafedepositvaultltd.com +fsagkp.com +fsakhalin.ru +fsalas.com +fsc.org.pk +fscout24.oewabox.at +f-scripts.co.nr +fsdressbd.com +fsepl.com +fshanyan.com +fshdmc.com +fshonly.com +fshwb.com +fsjxc.com +fslhtk.com +fsl.sytes.net +fspys.pl +fsqiaoxin.com +fsslg.com +fstuoao.com +fsu.rutzcellars.com +f-sy.com +fszls.com +ft2.autonomycloud.com +ftd-lan.de +ftdownload.com +f.thanksearch.com +ftimer.pl +ftns.ru +ftop9000.com +ftpcontent.worldnow.com +ftpd.kobatochan.co +ftpd.ticbeat.co +ftp.flyfishusa.com +ftpictures.co.uk +ftp-identification.com +ftp.oldfortress.net +ftp-reklama.gpd24.pl +ftsz.com +fttcj.com +ftvcash.com +ftwashingtonelite.net +fuadizzaturrohman.id +fucabook.cf +fuckmill.com +fuck.org +fud.cn +fuefghgsghdchggcxhhhgdxs.3eeweb.com +fuel-cellnews.com +fuel-gas.com +fuel-science-technology.com +fuerteaventura.de +fugarif.ga +fu.golikeus.net +fugsugmis.com +fujikikaku.info +fuji-ncb.com.pk +fukkad.com +fullcolorcoverage.com +fulldownload.pl +full-edition.info +fullfileaccess.com +fullgirl.ru +fullifefoundation.com.au +fullkanga.com +full-movies-online.cba.pl +fullplayer.pl +fullreviews.top +fumadosdouro.pt +fun2cell.net +fun2me.pl +fun3.pl +funbuddyicons.com +funchill.com +fun-clix.com +funcrushgames.com +functional-business.com +functionalclam.com +fundacionbraun.com +fundacionsocialsantamaria.org +fundingcirlcle.com +fundoarequipa.com +fundoconcon.cl +fundoinativofgts.com.br +fundplatzarchiv.de +fundsmatuehlssd.com +fun-e-cards.com +funerariacardososantos.com.br +funfone.me +fungamelands.com +fungifts4u.com +fungirlsgames.net +fungist.net +fungshing.com.hk +funipel.com.br +funklicks.com +funkucck.bluerobot.cl +funkybluemonkey.com +funkyfruit.co.za +funkyrobot.ca +fun.lbn.ru +fun-mobi.pl +funnel0.adinfuse.com +funnelchair.com +funnel.co.za +funnymama.com +funnyordie-d.openx.net +funnypica.com +funnyreign.com +funonlinehd.com +funpageexchange.com +funponsel.com +funriver.pl +funsilly.com +funskan.pl +funskins.ezthemes.com +funsolo.net +funtabsafe.com +funtoonez.com +funtopliste.de +funtripsallover.com +funwebproducts.com +fuoriskema.it +fuqi3p.com +fuqiaiai.com +fuqn.com +fureverhomesdogrescue.com +furniturecom.112.2o7.net +furnlevitz.112.2o7.net +fuse.loosepattern.com +fusetv.112.2o7.net +fuse.ventures +fusionads.net +fusion.adtoma.com +fusionmedia.co.uk +fusionquest.com +fusoradio.info +fusuigimix.5gbfree.com +fus.walla.co.il +futbolkin.ru +futbolkisales.ru +futcamisas.com.br +futurelooks.us.intellitxt.com +futuremeditation.de +futurepay.globway.eu +futurepublications.uk.intellitxt.com +futuristicfairies.com +fuviseni.angelfire.com +fuwsbmudp.top +fuzhoujiudui.com +fuzzyflavor.com +fvegt3.desio-web.co.at +fvid.atm.youku.com +fvjxdtyamds.info +fvtmaqzbsk.ivydancefloors.com +fw1a.chemspunge.co.za +fw2a.chemspunge.co.za +fw433.npic.ac.cn +fw.adsafeprotected.com +fwbntw.com +fwcpafl.com +fwdbreuse.xyz +fwdservice.com +fwg0b0sfig.s.ad6media.fr +fw.qq.com +fx45.pp.ru +fx96.com +fx-brokers-review.com +fxcopy786.com +fxgallery.com +fx.gtop.ro +fx.gtopstats.com +fxlayer.net +fxpcw.com +fxstra.com +fxstyle.net +fxtips.ru +fxweb.com.br +fxyc0dwa.com +fxztjnsb.com +fybw.net.cn +fyjconstructora.com +fyl.com.ru +fym.com.ru +fynskemedieradmin.adservinginternational.com +fyqydogivoxed.com +fysiolosser.nl +fyxaroo.com +fyxm.net +fz139.ttk.ru +f.zeroredirect2.com +f.zeroredirect.com +fzgil.com +fzj37tz99.com.ng +fzzsdz.com +g00gledrivedevelopment-edouardmalingue-com.aceleradoradeempresas.com +g0365.com +g0rj1om33t.ru +g1hmcmp.com +g1.idg.pl +g1.v.fwmrm.net +g2.112.2o7.net +g22rbb7.com +g2.gumgum.com +g2kfitness.com +g2.us.intellitxt.com +g33.org +g.3gl.net +g3i9prnb.myutilitydomain.com +g3t4d5.madison.com +g3.us.intellitxt.com +g48ky2.tvcjp.gq +g4p.grt02.com +g4.us.intellitxt.com +g4va.kdcad.com +g5fzq2l.com +g5h9a6s5.at.ua +g5.us.intellitxt.com +g6fitness.com +g6h54as5dw.at.ua +g6tk.com +g7m.pl +g8qxp.ads.tremorhub.com +ga.5.p2l.info +ga87z2o.com +gaae.hit.gemius.pl +gaagle.name +gaat.hit.gemius.pl +gaba.hit.gemius.pl +gabe.hit.gemius.pl +gabeshop.ru +gabg.hit.gemius.pl +gabioesealambradosbrasil.com.br +gabis-bloghaeuschen.de +gabrielconde.com.uy +gabriellerosephotography.com +gabrielnanya.com +gabsmash.us.intellitxt.com +gaby.hit.gemius.pl +gacela.es +gacstaffedevents.com +gacz.hit.gemius.pl +gad.dj4b9gy.top +gadgeteer.pdamart.com +gadgetmaster.in +gadgets.fosfor.se.intellitxt.com +gadgetsytecnologia.com +gad.impresionesweb.com +gadk.hit.gemius.pl +g.admedia.com +gadminwebb.com +g.admob.com +gadnet.hit.gemius.pl +g.adnxs.com +gadproducciones.com +g.adspeed.net +gads.pubmatic.com +gadvertisings.com +gadzet9999.atwebpages.com +gae.caspion.com +gaee.hit.gemius.pl +gael-s.ru +gaetanorinaldo.it +gaf-company.clean.to +gagasifm.co.za +gagerocks.com +gagrasector.ru +gahaf.go360.com.my +gahu.hit.gemius.pl +gai9h7.top +gaiaidea.com +gaihotnhat18.byethost7.com +gail.hit.gemius.pl +gaincommodity.com +gainrecord.com +gaja79.com +gajagabanstore.co.za +gajime.popunder.ru +gajo.hit.gemius.pl +gakz.hit.gemius.pl +galad.eu +gala-show-event.de +galateiapress.com +galatransmisja.pe.hu +galaxien.com +galaxy-family.ru +galaxyflowers.ru +galaxyinvi.com +galaxyjet.com +galb.hit.gemius.pl +galeon.com +galerymusic.id +galindia.hit.gemius.pl +gallatycleaning.com +galleries.securesoft.info +galleries.thefattygirls.com +gallerily.com +galleryawesome.com +gallerycrush.com +galleryelit.ru +gallery.emptam.xyz +gallerylisting.com +galliagroup.com +gallictures.com +gallosdelcibao.com +gallys.nastydollars.com +gallysorig.nastydollars.com +galt.hit.gemius.pl +galtthemes.ezthemes.com +galv.hit.gemius.pl +gam.adnxs.com +gambarkatabaru.com +gambarxkata.co +gambero3.cs.tin.it +gambling911.adrevolver.com +gamblingnerd.com +gamd.hit.gemius.pl +game-advertising-online.com +gameangel.com +gameatlas.com +gameboy.ign.us.intellitxt.com +gamecenter.de +gameconsolerewards.com +gamedata.box.sk +gamedayassist.com +gamedayhouse.com +gamedev.us.intellitxt.com +gameflect.com +gamegape.co +gamegoldonline.in +gamehouse.com +gamehut.us +gameinaction.com +gameinstallfiles.com +gamejil.com +gamelights.ru +gameloversclub.com +gamemalamall.com +game-mmorpg.net +gameonasia.com +game-online-video.petrovka.info +gameplaylabs.com +gameplexcity.com +gamepor.com +gameprimary.com +gamerevoluton.com +gamerextra.com +gamersad.com +gamerscorps.com +gamerstemple.us.intellitxt.com +gamerz123.com +games4u.ws +gamesevideogames.com.br +gamesfly.com +gamesharck.com +gamesharkcentral.com +gamesindustry.uk.intellitxt.com +gamesiteads.com +gamesites100.net +gamesites200.com +gamesitestop100.com +games.kolossale.ru +gamesprite.me +gamesradar.us.intellitxt.com +games-toys-bonuspath.com +games-toys-free.com +games-toys-rewardpath.com +gamestrack.com +gamesw.oewabox.at +game-top.su +gametorrents.io +gamevalue7.weebly.com +gamevance.com +gameworldbr.top +gamewrath.com +gamezhq.nl +gaming-journal.com +gaming-online.petrovka.info +gamingspark.com +gamismodern.com +gamk.hit.gemius.pl +gamtelfc.gm +gandertrading.com +gandjaircraft.com +gan.doubleclick.net +ganeshabakery.id +gangasperfumes.com +gangda.info +gangsterrock.com +ganiinc.co.za +gannettbroadcast.us.intellitxt.com +gannett.demdex.net +gannett.gcion.com +gannettwisconsin.us.intellitxt.com +ganok.eu +ganterdsa.com +gantiementspro.xyz +gao1122.com +gaohaiying.com +gaomalei.com +gaomoeis.ga +gap.112.2o7.net +gapl.hit.gemius.pl +garagegold.net +garagemapp.com +garatiespelreferendum.com +garazowiec.pl +garciniacambogiascience.com +gardeeniacomfortes.com +gardene.ru +gardenhomesrealty.com +gardensofsophia.org +gardenweb.us.intellitxt.com +gardenyumacafe.yumawebteam.com +gardinotec.ind.br +garfur.ga +gargfireappliances.com +gargiulocpa.com +garlena.com +garnirwanda.com +garo.hit.gemius.pl +garotadecopa.com +garotziemak.be +gars.hit.gemius.pl +gartahemejas.com +gar-tech.com +gartenmobel.de +garudaairlines.com +garu.hit.gemius.pl +gasasthe.freehostia.com +gask.hit.gemius.pl +gasser.5gbfree.com +gassystem.co.kr +gastrointestinal.1.p2l.info +gasurvey.gemius.com +gatec.eu +gatech.pl +gatehousemedia.122.2o7.net +gate.hyperpaysys.com +gatekeeper.tss.net +gatesleeds.com +gate.technopolis.kirov.ru +gate.timstackleshop.es +gateway.122.2o7.net +gatewaymedia-d.openx.net +gather.us.intellitxt.com +gaton.eu +gator.com +gatr.hit.gemius.pl +gatsev.com +gaua.hit.gemius.pl +gavih.org +gavzad.keenspot.com +gay.adultgalls.com +gayathihotel.com +gayatrictscan.com +gay-file.com +gaygalls.net +gay-long-hair.cz +gaytube.com +gayxperience.com +gazeta.adfox.ru +gazeta.hit.gemius.pl +gazetainfo.pl +gazetatmetemirashqiptare.com +gazetteextra.advertserve.com +gazgaped778.com +gazobeton-p.com.ua +gazoblok.net.ua +gazporno.com +gaz-voshod.ru +gazzetta.adman.gr +gb0rd.com +gbanners.hornymatches.com +gbdug.com +gbegidi.info +gbhealing.ru +gbi-garant.ru +gb.impresionesweb.com +gbjfc.rsvpgenius.com +g.blogads.com +gbp.ebayadvertising.triadretail.net +gbr-7stars-tracking.adalyser.com +gbr-carat-tracking.adalyser.com +gb.rio-mz.de +gbr-mbww-tracking.adalyser.com +gbr-smv-tracking.adalyser.com +gbr-tbh-tracking.adalyser.com +gbscript.com +gbsmakina.com +gbub.com +gcabs.com.au +gcads.osdn.com +g-c.com +gcdn.2mdn.net +gcfapress.com +gc.gcl.ru +gchronics.com +gcir.gannett-tv.com +gcirm2.indystar.com +gcirm.argusleader.com +gcirm.argusleader.gcion.com +gcirm.battlecreekenquirer.com +gcirm.burlingtonfreepress.com +gcirm.centralohio.com +gcirm.centralohio.gcion.com +gcirm.cincinnati.com +gcirm.citizen-times.com +gcirm.clarionledger.com +gcirm.coloradoan.com +gcirm.courier-journal.com +gcirm.courierpostonline.com +gcirm.customcoupon.com +gcirm.dailyrecord.com +gcirm.delawareonline.com +gcirm.democratandchronicle.com +gcirm.desmoinesregister.com +gcirm.detnews.com +gcirm.dmp.gcion.com +gcirm.dmregister.com +gcirm.dnj.com +gcirm.flatoday.com +gcirm.gannettnetwork.com +gcirm.gannett-tv.com +gcirm.greatfallstribune.com +gcirm.greenvilleonline.com +gcirm.greenvilleonline.gcion.com +gcirm.honoluluadvertiser.gcion.com +gcirm.idahostatesman.com +gcirm.idehostatesman.com +gcirm.indystar.com +gcirm.injersey.com +gcirm.jacksonsun.com +gcirm.laregionalonline.com +gcirm.lsj.com +gcirm.montgomeryadvertiser.com +gcirm.muskogeephoenix.com +gcirm.newsleader.com +gcirm.news-press.com +gcirm.ozarksnow.com +gcirm.pensacolanewsjournal.com +gcirm.press-citizen.com +gcirm.pressconnects.com +gcirm.rgj.com +gcirm.sctimes.com +gcirm.stargazette.com +gcirm.statesmanjournal.com +gcirm.tallahassee.com +gcirm.tennessean.com +gcirm.thedailyjournal.com +gcirm.thedesertsun.com +gcirm.theithacajournal.com +gcirm.thejournalnews.com +gcirm.theolympian.com +gcirm.thespectrum.com +gcirm.tucson.com +gcirm.wisinfo.com +gclabrelscon.net +gclass.it +gconsolidationserv.com +g-constructionsarl.com +gcounter.hosting4u.net +gctreasurehunters.com +gcup.ru +gcwkotlakhpat.edu.pk +gd10.doubleclick.net +gd11.doubleclick.net +gd12.doubleclick.net +gd13.doubleclick.net +gd14.doubleclick.net +gd15.doubleclick.net +gd16.doubleclick.net +gd17.doubleclick.net +gd18.doubleclick.net +gd19.doubleclick.net +gd1.doubleclick.net +gd20.doubleclick.net +gd21.doubleclick.net +gd22.doubleclick.net +gd23.doubleclick.net +gd24.doubleclick.net +gd25.doubleclick.net +gd26.doubleclick.net +gd27.doubleclick.net +gd28.doubleclick.net +gd29.doubleclick.net +gd2.doubleclick.net +gd30.doubleclick.net +gd31.doubleclick.net +gd3.doubleclick.net +gd4.doubleclick.net +gd5.doubleclick.net +gd7.doubleclick.net +gd8.doubleclick.net +gd9.doubleclick.net +gd.ads.vip.gq1.yahoo.com +gdanskie-centrum-laptopow.pl +gdbxltd.co.uk +gdby.com.cn +gdcdd.co +gdcentre.ru +gddgjc.com +gddingtian.com.cn +gde.adocean.pl +gdebestkupit.ru +gdebg.hit.gemius.pl +gdecz.hit.gemius.pl +gde-default.hit.gemius.pl +gdeea.cc +gdeee.hit.gemius.pl +gdeil.hit.gemius.pl +gdelt.hit.gemius.pl +gdelv.hit.gemius.pl +gders.hit.gemius.pl +gdesk.hit.gemius.pl +gdetr.hit.gemius.pl +gdeua.hit.gemius.pl +gd.geobytes.com +gdhongyu17.cn +gdhrjn.com +gd.mlb.com +gdoc01.com.ng +gdoc.info +gdoc.nanomidia.com.br +gdocs.download +g-docs.pro +gdocs.win +gdollar.romecenterapt.com +gdox.coxslot.com +gdriiiiiivv.com +gdrindustries.com +gdrw4no.com.cn +gdsfes.bondflowe.co.za +gdtrbxg.com +gdyn.cnn.com +gdyn.cnngo.com +gdyn.nascar.com +gdyn.nba.com +gdyn.trutv.com +gdyn.veryfunnyads.com +gdzjco.com +ge-0-0-1-edge1.sc9.admob.com +ge-0-0-43-crs1.sc9.admob.com +ge0ip.com +ge0ip.net +ge0ip.org +ge365.net +gearinformer.com +gebrauchtwarenmarkt.de +gebzeikincielmagazasi.com +geckopropertyservices.com.au +geek24.pl +geekograffi.com +geekpets.net +geeksdrivesavers.com +geekstogo.us.intellitxt.com +geek.us.intellitxt.com +gee.lanardtrading.com +gee.mothy.net +gei7oos.top +geil.alon3.tk +geilehausfrauen.net +geileweiber.tk +geizhals.oewabox.at +gelezki.com +gelorametalpratama.com +gemadhu.hit.gemius.pl +gemara.com +gembird.com +gemer.com.pl +geminiindia.com +gemini.yahoo.com +gemius.pl +gem.pl +gemshairandbeauty.com +gemtrextravel.com +gen2server.com +gencleryt.com +genconnectmentor.com +gendosoft.com +genealogia.ga +geneibra.com +genelesser.com +general-catalog.net +generalchemicalsupply.com +generalcompex.com +generalfil.es +generalmediaadhu.hit.gemius.pl +generalporn.org +general.visualdna-stats.com +generatecamera.com +generatevelocit.com +generationgirls.com +generation-nt.fr.intellitxt.com +generator.carsdream.com +generatorfreegames.blogspot.com +generator.gq +generatorkodow.hpu.pl +generatorsmysore.com +generatvelocity.com +genericlowlatencyasiodriverhq.aircus.com +genericnexium40mg.net +generic-onlinenexium.net +generic-pills-online.com +genericviagrasildenafiled.net +generousdeal-a.akamaihd.net +genesisandlightcenter.org +genesisphoto.my +genetree.112.2o7.net +genetworx.com +genevashop.it +gen-ever.com +genforumgenealogy.com +gen-hydrocodone.polybuild.ru +genih-i-nevesta.ru +geniuslab.ru +geniusvibe.com +genmay.us.intellitxt.com +genrepet.se +genrugby.com +genteatsss.com +gentianinegonochorism.com +genuinetitlemlsettlment.com +genuss-massage.de +genvallaif.se +gen-xinfotech.com +geo314.eu +geoaddicted.net +geoads.com +geoads.eurorevenue.com +geoads.osdn.com +geoapi123.appspot.com +geobanner.adultfriendfinder.com +geobanner.friendfinder.com +geobanner.getiton.com +geobanner.passion.com +geobanner.seniorfriendfinder.com +geobeacon.ign.com +geocean.co.id +geo.connexionsecure.com +geocounter.net +geo.crtracklink.com +geo.deepmetrix.com +geo.digitalpoint.com +geo-errserv.btrll.com +geofence.sys.miui.com +geoffshannon.com.au +geo.gexo.com +geo.gorillanation.com +geogospeltroupe.com +geo.hyperlinksecure.com +geo.interia.pl +geoip.edagames.com +geoip-lookup.vice.com +geoip.p24.hu +geoip.securitetotale.com +geo.jetpackdigital.com +geoloc11.geovisite.com +geoloc12.geovisite.com +geoloc13.geovisite.com +geoloc14.geovisite.com +geoloc16.geovisite.com +geoloc17.geovisite.com +geoloc2.geovisite.com +geoloc4.geovisite.com +geolocation.t-online.de +geometrica-design.co.uk +geometriksconferencesdisques.com +geo.nbcsports.com +geonology.com +geo.offermatica.com +geopolice.com +geo.precisionclick.com +geo.query.yahoo.com +georgewbush.112.2o7.net +georgewbushcom.112.2o7.net +georgia.lon.spotify.com +georgia-purcell.myjino.ru +geoross.com +geo.safelinktracker.com +geo.sanoma.fi +geoservice.curse.com +geosign.112.2o7.net +geotecnicahidraulica-ambiental.com +geotoxicsolutions.com +geo-um.btrll.com +geovisite.com +geoweb.e-kolay.net +geo.widdit.com +geo.xxxblackbook.com +geo.yad2.co.il +geo.yahoo.com +geo.ziffdavis.com +geraldgore.com +gerardfetter.com +ger.bibliebooks.org +ger.clicebooks.org +gerenfa.chungcheng.net +gerhard-schudok.de +gerla.ru +germanlis.com.gr +germanwinge.de +germes-trans.com +germetiki.com.ua +germnertx.com +gernewt.info +geros.org +gerozetace.com +gesanet.net +geseduma.es +gesfinka.es +gesgc.com +gespensterwelt.de +gesynchronycapital.com +getaclueamerica.com +getacool100.com +getacool500.com +getacoollaptop.com +getacooltv.com +getafreeiphone.org +getagiftonline.com +getandpay.com +get-answers-fast.com +get-avast.com +getbiomass.com +getcarisoprodol.polybuild.ru +getcertifiedonline.com +getclicky.com +getdatanetukscan.info +getfiles.chelae.com +getfilesfrom.net +get-free-traffic-now.com +getgamecheats.com +getget.rs +gethelp02.atwebpages.com +gethelpmac2.xyz +gethelpusa3.xyz +gethelpusa4.xyz +gethelpusa9.xyz +get.hitbox.com +getitgoing.xyz +getiton.com +getlaid-xxxhookupdirect.com +getlamborghini.ga +getlink.gq +getmailcounter.com +getmeaticket.co.uk +get.mirando.de +getmiro.com +getmyads24.com +getmyads.com +get.mycounter.com.ua +get.mycounter.ua +getmyfreebabystuff.com +getmyfreegear.com +getmyfreegiftcard.com +getmyfreelaptop.com +getmyfreelaptophere.com +getmyfreeplasma.com +getmylaptopfree.com +getmynumber.net +getmyplasmatv.com +getoutofdebtfree.org +getouttimes.com +getpcfixed022.xyz +getpcfixed033.xyz +getpcfixed044.xyz +getpcfixed066.xyz +getpcfixed088.xyz +getpopunder.com +get-quadcleaner.com +getrank.net +getreservations.com +getresponse.com +getrockerbox.com +getsearchlist.com +get-seo-domain.com +get.serveddownmanage.com +getsoftnow.smallandprecise2upgradesnew.review +getsoftnow.smallandprecise2upgradingnew.review +getsoftware.today +getspecialgifts.com +getspinner.net +getstatistics.se +getsupport.apple.com-apple.it-supporto.apple.intamie.com +getsupport-icloud.com +gettern.info +getthis.pl +gettpromos.com +gettyimages.122.2o7.net +get.whitesmoke.com +getyour5kcredits0.blogspot.com +getyourfreecomputer.com +getyourfreetv.com +getyourgiftnow2.blogspot.com +getyourgiftnow3.blogspot.com +get-your-social-buttons.info +gewinnspiel-sachsenhausen.de +gezamelijk-helpdkes.nl +gezinti.com +g-f5fun.count.brat-online.ro +g-f5news.count.brat-online.ro +gfaq.ru +gfbnr.com +gfdgdfsfsgg.astuin.org +gfds.pl +gfeh.de +gfifasteners.com +gfihcfnwghir.com +gflinks.industrybrains.com +gftuaope.traeumtgerade.de +gfx.webmasterprofitcenter.com +gfycbtsr.com +gg.adocean.pl +ggaibb.com +ggaimmm.com +gg-arena.ru +ggffjj.com +gghairextension.com +gg.hit.gemius.pl +ggiaro.com +gglcash4u.info +ggledocc.com +ggo.directrev.com +ggoogldoc.com +ggsdewsda.com +ggt-emsstrom.de +ggtnrxqj.com +ggwwquzxdkaqwerob3-dd257mbsrsenuindsps.dsnxg.57670.net +ghacks.de.intellitxt.com +ghalibaft.com +ghara.in +ghardixz.net +ghasrngo.com +ghazel.ru +ghernnqr.skyrock.com +gheus.altervista.org +ghgmtcrluvghlwc91.com +ghib.iewical.eu +ghidneamt.ro +ghmbg.hit.gemius.pl +ghm_bulgaria.hit.gemius.pl +ghmhu.hit.gemius.pl +ghmme.hit.gemius.pl +ghmpl.hit.gemius.pl +ghmrs.hit.gemius.pl +ghmtr.hit.gemius.pl +ghost8.cn +ghostvisitor.com +ghousiasports.com +ghprofileconsult.com +ghura.pl +ghwrsbuggingen.de +ghyt654erwrw.gets-it.net +giaitri321.net +giants.yourzip.co +gianttreetoptours.com.au +gibbywibbs.com +gic-egypt.com +gicqdata.com +giddycoat.com +gie8aic.top +giesserei.com +gifastcompanycom.112.2o7.net +gifspics.com +giftcardchallenge.com +giftcardsurveys.us.com +giftrewardzone.com +giftsandchallengesbook.net +giftsandchallengesbook.org +giftscom.122.2o7.net +gifts-flowers-rewardpath.com +gifts.invity.com +giftsofsnowdown.com +gift-today85.online +gigabitdownloads.com +gigablast.com +gigaia.com +giggle.rdmadnetwork.com +gigiregulatorul.us.qtgpqio.tk +gig-lb.com +gigup.net +gigwise.us.intellitxt.com +gigya.com.invalid +gihmex.com +gijsqj.com +gilbertbanda.net +gilchristtitle.com +gilletteraz.in.net +gillingscamps.co.uk +gillout.oewabox.at +gilmoregirlspodcast.com +gilsonchiro.xyz +gilutech.com +gilvision.com +gim.com.ua +gimg.baidu.com +gimmethatreward.com +ginfovalidationrequest.com +gingert.net +gin-gliders.com +ginnyphillipsphotography.com +ginot-yam.com +giorgiaviranti.altervista.org +giorgiovanni827.x10host.com +giraffebank.com +girapizzadelivery.com.br +girginova.com +girlfriendfuckhard.com +girlgamerdaily.com +girlownedbypolicelike.blogspot.com +girlporn.ru +girlsaiming.de +girlsaskguys.us.intellitxt.com +girlsatgames.ru +girlsneedhelp.info +girlspicsa.com +girokontotips.xyz +giselealmeida.net +giteseeonee.be +gitinge.com +gitloinvestbud.com +giu9aab.bid +giuliosyonkers.com +giunee.com +giurimedia.com +giustiziarepubblicana.org +giustramedical.org +giusybuscemi.it +givagarden.com +giveitallhereqq.com +giveitalltheresqq.com +givemeagammer.com +givememyremote.us.intellitxt.com +given2.com +giveskincs.nd.pl +gjfastcompanycom.112.2o7.net +gjhf.online +gjincscobleizer.112.2o7.net +gj.mmstat.com +gjooge.com +gjxdddludlbfuwdnvtfrl.pro +gjysjl.com +gk170.ru +gk-atlant.info +gkb.com.au +gkcy003.com +gkiklasisjakartautara.or.id +gkkzngresullts.com +gkqthsdsholapet.org +gk.rts.sparkstudios.com +gktt.ru +gkueche.oewabox.at +gkvector.ru +gkye.com +g-lademann.de +glaism.gq +glall.ru +glamourd.lk +glasof.es +glasslockvn.com +glass-msk.ru +glass-pol.net.pl +glavprofit.ru +glazeautocaremobile.com +glb.adtechus.com +glcalibrations.com +glcomputers.ru +glean.pop6.com +glebew4.org.uk +glenavyfamilypractice.com +glen-mhor.com +glenroyvic.com +glicol.kz +glinkss.com +glissbio.com +glitrabd.com +glitter.services.disqus.com +gllcsbqrbfch.com +glmasters.com.br +global797-americanexpress.com +global811-americanexpress.com +globalapi.ad.xiaomi.com +globalbureau.net +globalcharge.com +global-community.nkemandsly.com +globalcorps02.000webhostapp.com +global.ecxtracking.com +global.ekmpinpoint.com +globalgaming.cm +globalgutz.com +global-ics.co.za +globalins.biz +globalismedia.com +globallogisticsunit.com +globalmagatrading.nexuscoltd.com +global.msads.net +global.msmtrakk03a.com +globalnetworkanalys.com +globalnursesonline.com +global-promotions.internationalredirects.com +globalrock.com.pk +globalscam.ga +globalserviceaccount.com +globalserviceautoelevadores.com +globalsolutionmarketing.com +globalsomalia.com +globalsuccess-groupe.com +globalsurfari.com +globaltakeoff.net +globaltrack.com.invalid +globalupdatefbpages.gq +globalvacationnepal.com +globalwebads.com +global.ymtrack.com +globatur.ru +globe7.com +globelogistics.com.ng +globeontehweb.com +globetrotting-culture.ru +globexoil-ksa.com +globile.co +globish.dk +globlaelectronic.com +globocomm.org +globofesta.agropecuariacaxambu.com.br +globus-inter.com +gloda.org.za +glok12.ru +glolibrary.com +glondis.cn +gloomky.com +glopages.ru +gloriajeans.de +glorifyhimnow.com +gloryfactory.pl +glosowanie24.pl +glosowanie.ujm.pl +glovein.says.it +glrajjmec.top +glyh.net +gmads.net +gma.gmail-act4024.com +gmaiils.com +gmailsecurityteam.com +gmandwbvo.top +gmap-group.com +gmarcenaria.com +gmcamino.com +gmchevyapprentice.112.2o7.net +gm.demdex.net +gmdtrk.com +gmgmacfs.112.2o7.net +gmgmacmortgage.112.2o7.net +gmgmcom.112.2o7.net +gmgoodwrench.112.2o7.net +gmgoodwrenchdmaprod.112.2o7.net +gmhummer.112.2o7.net +gm.mmstat.com +gmpartner.de +gm.preferences.com +gms1.ru +gmskdoc.com +g.msn.com +gm.touchclarity.com +gmx.oewabox.at +gne8.com +gneill.com +gninstruments.com.au +gnomeferie.com +gnt09p3zp.ru +gntbcstglobal.112.2o7.net +gntbcstkare.112.2o7.net +gntbcstksdk.112.2o7.net +gntbcstkthv.112.2o7.net +gntbcstkusa.112.2o7.net +gntbcstkxtv.112.2o7.net +gntbcstwbir.112.2o7.net +gntbcstwcsh.112.2o7.net +gntbcstwfmy.112.2o7.net +gntbcstwkyc.112.2o7.net +gntbcstwlbz.112.2o7.net +gntbcstwltx.112.2o7.net +gntbcstwmaz.112.2o7.net +gntbcstwtlv.112.2o7.net +gntbcstwtsp.112.2o7.net +gntbcstwusa.112.2o7.net +gntbcstwxia.112.2o7.net +gntbcstwzzm.112.2o7.net +gntenergy.com +gnuetella.com +go1.lifronlinsure.com +go27.net +go2album.com +go2cloud.org +go2.hit.gemius.pl +go2jump.org +go2mike.ru +go777site.com +go.accmgr.com +go.ad2upapp.com +go.ad2up.com +go.adee.bbelements.com +go.adevolution.bbelements.com +go.adinfuse.com +go.adlt.bbelements.com +go.adlv.bbelements.com +go.admulti.com +go.adnet.bbelements.com +go.adversal.com +go.affec.tv +goa-hotel-institute.com +goal.us.intellitxt.com +goandsmile.pl +go.arbo.bbelements.com +go.arbopl.bbelements.com +go.arboru.bbelements.com +goat.cx +goatse.bz +goatse.ca +goatse.cx +goatsegirl.org +goatse.ru +goautofinance.com +go.bb007.bbelements.com +gobettygo.com +gobicaravan.mn +gobongo.info +gobusinessloan.com +gocab.pe +gocarisoprodol.polybuild.ru +goclick.com +go-clicks.de +go.cz.bbelements.com +god123.cn +godaddy.sp1.convertro.com +godanswerme.5gbfree.com +go.data1rtb.com +god.com.pl +go.deliverymodo.com +godhelper.5gbfree.com +godisgood.sweetkylebear.com +godmode-traders.de +godsadvice.com +godsgame.ru +goergen-kellerpaket.de +goettinger-bikerfreunde.de +go.eu.bbelements.com +go.everli-killz.xyz +go.evolutionmedia.bbelements.com +gofem.oewabox.at +gofficedoc.com +goffi.me +goforexvps.com +go-free-gifts.com +gofreegifts.com +gofydn.com +gogalleryawesome.com +gogameportal.com +go.gba.bbelements.com +gogetgorgeous.com +goggl.com +goggle.com +gogglwe.de +gogle-drive.com +gogofly.cjb.net +gogogossip.com +go.goldbachpoland.bbelements.com +gogole.com.hk +go.goroost.com +gogps.me +gohabbopanel.com +go.idmnet.bbelements.com +go.idnes.bbelements.com +go.ihned.bbelements.com +goingplatinum.com +go-in-search.net +go.intact.bbelements.com +go.jetswap.com +gojexcoffee.id +gojiberriess.apishops.ru +gojiberry500.pl +gojnox.boxtomarket.com +go.jxvector.com +gok-kasten.net +goku.brightcove.com +goldadpremium.com +goldandcard.ru +gold-apple.net +goldbach.hit.gemius.pl +goldbach-targeting.ch +goldbullionandco.com +goldbye.vicp.net +goldcardmedina.com +goldenarcheshotel.net +golden-catalog.pro +goldencorporation.org +goldengate.us +goldenggames.com +goldenliquor.com +golden-praga.ru +goldensscom.org +goldenstatebuilding.info +goldenwest.co.za +goldfighter.se +golds.lp.mydas.mobi +goldstats.com +goldyoung.com +golebiewskikonkurs.pl +golem.de.intellitxt.com +golf18orlando.com +golfaren1.se +golfcard.com.au +golflinkmedical.com.au +golfresa.lucania.se +golfsource.us +go.lfstmedia.com +golftropical.com +golmau.host.sk +golndigo.in +go.lotech.bbelements.com +golrizan.net +golseiten.de +go.mobisla.com +go.mobpartner.mobi +go.mobtrks.com +go.mobytrks.com +go.mooncklick.com +gom-player.gooofull.com +gomusix.com +gomzansi.com +gonextmedia.com +gonintendo.us.intellitxt.com +gonkagladiatorov.ru +gonzogrape.gumgum.com +goo2anywhere.com +goo4anywhere.com +goo8ex8.bid +goobbe.com +go.oclaserver.com +go.oclasrv.com +good2g.com +goodbizez.com +goodblock.gladly.io +goodbookbook.com +goodbytoname.com +goodfoodinberlin.de +goodhopeservices.com +goodhostxx.com +goodluck.howtoflyairplanes.com +good-mummy.ru +goodnewsmessage.890m.com +goodphpprogrammer.com +goodprotein.ru +goodreal.com +goodsblock.marketgid.com +goodshop.ch +goodsmallpets.com +goodyear.122.2o7.net +goody-garage.com +goo.freelogs.com +goog1eanalitics.pw +googfle.com +googglet.com +googgod.com.ng +googlanalytics.ws +googldrive.3eeweb.com +google20.net +googleads2.g.doubleclick.net +googleads4.g.doubleclick.net +googleadservices.com +googleads.g.doubleclick.net +google-anallytics.com +google-analytics.com +googlecentreservices.rockhillrealtytx.com +googlechromeupdates.com +googledocprivategeneral.com +googledoc.raganinfotech.com +google.docs.anjumanexstudents.org +google-docs.org +googledocs.pe.hu +googledrive.continentartistique.com +google.drive.out.pesanfiforlif.com +googledrivepdfview.com +google-drive-services-online.upload97-download88-document-access.mellatworld.org +googlefestas.agropecuariacaxambu.com.br +googlefeud.com +google.file.sidrahotel.com +googlegetmyphotos.pythonanywhere.com +googlegetmysyncphotos.pythonanywhere.com +googlegetphotos.pythonanywhere.com +google-hacks.softonic.fr +googleleadservices.cn +google-liar.ru +google.maniyakat.cn +googlemare.com +googlenews.xorg.pl +googlepetkavanis4.pw +google.plle.pl +googlepl.pl +googlepositions.com +google.poultrymiddleeast.com +google.ryantoddrose.com +googlesyndication.com +googletagservices.com +google.tucows.com +googlevideositemap.com +googlew.com +googlewebmatesrcentral.com +googlewordpad.info +googleworks.tripod.com +googlle.in +googlre.com +googlus.com +googlwe.com +googst2.ru +goolegames.com +gool.frieghtiger.com +goolges.com +go.onclasrv.com +go.oneund.ru +gooogle.blackfriday +goooglesecurity.com +goooogleadsence.biz +goosai.com +goosefishpost.bid +go.padsdel.com +go.padsdelivery.com +go.padstm.com +gopeds.com +gopixdatabase.com +go.playoosh.com +goplayz.com +go.pl.bbelements.com +gopogle.com +go.pol.bbelements.com +gopractors.com +go.pub2srv.com +go-quicky.com +gorabagrata.ru +go-rank.de +gorb82.myjino.ru +go.realvu.net +go.redirectingat.com +gorgeousground.com +gorickrealty.com +gorillanation.us.intellitxt.com +gorina.com +goroda-vsego-mira.ru +gorodservis.ru +goroomie.com +gosarhivrt.ru +gosciefb.pl +gosciniec-paproc.pl +go.searchlock.com +goshibet.com +goska.siol.net +gosofto.com +go.sonobi.com +go.spaceshipads.com +gosreg.amchs.ru +gossipcenter.us.intellitxt.com +gossiponthis.us.intellitxt.com +gossipteen.us.intellitxt.com +go.startnow.com +gostats.com +gostats.ir +gostats.pl +gostats.ro +gostats.ru +gostavoscoth.co.za +go.stirshakead.com +go.straightresults.com +got2goshop.com +gotagy.adk2x.com +gotdy.com +goteborsvarvet.se +gotmud4x4.com +go.todolize.com +gotogotomeeting.com +gotomeetingc.com +gotomontenegro.net +goto.mystreamdelivery.xyz +gotorussia.com +goto.sabreclear.com +goto.trafficmultiplier.com +gotovacations.pk +gotowka-doreki.eu +gotowkatutaj.pl +go.tracksz.co +go.trkreward.com +gottabemobile.us.intellitxt.com +gotwebsite1.com +gotyourgas.com +gouddc.com +goulburnfairtrade.com.au +goumaneh.com +gourcy.altervista.org +gourmandgarden.com +gourmetgiftbaskets.112.2o7.net +gouv.impots.fr.fusiontek.com.ar +govelogistics.com +governance-site0777820.000webhostapp.com +goverwood.ga +go.verymuchad.com +gov.f3322.net +govpro.us.intellitxt.com +go.vrvm.com +gov.yanao.ru +gowin7.com +gowowapp.com +gowreckdiving.com +gox.com.ua +goyalgroupindia.com +go.youlamedia.com +gozatar.com +gozing.directtrack.com +goztepe-cilingir.com +gp0hefr.com +gpaper104.112.2o7.net +gpaper105.112.2o7.net +gpaper107.112.2o7.net +gpaper108.112.2o7.net +gpaper109.112.2o7.net +gpaper110.112.2o7.net +gpaper111.112.2o7.net +gpaper112.112.2o7.net +gpaper113.112.2o7.net +gpaper114.112.2o7.net +gpaper115.112.2o7.net +gpaper116.112.2o7.net +gpaper117.112.2o7.net +gpaper118.112.2o7.net +gpaper119.112.2o7.net +gpaper120.112.2o7.net +gpaper121.112.2o7.net +gpaper122.112.2o7.net +gpaper123.112.2o7.net +gpaper124.112.2o7.net +gpaper125.112.2o7.net +gpaper126.112.2o7.net +gpaper127.112.2o7.net +gpaper128.112.2o7.net +gpaper129.112.2o7.net +gpaper131.112.2o7.net +gpaper132.112.2o7.net +gpaper133.112.2o7.net +gpaper138.112.2o7.net +gpaper139.112.2o7.net +gpaper140.112.2o7.net +gpaper141.112.2o7.net +gpaper142.112.2o7.net +gpaper144.112.2o7.net +gpaper145.112.2o7.net +gpaper147.112.2o7.net +gpaper149.112.2o7.net +gpaper151.112.2o7.net +gpaper154.112.2o7.net +gpaper156.112.2o7.net +gpaper157.112.2o7.net +gpaper158.112.2o7.net +gpaper162.112.2o7.net +gpaper164.112.2o7.net +gpaper166.112.2o7.net +gpaper167.112.2o7.net +gpaper169.112.2o7.net +gpaper170.112.2o7.net +gpaper171.112.2o7.net +gpaper172.112.2o7.net +gpaper173.112.2o7.net +gpaper174.112.2o7.net +gpaper176.112.2o7.net +gpaper177.112.2o7.net +gpaper180.112.2o7.net +gpaper183.112.2o7.net +gpaper184.112.2o7.net +gpaper191.112.2o7.net +gpaper192.112.2o7.net +gpaper193.112.2o7.net +gpaper194.112.2o7.net +gpaper195.112.2o7.net +gpaper196.112.2o7.net +gpaper197.112.2o7.net +gpaper198.112.2o7.net +gpaper202.112.2o7.net +gpaper204.112.2o7.net +gpaper205.112.2o7.net +gpaper212.112.2o7.net +gpaper214.112.2o7.net +gpaper219.112.2o7.net +gpaper223.112.2o7.net +gpapercareer.112.2o7.net +gpapermom104.112.2o7.net +gp.dejanews.com +gpfa.pt +gpirate.com +g-pixel.invitemedia.com +gpms.org.my +g.p.mybuys.com +gpr.hu +g.promosrv.com +g-protv.count.brat-online.ro +gps-brelok.ru +gps-findinglostiphone.com +gpstctx.com +gpswaypoints.co.za +gptplanet.co +gq-catalog.gq +gqwhyjh.com +grabbit-rabbit.com +grabfile.co +grab.nastydollars.com +grabo-container.se +grabraeuber.de +grabtrk.com +gracecore.com +gracelandestate.com +grace.lon.spotify.com +gr.adserver.yahoo.com +grafephot.org.za +graficagibin.com.br +graficasseryal.com +graficazoom.com.br +grafit.pl +grafix.xxxcounter.com +grafpnt.com +grafstat.ro +grahainterieur.com +grahamsmithsurfboards.co.uk +grahapacific.co.id +graminawaaz.in +gramtiopmalionsdons.com +grand-chlen.ru +grandeharbourhome.net +grandesbottees.com +grandis.com.sg +grandmaous.com +grandmatou.net +grandpa.thebehrs.ca +grandprizecaterers.com +granmaguey.com +gransbygdens.se +graotron.tv +grapeshot.co.uk +graphic-design-2016.ru +graphics1.sextracker.com +graphics2.sextracker.com +graphics.adultfriendfinder.com +graphics.medleyads.com +graphics.nastydollars.com +graphicsolutionsok.com +graphics.pop6.com +graphics.streamray.com +graphicwe.org +graphid.com +graphixtraffic.com +gratisblanketter.se +gratis-pc.de +gratis-sexkontakte.com +gratisweb.com +gratkapl.adocean.pl +gratuitbaise.com +gravitron.chron.com +gravityblankes.com +gravityexp.com +graytv.us.intellitxt.com +grazdanin.info +grazeinpeace.com +grease.yodyiam.com +greasypalm.com +greatarcadehits.com +greatbookswap.net +greatdealsuk.co +greatfind-a.akamaihd.net +greatfireoflondon.org.uk +greatgrace.ru +greatlakessurveillance.com +greatmeeting.org +greatmindworksbetter.org +greatness12.zone +greatoneassociates.com +greatshoesever.com +greatsimplicity.com +great-voipphoneoption.com +greatwalltour.org +greatzip.com +gredinatib.org +greenavenuequilts.com.au +greenbirdeg.com +greenbird.info +greencircleart.com +greenconvertible.com +greenculturefoundation.org +greendatainfo.com +greendream.com.ua +greenenvyhealthcare.com +green.erne.co +greenfieldssolicitors.com +greenfm.net +greeninst.com +greenlivable.net +greenrent.de +greenrocketservices.com +greenspiegel.com +greenstockinc.com +green-tea.tv +greentech-solutions.dk +greenvillage.edu.rs +greenvillehousingauthority.com +greenworldholding.com +greenzaim.ru +greetingseuropasqq.com +greetingsyoungqq.com +greetzebra.com +greev.randbinternationaltravel.com +gregpouget.com +gregsblogonline.com +grem.net.ru +grendizer.biz +greystripe.com +grfx.mp3.com +gri98.com +gribkovye-zabolevaniya.com +gribokstop.com +grifdesign.com +griffinshepherdkennels.com +grifoavila.com +grillaserv.ga +grim.miamihouseparty.net +gri.no +grk6mgehel1hfehn.ru +grlarquitectura.com +gr.linkwi.se +grmtech.net +groeipotentie.nl +groepon.de +grond-meester.com +groombinvest.com +groomingfriends.com +grosirkecantikan.com +gross-kleeberg.de +group11.iperceptions.com +groupchatting.netne.net +groupesda.com +groupm.com +groupmoney.ru +growingconfidence.org +growmyfunds.ca +growshop.es +growyourlikes.org +grtyi.com +grubersa.com +grunerandjahr.112.2o7.net +grupmap.com +grupmold.com +grupoaguiatecseg.com.br +grupoamxrj.com.br +grupoarcsi.com +grupocava-mx.com +grupofrutexport.com.mx +grupogcasesores.com +grupografico-pilar.com.ar +grupoimperial.com +grupoliderse.com.br +grupomissael.com +grupopaletplastic.com +grupotartan.com.ar +grupowsbrasil.com +grywalnia24.com.pl +gry-za-darmo.pl +grz67.com +gs1.idsales.co.uk +gsaranyjanos.ro +gsasearchenginerankerdiscount.com +gsasearchengineranker.pw +gsasearchengineranker.site +gsasearchengineranker.space +gsasearchengineranker.top +gsasearchengineranker.xyz +gsautotrading.com +gsbs.com.ua +gscfreight.com.sg +gscounters.eu1.gigya.com +gscounters.gigya.com +gscounters.us1.gigya.com +gsctechinology.com +gsdland.com +gsea.ivwbox.de +gserv.cneteu.net +gservcountys.co.uk +gserv.zdnet.co.uk +gsf-cf.softonic.com +gsg-5.de +gsg.es +gshopee.com +gsicpbs.112.2o7.net +gsimon.edu.free.fr +gsiworld.neostrada.pl +gskindia.co.in +gskpresident.tk +gsmarena.us.intellitxt.com +gsm.biz.id +gsm-center.ru +gsmdc.edu.bd +gsm.elegance.bg +gsmforumbd.gsmforumbd.website +gsmlab.pl +gsm-mobile-phone.beesearch.info +gsmtlf.ru +gsmtop.net +gsntf.com.sg +gsorder.berlin.strato.de +gsp.count.brat-online.ro +gspro.adocean.pl +gspro.hit.gemius.pl +gsscc2015.com +gs.spylog.ru +gstact2017.com +gstatey.net +gstats.cn +gsvx.5gbfree.com +gsyscomms.com +gt47jen.pw +gta-club.ru +gtafive.ml +gta-top.ru +gtb19.acecounter.com +gtb5.acecounter.com +gtcc1.acecounter.com +gtech.com.pk +g.thinktarget.com +gtlt.hit.gemius.pl +gtlv.hit.gemius.pl +gtmedia.us.intellitxt.com +gt-office.com +gtomktw.braincall.win +gtop100.com +g.topguang.com +gtopstats.com +gtownwarehouse.co.za +gtp16.acecounter.com +gtp1.acecounter.com +gtp20.com +gtrack.comlu.com +gtradersoft.com +gtre.com.br +gts-ads.twistbox.com +gtservice-square.com +gttour.anyhome.co.kr +gttr.hit.gemius.pl +gu.5.p2l.info +guagliano.com.ar +guajfskajiw.43242.com +guamcustoms.org +guangdelvyou.com +guanjia.baidu.com +guannan.3322.net +guaranty.com.cn +guardedgovernor.com +guarderiaparaperros.co +guardianlv.us.intellitxt.com +guardlink.org +guardzila.com +guargumsupplier.com +guarusite.com.br +guccigang.com +gudangfoto.info +guerar6.org +guerria-skateboard-tommy.tabrays.com +guerrilla-marketing.com.sg +guest.adultfriendfinder.com +guest.kobatochan.co +gug.ku6cdn.com +guiaconsumidor.com +guiadeserraazul.com +guiamapdf.com.br +guianautico.com +guibranda.com +guicab.ga +gui.cl +guide2poker.com +guide-couvreur.fr +guidedureporting.com +guide.es +guidelineservices.com.qa +guide-pluie.com +guidi.co.uk +guildebzh.info +guinchos24horassp.com.br +guitarbelieve.com +guitar-master.org +guj.122.2o7.net +gukbrindes.com.br +guldsmyckesmedjan.se +gulercin.com +gulf-industrial.com +gulfstreems.com +gulhanhukuk.com +gull.iancugelu.net +gulli.de.intellitxt.com +gullivershouse.com +gulmaran.se +gumblar.cn +guminska.pl +gumorca.com +gumpolice.com +gunbajinatu.5gbfree.com +guncelmedya.net +gungamesz.com +gunggo.com +gunibox.com +gun.vrfitnesscoach.com +guod.me +gupdate4all.com +guptamedianetwork.com +gurbuzyangin.com.tr +gurde.tourstogo.us +guru3d.us.intellitxt.com +guruads.de +gurucheats.com +guru.com1.ru +guruofcasino.com +guru.sitescout.netdna-cdn.com +gussmann-valentien.de +gustavoreisoficial.com.br +guthyrenker.112.2o7.net +guthyrenker.tt.omtrdc.net +gutkewichmann.de +guusmeuwissen.nl +guyilagan.com +guyjin.me +guyouellette.org +guyscards.com +guzheng.com.my +gvc.vn +gvvir.com +gw003.lphbs.com +gwagka.com +gwallet.com +gwa.lphbs.com +gwb.lphbs.com +gwbseye.com +gwc.lphbs.com +gwd.lphbs.com +g.websponsors.com +gwebtools.com +gwebtools.com.br +gw.firesub.pl +gwhwpxbw.bloger.index.hr +gwinnettcfaaa.org +g-wizzads.net +gwmtracker.com +gwmtracking.com +gwp.nuggad.net +gwt67uy2j.co.za +gwudu.com +gwynethpaltrow.ca.tt +gw.youmi.net +gw.zedo.com +gxatatuning.cn +gxguguo.com +gx-in-f109.1e100.net +gxpedia.de +gxplugin.com +gxqyyq.com +gxt.co.uk +gxuppjizf.top +gxwpjc.com +gxxmm.com +gxxyb.net +gyalkingerz.com +gyboo.cruisingsmallship.com +gyffu.com +gylra.cruisingsmallship.com +gymcraft.es +gympal.com.hk +gyodundena.hotmail.ru +gyros.es +gyrotrash.com +gz2.bbsoldes.fr +gzdywz.com +g.zedo.com +g.zeroredirect.com +gzhueyuatex.com +gzknx.com +gzlightinghotel.com +gzqell.com +gztianfu.net +gzxhshipping.com +gzxxzy.com +gzyuhe.com +gzyuxiao.com +h06.hotrank.com.tw +h0rnd0g.popunder.ru +h1317070.stratoserver.net +h148.cn +h1666015.stratoserver.net +h1.msn.com +h1.ripway.com +h21.ru +h2hsuper.netne.net +h2monline.com +h43.pl +h62-213-20-50.ip.syzran.ru +h81.org +h8vzwpv.com +h92ir5s.com +ha8ohfi.top +haanikaarak.com +haapamaenluomu.fi +habaapac.com +habermetre.com +habilitaracessobb.com +habilitariqrcode.000webhostapp.com +habrion.cn +hackairtel.tk +hackboy.hit.bg +hackcafe.tk +hackedgadgets.us.intellitxt.com +hackerz.ir +hackfacebookprofiles.com +hackhero.tk +hackidomsp.blogspot.com +hackindia.tk +hacking-facebook.com +hacking.mysteria.cz +hackkitarena.tk +hacktohack.net +hacktougroup.ru +hackuj.pl +h-adachi.org +hadik.info +haditl.gq +h.admob.com +hadnsomshopper.com +hadriansviews.com +haedhal.com +haedong.es.kr +haelen.com +haematocon2013.com +haevern.de +h-afnetwww.adshuffle.com +hahashka.ru +hahpe0o.top +hai2u.com +hai4aes.top +haifi.com +haifischbar-berlin.de +haihuang-audio.com +haikuware.com +hairboutique.us.intellitxt.com +hair-dos.resourcesarchive.com +hair-select.jp +haitaotm.com +haixingguoji.com +hajierpoil8.pe.hu +hakerzy.net +hakimmie.co.id +hakuba.janis.or.jp +hakunamatita.it +haleefgroup.win +halfords.ukrpts.net +haliciinsaat.com +halifaxportal.co.uk +halifxb-online.com +halitkul.com +halkonlinesube.com +halleberrynude.ca.tt +halliwellcementrendering.com.au +hallmarkibmcom.112.2o7.net +hallmarkteam.com +hallwaystreetsigns.com +halodzwonek.pl +h-alsafwah.com +halstad.se +hamaraswaraj.in +hamburg-tonight.de +hameli.5gbfree.com +hamidtvf.beget.tech +hamilton.ca +hamilton-editing.com +hamletdental.dk +hamloon.com +hamptonapartmentsgy.com +hamptonoaks.ca +hamrehe.com +hamsatours.com +hamter.pe +hanamere.com +hana-naveh.com +hanancollege.com +hanceradiatorandweldingsupply.com +handbagcom.skimlinks.com +handbag.uk.intellitxt.com +handbl.ivwbox.de +handelbot.com +handelsblatt01.webtrekk.net +handelsblatt.met.vgwort.de +handicapbathtubarea.com +handicapvansarea.com +handicapvantoday.com +handicraftmag.com +handlerhackz.tk +handrewind.bid +handsandlegs.ru +hands-oncomputers.co.ug +handssecure.com +handyarchive.com +handymandygirl.ca +hangibolum.com +hanimhadison.com +hanink.biz.ly +hanksbest.com +hanmai.com +hanndec.com +hanocomin.com +hanoman4455.000webhostapp.com +hansacademy.gm +hanuakai.com +hanulsms.com +hanyueyr.com +hanzadekumas.com +hao1680.com +hao1788.cn +hao368.com +hao6385.com +haouzy.info +haoxikeji.com +haphuongfoundation.net +hapjes-maken.eu +happyclipz.de +happydiscountspecials.com +happyhome20.fulba.com +happytrailsrvrepairs.com +harasmorrodoipe.com.br +harborexpressservices.info +harconsumer.112.2o7.net +hardcorepornparty.com +hardcoreware.us.intellitxt.com +hardforum.us.intellitxt.com +hardocp.us.intellitxt.com +hardpornoizle.net +hardwaregeeks.us.intellitxt.com +hardwarezone.us.intellitxt.com +hardyscykel.se +harleyusato.it +harmony-central.us.intellitxt.com +harmonyhealthandbeautyclinic.com +harmonyhollow.net +harms-spedition.de +haroldkroesdak.nl +harpo.122.2o7.net +harrahscom.112.2o7.net +harrenmedia.com +harrenmedianetwork.com +harrisburgoutdoorlighting.com +harrisonbradleyassociates.com +harrisonpofprofiles.2fh.co +harrisonresort.ca +harrow.aa978.com +harry.bradweb.co.uk +harshita-india.com +harshwhispers.com +hartim.com +hartseed.com +harvest176.adgardener.com +harvest284.adgardener.com +harvest285.adgardener.com +harvest.adgardener.com +harvesthotlineaustralia.com.au +hasenalnaser.com +hasfun.com +hashforcash.us +hashigosha.com +hashmi-n-company.com +hashmi.webdesigning.name +haso.pubmatic.com +hasslefreeinsurance.net +hastabakicisi.com.tr +hasurvey2015.com +hasyimmultimedia.co.id +hatchetfilms.com +hatdc.org +h.atdmt.com +hatedriveapart.com +hathor.eztonez.com +hatihat55159.000webhostapp.com +hatoelfrio.com +hatrecord.ru +hatrung.com.vn +hauleddes.com +hauptschule-heepen.de +hausfrauensex18.com +hauswildernessbb.co.za +havakhosh.com +havamedia.net +haveawo.org +haveinc.xyz +havepussy.com +haveserviemanevan.com +haveuheard.us.intellitxt.com +havijrat.zapto.org +havytab.com +hawk123.pulseserve.com +hawk2.5gbfree.com +hawkalloy.com +hayate.biz +hayday.topapk.mobi +haydenshepherd.com +hayghe12.byethost7.com +haymarketbusinesspublications.122.2o7.net +haynet.adbureau.net +hayqua123.byethost7.com +hazardky.net +hazentrumsuedperlach.de +hazirlikkursubesyo.com +hazslm.com +hb4x4.com +hbads.eboz.com +hbadz.eboz.com +hbcbly.com +hbckissimmee.org +hbfdjvhjdfdf.ml +hbmrent.com +hbproducts.pw +hb-redlink-com-ar.servicesar.com +hbrumenterprises.ca +hbunyamin.itmaranatha.org +hbw7.com +hbweiner.org +hbwxzyy.com +hc2.humanclick.com +hcate.com +hc.baidu.com +hchrmain.112.2o7.net +hc-india.co.nf +hcpm.co.in +hd720kino.ru +hd8888.com +hdapp1008-a.akamaihd.net +hdchd.org +hdfc.pp.ru +hd-film.pl +hd-films.pl +hdfilms.pl +hd-filmy.net +hdfreeporno.net +hdhaoyunlai.com +hdho.com +hdimagegallery.net +hdimagelib.com +hdinforotinucleuspages.club +hdmovies.pl +hdmtxh.com +hdmumen.com +hdn.saeednovin.com +hdoro.com +hdpixent.com +hdpixion.com +hdplayer.pl +hdporium.com +hdrart.co.uk +hdrhsy.cn +hdseriale.pl +hd.serial.h2g.pl +hdsport-stream.pl +hdsportstream.pl +hdsportstreams.pl +hdstream24.pl +hdstream.pl +hdtv9.com +hdvod24.pl +hd-vod.pl +hdvod.pl +hdvodtv.pl +hdwalls.xyz +hdxnxxtube.mobi +hdxxpp.com +hdyj168.com.cn +headless.ebkfwd.com +headpress.ru +healbio.ru +healgastro.com +healing-dysplasia.ru +healmytrauma.info +healthbeautyncs.com +health-beauty-rewardpath.com +health-beauty-savingblvd.com +healthcarestock.net +healthclicks.co.uk +healthgiftguide.com +healthgrades.112.2o7.net +healthination.122.2o7.net +healthinfo.healthyspecialnewinfo.rocks +health-line.me +health.msnbc.us.intellitxt.com +healthonhand.com +healthplusconsult.com +healthproductsbuyersguide.com +healthprotection.co.za +healthtexaswomen.org +healthwellnessandmore.com +healthybloodpressure.info +healthyhgh.com +healthyman.info +healthyncdairy.com +healthyspecialnewinfo.rocks +heandraic.com +heanjikendulitijsk.com +heapanalytics.com +heaptickets.com +hearstdigital.122.2o7.net +hearstmagazines.112.2o7.net +hearstugo.112.2o7.net +heartbeats.omtrdc.net +heartrevitalized.com +heart-sp.com +heathergraham.ca.tt +heatherhoney.se +heather.lon.spotify.com +heathkylie.trade +heatingandcoolingutah.com +heatpower.ru +heatproduction.com.au +heavycom.112.2o7.net +heavycom.122.2o7.net +heavyfurther.net +heb6.com +hebdotop.com +hebita.com +hebr.myddns-flir.com +hebypark.se +hecs.com +hedefzirve.com.tr +hedemorabygdensridklubb.se +heedmon.se +hefigo.com +hefinn.gq +hef.net +hegongchang.cloud +heias.com +heicha800.com +heightblog.com +heiinetwork.com +heilit-woerner.de +hein-mann.de +heise.nuggad.net +heiyingkkk.com +helathearizona.org +helathsourceri.com +hela.vn +helaw.net +helchiloe.cl +helenroche.net +helesouurusa.cjb.com +helicalpile.us +heliko.no +helios3000.net +helios.finn.no +helios.fvn.no +helium.us.intellitxt.com +hellifieldvillagehall.org.uk +hellish807.ru +hellmann-eickeloh.de +helloabby.com +helloaec.com +hellobaby.dk +hellobar.com +hellomagazine.uk.intellitxt.com +hello.sexer.com +hellowel.com +helltraffic.com +hellwert.biz +help1comp.ru +help1macusa.xyz +help-ads-info-support.com +help.adtech.de +help.adtech.fr +help.adtech.us +help-client-confirmation.ml +helpcloud.biz +helpdesk.marketbill.com +helpdesknow-amzn-account-verifyonline-inc-jpbill.demetkentsitesi.com +helpe2.allalla.com +helper-stats.wondershare.com +help.evernote.com +helpformedicalbills.com +help-info-icloud.com +helpingtrk.com +helpint.mywebsearch.com +helpkaden.org +helpmedb.com +helpmedownload.com +helpmymacfaster.club +helpmymacfaster.trade +help.mysearch.com +helpnet100.com +helpoythedsredesk.000webhostapp.com +helps-122.verifikasi-fanpage-suport982.cf +helps-confrim1777.suport-acount-confrim12.ga +help-setting.info +helpshop.org +helpwithfhahomeloan.com +helvetia.com.ua +hemantkabra.com +hemenmp3.net +hem.passagen.se +hemsbyholidays.co.uk +henanct.com +henex.net.ua +hengyongonline.com +henkie.nu +henrikssonbygg.se +henry.efa-light.com +hentaicounter.com +hentaidatabase.com +hentaiheroes.com +hentainotits.com +hentelpower.com +heoeee.com +hepinizinmk.duckdns.org +hepoh1w.top +heqscommercial.com.au +heraldgroup.com.ge +herbadicas.com.br +herbalaffiliateprogram.com +herbaveda.ru +herbert-ahl.de +herbrasil.com +hercules-cr.com +heredatetime.com +here.vakeropublicidad.com +here.violation-fanpage1.tk +herezera.com +heritageibn.com +herjacket.pl +hermes.airad.com +hermesbelts.xyz +hermesbirkinhandbagoutlets.com +hermesbracelets.xyz +hermesreplica.pw +hermesreplica.win +heroesandco.com +heroesandgeeks.net +herokuapp.com +herpes.1.p2l.info +herpes.3.p2l.info +herpes.4.p2l.info +herramientasgp.com +herriakmargozten.com +hersa.tk +hers.it +hertz.122.2o7.net +hertzsales.com +herwehaveit.0fees.us +hesteel.pl +hesturinn-minn.de +het-havenhuis.nl +heticdocs.org +hetmanship.xyz +heugu2n.top +heute.ivwbox.de +heute.oewabox.at +hewitwolensky.com +hexadl.line55.net +hexi100.com +heximed.ro +hexusads.fluent.ltd.uk +hexus.uk.intellitxt.com +hexvc-cere.com +heydanyelle.com +heygidday.biz +heyos.com +hezongfa9080.com +hfjianghe.com +hfjrlydjpponowxnlq.com +hfm.checkm8.com +hftgs.com +hf.themafia.info +hg10.hitbox.com +hg11.hitbox.com +hg12.hitbox.com +hg13.hitbox.com +hg14.hitbox.com +hg15.hitbox.com +hg16.hitbox.com +hg17.hitbox.com +hg1.hitbox.com +hg2.hitbox.com +hg3.hitbox.com +hg4.hitbox.com +hg5.hitbox.com +hg6a.hitbox.com +hg6.hitbox.com +hg7.hitbox.com +hg8.hitbox.com +hg9.hitbox.com +hgads.com +hg-bikes.de +hgbyju.com +hgfdgsfsfgfghggfdf.royalcolombia.com +hgm.world +hgqzs.com +hgtbluegrass.com +hgtzz.com +hh8d47.com +hhazyy.com +hhbekxxw5d9e.pflexads.com +hhetqpirahub4.com +hhgdaqj.info +hhgk120.net +hhj3.cn +h.hollywood.com +hi.5.p2l.info +hi7800.com +hi8433ere.from-or.com +hi8.ss.la +hickoryfarms.112.2o7.net +hicpm5.com +hidden.gogoceleb.com +hidebux.com +hidefiles.org +hidemyass.com +hiderefer.net +hidroglass.com.br +hidrometrikaltara.com +hiepcuong.kovo.vn +hieruu.apicultoresweb.com +hieuthoi.com +hifidesign.ru +high-alert24x7.com +highbeam.122.2o7.net +higher.dwebsi.tk +higherstudyinchina.com +highestmrket.bid +highexdespatch.com +highflyingfood.com +highland-homes.com +highnotesgifts.com +highpro1.com +highscanprotect.com +high-speed1.net +highspeed5.net +highspeednow1.net +highstairs-a.akamaihd.net +highstreeters.com +hightrafficads.com +highwayremovals.com.au +hihimn.com +hiijos.5gbfree.com +hijacked.de +hikarin.net +hikenews.com +hikesearch.net +hilariouszinc.com +hilaryandsavio.com +hildinghr.se +hilfe-aus-osteuropa.de +hilfinger.com +hilfulschool.edu.bd +hillalala.com +hillcrestmemorialpark.org +hillsboroughphotography.com +hilltopads.net +hillztrucking.com +himachalboard.co.in +himalaya-super-salzlampen.de +himedia.112.2o7.net +himediads.com +himwcw.gigy.gq +hinsdaleumc.dreamhosters.com +hinsib.com +hiny.nu +hi.pacehillel.org +hipbox.com +hipecard.com.br +hipersushiads.com +hiphopdx.us.intellitxt.com +hiphopgalaxy.fr.intellitxt.com +hiphoplead.us.intellitxt.com +hiphoprx.us.intellitxt.com +hipicalosquintos.com +hipnotizedo.com +hippo.adultadworld.com +hipsterevents.se +hiq.fotolog.com +hira.hopto.org +hirpcard.000webhostapp.com +hisett.org +hisnakiamotors.122.2o7.net +hisoftuk.com +hispy.nl +histats2014.simply-webspace.it +histats.com +histock.info +histogram.com.au +historicdelmar.com +historichometeam.com +historicinnsandwatersports.com +historykill.com +hit10.hotlog.ru +hit13.hotlog.ru +hit14.hotlog.ru +hit15.hotlog.ru +hit16.hotlog.ru +hit17.hotlog.ru +hit18.hotlog.ru +hit19.hotlog.ru +hit1.hotlog.ru +hit20.hotlog.ru +hit21.hotlog.ru +hit22.hotlog.ru +hit23.hotlog.ru +hit24.hotlog.ru +hit25.hotlog.ru +hit26.hotlog.ru +hit27.hotlog.ru +hit28.hotlog.ru +hit29.hotlog.ru +hit2.hotlog.ru +hit30.hotlog.ru +hit32.hotlog.ru +hit33.hotlog.ru +hit35.hotlog.ru +hit37.chark.dk +hit37.chart.dk +hit38.hotlog.ru +hit39.chart.dk +hit39.hotlog.ru +hit3.hotlog.ru +hit40.hotlog.ru +hit41.hotlog.ru +hit4.hotlog.ru +hit5.hotlog.ru +hit6.hotlog.ru +hit7.hotlog.ru +hit.8digits.com +hit8.hotlog.ru +hit9.hotlog.ru +hit.bg +hitboxbenchmarker.com +hitboxcentral.com +hitbox.com +hitboxenterprise.com +hitbox.realclearpolitics.com +hitboxwireless.com +hitcents.com +hit.clickaider.com +hitcounter01.xspp.com +hit-counter.5u.com +hit-counter.udub.com +hitfarm.com +hitfilm.pl +hit.gemius.pl +hit.hotlog.ru +hitiz.com +hitlist.ru +hitlog2.chosun.com +hitlounge.com +hitmax.pl +hit-men.men +hitmodel.net +hit-now.com +hitnrun.com.my +hitometer.com +hit-parade.com +hitpro.us +hit.reference-sexe.com +hits3.truehits.net +hits4me.com +hits4pay.com +hitsbox.info +hits.convergetrack.com +hits.e.cl +hits.eluniversal.com.mx +hit-senders.cn +hits.epochstats.com +hits.europuls.eu +hits.guardian.co.uk +hits.gureport.co.uk +hits.icdirect.com +hits.informer.com +hitslap.com +hitslink.com +hitslog.com +hits.netgeography.net +hits.nextstat.com +hits.puls.lv +hits.spylog.com +hitstatus.com +hits.theguardian.com +hits.top.lv +hits.truehits.in.th +hits.webstat.com +hittail.com +hit.topc.org +hit.ua +hitvisit.com +hitwastedgarden.com +hit.webcentre.lycos.co.uk +hitwebcounter.com +hitx.statistics.ro +hitx.waudit.cz +hitzhita.pl +hiv-aids.by +hiwibyh.bugs3.com +hiwxuvuponqw.com +hiyalane.info +hjaoopoa.top +hjbjdyjbq.top +hj.flxpxl.com +hjgk.net +hjkjhkhjkhj.xyz +hjnvren.com +hjrw.de +hjsbsuhbdud.5gbfree.com +hj-ventilation.dk +hjvsajhvjhcnmbzxj.000webhostapp.com +hk168.edo2008.com +hk.adserver.yahoo.com +hkdiiohi.skyrock.com +hk-dy.com +hkfg.net +hkfklflkggnow.com +hkladys.com +hkm-aviation.com +hkqyyfviyxrf.com +hksfa.org +hlamedia.adk2x.com +hlcc.ca +hldsxpwdmdk.com +hledejvshopech.cz +hlemotorbike.com +hlep-clinte-ok.umatter.net.au +hlf007.com +hlgnis.com +hlok.qertewrt.com +hlu9tseh.men +hlyb.org +hlyvjpusj.top +hlzx8.com +hm.baidu.com +hmc.uxuixsw0b.top +hm.d1.sc.omtrdc.net +hmdiwan.in +hm.l.qq.com +hmmm.cz +hmnsocialstudies.com +hmonghotties.com +hmora.fred-build.tk +hmortensen.tns-cs.net +hmpecmymqixhliw.com +hmpip.or.id +hmrc.logincorpssl.com +hmrevenue.gov.uk.claim-tax-refunds.overview.danpn.com +hmrevenue.gov.uk.claim.taxs-refunds.overview.cozxa.com +hmuana.com +hm.webtrends.com +hmywwogw.bloger.index.hr +hmzconstruction.co.za +hncopd.com +hnd-groups.com +hnditu.com +hndsecures.com +h.nexac.com +hnfwg.voluumtrk.com +hngn.com.us.intellitxt.com +hnitat.com.cn +hnskorea.co.kr +hnstqvza.com +hnsytgl.com +hntengyi.com +hntldgk.com +hnxinglu.com +hnzpjx.com +hnzt56.com +hoachatbachkhoa.com +hoangnguyenmec.com.vn +hoaoyo.com +hoaplc.com +hoawy.frost-electric-supply.com +hoazz.com +hobbat.fvds.ru +hobby-hangar.net +hobbyhuren24.net +hobbyhuren-datenbank.com +hobbystube.net +hobbytotaalservice.nl +hobbyworkshop.com +hobild.net +hobromusic.com +hochu.kg +hockeysticks.se +hockeysubnantais.free.fr +hoclaptrinhfree.com +hocuscrocus.com.au +hoerbird.net +hof23.de +hofr.com +hogsandheifers.com +hoiv.com +holakd.com +holdhelptime.com +hol.es +holidayarte.com +holiday-gift-offers.com +holidayguides.com.au +holidaypics.org +holidayproductpromo.com +holidayshoppingrewards.com +holidaytriprentals.com +holidayvillasmallorca.com +holika.com +holishit.in +holladata.com +hollandbusinessadvertising.nl +hollowback.com +hollyrude.us.intellitxt.com +hollywood.122.2o7.net +hollywoodactress.info +hollywoodbackwash.us.intellitxt.com +hollywoodchicago.us.intellitxt.com +hollywood-crime.de +hollywooddame.us.intellitxt.com +hollywoodmodelingacademy.com +hollywoodstreetking.us.intellitxt.com +hollywoodtuna.us.intellitxt.com +hollywood.us.intellitxt.com +holmac.co.nz +holobumo.info +holographiccocoon.com +holspi.com +holydoome.co.uk +holy.mldlandfrantz.com +holzwurmschhulze.myjino.ru +homa-forex.com.au +homannundleweke.de +homcityicesettlement.com +home4bizstart.ru +home56.ru +home.about.com +homeandhealth.ru +homebath.ru +home-brewed-armamen.000webhostapp.com +homebuildersmessage.com.ng +homecarelove.com.au +home.com.cgi-bin-webscr.log-dispatch-updat-account.cg-bin-team.updat.server-crypt.cg-bint.securly.data4678744dbj.portal.gruporafaela.com.br +homecraftfurniture.com +homedeco.com.bo +homedecoguide.info +homedecorpicture.us +homedepot.cm +homedepoy.com +homedo.fabpage.com +homeelectronicproducts.com +homegardening.de +home-garden-premiumblvd.com +home-garden-rewardempire.com +home-garden-rewardpath.com +homehanger.in +home.hit.stat24.com +home.hit.stat.pl +homehre.bravehost.com +homehre.ifrance.com +homehre.tripod.com +homeimprovementonus.com +homeinns.com +home-inspectionshouston.com +home.jatxh.cn +home.kobatochan.co +homely.gutterheaters4u.com +homemade.gq +homemakers-electrical.com.sg +homemature.net +home.myplaycity.com +homeocare.net +homeownersmanagement.com +home.packagesear.ch +homepageking.de +homepage.no +homepage.t-online.de +homepjlconline.com.112.2o7.net +homepproav.112.2o7.net +homes.bg +homesclick.112.2o7.net +home-secure.jl-limitid.co.uk +homes.servicieid.paypall.billing.pp-buymarket.com +homesteadescrow.info +homesteadtechnologies.122.2o7.net +homestore.122.2o7.net +hometheaterhifi.us.intellitxt.com +hometheaterreview.advertserve.com +hometow.club +hometown.aol.com +hometrendsdinnerware.org +homevegtz.com +homewares.org +homrdepot.com +homtextile.click79.com +honarkhabar.com +honarkhaneh.net +honestinternetmarketing.com +honestme.com.ua +honeywoods.com +hongdengqu123.com +honghuamm.com +hongkiat.us.intellitxt.com +hongkongbluesky.com +h.online-metrix.net +honlpvc.com +honolulu.app.ur.gcion.com +honor.agitaattori.fi +honourableud.top +hoo1luha.com +hoodia.kogaryu.com +hookedmediagroup.com +hook.yieldbuild.com +hoopoeway.com +hoopsnhiphop.com +hoopsworld.us.intellitxt.com +hooqy.com +hoo.ru +hoovers.us.intellitxt.com +hop.clickbank.net +hopeandopportunitytc.com +hopeonthestreet.co.uk +hopethehelpline.org +hopewhitepages.com +hoporno.com +hopto.org +horchner.net +horde.square7.ch +horeen.com +horizon.mashable.com +horizonsupports.com +hornbillsolutions.in +hornetgroup.com +hornymatches.com +hornytraffic.com +horoscope.us.intellitxt.com +horoshieokna.com +horrorkids.com +horrormovies.it +horsehour.co.uk +horsematcher.com +horseshowcolour.com +horstherfertarcorde.zzwumwaysl.in +hortumpaketi.com +hos1.cnzz.com +hoshirley.com +hososassa.com +hosse-neuenburg.de +host207.ewtn.com +host2.adhese.be +host3.adhese.be +host4.adhese.be +host4.list.ru +host6.hitbox.com +hostaawebsite.com +hostalsatuna.com +hostbi.com +hostboard.us.intellitxt.com +hostcritique.com +hostdomainpeople.112.2o7.net +hostdomainpeopleca.112.2o7.net +hostedads.realitykings.com +hostedaje14.thruport.com +hostedbannerads.aebn.net +hosted.stats.com +hosted.stats.com.edgesuite.net +hoste.octopis.com +hosteriapascana.com.ar +hostflippa.com +hosting7028339.az.pl +hosting77.de +hosting.adjug.com +hostingclub.lk +hosting.conduit.com +hosting-controlid1.tk +hosting-controlnext.tk +hosting-controlpin.tk +hosting-controlpr.tk +hostingindonesia.co +hostingneedfull.xyz +hostingprod.com +hostingre.com +hosting-security.com +hostingserver.co +hosting.sextracker.com +hosting-tracker.com +hostiraj.info +host-it.co.uk +hostme.ge +hostnow.men +host-plik.pl +hostpowermedium.112.2o7.net +host-protection.com +hostsshop.ru +hosttrakker.info +hostujmy.pl +hot2015rewards.com +hotapp.pl +hotawards.pl +hotbar.dgndesign.com +hotblog.top +hot-bot.com +hotcash.pro +hotchatdate.com +hotchix.servepics.com +hot-daily-deal.com +hotdailynews.co +hotdealsoakland.com +hotdl.in +hoteladityamysore.com +hotelavalon.org +hotel-bergisch-gladbach.de +hotelcentaurolages.com.br +hotelconceicaopalace.com.br +hotelesciudadreal.com +hotellaslomas.com.ve +hotel-las-vegas.gloses.net +hotellier.de +hotel-mkad.ru +hotelnikkotowers-tz.com +hotelominternational.com +hotelpadmalaxmi.com +hotelpleasurepalace.in +hotelraffaello.men +hotelruota.it +hotelscom.122.2o7.net +hotels-fattura.it +hotels-harz.de +hotelsilken.com +hotelsunndaram.com +hoteltepantorprincess.com +hotelworx.gr +hotenergy.ru +hotfacesitting.com +hotgiftzone.com +hothardwarecom.skimlinks.com +hothardware.us.intellitxt.com +hothor.se +hothotquality.trade +hothub.pl +hotjar.com +hotkeys.com +hotkooldeals.com +hotloans.ru +hotlog.ru +hotmail.com.es +hotmial.com +hotmommagossip.us.intellitxt.com +hotnews.count.brat-online.ro +hotonlinenews.us.intellitxt.com +hotpassd.com +hotprizes.pl +hot-product-hangout.com +hotrank.com.tw +hot-sextube.com +hotshoppymac.com +hotslotpot.cn +hotsocialz.com +hotspot.cz +hotspotshield.com +hotwanrnelrt.com +hotxnights.info +houdom.net +houjassiggolas.com +houmani-lb.com +housediz.com +housedman.com +housefly.uk +house-kas.com +housekuba.org +housemilan.ru +houseofgaga.ru +houseoflife.com.au +houseofnature.com.hk +houseofravissant.com +houseofrose.com +houseofsaisuman.com +houseofwagyu.com +house.sieraddns.com +housing-work.org +hous.pl +houssaur.beget.tech +houstonmethodis.org +houston-vikings.com +houtoe.com +hoverboard360.at +hoverboard360.de +hoverboard360.se +hoverboardforsaledirect.com +howardchui.us.intellitxt.com +howcanweprotectyou.co.za +howler.shareaholic.com +howmuchisabookofstamps.com +howopen.ru +howtobecomeafinancialplanner.com.au +howtobuildsoftware.com +howtocash.com +howtocleanacomputervirus.com +howtoeditvideos.org +howtogetridofeye-bags.com +how-tosolve.com +howtotroll.org +howupdateworks.amazingupdates4youtoday.website +hoy.com.co +hoymix.se +hpad.www.infoseek.co.jp +hpalsowantsff.com +hpdhtxz.tk +hpdnet.com +hpglobal.112.2o7.net +hphqglobal.112.2o7.net +hphqsearch.112.2o7.net +hp-h.us +hplaserjetpdriver8y.pen.io +hpn-collector.cliqz.com +h.ppjol.com +hppl.net +hpr.outbrain.com +hpsseguridad.com +hptwaakw.blog.fc2.com +hpwowbattle.net +hq258.com +hq-celebrity.us.intellitxt.com +hqporner.com +hqprocess.com +hr991.com +hr.adocean.pl +hrb-aliya.com +hrdcvn.com.vn +hreade.com +hr-engine.xclaimwords.net +hrfbgfvkf.top +hrgde.adocean.pl +hrgvererwyatanb.com +hr.hit.gemius.pl +hrived1.com +hrpoaodl.com +hr.search.etargetnet.com +hr-shanghai.com +hr.static.etargetnet.com +hruner.com +hrwomen.com +hrxlvnixf.top +hryspap.cn +hs-analytics.net +hsb-canada.com +hsbcexchange.com +hsbconline.ca +hscsscotland.com +hsihousp.us +hs.interpolls.com +hsmsxx.com +hsmywuodm.com +hsnsiteweb.hsbsitenet.com +h.spill.com +hspline.com +hsscem.cn +hs-software.de +hst-19-33.splius.lt +hstc1-telepaiaiments.com +hstde.tradedoubler.com +hstes.tradedoubler.com +hstfr.tradedoubler.com +hstgb.tradedoubler.com +hstit.tradedoubler.com +hstno.tradedoubler.com +hstpl.tradedoubler.com +hstpnetwork.com +hstraffa.com +hst.tradedoubler.com +hstus.tradedoubler.com +hsuy.nasraniindonesia.org +hsw-d.openx.net +hswmedia.122.2o7.net +hsych.com +ht344.dyndns-at-work.com +htl.bid +htm.freelogs.com +html5adkit.plusmo.s3.amazonaws.com +htmlads.ru +htmlads.s3.amazonaws.com +html.atm.youku.com +html.centralmediaserver.com +htmlcorner.com +htmlhubing.xyz +htmlphp.ddns.net +htmlpro.ru +htmltopdf.in +htmlwww.youfck.com +htpbox.info +htpm.com.cn +ht.pornhub.com +hts2.adpremium.org +hts4.adpremium.org +http100.content.ru4.com +http300.content.ru4.com +http300.edge.ru4.com +httpads.com +http.content.ru4.com +http.edge.ru4.com +httpool.com +httpring.qq.com +https443.net +https.edge.ru4.com +https-espaceclientev3-orange.com +https.www.paypal.com.nl.c91e7f018a4ea68d6864a7d21f663c9a.alert-21nna.be +httpwwwadserver.com +ht.tube8.com +ht.xtube.com +htxvcl.com +htyzs.cn +hu.2.cqcounter.com +huabaoagency.com +huadn.hit.gemius.pl +huagumei.com +huakaile88.com +huangjintawujin.cn +huangpai88.com +huangxinran.com +huanqing87.f3322.org +huanqiucaijing.cn +huaqiangutv.com +huaqiaomaicai.com +huate.hk +huatongchuye.com +huaxiagongzhu.com +huaxingee.com +huayangjd.com +hub.adlpartner.com +hubbble.com +hub.com.pl +hubertus-hotel.de +hubvisual.com.br +huddlecare.com +hudradontest.net +hudsonleadership.com +hudsonvalleygraphicsvip.com +hud.thesourcechagrin.net +huffingtonpost.crwdcntrl.net +hugde.adocean.pl +hugo-brasserie.de +hugoguar.com +hugovaldebenito.cl +hu.hit.gemius.pl +huhn.altervista.org +hui-ain-apparel.tk +huidakms.com.cn +huimin764128.com +huis.istats.nl +huiwiw.hit.gemius.pl +hujii.qplanner.cf +hujnsz.com +hujrspace.xyz +huliq.us.intellitxt.com +hully.altervista.org +hulu.112.2o7.net +huludev.112.2o7.net +humanding.com +humanelydrew.com +humangirls.hu +humanistiskhalsoforskning.se +human-products.com +humansource.net +humfzz.com +hummmaaa.xyz +humorcartoes.com.sapo.pt +humortadelacartoes.com.sapo.pt +humraaz.com +hunacrarcsofy.co.uk +hundejo.com +hundpolen.se +hungaroeberton.com.br +hungergame.com +hunger.xyz +hunterboots.online +huntingtonbank.tt.omtrdc.net +huntsvillecraigslist.com +hunvlang.com +huohuasheji.com +huomdgde.adocean.pl +huped.com +hurricanedigitalmedia.com +hu.search.etargetnet.com +huseyn.com +husky-shop.cz +hu.static.etargetnet.com +hustlercash.hit.bg +hustoon.over-blog.com +hut1.ru +hutchmedia.t.domdex.com +hutevanwte.com +huvudstakiropraktik.se +huwz.altervista.org +hv3.webstat.com +hvd-store.com +hveportal.org +h.verticalscope.com +h-villamotel.com +hvjeynhpx.top +hvo1000.com +hw54.com +h.waudit.cz +hwi-community.de +hwqulkmlonoiaa4vjaqy.perfectoptical.com.my +hx018.com +hx304bxg.com +hxahv.com +hx.hexun.com +hxtrack.holidayextras.co.uk +hyacinthmatelda.eu +hyareview-document.pdf-iso.webapps-security.review-2jk39w92.ccloemb.gq +hybl9bazbc35.pflexads.com +hy-brasil.mhwang.com +hybridart.org +hybridfitness.net.au +hybrid.ru +hyderabadneuroandspinesurgeon.com +hydfood.net +hydramedia.com +hydraulicpowerpack.com +hydraulicscylinders.com +hydrochemie.info +hydrocodone-buy-online.blogspot.com +hydrocodone.irondel.swisshost.by +hydrocodone.on.to +hydrocodone.shengen.ru +hydrocodone.t-amo.net +hydrocodone.visa-usa.ru +hydropneuengg.com +hydro.polybuild.ru +hydropump.su +hydroservis.pl +hygromycin-b-50mg-ml-solution.com +hyiphunter.org +hyipmanager.in +hyjinlu.cn +hyl-zh.lentor.net +hymesh.net +hynk.kgune.com +hyperbanner.net +hyperbolic.tk +hyperion.adtech.de +hyperion.adtech.fr +hyperion.adtech.us +hypertracker.com +hypnoseterapi.com +hypnotone.com +hypo-tec.com +hyra.wahlgrens.se +hyrlastbilgoteborg.se +hystersister.com +hy-tec.com +hywczg.com +h.zedo.com +h.zeroredirect.com +hz-lf.com +hzm6.com +hz.mmstat.com +hzs10.cnzz.com +hzs13.cnzz.com +hzs15.cnzz.com +hzs1.cnzz.com +hzs22.cnzz.com +hzs2.cnzz.com +hzs4.cnzz.com +hzs8.cnzz.com +i01001.dgn.vn +i0ri625.com +i.11zz.com +i1img.com +i1media.no +i1.services.social.microsoft.com +i1.services.social.microsoft.com.nsatc.net +i1.teaser-goods.ru +i3jtguygecrr6ub6avc2.missingfound.net +i3.putags.com +i4eg76.vindicated-shelter.space +i4ni.com +i4track.net +i4u.us.intellitxt.com +i4you.pl +i693civilsurgeon.com +ia1.7search.com +ia.5.p2l.info +iacas.adbureau.net +iacpromotion.s3.amazonaws.com +iact.atdmt.com +iactbangalore.com +iad.anm.co.uk +iadc.qwapi.com +iad-login.dotomi.com +i.admob.com +iadnet.com +i.adwise.bg +ia.iinfo.cz +ialaddin.genieesspv.jp +iamagameaddict.com +iamartisanshop.com +iamco.in +iammc.ru +iamnotageek.us.intellitxt.com +iamsport.org +iaokllaabettingk.com +iapplsslserviceupgrade.settingaccountsslsupport.com +ias2.hitbox.com +ias.avidmedia.net +iasds01.com +ias.hitbox.com +iasl.tk +ia.spinbox.net +iau.adsiduous.com +iausdopp.est-mon-blogueur.com +ia.warnet-thunder.net +ia-waziri.com +ib.3lift.com +ib.adnxs.com +ibag-sale.com +ibank.standardchartered.com.my.ntsoftechsolutions.com +ibb.com.ua +ibdsubscribers.com +ibertecnica.es +ibg.hitbox.com +ibibo.112.2o7.net +i.bigmir.net +ibis.lgappstv.com +ibj.com.au +i.blogads.com +ibm-notebook-battery.wp-club.net +ib.mookie1.com +ibmvideo.com +ib.nab.com.au.nabib.301.start.pl.index.vapourfrog.co.uk +ib.nab.com.au.nab-professionnel.com +ibookschool.co.kr +ibpsexamhelp.com +ibrainer.net +ib.reachjunction.com +ibrecaja.es +ibsicredi-com-br.umbler.net +ibw.co.kr +ibyxedcowwot.com +ic2eith.bid +ic5p0films.org +icailing.com +icanoptout.com +i.casalemedia.com +icaseclub.ru +icastechnology.com +icbg-iq.com +icb-online-intl.com +iccee.com +iccornacircri.cf +i.cdn.openx.com +i.cdnpark.com +ice.112.2o7.net +ice.andromed.in.ua +iceauger.net +icecars.com +icedevils.de +ice.ip64.net +icemed.net +icentric.us.intellitxt.com +icespice-restaurant.com +icfgelder.org.hk +ic-ftree34.xyz +icgtw.com +ichef.us.intellitxt.com +ichgcp.com +ichinose.de +iciiran.com +icioud-china-appie.com +icioudsupportteamref46532.topslearningsystem.org +icityfind.com +iclear.studentworkbook.pw +i-clicks.net +icloud05.com +icloud122.com +icloud21.com +icloud25.com +icloud44.com +icloud75.com +icloud84.com +icloud85.com +icloud.account-id.com +icloudaccounts.net +icloud-amap.com +icloud-app-apple.com +icloudapple1.com +icloud-apple-icloud.net +icloud-appleiocation.com +icloudappleisupport.com +icloud.apple.kassei-ka.com +icloud-br.com +icloud.com.in-eng.info +iclouddispositivo.com +icloudeurope.com +icloud-fiet.com +icloudfinders.com +icloudfind-id.com +icloud-find-my-phone.com +icloudfounds.com +icloud-gecoisr.com +icloud-gprs-id110.com +icloud-id360idd.com +icloud-idauth.com +icloud-ifor.com +icloud-iforgotapple.com +icloud-info.info +icloud-ios9-apple-verify.com +icloudisr.com +icloud-itunes-in.com +icloud-locatediphone.com +icloud-locating.com +icloudlocationasia.com +icloud-locked-authenticated-service-locked-apps.com +icloudlostreport.com +icloud-lost.tk +icloudmapfinder.com +icloudmyphone.com +i-cloudnet.com.pl +icloud-net.com.pl +icloudnet.com.pl +icloud-os9-apple-support.com +icloud-os9-support-verify.com +icloud-privacy.com +icloud-reactive.usa.cc +icloud-reserve.ru +iclouds-confirmrecovers.com +icloud-securities.com +icloud.security.information.services.com.socialrare.com +icloudsegurity.com +icloudserviceinfo.serveirc.com +icloudsicurezzaitalia.com +iclouds-security.com +iclouds-servicerecovers.com +icloud-status.com +icloud-storejp.verifyaccount-informationicloud.com +icloudsupport-login.com +icloud-support.net +icloudsupportv.com +icloud-toop.com +icloudupdates.com +icloud-verefyappleld.com +icloud-verifications.com +icloudverified.com +icloud-verify-apple-support.com +icloud-verifyldapple.com +icloud-view-location.com +icloud-webred.com +icloud-whet.com +icloud-wky.com +icloudza.com +iclsas.com +icngx.org +icoderx.com +ico.freelogs.com +icomaq.com.br +icompass.insightexpressai.com +iconadserver.com +icon.clickthru.net +icon.cnzz.com +icon.cubics.com +iconhealthfitness.tt.omtrdc.net +icoocash.com +icoo-tablet.com +ico.re +icorpadro.hit.gemius.pl +icpet-intrometic.ro +icptrack.com +icqcskj.com +icracks.net +icscards.nl.bymabogados.cl +ics.hitbox.com +ictcmwellness.com +icthulpcommunity.nu +i.ctnsnet.com +icttoolssales.altervista.org +ic.tynt.com +icydk.us.intellitxt.com +id11938.luxup.ru +id3103.com +id405441215-8305493831.h121h9.com +id5576.al21.luxup.ru +id.5.p2l.info +id-apple.com-apple.it-italia.apple.inaitt.com +id-apple.com-apple-ufficiale.idpaia.com +id-apple-icloud-phone.com +id-appleid.com +id-appleisuporte.com +idb.hitbox.com +idc.com.ua +id-cdn.effectivemeasure.net +idcheckonline.bankofamerica.com.accid0e5b6e0b5e9ba0e5b69.idverificationcloud.online +idcheckonline-configurationchecker.security.bankofamerica-check.online +idcln.com +___id___.c.mystat-in.net +idcounter.com +idd00dnu.eresmas.net +iddpmiram.org +idea21.org +idealpesca.pt +idealtits.net +idearc.tt.omtrdc.net +ideas.com.uy +ideationary.com +ideawheel.com +idecoideas.com +idegenerate.com +idegenvezeto.eu +ideibiznesa2015.ru +identads.com +identicryption.com +identification-data-eu.gq +identitatsbestatigung-de.gq +identitytechnologies.co.ke +ideoclick.com +ideoworld.org +idewalo.de +idfree-mobiile.com +idgenterprise.112.2o7.net +idgenterprise.d1.sc.omtrdc.net +id.get35.com +idg.hit.gemius.pl +idg.tns-cs.net +idguk1-d.openx.net +idhbolivia.org +idhomeus.com +id-icloudsupport.com +idicloudsupport.com +idimag.ru +id.kbmg.cz +idkom.com +idkqzshcjxr.com +idkwtflol.net16.net +idlinklog.000webhostapp.com +id-localizar-apple.com +idm.hit.gemius.pl +id-mobile-free-scvf.com +idmsa.approve.device.update.com.indoprofit.net +idmsassocauth.com +idmsa.vnc.corp.application.update.com.melatijaya.com +idm.us.intellitxt.com +ido3.com +idocstrnsviews.com +idolhairsalon.com +idollashsite.net +idonaa.ga +idonaa.ml +idontlikeyouinthatway.us.intellitxt.com +id-orange-clients.com +id-orange-clientsv3.com +id-orange-factures.com +id-orange-fr.info +id-orange-secure.com +idownload.com.pl +idpix.media6degrees.com +idrainswamp.com +idregie.com +id-service-information.net +idsrv-assistance.com +id-subscriptioncheck.info +idsupports-apple.com +idsync.rlcdn.com +id.system.update.cgi.icloud.aspx.webscmd.apple-id.apple.com.eu0.customersignin-appleid.com +idtargeting.com +iduna-nsf.de +idunger.nu +idvipteam.com +idyjy.co +idzdalej.pl +ie3wisa4.com +ie.57883.net +ie-apple.com +iebar.baidu.com +iebar.t2t2.com +iebei5v.bid +iece1vi.to +iece1vi.top +ieee.adbureau.net +ief-online.com +ieginc.com +ieh-mail.de +ieissue02.xyz +ieissue04.xyz +ieissue05.xyz +ieissue20.xyz +ieissue2.xyz +ieissue.xyz +iej2vee.bid +iejazkeren.com +iek7kei.bid +iel2out.top +ielohga9.com +iengae9.top +ientrymail.com +ientry.rotator.hadj1.adjuggler.net +iep4koh.bid +ieplugin.com +iequei2.top +ierah7o.bid +ieru5xo.top +iesb.us.intellitxt.com +ieshie5.bid +ieslwhms.com +iesmartinaldehuela.org +iesnare.com +iesnare.co.uk +ieve2ee.to +ieve2ee.top +iewei4t.top +ifa.camads.net +ifa.empflixlive.com +ifa.hardsexmate.com +ifa.keezlive.com +ifa.maxpornlive.com +ifa.pornhublive.com +ifa.slutloadlive.com +ifastnet.com +ifa.streamateaccess.com +ifa.tnaflixlive.com +ifa.tube8live.com +ifa.xhamstercams.com +ifayemi1.5gbfree.com +ifa.yobtcams.com +ifa.youjizzlive.com +ifa.youpornmate.com +if.bbanner.it +ifbb.com.pk +ifc.inmobi.com +ifghealthmedia.com +ifighi.net +ifilefinder.com +ifindwholesale.com +ifirestarter.ru +ifix8.com +iflycapetown.co.za +ifmo.ru +iforgot-account.info +iforgotappple.com +iformation.club +ifpn2g.com +iframe.adultfriendfinder.com +iframecash.biz +iframes.awempire.com +iframes.perfectgonzo.com +iframes.prettyincash.com +iframes.us +ifrat.club +ifrek.com +iftarvakitleri.net +igabytom.pl +igadgetsworld.com +igagh.tourstogo.us +igame4free.com +i-games.biz +igasp.biz +igetmyservice.com +igforweddingpros.com +ig.fp.oix.net +ig.insightgrit.com +igithab.com +iglemdv.com +iglesiasboard.com +igmarealty.ru +ignitad.com +ignorantfishing.com +ign.us.intellitxt.com +igoby.frost-electric-supply.com +igor32.herbalbrasil.com.br +igorkuznecov.com +igroo.barginginfrance.net +igrovyeavtomaty777.ru +igrulca174.ru +igru-xbox.net +igum.net +ih2.gamecopyworld.com +i-hacked.us.intellitxt.com +ih.adscale.de +ihavebeenpwned.com +ihc.112.2o7.net +ih.constantcontacts.com +ihm01.ct2.comclick.com +ihmcu.org +i-hobot.ru +ihoosq.com +i.hotkeys.com +ihsmrakit.com +ihxofmkcudok.com +ihyxyqpzntfmq.ivydancefloors.com +i-idappleupdate.com +iiet.co.uk +iiidown.com +i.imedia.cz +iingalleri.com +i.interia.pl +i.isohunt.to +iitbrasil.com.br +ijeojoq.com +ijkytrpcuesuj.pw +ijoe.xyz +ijordantours.com +i.jumptap.com +ijunyu.com +ikalsmansamedan87.com +ikcode.baidu.com +ikeeneremadu.dnjj.ga +ikesuta.com +i.kissmetrics.com +iklan.emedia.com.my +iklysha.ml +iknojack.com +ikoh6ie.top +ikyds.org +il.5.p2l.info +ilacy.com +i.laih.com +ilam.in +ilangaijeyaraj.org +ilariacafiero.com +ilatinpos.mx +ilbanner.com +i.l.cnn.net +ilead.co +ilead.itrack.it +ilegaltrader.com +ilemasziq.pl +ilgde.adocean.pl +ilhankuyumculuk.com.tr +i.ligatus.com +ilikevitaly.com +ilimbilgisayar.com +ilinks.industrybrains.com +ilksayfadacikmak.net +illaboratoriosrl.it +illifyn.top +illinoisnets.net +illinoisprairie.info +illuminationsinc.com +illumos.com +illustrative-berlin.de +illustriousoatmeal.com +ilmattinodipadova.it +ilmen.net +ilne.me +ilona.com +ilovecheating.com +ilovejayz.com +ilovemobi.com +ilovespeedbumps.com +ilovevitaly.com +ilovevitaly.ru +il-secure-welcome.info +ilte.info +iltempo.com.au +ilumigrafias.adriancugar.com +iluv.clickbooth.com +ilxhsgd.com +im2.smartadserver.com +im900.com +imabase.com +imacitsollutions.com +imadedinner.net +imads.ero-advertising.com +imads.integral-marketing.com +im.adtech.de +imadworks.rediff.com +im.afy11.net +image1.cecash.com +image2.pubmatic.com +image5.pubmatic.com +imageads.canoe.ca +imageads.sexmoney.com +image.adv.livedoor.com +image.atdmt.com +imagec05.247realmedia.com +imagec07.247realmedia.com +imagec08.247realmedia.com +imagec09.247realmedia.com +imagec10.247realmedia.com +imagec11.247realmedia.com +imagec12.247realmedia.com +imagec14.247realmedia.com +imagec15.247realmedia.com +imagec16.247realmedia.com +imagec17.247realmedia.com +imagecache.directtrack.com +imagecash.net +image.cecash.com +imageceu1.247realmedia.com +image.click.livedoor.com +imagecoolpub.com +image.i1img.com +image.linkexchange.com +image.lobopharm.hr +image.masterstats.com +imagenen1.247realmedia.com +imagepeoples.com +imageprostyle-communication.fr +imagerydatabase.com +images1.cliqueclack.com +images1.paycounter.com +images2.laih.com +images3.linkwithin.com +images.888.com +images.about.com +images.adrime.com +images.ads.fairfax.com.au +images.ads.supplyframe.com +images.ads.whaleads.com +images.adsyndication.msn.com +images.adviews.de +images-aud.freshmeat.net +images-aud.slashdot.org +images-aud.sourceforge.net +images.blogads.com +images.bluetime.com +images.bmnq.com +images.bnmq.com +images.brainfox.com +images.bravenet.com +images.casino-on-net.com +images.ccbill.com +images-cdn.azoogleads.com +images.clickfinders.com +images.cnomy.com +images.conduit-banners.com +imagescroll.detik.com +images.cybereps.com +images.dailydiscounts.com +images.ddc.com +images.directtrack.com +images.domainsponsor.com +images.edgeads.org +images.e-mailcom.co.uk +images.emapadserver.com +images.enhance.com +imageserv.adtech.de +imageserv.adtech.fr +imageserv.adtech.us +imageserver1.thruport.com +images-graphics-pics.com +images.gyffu.com +images.hitwise.co.uk +images.host.bannerflow.com +images.indiads.com +images.intellitxt.com +images.itchydawg.com +images.jambocast.com +images.kolmic.com +images.linkwithin.com +images.m4n.nl +images.mbuyu.nl +images.millennialmedia.com +imagesmovies.com +images.mpression.net +images.netcomvad.com +images.newsx.cc +images.outbrain.com +images.pacificpoker.com +images.parked.com +images.people2people.com +images.persgroepadvertising.be +images.primaryads.com +images-pw.secureserver.net +images.rambler.ru +images.revtrax.com +imagesrv.adition.com +images.sexlist.com +images.skenzo.com +images.sohu.com +images.specificclick.net +images.steamray.com +images.taboola.com +images.topguncustomz.com +images.trafficmp.com +images.tumri.net +images.v3.com +images.webads.co.uk +images.webads.it +images.webads.nl +imagevenue.advertserve.com +imaginecomputing.info +imaginesy.life +imajicommunications.com +imallweb.com +imamnhearte.hotmail.ru +imanaforums.com +imap3.ticbeat.co +imap.anoxa.de +imap.bioquest.se +imap.creativity.it +imap.dpsl.net +imap.drbill.de +imapd.ticbeat.co +imap.eiakr.com +imap.hamnail.net +imap.hotmial.com +imap.kuje.com +imap.nyron.com +imap.romulan.nu +imap.scccd.org +imap.secci.it +imap.seznnam.cz +imap.spamcero.com +imaps.ticbeat.co +imap.synpatico.ca +imap.usawide.net +imap.xtream.com +imarker.com +imarker.ru +imarketservices.com +imauli.cf +imax3d.info +imaxxe.com +im.banner.t-online.de +imbattibili.com +imc2.122.2o7.net +imcj.info +imc.l.qq.com +imco.sa +imedia.com.mt +i.media.cz +imediadesk.com +imeem.112.2o7.net +imersjogja.id +imex.cezard.imcserver.ro +imfamous.info +img001.com +img0.ru.redtram.com +img100-321.xvideos.com +img1.ncsreporting.com +img1.ru.redtram.com +img1.zergnet.com +img.2leva.bg +img2.ru.redtram.com +img2.sankakustatic.com +img2.zergnet.com +img3.zergnet.com +img4.cdn.adjuggler.com +img4.zergnet.com +img6.adspirit.de +img7.adspirit.de +img.7search.com +img-a2.ak.imagevz.net +imgad1.3conline.com +imgad2.3conline.com +imgad3.3conline.com +img.adecorp.co.kr +img.admaster.net +img.adnet.com.tr +img.adplan-ds.com +img.ads1.mocean.mobi +img.ads1.mojiva.com +img.ads2.mocean.mobi +img.ads2.mojiva.com +img.ads3.mocean.mobi +img.ads3.mojiva.com +img.ads4.mocean.mobi +img.ads4.mojiva.com +img.ads.huntmad.com +img.ads.kompas.com +img.ads.mobilefuse.net +img.ads.mocean.mobi +img.ads.mojiva.com +img.ads.sanomamobileads.nl +img.ads.taptapnetworks.com +img.adverticum.net +img.adzs.nl +img.alibaba.com +imgarcade.com +imgata.com +img.atdmt.com +img.avatraffic.com +img.bet-at-home.com +img.blogads.com +img.casalemedia.com +img-cdn.mediaplex.com +img.clicksagent.com +img.coldstoragemn.com +imgc.psychcentral.com +img.cqcounter.com +img-dc2.adtech.de +img.directtrack.com +img.discovery.com +img.dt00.net +img.en25.com +imgg.adskeeper.co.uk +imgg-cdn.adskeeper.co.uk +imgg.dt00.net +imgg.dt07.net +imgg.marketgid.com +imgg.mgid.com +img.jizzads.com +img.klubzixo.pl +img.layer-ads.de +imglinks.industrybrains.com +img.linkstorm.net +img.marketgid.com +img.metaffiliation.com +img.msgtag.com +imgn.dt00.net +imgn.dt07.com +img.neogen.ro +img.network.affiliando.com +imgn.marketgid.com +img.parked.ru +img.pixha.net +img.prohardver.hu +imgpromo.easyrencontre.com +img.pulsemgr.com +img.readme.ru +img.revcontent.com +img.royal-cash.com +img.ruclicks.com +imgs.adverticum.net +img.securesoft.info +img.sedoparking.com +imgserv.adbutler.com +imgs.it +img.skenzo.com +img.sn00.net +img.soulmate.com +img.thebugs.ws +img.tradedoubler.com +img.xnxx.com +img.xratedbucks.com +i-midias.net.br +imifaloda.hu +imigranci.prv.pl +imiliving.122.2o7.net +imindco.com +iminent.com +imitex-plus.ru +imitrex.1.p2l.info +imitrex.3.p2l.info +imitrex.4.p2l.info +immaculate.tk +immanalytics.com +immediadement-arretez-ezhez-identfcie-jasdasd1233-9057.com +immediateresponseforcomputer.com +immeria.kupivoice.ru +immigrantwomen.gr +immigrationhelp4u.com +immobiliaremassaro.com +immobilien1000.de +immobilienbid.de +immobilierscellier.org +immobili.oewabox.at +immosct.wemfbox.ch +immosuch.oewabox.at +imms1.macau.ctm.net +immunotherapie.com +imnotobsessed.us.intellitxt.com +imobile-free-fr.info +i-mobi.pl +imod.ca +im.of.pl +imokoi.com +imonitor.nethost.cz +imovg.com.br +imp0ts-gouv-fr-fr.com +impacker.no-ip.biz +impact.cossette-webpact.com +impacts.alliancehub.com +impactwrestling.us.intellitxt.com +imp.adsmogo.com +impat.tradedoubler.com +impayee-octrelais.com +impbe.tradedoubler.com +impch.tradedoubler.com +imp.clickability.com +impcz.tradedoubler.com +impde.tradedoubler.com +impdk.tradedoubler.com +imp.double.net +imperfectness.com +imperia31.ru +imperiafilm.ru +imperial.lk +imperialmotorcycles.com +imperialwinners.men +imperiumsunpower.com +impes.tradedoubler.com +imp.euroads.no +impexamerica.net +impfi.tradedoubler.com +impfr.tradedoubler.com +impgb.tradedoubler.com +impie.tradedoubler.com +impishdesign.com +impisr.edunsk.ru +impisr.ru +impit.tradedouble.com +impit.tradedoubler.com +impliedscripting.com +implr-hq.com +implt.tradedoubler.com +impnl.tradedoubler.com +impno.tradedoubler.com +impoexgo.com +impordoc.esy.es +import188.com +importantinformations.com.ng +importarmas.com +importchinacoach-teach.com +importexportcodeonline.com +importexporttrade.com +import.globalsources.com +import-sales.com +impots.fr.secur-id-orange-france.com +imp.partner2profit.com +imppl.tradedoubler.com +impresagaia.it +imprese.cz +impresionespuntuales.com.mx +impressionaffiliate.com +impressionaffiliate.mobi +impressionlead.com +impressionmedia.cz +impressionperformance.biz +impressionz.co.uk +impressoras-cartoes.com.pt +improvise-tv.com +impru.tradedoubler.com +impse.tradedoubler.com +impsnare.iesnare.com +imp.tradedoubler.com +imreportcard.us.intellitxt.com +imrkcrv.net +imrk.net +imrworldwide.com +imserv001.adtech.de +imserv001.adtech.fr +imserv001.adtech.us +imserv002.adtech.de +imserv002.adtech.fr +imserv002.adtech.us +imserv003.adtech.de +imserv003.adtech.fr +imserv003.adtech.us +imserv004.adtech.de +imserv004.adtech.fr +imserv004.adtech.us +imserv005.adtech.de +imserv005.adtech.fr +imserv005.adtech.us +imserv006.adtech.de +imserv006.adtech.fr +imserv006.adtech.us +imserv00x.adtech.de +imserv00x.adtech.fr +imserv00x.adtech.us +ims.me +imssl01.adtech.de +imssl01.adtech.fr +imssl01.adtech.us +imstore.bet365affiliates.com +imt-aq.com +imwork.se +im.xo.pl +imxpmw.com +in.11zz.com +in3.zog.link +in4.zog.link +in.5.p2l.info +in.adserver.yahoo.com +inagrody.pl +inaltravel.ru +inapi.posst.co +in-appadvertising.com +inassociisnwtcnn.xyz +inbabes.sexushost.com +inboab.se +inboundlinks.win +inboxdollars.com +inc-apple-id-887698123-verification2016-ios.productostrazzo.com +incapple.managesslservice.com +in-cdn.effectivemeasure.net +incentaclick.com +incentivegateway.com +incentiverewardcenter.com +incentive-scene.com +inceptionads.go2cloud.org +incestland.com +incgiove.net +incisivemedia.112.2o7.net +inc-itunes.store +inclk.com +include.reinvigorate.net +includes.atualizaobrigatorio.com +include.service.eassy-field-follow.com +inclusivediversity.co.uk +incoctel.cl +incolors.club +incostatus.com +inc-pay-pal-id-verf.radiolivrefm.com.br +increasebecome.net +incrediblesugar.com +increisearch.com +inc-service-accounts.ml +incwellsfargo.myjino.ru +in.cybererotica.com +indas.com.au +indded.ca +indecorblindsanddrapes.com.au +independentescortservices.com +independientecd.com +indetiske.ya.ru +indexhu.adocean.pl +indexjs.ru +index-pdf-admin-profile00000000.renusasrl.com +indexstats.com +indexww.com +indiads.com +india-forums.us.intellitxt.com +indiakino.net +indianapolis.hosted.xms.keynote.com +indianbeauties.org +indianemarket.in +indianmediagroup.com +indianmedicaltourismshop.com +indianmodelsindubai.com +indianrailwayadvertising.com +indiapackersandmovers.in +indiasourcemart.in +indiatouragency.com +indieclick.com +indierock.it +indigio.122.2o7.net +indisancal.com +indium.openx.net +individualcupboards.co.za +individuelle-fertighaeuser.de +indo-export.ru +indogator.com +indojav1102.com +indomovie.me +indonesiaco.link +indonesiaku.or.id +indonews16.com +indonews27.com +indoreconstructions.com +indo-salodo.3eeweb.com +indpolice.com +indumag.oewabox.at +induscabos.com.br +indusit.in +industriallubricationservices.com.au +industrialtrainingzirakpur.com +industrybrains.com +industry-deals.com +induweb.oewabox.at +indy.fjmu.edu.cn +indyloyaltyclub.com +ineihan.cc +inelta.com +inent17alexe.rr.nu +inephrology.com +inesucs.mx +inetlog.ru +inet-poisk.ru +inet-traffic.com +infazavr.ru +infertyue.com +in.ff5.com +infighter.co.uk +i.nfil.es +infinite-ads.com +infinitimaven.com +infinityads.com +infinityid.condenastdigital.com +infinityviptur.com.br +infitautoworld.com +influensas.nu +info017112100032ft.000webhostapp.com +info02154785100cw55.000webhostapp.com +info0.ru +info1009882310000d.000webhostapp.com +info101.centre-fanpage9991.gq +info112kff198.000webhostapp.com +info2001666511v.000webhostapp.com +info225nf0213711.000webhostapp.com +info88524nf4400111.000webhostapp.com +info-accessvalidatesumary.com +info-ads-verify-identify.com +infoappled-locked.com +info-apple-icloud-system.com +info-apple-service.com +infobabki.ru +info-bancoposte.com +info.com +infoconsultation.info +infocuscreative.net +info.ebookbi.com +info-facebook.hitowy.pl +infofbrecover.000webhostapp.com +info-fitness.com +info-images.rambler.ru +info.instantmixcup.com +info.intelli-direct.com +info.keepingbusinesslocal.com +infokonkurs.ru +infolinks.com +infomart.ca.112.2o7.net +infomaschenwerkede.wwwzssl.in +infomitglieder.de-kontaktaktualisierung.eu +infonodo.it +infoodesk.org +info.omilin.tmweb.ru +infoonlinewebupdate.webeden.co.uk +infopackets.us.intellitxt.com +infopaypal.com +info-portal.000webhostapp.com +informacjeszok24.blogspot.com +informaticatecnica.es +informatics.co +informatiecentro.be +information-accounts-789456.000webhostapp.com +information-accounts-7894565.000webhostapp.com +information.com +information-required.ml +informationsecurity1323.000webhostapp.com +information-security-system.000webhostapp.com +informativoclientebra.com +informatykadlakazdego.dejm.pl +informer.yandex.ru +informespersonales.com.ar +informujemy24h.cba.pl +infos.apple.stores.icloud.ebfve.vaporymarket.com +infosboitevocaleorangecompte.pe.hu +infos-bourses.com +infos-du-net.fr.intellitxt.com +infosecurity-blocked-apps.ga +infosecuritysako.000webhostapp.com +infoservicemessageriegooglemail.coxslot.com +info.singupforporno.com +infospace.com.112.2o7.net +infospace.tk +infospot.pt +infostatsvc.com +infoszook24.blogspot.com +infotechsquare.com +info.telstra.com +infotop.com.ua +infotouchindia.com +info-update-secure.tk +infowarcraft.ru +infoweavers.in +infoweb-coolinfo.tk +infowebmasterworking.com +infoworldmediagroup.112.2o7.net +infra.by +infracon.com.eg +infraschall.com +infrastrategy.122.2o7.net +infratotalduicom.122.2o7.net +ingameads.gameloft.com +ingbabk.pl +ingcash.com +ing-certificaat.ru +ing-diba.de-ssl-kundensicherheit2.ru +ing-diba.de-ssl-kundensicherheit3.ru +ingdieba.de +ing-district.clicktale.net +ingemac.cl +ingenicopads.kz +ingenieriacyf.cl +in.getclicky.com +ingomi.com +ingpaynowfoorypdate.esy.es +ingredientquality.com +ingress.kannste.net +ingridvasconcelos.com.br +ingroflor.com +ing-schmidt.dk +ing-sslcertificaat.ru +inicio.com.mx +init.supersonicads.com +injectableelectronics.com +in.joinourwebsite.com +injoyphotobooths.com +i.n.jwpltx.com +inkaserie.com +inkassoservice.se +ink.churchofthefreespirit.com +inkcustom.com +inklineglobal.com +inl.adbureau.net +inleadership.co.nz +inlinea.co.uk +inline.admedia.com +inlucthien.com +inm.affinitymatrix.com +in-mailling.com +inmate-locator.us +inmobi.com +inmobiliariabellavista.cl +innatek.com +inndl.com +inneractive-assets.s3.amazonaws.com +innercitymanagement.co.id +innesota.rus-shine.ru +inno.bisrv.com +innocnthigh.com +innodgfdriverhm.aircus.com +innogineering.co.th +innovaeduca.org +innovative3d.co.za +innovativedigitalmedia.com +innovid.com +inobediencetohim.com.au +ino.directtrack.com +inome.com.ua +in-ova.com.co +inoxhoa.com +inpagevideo.nl +in.paycounter.com +input.insights.gravity.com +inquake.de.intellitxt.com +inringtone.com +in.riskymail4free.com +insanegift.com +insanet.biz +insanity2.thezeroworld.com +inscapedesign.in.cp-3.webhostbox.net +inscreen.widespace.com +insect-collector.com +insert.gloadmarket.com +insidecentralfl.com +insidefitness.co +insidelacrosse.co +insidelocation.ga +insidemacgames.us.intellitxt.com +insiderpagescom.122.2o7.net +insidescandinavia.se +insidewestnile.info +insight.adsrvr.org +insightexpressai.com +insightexpress.com +insightexpresserdd.com +insightfirst.com +insightxe.looksmart.com +insightxe.pittsburghlive.com +insightxe.vtsgonline.com +inskinad.com +ins-offer.com +insolvencysolutions.com.au +insomniagamingfestival.com +inspectionyourantivirus.xyz +inspectorclick.com +inspectyourantivirus.xyz +insta-add.pro +instadia.112.2o7.net +insta-follow.pl +instafollow.pl +instagram-followers.pl +instagram.jolims.tk +instagram.myago.tk +instagramreset.com +instagram.rezaee.ir +instagram.serulom.tk +instalike.pl +installationsafe.net +installer.betterinstaller.com +installer.filebulldog.com +installer.zutrack.com +installmac.com +installm.net +install.multinstaller.com +install.securesoft.info +installspeed.com +install-stats.com +instantauthorityexperts.com +instantdownloadsz.com +instantgiftcodes.com +instantmadness.com +instantonlineverification.usaabank.verification.fajitaritas.com +instantrefund.clicespumoso.com.br +instant-winner275.online +instant-winner318.online +instantwinner953.club +insticator-d.openx.net +instinctiveads.com +institutomariadapenha.org.br +institut-ronflement.net +instorm.com +instruminahui.edu.ec +instytutmed.pl +instytut-pomocy.pl +insuranceandbeauty.info +insurancejournal.freestats.com +insurance-rewardpath.com +insurple.com +insytagram.com +intabulations.org +intactcorp.co.th +intactro.adocean.pl +intbrands.t.domdex.com +intcar.de +int.cdn.hw.installzone.info +integralmedicalwriting.com +integralogistic.com +integritybuilding.net +integritybusinessvaluation.com +integrityelectricas.com +intela.com +intelcorpchan.112.2o7.net +intelcorpcim.112.2o7.net +intelcorperror.112.2o7.net +intelcorpsupp.112.2o7.net +intelglobal.112.2o7.net +intelhdgraphicsgtdrive6w.metroblog.com +intelibroker.com +intellekt21.ru +intellektmedia.at +intelliads.com +intellitxt.com +intelloworld.in +intenalco.edu.co +intensedigital.adk2x.com +interac-bell.com +interac.clients-valo.com +interac-deposit.rathorekriti.com +interac-e-transfer-bell-refund.bluestonegallerymilford.com +interac-e-transfer-bell-refund.manachetalks.com +interace-transfer.panku.in +interac.onlinebanking.ca.etrnasfer.deposit.payment.ca.bolingbrookchiropractor.com +interac-online-funds.com +interacpmnts.com +interac.refund-canada.com +interactivearea.ru +interactive.forthnet.gr +interact-refund11.com +interal007.com +intera-x.com +interbank-pe.in +interchangecorporation.122.2o7.net +intercont1.de +interesnie-faktu.ru +interfere.marionunezcampusano.com +interferencer.ru +interfucks.net +intergi.com +interia.adsearch.adkontekst.pl +interia-ek.ru +interia.hit.gemius.pl +interiorbandung.co.id +interior-dezine.info +interior-examples.ru +interiorlifeoutreach.com +interior-stickers.ru +interkredyty.pl +interland.122.2o7.net +interlogistics.com.vn +intermaids.com +intermare.it +intermediaceli.com +intermediads.com +intermesh.net +intermix.us.intellitxt.com +intermrkts.vo.llnwd.net +internalads.gammae.com +internal.fuckyoucash.com +internalmaryportas.com +internationalclubperu.com +internationalconsultingservices.org +internationaldragday.com +internationaleservices.dbeau.com.au +internationalmarble.com +internationalsellingcoach.com +internationaltransfers.org +internazionaleauto.com +internet-apteka.ru +internetartfair.com +internetautoguide.us.intellitxt.com +internetbanking24hrs.autentication.com +internet-bb.tk +internet.billboard.cz +internetcalxa.com +internet-cleaning-tool.capital-software.qarchive.org +internetfile-center-app.homeftp.org +internetfuel.com +internetgmj.com.br +internethistorycleaner.ws +internet-lte-5gb.blogspot.com +internet.marsmediachannels.com +internetoboz.ru +internetonlineaanvragen.eu +internetowy-sklep.net +internetproviderzoeken.eu +internetretailer.d2.sc.omtrdc.net +internetsecurity.com +internetsimplificada.com.br +internet-webshops.de +internox.it +interreklame.de +interrentye.org +interstatesiqns.com +interstat.hu +interstitial.powered-by.securesoft.info +intervsem.ru +interyield.jmp9.com +interyield.td553.com +interyield.td563.com +interyield.td573.com +intext.billboard.cz +intext.lookit.cz +int-found-online.bizpartner.biz +intimshop-fantasy.ru +intisoltours.com +intnet-offer.com +intogossip.us.intellitxt.com +intomobile.us.intellitxt.com +intouch.adinfuse.com +intouchsolutions.112.2o7.net +intpronyte.com +intrack.pl +intranet.trf.co.in +intsiawati.com +int.sitestat.com +intuitinc.122.2o7.net +intuit.securityupdateserver-1.com +intuit.sp1.convertro.com +i.nuseek.com +invbtg.com +invention.festinolente.cl +inventive.ca +inveseting.com +investcpu.com +investice-do-nemovitosti.eu +investigate.ru +investingchannel.us.intellitxt.com +investingclub.ru +investmac.com +investment-advisors.com +investments.com +investopedia.us.intellitxt.com +investoradbg.hit.gemius.pl +investorbg.adocean.pl +invest-pamm.ru +investpamm.ru +investsuccess.org +investyb.com +investzalog.ru +invictaonlini.com.br +invideo.ero-advertising.com +invistaconstrutora.com.br +invitation.opinionbar.com +invitefashion.com +invite.gezinti.com +invite.insightexpress.com +invivo.hu +inv-nets.admixer.net +invoice-alert-support.ga +invoice.ebillj.lookseedesign.ca +invoicesrecord.com +invoice-template.org +in.webcounter.cc +inwolweb.anyhome.co.kr +in.yimg.com +inytbd.com +inzn.ru +in.zog.link +io21.ru +io9.com +ioam.de +iocdn.coremetrics.com +ioit.iovation.com +iomade.com +iomibarcameno.it +iomoio.net +ionamin.1.p2l.info +ionamin.t35.com +ionergize.com +ionicmsm.in +ioops.com +iopeninghours.co.uk +i-optics.com.ua +iorcwfijqsrflxugeclsm.com +ios12-icloudid.com +ios-app-apple.com +iotiot.cf +ioubes.press +ioui.myjino.ru +iovation.com +iovation.co.uk +ip-182-50-129-164.ip.secureserver.net +ip-182-50-129-181.ip.secureserver.net +ip193.cn +ipacc1.adtech.de +ipacc1.adtech.fr +ipacc1.adtech.us +ipad2free4u.com +ipadzu.net +ip-api.com +i-payment.pl +ipbazaar.ca +ipbsgpm4.top +ip.casalemedia.com +ipcmarieclaireprod.122.2o7.net +ipcmedia.122.2o7.net +ipcnowprod.122.2o7.net +ipcom.ru +i.pcp001.com +ipcuncut.122.2o7.net +ipcwebuserprod.122.2o7.net +ipcyachtingworldprod.122.2o7.net +ipdata.adtech.de +ipdata.adtech.fr +ipdata.adtech.us +ipdobqagc.top +iperceptions.com +ipesa.galetto.com.ar +ipforverif.com +ip-geo.appspot.com +iphone2016id.com +iphone4fodral.se +iphone7-forsubs.xyz +iphone7kazan.com +iphone7konkurs.pl +iphone7silver-konkurs.pl +iphone7silver-wygraj.pl +iphone7.wygraj-teraz.com +iphone7.zostan-zwyciezca.com +iphone-avril.offreflash.xyz +iphonecare-icloud.com +iphonee7s-konkurs.pl +iphonefacebook.webcindario.com +iphonegames3g.com +iphonehackgames.com +iphonelostsupport.com +iphone-recuperar.com +iphoneresult.top +iphone-siedem.pl +iphonesticker.com +iphonetrack.org +iphoneutstyr.no +ipintu.com.cn +ipirangasfrotas.com +ipkoaktualizacjakonta.com +ipl.hk +iplogger.org +i.plug.it +ipmsc.com +ip.nuggad.net +iposhq.com +ipostroika.ru +ip.ro +iprocollect.realmedia.com +ipro.com +ipromsi.iprom.net +ips-cbse.in +ips-invite.iperceptions.com +ipsitnikov.ru +ipswichtrailerhire.com.au +iptoo.cruisingsmallship.com +iptool.xyz +ipwhrtmla.epac.to +ipw.me +i.pxlad.io +ipzd.pl +iq001.adtech.de +iq001.adtech.fr +iq001.adtech.us +iqbazar.ru +i.qitrck.com +iqoption-bin.com +iqoption.com +iqs.biz.ua +iq-test.dk +iquality.ru +iqvine.com +iqvvsi.com +iracingicoaching.com +iracomparison.com +iradiology.ru +i.radzolo.com +iranbar.org +irankvally.online +iransu.com +ircasia.org +ircleaner.com +ir-de.amazon-adsystem.com +ir.doubleclick.net +ireklama.cz +ireklama.mk +irenvasileva.ru +irevservice.com +irfantrading.com +iricuy2.net +irinapetrakova.ru +iris2009.co.kr +irishmotorhomeclub.com +irishsculptors.com +irkcenfq.com +irkfo.ru +irkutsk.online-podarki.com +irkutsk.zrus.org +irmarketing.se +irml.com +ir-na.amazon-adsystem.com +i-robot.kiev.ua +iromusic.net +ironcustapps.com +irondel.swisshost.by +irs01.net +irs.gov.falmouthroadrace.com +irs.gov.irs-qus.com +irsgov.nswsoccer.com.au +irs.gov.nuestrasmanualidades.cl +irs.gov.sgn-irs.com +irs.jaggerbabuinreviews.com +irstaxrefund.com.graficaolivense.com +irs-tax-settlement.com +irudliwleamhkyidvx.pw +ir-uk.amazon-adsystem.com +irunfar.com +irvingduiattorney.com +is2.websearch.com +isaac-mafi.persiangig.com +isagro-italia.it +isamuxpompapsc50.6ka.info +isanalyze.com +isbankcepsubemm.com +is.casalemedia.com +iscblog.info +isctdtaulbpoprun.pw +i.securecontactinfo.com +i-see.co.zw +iseemen.com +i-service.kz +isettalink.de +isettatech.com +isg01.casalemedia.com +isg02.casalemedia.com +isg03.casalemedia.com +isg04.casalemedia.com +isg05.casalemedia.com +isg06.casalemedia.com +isg07.casalemedia.com +isg08.casalemedia.com +isg09.casalemedia.com +is-gateway.supersonicads.com +ishanvis.com +ishidaindia.com +ishnet.com.br +isho1xu.top +isimpletech.club +i.simpli.fi +isinguggedorivi.boxhost.me +isistaylorporn.info +iskalko.ru +iskunvaimenninhuolto.fi +islam24h.net +islamicmarketing.net +islamipedia.org +islamtoday.co.za +islanderthemovie.com +islandminingsupply.wordpress.com +islandmob.com +islenpiding.hotmail.ru +islerofitness.com +is.luxup.ru +ism2trk.com +ism6.emediate.eu +i.smartwebads.com +ismpo.org +isms-icloud.com +isolerefacaden.dk +isolog.org +isometrix.in +isonomia.com.ar +isotec-end.com.br +isoveti.ru +ispaniya-costa-blanca.ru +israeladvocacycalendar.com +isralink.net +issaura-sherly.staff.unja.ac.id +issges.oewabox.at +issharacomputer.com +is.spring-tns.net +issue10.xyz +issue20.xyz +issue40.xyz +issue50.xyz +issue60.xyz +issue70.xyz +issuefixed.co.in +issueresolved.co.in +issuesolve.co.in +istanbul-haritasi.com +istanbulit.com +istartsurf.com +i.static.zaplata.bg +istmira.ru +istockbargains.com +istock-mebel.ru +is.tole.it +istripper.com +istruiscus.it +istyle.ge +isupport.appleid-com.signin-to-secure-account.ga +isuzi.com +iswwwup.com +isystemupdates.info +it-70-pro.com.br +it.adserver.yahoo.com +itajs11.com +italiancookers.com +italianheritagelodge.org +italianmarblepolishing.it +italiano-elledue.com +italia-rsi.org +it.altervista.org +italy-amazon-sicurezza.vbasc.com +italy-mps-cartetitolari.www1.biz +i.tapit.com +itapoacontainers.com.br +itappm.com +itau30horas.atualizaonlinenovo.com.br +itau30horas-renovar.tk +itau30hr.com +itau30hrs.com +itau.banking-30hrs.com +itau-looking.oni.cc +it.bannerout.com +itbc.kiev.ua +itc.2081.blueseek.com +itcg3.c5369.blueseek.com +itclk.com +itcompany.com +itcu.in +itcurier.ro +it-datentechnik24.de +itdiversa.com +itec.kg +itemagic.net +itempana.site +i-tenniss.com +it.erosadv.com +itfarm.com +it.fergonolhad.com +itfreewebmailupdate.sitey.me +itgins.do +itglance.com +itguruinstitute.com +ithapps.com +it-helpdeskadmin.000webhostapp.com +ithyk.frenchgerlemanelectric.com +itindustry.net +it.infophlino.com +itios.top +itis4you.com +it.jalansalngero.com +itj.cz +itknowhowhosting.com +itm2012.com +it-max.com.ua +itmcash.com +itmedia.122.2o7.net +itmhostserver.com +itm-med.pl +itoito.ru +itoops.com +itop.cz +i.total-media.net +itpro.uk.intellitxt.com +i.track112.site +itrackerpro.com +itrechtsanwalt.at +itreviews.uk.intellitxt.com +itrevolution.cf +i.trkjmp.com +itronics.ca +itrustmydog.com +its53new.rr.nu +itsallaboutscience.org +itsat21.in +itsdeskp007007.sitey.me +itsdp3.com +it.sergopin.com +itserviceemailupdate.sitey.me +itservicesthatworkforyou.com +itsfree123.com +itspecialist.ro +itsptp.com +its-that-easy.com +itstore.my +ittoolbox.us.intellitxt.com +itt.supporto-whtsuypp.com +itudentryi.com +itune-appleid.com +itunes-active.co.uk +itunesconnect.apple.com-webobjects-itunesconnect.woa.archiefvernietigen.nu +itunesdownloadstore.com +itunesite-app.com +itunes.music2716-sudis-appleid.vrs-gravsdelectronic-electronicalverification.arteirapatchwork.com.br +itunes-storeses.org +itunes-supporto-apple-ufficiale-id-apple.insove.com +itup.co.in +itv.112.2o7.net +itvertical.com +itwititer.com +itworld.us.intellitxt.com +itworms.com +itx5-publicidad.smartadserver.com +itx5.smartadserver.com +itxt2.us.intellitxt.com +itxt3.us.intellitxt.com +itxt.vibrantmedia.com +ity.elusmedic.ru +iu54ere.for-more.biz +iubridges.org +iucxcza27o51bwi25btgro41d10cudqbsk27b68.com +iuga.ro +iuhqhbmq.net +iusacomlive.112.2o7.net +iusstf.org +iuy7.pl +iuyt.pl +iv24.pl +ivalidation-manage-secunder-forget.tk +ivan-and-rudolf.com +ivanmayor.es +ivannoval.es +ivanovo.zrus.org +ivansaru.418.com1.ru +ivanstroi.ru +ivanx.info +ivavitavoratavit.com +iv.doubleclick.net +ivelin.ushapeit.bg +ivestproperty.com.au +ivillageglobal.112.2o7.net +ivillage.us.intellitxt.com +ivis2016.org +ivitrine.buscape.com +ivox.socratos.net +ivwbox.de +ivxcsystncfp.cigarnervous.ru +ivy.it +ivykiosk.com +ivysolutions.it +i.w55c.net +iwa.hit.interia.pl +iwantedmoney.com +iwantmyfreecash.com +iwantmy-freelaptop.com +iwantmyfree-laptop.com +iwantmyfreelaptop.com +iwantmygiftcard.com +iwanttodeliver.com +iwantyoutostay.co.uk +iwatchpowerrangers.com +iwb.com.cn +iweb24.pl +iwebexport.com +iweblist.info +iwgtest.co.uk +iwhab.randbinternationaltravel.com +i-wiadomosci.pl +i.w.inmobi.com +iwisher.ru +iwon.us.intellitxt.com +iwork4g.org +iwpqrovwiqjc.net +iwstat.tudou.com +iww.ca +iwzqn5.top +ix20.ru +ixoox.csheaven.com +i.xx.openx.com +iy2.ooeqys.ml +iyanu.info +iyasimasennka.com +iybasketball.info +iyiauauissa.iiyioapyiyiu.xyz +iykpejhirwhh.com +i.yldbt.com +iyogi.demdex.net +iyuryhnafwicgn.com +iyuurrfdfd.gobnd.com +iywstk.info +i-zegarki.com +i.zeroredirect.com +izeselet.hu +izhevsk.xrus.org +izhevsk.zrus.org +izismile.com +izitracking.izimailing.com +izlinix.com +izlinix.net +izmirhandcraftedleather.com +izmirhavaalaniarackiralama.net +izmirtrekkingkulubu.com +izoll.ru +izolwhm.com +izscbkhfv.top +i.zugo.com +izzy-cars.nl +j0008.com +j0k3rj0k3r.tk +j.2004cms.com +j33x.com +j3safetyismyname.com +j583923.myjino.ru +j-5.info +j603660.myjino.ru +j641102.myjino.ru +j679964.myjino.ru +j753784.myjino.ru +j94kp2o.com +jaaeza.com +jaaphram.com +jablip.ga +jabu.popunder.ru +jacago.com +jackbootedroom.com +j-ack.com +jackjaya.id +jacknravenpublishing.com +jackpot.112.2o7.net +jackshigh.net +jackson.com.sg +jacksonsun.us.intellitxt.com +jackwolfskinoutlet.online +jacob.aa978.com +jacobi-richter.de +jacobkrumnow.com +jacoblanderville.myjino.ru +jacobs-dach.com +jacobthyssen.com +jact.atdmt.com +jactpysy.myutilitydomain.com +jadaqroup.com +jadcenter.com +jade01.webtrekk.net +jade853gmbh.tt.omtrdc.net +jadeedalraeehajj.com +jad.fisbonline.com +j.adlooxtracking.com +j.admob.com +jadserve.postrelease.com +jaegerstube.de +jagadishchristian.com +jagdkaufhaus.de +jagritisocial.com +jahic.se +jah.skateparkvr.com +jaihoenterprises.com +jaimacslicks.com +jajajaj-thats-you-really.com +jajananpasarbukastiah.id +jakbar.ppg.or.id +jake361.com +jake.bavin.us.kzpcmad.tk +jakeevansmusic.com +jakeludington.us.intellitxt.com +jakketeknik.dk +jakte.no +jamaicajohnnies.com +jamaicaprestigerooms.com +jamba.pl +jambocast.com +jambongrup.com +james.adbutler.de +jamescsi.com +jameser.com +jamesloyless.com +jamiembrown.com +jammiwilsonn17.000webhostapp.com +jammiwilsonn20.000webhostapp.com +jamnam.com +jamster.pl +jamtech.net +janavibekken.no +jandglandscaping.ca +jandlenterprisesinc.com +jandlmarine.com +janeaustenjoy.com +janedoemain.com +janellerealtors.com +janerikholst.se +janetrosecrans34.org +janettabridal.com +janezk.50webs.co +jangan-hengaka.rumahweb.org +jangasm.org +jantamanagement.com +januaryblessed.com +japan-bearings.ru +japan-ds.com +japanese-girl-xxx.com +japanesevehicles.us +japan.inmobi.com +japanmadchen.com +japanparts.pw +japdevelopment.com.au +japfm.com +japonte.mccdgm.net +japscat.org +japtron.es +jaraguapet.com.br +jarakadvertising.com +jardimdovalerestaurante.com +ja.revolvermaps.com +jarnavedugnsbageri.se +jarsquatter.com +jasapembuatanbillboard.web.id +jasatradingsa.com +jasiltraveltours.com.ph +jasmineuore.com +jasondwebb.com +jasonpartington.com +jasonthelenshop.com +jat01.iwantyourightnow.info +jatservis.co.id +jatukarm-30.com +java2.casino-on-net.com +java-brasil.ga +javadshadkam.com +java-games.bestxs.de +java-jar.org +javascript-games.org +javascriptobfuscator.com +javatex.co.id +javitas.info +javrip.net +jaxcube.info +jaxduidefense.net +jaybeee.name +jayboyd.t15.org +jayelectricalcnl.com +jazmany.cu.ma +jazzcafe.ge +jazzcomposersalliance.org +jb9clfifs6.s.ad6media.fr +jbaventures.cjt1.net +jbaya.247cellphonerepairservice.com +jbeet.cjt1.net +jbit.cjt1.net +jbjcv.com +jbl-charge.info +jblroyalty.com +jblumdesign.com +jbo-halle.de +jbos.com +jb.revolvermaps.com +jbs.co.kr +jcahop.org +jcardoso.adv.br +jcarter.spinbox.net +jc-c.com +jcci.in +jce.ru +jcfashion.com.br +j.clickdensity.com +jcmotorsportsonline.com +jcollegehumor.cjt1.net +jcontent.bns1.net +jcount.com +jc.revolvermaps.com +jcrew.tt.omtrdc.net +jcwhiney.com +jcwhintey.com +jcwhitey.com +jcwhitney.112.2o7.net +jcwolff.com +jdavidsonscrap.com +jdbd100.com +jdbridal.com.au +jdcartoon.com +jddizh1xofciswt1ehvz.thequalitycheck.com +jdental.biz +jdfabrication.com +jdgrandeur.com +jdhuaxia.com +jdleventos.com.br +jdm.at +jdownloadacc.cjt1.net +jd.revolvermaps.com +jdsemnan.ac.ir +jdsimports.com +jdv.com.co +je7.us +jeanlesigne.com +jeansowghsqq.com +jeansowghtqq.com +jeansvixens.com +jediscute.fr +jedz-eco.pl +jeeptrailer.com +jeevanhumsafar.in +jeffeinbinder.org +jeffreymunns.co +jeffreysamuelsshop.com +jeff.timeclever.com +jefumemoinscher.com +jehansen.dk +jehlamsay.com +jeikungjapani.com +jeita.biz +jejuskypension.com +jeld-wem.com +jelekong.co.id +jemcoatings.com +jenikamike754.000webhostapp.com +jenniferthomas.biz +jenno.adsb4all.com +jennycraig.112.2o7.net +jennyfire.ru +jennyspalletworks.com +jensa.com +jenwokxls.top +je-paypal.co.uk +jequi.tv +je.revolvermaps.com +jerichoplay.com +jerkstore.dk +jerrys-services.com +jerseychinabizwholesale.com +jerseychinabizwholesale.us +jerseyfilms.com +jersey-offer.com +jerseysbizwholesalecheap.com +jerseyschinabizwholesale.us +jerseyssportsshop.com +jerseyswholesalechinalimited.com +jerseywholesalebizchina.com +jerseywholesalechinabiz.com +jerseywholesaleelitestore.com +jesesmobileac.com +jesnyxa.beep.com +jessisjewels.com +jestr.org +jesulobao.com +jetbluecom2.112.2o7.net +jetbluemastecard.com +jetbluepkgcs.112.2o7.net +jethooky.com +jetparty.net +jetsli.de +jetztaktualisieren.com +jetztgezahlt.xyz +jetzt-teilnehmen.net +jewelcheese.com +jewelryandfiligree.com +jewoosystem.co.kr +jewsihtickets.com +jfaoline.com +jfcondominios.bid +jfdyw.com +jflescorts.com +jflion.com +j.flxpxl.com +jfmd1.com +jf.revolvermaps.com +jg1guxxw.com +jgedads.cjt.net +jgelevator.com +jgen10.cjt1.net +jgen11.cjt1.net +jgen12.cjt1.net +jgen13.cjt1.net +jgen14.cjt1.net +jgen15.cjt1.net +jgen16.cjt1.net +jgen17.cjt1.net +jgen18.cjt1.net +jgen19.cjt1.net +jgen1.cjt1.net +jgen20.cjt1.net +jgen21.cjt1.net +jgen22.cjt1.net +jgen23.cjt1.net +jgen24.cjt1.net +jgen25.cjt1.net +jgen26.cjt1.net +jgen27.cjt1.net +jgen28.cjt1.net +jgen29.cjt1.net +jgen2.cjt1.net +jgen30.cjt1.net +jgen31.cjt1.net +jgen32.cjt1.net +jgen33.cjt1.net +jgen34.cjt1.net +jgen35.cjt1.net +jgen36.cjt1.net +jgen37.cjt1.net +jgen38.cjt1.net +jgen39.cjt1.net +jgen3.cjt1.net +jgen40.cjt1.net +jgen41.cjt1.net +jgen42.cjt1.net +jgen43.cjt1.net +jgen44.cjt1.net +jgen45.cjt1.net +jgen46.cjt1.net +jgen47.cjt1.net +jgen48.cjt1.net +jgen49.cjt1.net +jgen4.cjt1.net +jgen5.cjt1.net +jgen6.cjt1.net +jgen7.cjt1.net +jgen8.cjt1.net +jgen9.cjt1.net +jg.hack-inter.net +jglcontracting.com.au +jgoyk.cjt1.net +jg.revolvermaps.com +jgtdpsqbq.top +jgworldupd.com +jhandcockpension.com +jhansonlaw.com +jhbi0techme.com +jhchyjoap.top +jhfinancialpartners.com.au +jhf.us +jhgf.pl +jh-group-sa.com +jhgy-led.com +jhonishop.co.id +jh.revolvermaps.com +jhumour.cjt1.net +jhyrgweb.xyz +jiajimx.com +jianxiadianshiju.cn +jianyundc.com +jicaralenlinea.com +jidekanwang.com +jiek04.com +jielimag.com +jienoo.com +jiew9un.top +jifendownload.2345.cn +jiggasha.com +jijimn.com +jijiwang123.com +jijsonline.112.2o7.net +jijsonline.122.2o7.net +jikoman.info +jiktnv.122.2o7.net +jilbabnurul.xyz +jiliangxing.com +jilinxsw.com +jillepille.com +jimbramblettproductions.com +jimcu.edu.m1dcountry.com +jimmiehardinshowhorses.com +jimmychoosale.online +jimmyspizzagrill.com +jinchenglamps.com +jindier.com +jingjia.qq.com +jinglish.com +jinicettp.com +jinkads.de +jiopd.xyz +jipin180.com +jiqu8he.bid +ji.revolvermaps.com +jishuitong.com +jitaiqd.com +jitmj4.122.2o7.net +jiu.com.au +jiurenmainformations.com +jivox.com +jiwire.112.2o7.net +jiwtmj.122.2o7.net +jiyazaza.boxhost.me +jiyoungtextile.com +jiztini.com +jizzads.com +jj.2hew7rtu.ru +jja00.com +jja11.com +jja22.com +jja33.com +jja44.com +jja66.com +jja77.com +jjb00.com +jjb33.com +jjb44.com +jjb66.com +jjb77.com +jjb88.com +jjbabskoe.ru +jjbook.net +jjc00.com +jjc11.com +jjc22.com +jjc33.com +jjc55.com +jjc66.com +jjc77.com +jjd22.com +jjd33.com +jjd55.com +jjdslr.com +jjee.uygbdfg.com +jjimov.com.br +jjkl.zulilys.net +jjoesikathrinezad.com +jjrdskort.org +jjscakery.com +jjshouse.pl +jjugg.5gbfree.com +jju.net +jkbt.se +jkcollege.in +jkdo75.eksidin.com +jkearns.freestats.com +jkindscorpn.com +jkkf.pl +jkmodz.com +jkontherun.us.intellitxt.com +jkpcfresno.info +jk.revolvermaps.com +jktdc.in +jl29jd25sm24mc29.com +jlbetjsh.com +jl.chura.pl +jlinks.industrybrains.com +jljpbs.com +jltneytrade.com +jmasadisenodeespacios.com +jmat.cn +jmayer.com +jmbi58.cjt1.net +jmb-photography.com +jmclegacygroup.com +jmdlifespace.co.in +jmdraj.com +jmgyhz.com +jmjcdg.com +jml.com +jmm.livestat.com +jmn.jangonetwork.com +jmp2click.com +jmrtech.in +jms122.cn +jmsalesassociates.com +jmsbbq.com +jmstemcell.com +jms.theprogressteam.com +jmsyap.112.2o7.net +jmufmtkevi.com +jmvjmgofvxnu.com +jndszs.com +jnhwjyw.com +j-nissitechnologies.com +jnjoilfieldservices.com +jnova.cjt1.net +jnpzz.1445tzvxq.firc.gdn +jnrlawfirm.com +jnso.com +jns-travel.co.uk +jntuhceh.ac.in +jntuhceh.org +jnvzpp.sellclassics.com +jnwky.misterjoy.ru +jnwmgwkng.top +jnxg.net +jnzxhglvf.info +jo4ykw2t.myutilitydomain.com +joamarine.com +joao.cuccfree.com +joaservice.com +job.icivil.ir +joblo.us.intellitxt.com +job-online.petrovka.info +jobs.nuwerk.monsterboard.nl +jobs-online.petrovka.info +jobwohn.oewabox.at +jobzad.com +jobzdk.nuggad.net +jocreal.com +joecartonn.com +joefama.com +joe.freelogs.com +joejdbjrmrkklfnmf.usr.me +joelosteenministries.112.2o7.net +joelosteenministries.tt.omtrdc.net +joelws.cf +joepussy.tk +joessmogtestonly.com +joetec.net +joetoons.com +joeynizuk.com +joginfotech.top +jogiwogi.com +jogjadebatingforum.or.id +johannesburgsingles.co.za +johanprolumbinohananekescssait.000webhostapp.com +johnbattersbylaw.co.nz +johnbreen.com +johnchow.us.intellitxt.com +johnfoxphotography.com +johngotti-007.com +johnlewis.112.2o7.net +johnlewisgiftshop.com +johnluis33.tk +johnraines2017.000webhostapp.com +johnrobertsoninc.com +johnsoncityfamilyretreatcom.domainstel.org +johnsondistribuidores.com +johnstonnaturalsllc.com +joiabag.net +join1.winhundred.com +joinbest.net +joincreditexpert.co.uk +joingames.org +joingvo.com +joinit.ns13-wistee.fr +joinourwebsite.com +joinrockmusic.com +joivlw.gq +jokergstay.com +jokowi12.000webhostapp.com +jolic2.com +jolu.kohlsic.net +jomjb.com +jomlajavascript.ru +jomo.in.ua +jonasmc.se +jonathanfield0.com +jonathonschad.com +jonathonsplumbing.com +joneanu.com +jonesboatengministries.net +jonglpan.it +jongose.ninja +jonpelimited.com +jonubickpsyd.com +joo2ieb.bid +joojin.com +joomlaa.ga +joonian.net +jordencom.com +jorgethebarber.com +jormanintimates.com +jornadastecnicasisa.co +jornalistasdeangola.com +joroeirn.com +jorpe.co.za +joseonpe.5gbfree.com +josephasekaraine.ru +josephlaytonlynn.com +josevazquez.com +joshi.org +jo-shop.pl +joshuamalina.com +joshwesterfield.com +josip-stadler.org +joulu.se +journal-des-bourses.com +journalhome.com +journalism.uk.smarttargetting.com +journal.jltl.org +journalofindianscholar.in +journalregistercompany.122.2o7.net +journeycursor.com +journeydownthescale.info +journeyshomehealthcare.org +jovan.soldatovic.org +jovenescoparmexstam.com +joyasesmar.cl +joyclasses.eu +joyeriatiffany.com +joyglorious.com +joyreactor.cc +joysonnsa.000webhostapp.com +joysporn.co +jozelmer.com +jp.admob.com +jp.appleid.apple.com.review-submit.info +jpay.aliapp.com +jpaypal.co.uk +jpcharest.com +jp-chase.updecookies.netau.net +jpcycles.com +jpdk.nuggad.net +j-pet.jp +j.pioneeringad.com +jpirate.cjt1.net +jpmorganchaseauthe.ghaffarigroup.com +jpropst.altervista.org +jpservers.in +jp-u.openx.net +jq9998.com +jqcv28q.com +jqk.eu +jque.net +jquery-framework.com +jqueryjsscript.ru +jqueryscript.net +jrads.com +jrapallets.com.br +jrcdelcotimescom.122.2o7.net +jrcigars.com +jrcom.112.2o7.net +jrexpress.se +jrinformaticabq.com.br +jrl.uk +jrmccain.com +jrpfekf.angelfire.com +jrpmakati.com +jrsxenkxsxto.com +js11.clickzs.com +js11.clickzzs.nl +js1.bloggerads.net +js1.hitbox.com +js3.clickzs.com +js4.clickzs.com +js4.ringrevenue.com +js.5689.nl +js5.clickzs.com +js6.clickzs.com +js77.neodatagroup.com +js7.clickzs.com +js7.clickzzs.nl +js8.clickzs.com +js9.clickzs.com +js.adlink.net +js.ad.mediamond.it +js.admngr.com +js.adpremium.org +js.adscale.de +js.ad-score.com +js.adserverpub.com +js.adsonar.com +js.adsrvr.org +jsads.sina.com.hk +js.affiliatelounge.com +js-agent.newrelic.com +jsandboxer.cjt1.net +js.apxlv.com +js-at.goldbach.com +js.betburdaaffiliates.com +js.bizographics.com +js.bunchofads.com +jsbwpg.com +jsc.adskeeper.co.uk +js.casalemedia.com +jsc.dt07.net +jscglobalcom.com +js.clickequations.net +jsc.madisonlogic.com +jsc.marketgid.com +jsc.mgid.com +js.coinisrsdelivery.com +js.convertale.com +jscxkj.net +js.cybermonitor.com +js.dmtry.com +jsdx.91xiazai.com +jsecoin.com +js.e-generator.com +js.en.redtram.com +jsep.net +js.ero-advertising.com +jsfp.coremetrics.com +jsg7mdk.com +jsg.dt07.net +js.geoads.com +js.goods.redtram.com +js.himediads.com +js.hotkeys.com +js.hotlog.ru +jshpzd.com +js.hs-analytics.net +js.hubspot.com +js.indexww.com +jsing.net +js.juicyads.com +js.livehelper.com +jsl.revsci.net +js.matheranalytics.com +js.moatads.com +jsn.dt00.net +jsn.dt07.net +jsngupdwxeoa.uglyas.com +jsn.marketgid.com +jsn.mgid.com +js.octopuspop.com +json4.ringrevenue.com +jsonip.com +jsonlinecollect.247realmedia.com +jsp2.clickzs.com +jsp2.clickzzs.nl +jsp.clickzs.com +jsp.clickzzs.nl +jspkgj.com +js.redtram.com +js.revsci.net +js.ru.redtram.com +js-sec.indexww.com +js.securesoft.info +js.selectornews.com +js.smartredirect.de +js.smi2.ru +js.softreklam.com +js.spotx.tv +js.srcsmrtgs.com +js.stats.de +js.stormiq.com +js.stroeermediabrands.de +jstaikos.com +js.tongji.linezing.com +jstzpcty.com +js.ua.redtram.com +jsu.mgid.com +js.union.doudouguo.com +js.union.doudouguo.net +js.users.51.la +jswjfhumpudlhljnib.com +jsxqhr.com +jsyhxx.com +js.zevents.com +jszshb.com +j.theadsnet.com +j-times.ru +jt.india.com +jtpk8.com +j.traffichunt.com +jtti.net +ju2g8tzj.com +ju6chah.bid +jualroofdrain.com +jualrumahmurahdilampung.com +jualsabunberas.com +juanadearco.com.uy +jubaoke.cn +jubdk.nuggad.net +jude.mx +judgebrantley.com +judith23.com +judithgatti.com +judo.salon.com +judo-steinbach.de +judowattrelos.perso.sfr.fr +judwa.gq +jue0jc.lukodorsai.info +juedische-kammerphilharmonie.de +jugadiya.com +juggler.inetinteractive.com +juggler.services.disqus.com +juh.in +juhuproperty.com +juicecleanse.com.au +juicyads.com +juicyceleb.us.intellitxt.com +juicy-news.blogspot.us.intellitxt.com +juicypussyclips.com +juicywin.pl +jujitsu-ostrava.info +jujurmujur.myjino.ru +julafayettewire.myjino.ru +juletrae.net +juliadiets.com +juliadoerfler.com +juliajaanna.se +julia-model.net +juliannas957.000webhostapp.com +juliaworld.net +julienter.com +julierumahmode.co.id +julietefurniture.pl +julylover.com +jumcna.cjt1.net +jump1ng.net +jump.aragontrack.com +jumpatjax.com +jump.ewoss.net +jumpo2.com +jumpstartthemovie.com +jumptap.com +june1st.net +juneauexploratlon.com +junecleeland.com +junge.wang +junggomania.nefficient.co.kr +junglenet-a.akamaihd.net +junicash.net +junior.apk.net +junjiezyc.com +junllian.net +junniper.mcdir.ru +junshi366.com +junsvawub.top +jupcmo.com +jupiter1.appads.com +jupiter2.appads.com +jupiter3.appads.com +jupiter.appads.com +jupiter.us.intellitxt.com +jur.unn.ac.ru +jusaas.com +jusonlights.com +just4you.org +justanalyst.com +justask.com.au +justbcause.com +justbii.com +justdating.online +just-dokamienia.pl +juste.ru +justfindout.de +justflyc.com +justgiiving.com +justintimetac.com +justjared.crwdcntrl.net +justjared.us.intellitxt.com +justlikefamilylv.com +justmakethissithappen.xyz +justmakethisthingshappen.xyz +justme2ztr.com +justmovietrailers.us.intellitxt.com +justos.com +justredirect24.com +justrelevant.com +justsayingbro.com +justsayjanet23.com +justtoocuta.org +justtravelmubarak.com +justwebads.com +jutebags.tk +jutiagroup.us.intellitxt.com +jutrack.dp.ua +jutuanmei.com +juvenco.com +juze-rust.de +jvmiranda.com.br +jvpp.com.au +jvyaydwtds.cc +jwebbsense.cjt1.net +jwelleryfair.xyz +jwpltx.com +jwrfgh.org +jwsc.cn +jwviduwkczu.net +jwvwak1a.com +jx8.pl +jxcsteel.com +jxliu.com +jxmjyl.com +jxy88.com +jxyljx.com +jyareview-document.pdf-iso.webapps-security.review-2jk39w92.ab5nights.com +jyc.com.uy +jyhaijiao.com +jzclick.soso.com +j.zeroredirect.com +jzigsobgsmxdmr.bid +jzrvquay.angelcities.com +jzstolarstwo.pl +k1s.nl +k2ktees.com +k3yw0r6.com +k5ads.osdn.com +k5zoom.com +k920134.myjino.ru +ka04b.com +kaac.ru +kaartbeheerdocument.nl +kaartenhuis.nl.site-id.nl +kabacinska.pl +ka.bar.need2find.com +kabarterbaru.000webhostapp.com +kabbaga.com +kabbalah-red-bracelets.com +kabelbw.cf +kabel-deutschlan.de +kabeltorg.ru +kabey.000webhostapp.com +kaboose.112.2o7.net +kaboose.us.intellitxt.com +kabradrugsltd.com +kacanghijaubahagia.co.id +kaceetech.com +kacstserv.kacst.edu.sa +kadado.pl +kadampra.in +kadashihotel.com +kade-project.de +kadimal.co +kadirzerey.com +kadman.net +k.admob.com +kae5woa.bid +kafarelasvineyard.com.au +kafebuhara.ru +kaffee-forum.de +kafisan.com +kafle.net.pl +kahootcreate.it +kahtanka.ru +kaidalibor.de +kaideemark.com +kailashparbatgroup.com +kainari.spring-tns.net +kainz-haustechnik.at +kairee9188.com +kaiserelektronik.de +kaizentraffic.com +kaizeraccessories.com +kajabadi.com +kajeba.su +kajnsdjk.info +kakase1.com +kakiunix.intelligence-informatique.fr.nf +kakvsegda.com +kalamburyonline.pl +kalamomia.id +kalandranis.gr +kalantzis.net +kalb.ru +kaleemkolaca.com +kalender-koch.de +kalibrium.ru +kalingadentalcare.com +kaliningrad.zrus.org +kalinston.com +kalkanpsikoloji.com +kalorsystem.com +kalsongeronline.nu +kalwik.wsite.cz +kamadenlai.5gbfree.com +kamagragelusa.net +kamagra-nederland.nl +kamalsinha.com +kamamya.com.br +kamasutra.popunder.ru +kambasoft.com +kambizkhalafi.ir +kam-dom.ru +kameja-veikals-78267.rekviziti.lv +kamen-e.ru +kamenububregu.com +kamerreklam.com.tr +kamhan.com +kamorel.com +kamu.pk +kanarya.com +kancelaria-cw.com +kandidos.com +kanika.ru +kanimage.com +kanimamboms.co.za +kanjproducts.com +kannaujperfumers.com +kannste.net +kanoodle.com +kanour.com +kansaicpa.com +kansaiholdings.com +kansas.valueclick.com +kansimt2.com +kantarmedia.guardian.co.uk +kaospolosdiora.co.id +kapcotool.com +kapeis.com +kapow.co +kapsalonstarhasselt.be +kapsonsexclusive.com +karachev-city.ru +karachiimpex.com +karadene.com +karafarms.co.nz +karaganda.xkaz.org +karakascit.com +karandanaelectricals.com +karaszkiewicz.neostrada.pl +karawanmusic.com +karawin.fr +karbonat-tlt.ru +kardelenweb.net +kareliatobacco.ru +karespade.com +kargo.com +karinarohde.com.br +karkhandaddm.edu.bd +karlast.com +karlhotel.com +karliny9.bget.ru +karlsta.se +karma-bodrum.com +karmadoon.com +karmsarpoultryindia.com +karnatakaroutes.com +karnawalowe-bony-do-drogerii.pl +karpun-iris.ru +karriere.oewabox.at +karsiselektronik.com +karting196.ru +kartiniresto.com +kartupintar.com +karumavere.com +karuniabinainsani-16.co.id +karusel-market.ru +kasa-sms.pl +kasazneta.eu +kashimayunohana.jp +kashishenterprisespune.in +kashubadesign.ru +kasioraprzezneciora.za.pl +kasmerotomotiv.com +kaspersky.122.2o7.net +kaspersky-shop.ch +kasperthreatpostprod.112.2o7.net +kassabravo.com +kasterborous.us.intellitxt.com +kasyapiserve.com +katagi-weblogs.lolipop.jp +katariyaconsultancy.com +katecy.gq +kat-gifts.com +katharinafreitag.com +katharina-von-bora.de +kathelin.com +katia-paliotti.com +katienapier.com +katie.tnctrx.com +katjimej.blog.fc2.com +katran-omsk.ru +katskitchenandbar.com +katu.adbureau.net +katushka.net +katzdev.com +kaumudi.in +kaunabreakfastkitchen.com +kaushtubhrealty.com +kavala-wedding.gr +kawalpilkadabot.getacipta.co.id +kaydayeuti.axfree.com +kaykayedu.com.ng +kaykk.com +kaytri.com +kazaa.adserver.co.il +kazaa.com +kazaki.az +kazaltd.com +kazancliurun.com +kazan.xrus.org +kazan.zrus.org +kazegami4.info +kazinogames.lv +kaz.kz +kazrent.com +kazzinc-torpedo.kz +kba.ch +kbbmain.112.2o7.net +kbphotostudio.com +kbta.kr +kbzdxt.com +kc316.com +kchaxton.com +kc.mv.bidsystem.com +kc.search.need2find.com +kcta.or.kr +kctctour.com +kcvj.larlkcn.com +kcxfcsfab.top +kc.xmlsearch.miva.com +kczambians.com +kd1004jang.myjino.ru +kdbaohiem.com +kddi.122.2o7.net +kde.nfcfhosting.com +kdfhfh.idol-s.com +kdrhb.com +kds-miit.ru +ke8u.com +kebapsaray.be +kecamatan.id +kedanosms.com +keemy.butlerelectricsupply.com +keenoutlet.online +keepaneyeadmk.hit.gemius.pl +keepaneyemk.adocean.pl +keepcolletive.com +keepingbusinesslocal.com +keepvacom.com +keikobahabia.or.id +kein-brd-personal.de +keisu02.eproof.com +kekemobile.com +kekev.romecenterapt.com +kekhk.com +kekijohy.com +kekle58.com +kekuko.com +kele1688.web23.badudns.cc +keljenhancedysb.com +keller-gmbh.de +kelleybluebook.112.2o7.net +kellicardoso.com +kellnerengenharia.com.br +keloa97w2.fanpage-serviese2.cf +kemdi.biz +kemerovo.zrus.org +kemuningsutini.co.id +kendingyou.com +kenford.com.hk +kenhhaivl.org +kenmollens.hackerz5.com +kensinpeng.com +kensokgroup.com +kentsucks.youcanoptout.com +kenwasg.com +kenyacomputer.com +kenyanofersha.xyz +kenyayevette.club +kenyclothing.net +kerabatkotak.com +keralaholidayspackage.com +keralatravelcabs.in +keramikabora.com +keripikyudigunawan.co.id +kermit.macnn.com +kermit.pinion.gg +kerplat.112.2o7.net +kerrylquinn.com +kerui.designmehair.net +kerwinandcariza.com +keshiweicy.com +kesikelyaf.com +keskinklima.com +kestraltrading.com +kestrel.ospreymedialp.com +ketaohua.com +ketchumsuvey.com +ketoanhaiphong.vn +ketoanhanoi.info +ketoanthuchanh.org +ketrzyn.pl +keurfegu.com +kewu.cfpwealthcpp.net +keybank.112.2o7.net +keybinary.com +key-customer.com +key-drive.com +keygen-password-generator.softonic.fr +keygen.us +keyhantercume.com +keymedia.hu +keyronhcafe.com +keys4nod.ru +keysbeachbungalows.com +keys.dmtracker.com +keytarget.adnet.lt +keyupgrade.stableupdate.space +keyupgrade.thecentral2updating.bid +keyways.pt +keywordblocks.com +keywordmax.com +keywords.adtlgc.com +keywords.fmpub.net +keywordsuggest.org +keywordsuggests.com +keywordteam.net +key.y0.pl +kfcf.co.kr +kfc.i.illuminationes.com +kfk-griesheim.de +kfon.eu +kfzheuteversichern.com +kfz.li +kfz-pfeiffer.de +kfz-vergleich.xyz +kfz-versicherungen.xyz +kge91.com +kgmedia.co.kr +kgune.com +kgunnerguitar.co.uk +kgv-am-teich.de +khadamat.shandiz.ir +k.h.a.d.free.fr +khafre.us +khalto.info +khamrianschool.com +khancademy.com +khanshop.com +kharagpur.in +khatibul-umamwiranu.com +khawajasons.com +khawatire.com +khd-intl.com +khmdurdmadrasha.edu.bd +kh-mi-lk.de +khoanxaydungepcoc.com +khoaypzwcclo.net +khochmanjomaa.com +khudrokhamari.com +kiarrasejati.co.id +kickassratios.com +kickeer.de +kicker.ivwbox.de +kickstartdesigner.info +kidco.com.py +kidd.reunionwatch.com +kidgames.gr +kiditoys.com.ua +kidportal.com +kidsangel.com +kids-fashion.dk +kids-in-sandbox.com +kidsinsandbox.info +kidslanguageresources.com +kidspalaces.com +kidsvertido.com.br +kiedytwojdzien.com.pl +kiel-automeile.de +kielce.win +kieranprincipal.f3322.net +kieselmann.su +kiev.ua +kiffigrowshop.com +kigalicommunicationassociates.com +kihi.gdn +kiiksafety.co.id +k.iinfo.cz +kiinomaniak.pl +kikilll0009.000webhostapp.com +kikiowy.com +kiks.yandex.ru +killerstartups.us.intellitxt.com +kilmme.5gbfree.com +kimandkristine.tv +kimbabafengshui.com +kimberleywhitchurch.com +kimbyleswprzeszlosci.pl +kimcurlrvsms.com +kimera.pl +kimeto.de +kimia.fst.unair.ac.id +kimovitt.com +kinagecesiorganizasyon.com +kincrecz.com +kindads.com +kinder.oewabox.at +kindlefere.co +kindler-knuettel.de +kinesismotorsport.com +kinezist.com +kingdomculture.se +kingdom-images.co.uk +kingfishy.com +kingislandholiday.com.au +king-of-the-rings.club +kingpinmetal.com +kingprizes.pl +kingscup.se +kingskillz.ru +kingsley.co.ke +kingspointhrtraining.com +kingsservicesindia.com +kingstonthepug.com +kinhtexaydung.biz +kino2018.club +kinobaks.com +kinobest.pl +kinocccp.net +kinofak.net +kino-filmi.com +kinoflux.net +kinofree.popunder.ru +kino-fun.ru +kinogolos.ru +kinogonew.ru +kinohall.ru +kinohit1.ru +kino-key.info +kinomaniatv.pl +kinoman-tv.pl +kinoplen.ru +kinopolet.net +kino-rating.ru +kinostorm.net +kinotek24.pl +kinotek.pl +kinotorka.ru +kino-tv.pl +kinowelt.oewabox.at +kinsalehistorysociety.com +kinslate.com +kinsmanrewards.com +kintapa.com +k.intellitxt.com +kinujemy.pl +kinzigtalradio.de +kiosked-d.openx.net +kip5j.com +kipasdenim.com +kiplinger.112.2o7.net +kiplinger-d.openx.net +kiprinform.com +kiptis.ru +kiransurgicals.com +kirdugunu.com.tr +kirgo.at +kirkjellum.com +kirkuc.com +kirmesfun.de +kirov.zrus.org +kisahanakmuslim.com +kisakuku.ru +kisima.com +kisker.czisza.hu +kiskinhouse.com +kissdoujin.com +kissfmro.count.brat-online.ro +kisshentai.net +kissingsuzykolber.us.intellitxt.com +kissmetrics.com +kitabagi.id +kitaj.dk +kitaramarketplace.com +kitaramedia.com +kitaratrk.com +kitchen-doors.com +kitchen-island.mensk.us +kitchenkreations.com.au +kitebersama.web.id +kithrup.matchlogic.com +kitisakmw23.com +kitishian.com.br +kit-opt.ru +kitoworld.com +kitsjim.com +kitsuzo.com +kittenstork.com +kittrellglass.com +kittystore.net +kiviksaif.se +kiwe-analytics.com +kiwi237au.tk +kiwifarms.net +kiwigolfpool.com +kiwionlinesupport.com +kiwire.ipnoc.net.my +kixer.com +kizarmispilicler.com +kj2hy.com +kjadesorpresas.com +kjbbc.net +kjdsbhfkjgskhgsdkugksbdkjs.cf +kjdsbhfkjgskhgsdkugksbdkjs.tk +kjfjjjiy.beget.tech +kjhkgh.skroc.pl +kjkdndskjl.info +kjmzcixgi.com +kkc-cases.info +kkd-consulting.com +kkgfjjwlc.top +kkmumen.com +kkninuo.com +kkokkoyaa.com +kkuumn.com +klacsecurity.com +kladrus.ru +klbu.com +kleenogreen.com +kleidung-direkt.de +kleinanzeigen.ebay.de.e-nutzername.info +kleine-titten.biz +kleingarten-kreuztal.de +klejonka.info +klerit.com +kletkimehan.ru +klidiit.com.br +klikbonus.com +klikijuz.com +klikk.linkpulse.com +klikmi05.esy.es +klikmoney.net +kliksafe.date +kliks.affiliate4you.nl +kliksaya.com +kliks.nl +klimark.com.pl +klipads.dvlabs.com +klipmart.dvlabs.com +klipmart.forbes.com +k-lite.tk +klopkeyjukolbfg.gq +klosetkitten.com +kloshpro.com +kloudexchsrv.com +klowns4phun.com +kls.secure-cart.biz +klubhaus-stocksen.de +klucze-csgo.pl +kluis-amsterdam.nl +klumba55.ru +kluxdance.com.br +klxtj.com +km4.ru +kmabogados.com +kmavj.ab4all.com +kmdl101.com +kmd-pto.ru +kmip-interop.com +kmlky.com +knac.us.intellitxt.com +knappensee-ferienparadies.de +knc.lv +kndxbkdx.bloger.index.hr +kneelandgeographics.com +knefel.com.pl +knez.com +knight.economist.com +knightre.com.au +knigonosha.net +kniverto.com +knogg.net +knol.pw +knownbroad.net +known.counsellor.gov.cn +knowyourmobile.uk.intellitxt.com +knowyournextmove.com +kntksales.tk +knubbig.se +kobatochan.co +kobesportswear.date +kobeteppanyakiandsushi.com +kobieta-kobietom.com.pl +kocham-cie.c0.pl +kochamy-filmy.pl +kochanelli.com +kochsfarmservice.com +koddenberg.com +kodipc.linkandzelda.com +kodyrabatowe.16mb.com +kodyumyslu.pl +koege.nu +koerperkultur-herten.de +kogirlsnotcryz.ru +kohliads.in +koho.in +kohsarmangla.com +koi4ever.de +koiadang.co.id +kolath.in +kolaye.gq +kol-energo.ru +koleso24.com.ua +kolibri-store.de +kolidez.pw +kollagen4you.se +kollesa.ru +kollory-fejsa.blogspot.com +kolloryfejsa.blogspot.com +kolmardsservice.se +kolorfacebooka24.blogspot.com +kolorowo.grupki.com +kolorowy-f-b.blogspot.com +kolorowy-fejs.blogspot.com +kolorowyfejs.wirtualnie.pl +koloryfejsa.blogspot.com +kolotiloff.ru +kolsaati.org +kolyeuclari.info +kombinatornia.pl +komikeglence.com +kominiarze-wadowice.pl +komkovasu.427.com1.ru +komodia.com +komoeng.com +komoona.com +kompasads.com +komplettraeder-24.de +komp-pomosch.ru +komputernaya-pomosh-moscow.ru +komputers-best.ru +komputery48.pl +komtilmil.no +kona2.kontera.com +kona33.kontera.com +kona3.kontera.com +kona4.kontera.com +kona5.kontera.com +kona6.kontera.com +kona7.kontera.com +kona8.kontera.com +kona.kontera.com +konax.kontera.com +konflow.com +kong4oh.bid +kongoultry.net +kongruan.com +kon.hit.gemius.pl +konkourpedia.com +konkrs-iphone7.pl +konkurs2016.site88.net +konkurs6.com.pl +konkursbiedronka.5v.pl +konkurs.mtrend.ru +konkursnafb.firmowo.net +konkursov.net +konkursowo-24.pl +konkurs-uyp.j.pl +konkursy24.ml +konkursy.de +konnectapt.com +konnect.videoplaza.tv +konoplisemena.com +konstantin.freespaces.com +konsultacija.lv +konsultanaplikasiandroid.web.id +konteiner24.com +kontera.com +konto1.cal24.pl +kontorsutrustning.nu +konturkrasoty.ru +kooklascloset.com +koombla.com +koopilka.com +koprin01.com +koprio.cf +koprio.ga +koptims.tiu.ru +koral.se +kordon74.ru +koreasafety.com +koreatojapan.com +korkeaoja.org +korngiebel.de +koronirealestate.gr +korsikafreunde.de +korstnatont.ee +korturl.com +kosdyvore.angelcities.com +koseogluinsaatmermer.com +kos.interseek.si +kosiwere.net +kosmetyki.tm.pl +kosova.de +kostenloser-sex.com +kostenlos-sexvideos.com +kosynka-games.ru +kotahenacc.sch.lk +kotakinabalu.com.au +kotikokki.spring-tns.net +kouitc.com +koums.com +kovesszucs.atw.hu +kowasaki.com +kozhniebolezni.com +kpalion.piwko.pl +kpg-digital-blog.de +kpintra.com +kpjmarketing.com +kpli.courtindental.org +kplusd.far.ru +kpmyxjzbo.top +kpn.com-klantenservice.asiapopgirls.com +kpopstarz.us.intellitxt.com +kpremium.com +kpzip.com +kqdpohfqj.top +kqf.eu +kqzyfj.com +krafte.ru +krafteurope.112.2o7.net +kraftkottage.com +kraljeva-sutjeska.com +kraonkelaere.com +krasbiasiconstrutora.com.br +krasivoe-hd.com +krasivoe-hd.net +krasivye-devushki.net +krasnodar-avtolombards.ru +krasnodar.ru +krasnodar.xrus.org +krasnodar.zrus.org +krasota-olimpia.ru +krassh.ru +krater.iprom.net +krdn.pl +kreaffiliation.com +kreanova.fr +kreativkamen.com +kreativperlen.ch +krebsmethod.com +kredit-pod-zalog-krasnodar.ru +krestenbv.nl +krews.io +kriokomora.info +krisbel.com +kristallgrottan.se +kristengiralda.ru +kroger-feeback.com +kromozome.net +kronehit.oewabox.at +krone.nuggad.net +krone.oewabox.at +kropka.onet.pl +krot2918.ddns.net +kr.phorm.com +krrehw.com +krsa2gno.congrats-sweepstakes-winner.com +krsa2gno.important-security-brower-alert.com +krsa2gno.internet-security-alert.com +krsa2gno.todays-sweepstakes-winner.com +krsa2gno.youre-todays-lucky-sweeps-winner.com +krs.ymxpb.com +kruszywa.pl +krynica.info +ks1234.com +ks.5.p2l.info +ksb.com.bd +ksdiy.com +ksdnewr.com +ksdremwtrust.org +kserv.krldysh.ru +kshc-ev.de +ksh-m.ru +ksiazka-telefoniczna-online.pl +ksmiwcmfh.com +ksnsse.com +ksp.chel.ru +kspengineering.com +kstcf.org +k.streamrail.com +ksv-holzdorf.de +kszozkosz.pl +kt4.kliptracker.com +ktar12.ru +ktdrvbhak.top +k-techgroup.com +ktfyn.dk +kt-g.de +kthudyqssoyctbooqjng.com +ktistakis.com +ktocieusunal.pl +ktodwiedza.pl +ktoooo.com +ktopodgladamnienafacebooku.wordpress.com +ktosxy.de +ktotopaczy.pl +ktotut.net +ktrackdata.com +kt.tns-gallup.dk +ktu.sv2.biz +ktva.112.2o7.net +ku6afp.allyes.com +ku6.allyes.com +ku6.com +kuaiche.com +kuaixia.com +kuaiyan.com.cn +kuaiyinren.cn +kualalumpurspecialist.org +kubstroy.by +kudopepek.000webhostapp.com +kudrnwosas.faith +kuhdi.com +kuiler.com +kuizhai.com +kula-dep.justdied.com +kuliahpagi.96.lt +kulida.net +kulro.csheaven.com +kumuk.info +kumykoz.com +kunbang.yinyue.fm +kundendienst.de.com +kundenkontoverifikation.com +kunden-secured.info +kundenservice-1278.dq3dq321dd.net +kundensicherheit.global +kundensupport.gdn +kunden-verifi.info +k-und-f-modellbau.de +kunduntravel.net +kung-fu-ru.com +kungfuwealth.com +kunst-keramik-kunst.de +kunstschmiede-balbach.de +kuosyyuo.net +kupit-adenu.ru +kupiyoya.ru +kupzytax.pl +kurandersleri.net +kurbanoldigim.duckdns.org +kurbantours.com +kurdart.com +kurdish-homes.com +kursusfotografi.info +kursusinggrisislami.com +kursuswebsite.my +kursy-ege.ru +kusco.tw +kusnierzszczecin.pl +kustanay.kz +kustenshundklubb.com +kusuka.co.id +kuswanto.co.id +kutika.com +kutikomi.net +kutipayeert.com +kuttab.ae +kuwaitils.com +kuwaitzoom.net +kuyxjgf.ga +kuzinsp.ru +kuzrab.maxpolezhaev.ru +kvartira-sutochno.com +kvartir-remont.biz +kvartiry-remont.ucoz.ru +kvismaren.se +kvors.com +kvtek.in +kvvijrmu.angelcities.com +kw21.org +kw34h-lithi-owo.tk +kwantm.nl +kwaset.com +kwbtgame.com +kwekerijborgers.trade +kwenzatrading.co.za +kwery.com +kwiatynaboya.pl +kwistal.nl +kwnrtj8.com +kwserver.adhispanic.com +kwzf.net +kxrzz.superpromo.7112531.com +ky.5.p2l.info +kyliebates.com +kyma3bt.com +kyoto.com.br +kyrsu.frost-electric-supply.com +kyscanner.it +k.zeroredirect.com +kzhqzx.com +kz.search.need2find.com +kz.tns-counter.ru +l161c.com +l1.cdn.qnsr.com +l1nk.pl +l1.qsstats.com +l1.zedo.com +l2.l.qq.com +l2.zedo.com +l3d1.pp.ru +l3d.pp.ru +l3.zedo.com +l4.zedo.com +l.5min.com +l5.zedo.com +l6vspdcg-site.etempurl.com +l6.zedo.com +l7.zedo.com +l8.zedo.com +l9tdhe6.com +la21jeju.or.kr +la.5.p2l.info +lab88inc.112.2o7.net +labanquepopulaire-cyberplus.com +labconnectlc.com +labeldom.com +labelwater.se +labmen.com +laboratories.net +laboratoriosanangel.mx +laborem.ca +laboroflove.us.intellitxt.com +labplus.ru +labs-cdn.revcontent.com +labs.natpal.com +labtags.com +labvis.host.sk +lacaixya.beget.tech +lacasadelcuenco.cl +lacasadelgps2021.com.ve +lacasamorett.com +lacavedemilion.com +lacave.ntic.fr +lachambrana.com +lachhmandasjewellers.com +lacloop.info +lacoccinella.info +lacoste.com.ph +lacroip2.beget.tech +lacuesta.com +lacv.co.in +ladeconstructions.com +ladieshj.112.2o7.net +l.admob.com +lador.com.ng +ladov.ru +ladujpsc.pl +l.adxcore.com +ladybug.gutterheatersus.com +ladyclicks.ru +ladydeefragrances.com +ladyhao.com +lady.qwertin.ru +laerner.org +laexotic.com +laextradeocotlan.com.mx +la-fa.ru +lafourmiliaire.com +lafriore.ru +lagenscheidt.de +lagerhaus-loft-toenning.de +laghartruan.com +lagrotta4u.de +lagubox.net +laidebc.xyz +laikanmn.com +lailasaroma.se +laineygossip.us.intellitxt.com +laiqukeji.com +lajaniquerafm.com +lakeecogroup.com +lakefrontvacationsuites.com +lakelurelogcabin.com +lakemedelsvarket.se +lakenormanautorepair.com +lakequincy.com +lakeshore.d1.sc.omtrdc.net +lakewoods-wiflow.com +lakita.com +lakshminivashousing.com +laleh.itrc.ac.ir +lalente.eu +laliga-fans.ru +lamacze-jezyka.pl +lamaisondelaforet.net +lamar12345678.5gbfree.com +lambandfox.co.uk +lamborghino.cl +lameh.info +lamictal.about-tabs.com +lamiflor.xyz +lamisil.about-tabs.com +lamoriahospital.com +lampokrat.ws +lampunggeh.or.id +lamtinchina.com +lanaalkhabar.com +lanadelreyfans.us +lanasshop.ru +lancheck.net +lancolombia.org +landingpages.sunnytoolz.com +landings.trafficz.com +landing.trafficz.com +landinvestmentnigeria.com.ng +landisbaptist.com +landlcarpetcleaning.com +land.pckeeper.software +land.purifier.cc +landreferat.ru +landscaping.center +landtrades.co.uk +landwirt.oewabox.at +langeelectrical.com +langenbergandassociates.com +langkawi.name +langtupx.com +languagecode.com +languages-online.org.uk +langzeitwetter.de +lankarns.com +lanknesscerement.com +lank.ru +lanmeishiye.com +lanonna.co.uk +lanovi.altervista.org +lanshanfood.com +lanticoforno.it +lanuteo.com +lanzarotehoppa.com +lanzar.publicidadweb.com +laohuangli365.com +laos.luangprabang.free.fr +laparfumotec.com +lapiden.com +lapitec.eu +laposteitaliane.com +laptopb4you.com +laptoper.net +laptoplogic.us.intellitxt.com +laptopmag.122.2o7.net +laptopmag.us.intellitxt.com +laptopreportcard.com +laptoprewards.com +laptoprewardsgroup.com +laptoprewardszone.com +lararquitectura.com +larazon.bodeboca.com +larchik.net +lardi.frizull.net +laredoute.solution.weborama.fr +laredoutte.se +largermethodenroll.club +largersystemenroll.website +largestern.net +larissa.lon.spotify.com +larivieracasino.com +larodimas.top +larosaantica.com +larose.jb2c.me +larryshiller.com +laruescrow.com +larutti.ru +larymedical.ro +lasanvala.com +la-schongau.de +lasconchas.org +laser-kunst.de +laserprinters.in +laserstrength.com +lashandlashes.hu +lasimp04risoned.rr.nu +lasmoras.com.mx +laspfxb.com +lastampa01.webtrekk.net +lasthr.info +lastmeasure.zoy.org +lastminengb.112.2o7.net +lasttwo.strangled.net +lastwarning-fb.000webhostapp.com +lasvagastours.com +lat34.us.intellitxt.com +latabu.ru +lateecapes.com +latefootcity.tk +latency.ttrraacckkrr.com +latengineering.com.ua +latestsearch.website +latforum.org +latierramagica.com +latignano.it +latin3.directtrack.com +latinoreview.us.intellitxt.com +latinpost.us.intellitxt.com +latlavegas.com +latordefer.com +latribune.electronicpromotions2015.com +latrucksupply.com +latstggssysdomainmsc.000webhostapp.com +latviesu-sapnis-sia.rekviziti.lv +laudit.ru +laughteryogaalbany.com.au +lauglyhousebuyers.com +laulini.soclog.se +laumauna.com +launch.adserver.yahoo.com +launchbit.com +launch.zugo.com +laurahanly.robhanly.com +laurelmountainskiresort.com +laurel.rovicorp.com +laurencelee.net +laurentia.ca +lausitz-holz.de +lava.hatchfactory.in +law.dekante.ru +lawee.org +lawfirm.chungcheng.net +lawfirmediscovery.com +lawklepwvnoo.com +lawn.5gbfree.com +lawoh.us +lawsonhead.com +laxdrills.com +laxnws.112.2o7.net +laxprs.112.2o7.net +laxpsd.112.2o7.net +laxsacha.com +laxtrb.112.2o7.net +laxwht.112.2o7.net +laxwht.122.2o7.net +lay.elticket.com.ar +layer-ad.de +layer-ad.org +layer-ads.de +layerads.ero-advertising.com +layola.biz.tc +layout1.realtracker.com +laytonhubble.com +lazereaprendizagem.com.br +lazycranch.us +lazyprofits.go2jump.org +lazy-z.com +lb1.www.ms.akadns.net +lb-adserver.ig.com.br +lbcpzonasegura-viabcp.wc-line.com +lbcpzonasegvraviabcp.com +l.betrad.com +lb.fruitflan.com +lb.hitbox.com +lbmm88.com +lbn.ru +lboevbwgg.top +lbsacr.com +lb.statsevent.com +lbsycw.com +lb.usemaxserver.de +lb.web-stat.com +lc0pyfn.com +lcbcad.co.uk +lchbftv6fn1xmn3qagdw.tyremiart.com +lchfdiet.com +lci1a.voluumtrk.com +lc.livefyre.com +lcloud-account.com +lcloud.com.ar +lcloud-find-id.ml +lcloud-location.com +lcloudsecure.accountverifikation-lcloudservice.com +lcloud-support-lnfo.ml +lcloud-supreme-xclutch-gear-gaming.com +lcloud-verifybillinginformation.ryhta.com +lcs-klantencontact.nl +lct.salesforce.com +lcvc.co.uk +ld1.criteo.com +ld2.criteo.com +ld82ydd.com +ldglob01.adtech.de +ldglob01.adtech.fr +ldglob01.adtech.us +ldglob02.adtech.de +ldglob02.adtech.fr +ldglob02.adtech.us +ldimage01.adtech.de +ldimage01.adtech.fr +ldimage01.adtech.us +ldimage02.adtech.de +ldimage02.adtech.fr +ldimage02.adtech.us +ldrtrack.com +ldschurch.tt.omtrdc.net +ldserv01.adtech.de +ldserv01.adtech.fr +ldserv01.adtech.us +ldserv02.adtech.de +ldserv02.adtech.fr +ldserv02.adtech.us +ldsfch.112.2o7.net +ldtaempresanostra.com.br +ldtfksxqh.top +le1er.net +le589.com +lead-123.com +lead-analytics.nl +leadback.advertising.com +leadboltads.net +leadclick.com +leader.linkexchange.com +leaderseineaval.com +leadersinchildcare.com +leadgenetwork.com +leadingedgecash.com +lead.network +leadn.pl +leadofferscrew.com +lead.program3.com +leadpub.com +leads-eh.com +leadsynaptic.go2jump.org +leadwayau.com +leadzupc.com +leagleconsulting.com +league-brute-force.tk +leahram.daimlercruiz.ml +leaitworldprod.112.2o7.net +leanstepup.com +learn2blean.com +learnandpass-ged.org +learnerjourney.com.au +learning-offer.com +leasteach.net +leatherkonnect.com +leave.exacttarget.com +lebagoodboxc.com +lebbi.com +lebekodecor.co.za +lebensfreunde50.de +leblancdesyeux.ca +leboard.ru +lecafecafe.com +lechelasmoras.com.mx +lechenie-gemorroya.com +lecloud-orange.com +lectscalimertdr43.land.ru +ledigaseftersystemr.com +ledigitalmedia.com +ledis.top +ledpolice.ru +leeenterprises.112.2o7.net +leekaz2.000webhostapp.com +leelasinghberg.org +leesangku.com +leesideweb.net +leferinktractors.com +lefos.net +legalcreativo.com +legalhelpmn.org +legalizacja.5v.pl +legall.co.in +legal-nurse-consultants.org +legalpornotube.com +legalrc.biz +legal-rewardpath.com +legalzoom.tt.omtrdc.net +legend.ac.cn +legendofdragoon.com +legendsdtv.com +legenebank.com +leggingscloset.com +legitlogistics.com.au +legitptg.com +legitreviews-uk.intellitxt.com +legma.net +lego4x4.ru +lehomy.gq +lehtimedia.spring-tns.net +leidosheathcare.com +leightonhubble.com +leisure-offer.com +lejrvk.com +leker-king.id +leksimobile.com +leleketang.co +lelogo.net +lemarche.pf +lemke-collection.de +lemonparty.biz +lemonparty.org +lemonsk.f3322.net +lenadorlastrancas.cl +lenegoce.com +lengendondbeat.com.ng +lennoxcollections.com +lenovo.112.2o7.net +lensstrap.com +lenteramutiarahati.id +lenterasejahtera.com +lenvred.org +leo94dhgfyw-df87fb.tk +leomphotography.com +leon10.5gbfree.com +leonah.5gbfree.com +leonarderickson.chez.com +lepetitbonhommeenmouss.eu +lepetitmignon.de +lernbroker.de +lernur.net +lerporn.info +lesbian-erotica.hitbox.com +lesbian.xyz +lesby.cl +leschaletsfleuris.eu +lescinq.com +lesechos.ezakus.net +leslascarsgays.fr +lesschwartzphotography.com +lessrock.com +les-terrasses-de-saint-paul.net +lesview.com +leszektrebski.pl +letgoletgod.com.au +leticiaaraujo.com.br +letmacwork.world +letmefind.co +letolove.ru +letsart.ru +letsee.courtindental.com +letsfinder.com +letsgodigital.uk.intellitxt.com +letslowbefast.site +letslowbefast.today +letsrun.us.intellitxt.com +letssearch.com +lettijanot.trade +letto.by +letzonke.com +leuco.com.cn +leucosib.ru +level3.applifier.com +levelrate.de +levelshomes.com +level.turboads.de +levenshteinanswer.com +leveragemarketing.112.2o7.net +levexis.com +levitra.1.p2l.info +levitra.3.p2l.info +levitra.4.p2l.info +levityisland.com +lev-livet.se +levrei.de +levzeya.com.ua +lex8.com +lexapro.1.p2l.info +lexapro.3.p2l.info +lexapro.4.p2l.info +lexaprogeneric.link +lexicherida.trade +lexir.rocks.us.kzpcmad.tk +lexoi.com +lexstonesolicitors.com +lextrim.com +lexu.goggendorf.at +lexvidhi.com +lezbiyanki.net +lfacebook.za.pl +lfc.by +lfcraft.com +lfgkyy.com +lflash.ru +lfqvgmphn.com +lfscpttracking.com +lfstmedia.com +lg1.brandreachsys.com +lg.brandreachsys.com +lgebtufhavborm.com +lgelectronics.122.2o7.net +lgoconsulting.com.au +lg-telecom.com +lhighschool.edu.bd +lhs-mhs.org +lhsmidatlantic.com +lhuy.com +liagand.cn +lian-yis.com +liapentruromania.ro +liarsbar.karoo.net +lib4.libstat.com +lib6.libstat.com +libaa.com +libecki.net +liberated.org +libertybilisim.com +liberty.gedads.com +libradu.akerusservlces.com +librairie.i-kiosque.fr +library.cowley.edu +libs.de.coremetrics.com +libton.org +licenseacquisition.org +liceoscientificomt.it +licforall.com +lichtundliebeistleben.de +licy.com.br +liczba-dzieci.wirtualnie.pl +lidaergroup.com +lida-ru.com +lideragro.ru +liderkirici.com +li-dermakine.com.tr +lider-revda.ru +liders.biz +lider-zhaluzi.kiev.ua +lidl-dsl.de +lidlretargeting.adspirit.de +lie2anyone.com +lie4anyone.com +lie8oong.com +liendoan8.com.vn +li-er.ru +lietaer.com +life.biz.ua +lifebyleese.com +lifeeverest.com +lifefeet.net +lifehackz.net +life-instyle.com +lifeisgoodwhenu2.info +lifemediahouse1.onlinewelten.com +lifenetusa.com +lifeonthebteam.com +lifeplain.net +lifesbettercheddar.com +lifescience.sysu.edu.cn +lifescript.us.intellitxt.com +lifeskillsacademy.co.za +lifestyles.pp.ru +liffeytas.com.au +liftdna.com +ligatus.com +ligatus.de +lightbox-photography.de +lightcloud.pl +lighthouse2k.com +light.ifmo.ru +lightinghomes.net +lightningcast.net +lightoflife.com.au +lightspeedcash.com +lignespacemobille.com +lignofix.ua +ligtv.kokteyl.com +ligui-moly.de +liguriaguide.it +liguriani.it +liin.ml +lijapan.com +lijit.com +likasbayprecinct.com +like.likewut.net +likeportal.com +likesdesign.com +likes.gisnetwork.net +likespike.com +likesuccess.com +likethislist.biz +likethis.mbosoft.com +likevip.info +liky.co.ua +liliaa.altervista.org +lilupophilupop.com +lilyjewellers.com +lily-ksa.com +lilyrose.se +lilzeuansj.it +limads.men +limbonganmaju.com +limemusiclibrary.com +limg.adspirit.de +limimi8.com +limitedaccount.ml +limited-updatesaccount.com +limpezadefossas.com +limpingline.com +limted-accounts.tk +limtu.ifmo.ru +lin31.metriweb.be +linconpark.com +lincontro.se +lincos.net +linda4y.5gbfree.com +lindonspolings.info +linenghb.com +linerdrilling.com +lineshops.biz +linfenit.com +lingerieexpress.co.uk +link104.com +link2me.ru +link2register.com +link4ads.com +link4link.com +link.ac +linkadd.de +linkarena.com +link.bannersystem.cz +linkblt.com +link-booster.de +linkbucks.com +linkbuddies.com +linkconsultants.net +linkcounter.com +linkcounter.pornosite.com +link.credomobile.com +linkdebrideur.xyz +linkedin.com.be.login.submit.request.type.usersupportminlinkedin.belgium.amea.net.au +linkedin.com.login.secure.message.linkedin.yayithequeen.com +linkedin.com.uas.consumer.captcha.v2challengeid.aqeq81smued4iwaaavetrwe5crrrqe.gl2uqazct0vuxx.laprima.com.au +linkedinupdate.couplejamtangan.com +linked.nstrefa.pl +linkedtotal.com +linkedways.com +linkerpro.pl +linkexchange.com +linkforme.tk +link.ixs1.net +linkjumps.com +link.link.ru +link.masterstats.com +link.nextgov.com +linkprice.com +linkpulse.com +linkrain.com +linkredirect.biz +linkreferral.com +linkrr.com +link.ru +linkru.com +links-and-traffic.com +linksexchange.net +linksharingt.com +links.heliohost.org +linkshighway.com +links.industrybrains.com +links.onlinedownloads.org +links.outster.com +links-ranking.de +links.services.disqus.com +links.sexlist.com +links.sextracker.com +link-sss.com +linkstorms.com +linkswaper.com +links.worldbannerexchange.com +links.xxxcounter.com +linktarget.com +linktrack.bravenet.com +linktracker.angelfire.com +linkvip.com +linkwithin.com +linkz.it +linnebank.faith +linscattoni.adv.br +lintv.122.2o7.net +linuxdevcenter.us.intellitxt.com +linuxdiamonderrorfix.xyz +linux.esfelgueiras.org +linuxforums.us.intellitxt.com +linuxinnererrorcode.xyz +linuxjournal.us.intellitxt.com +linuxpark.adtech.de +linuxpark.adtech.fr +linuxpark.adtech.us +lio888.com +liones.nl +lionhartcleaning.co.uk +lionstracking.com +lion.web2.0campus.net +lior-tzalamim.co.il +liportal.oewabox.at +liputan6.comxa.com +li.pxl.ace.advertising.com +liquidacionessl.com +liquidad.narrowcastmedia.com +liquidestate.org +liquimondo.com +liqwid.net +lira-apartmani.com +lireek.com +lirunet.ru +lisboadiadia.com +lisik.pl +lis-lb.com +lisovfoxcom.418.com1.ru +lisque.batcave.net +lista.liveondns.com.br +listat.biz +listbuildingwizardry.com +listenlistenlisten.org +listennewsnetwork.com +listgamesonline.com +list.ru +lita-lighting.com +litec-fr.com +liteful.com +litfusemusic.com +litgit.com +lithiumcheats.xyz +litoa.gr +lit.railcentral.com.au +little-amadeus.de +littleberry.ru +littleconcert.top +little.forexbrokerstoday.info +littleleague.com.au +littlelovespuppydogs.com +littlesturgisrally.com +littlesunraiser.com +littwronthath.net +liupis.com +liuz112.ddns.net +liuzzasnola.com +liveadexchanger.com +livecamgirls.streamray.com +live-cams-0.livejasmin.com +live-cams-1.livejasmin.com +livecams.nl +live.chartboost.com +livecheck.theperfectsystoupdating.date +livedealcom.112.2o7.net +live-dir.tk +livedownloadnet.pl +liveenterprises.co.in +livefixer.com +livefootball.ro +livehomade.com +liveintent.com +livejasmin.com +livejournal.tags.crwdcntrl.net +live.monitus.net +livenation.122.2o7.net +livenation.sp1.convertro.com +livench.com +liveproperty.morsit.com +live.rads.msn.com +liverail.com +liver-chintai.org +liveresellerweb.eu +liverichspreadwealthglobaltelesummit.com +liverpool.gsofootball.com +liversely.com +livescience.us.intellitxt.com +live.sekindo.com +live-sexcam.tk +live-sexchat.ru +liveshoppersmac.com +livestats.atlanta-airport.com +livestreamhd24.com +livestrong.us.intellitxt.com +livetorrents.com +livetracker.voanews.eu +livetradingzone.com +livetravelnews.com +livetsomudvekslingstudent.bloggersdelight.dk +liveu.infoteka.hu +livewell.net +livewellprojects.com +livewire.ws +live.wordpress.thevoiceofonett.org +livinchurch.com +livingcanarias.com +livinggood.se +living-in-spain.me +livingiqz.info +livinglounges.su +livingmv.info +livingnet.adtech.de +livingroomdecor.info +livingsocial.sp1.convertro.com +livingsquaremyanmar.com +livinguz.info +livingwar.info +livnicaplamen.co.rs +livrareflori.md +livre.wasastation.fi +liza222.com +lizace.com +lizardslaugh.com +lizperezcounseling.com +lizzy.altervista.org +ljdh-mexico.com +ljfyg68.com +ljsyxx.cn +ljusihus.se +ljvixhf6i-site.1tempurl.com +lk5566.com +l.kavanga.ru +lkbennettoutlet.online +lkbennettstore.online +lkiigtaaq.net +lksisci.com +lkw-modelle.de +llaconsultores.cl +lladinserts.us.publicus.com +llaredlrgn.angelcities.com +llastbuy.ru +ll.atdmt.com +llbpropertiesinvestments.com +llc-invest.drkvrvidyasagar.com +lld2q.com +llfym.com +llhan.com +l.linkpulse.com +llo123.com +lloydsrealty.com +lloydstsb8780.com +l.lp4.io +llyodank.managingbyod.com +lma7vytui-site.1tempurl.com +lmcd.us.intellitxt.com +lmco.in +lmdlnc.com +lmhof.net +lmodr.biz +lmportant-notlce-021.gdn +lmportant-notlce-231.gdn +lmportant-notlce-2z0.gdn +lmportant-notlce-531.gdn +lmportant-notlce-d31.gdn +lmportant-notlce-k21.gdn +lmportant-notlce-m21.gdn +lmportant-notlce-o31.gdn +lmportant-notlce-o41.gdn +lmportant-notlce-p31.gdn +lmportant-notlce-q21.gdn +lmportant-notlce-q31.gdn +lmportant-notlce-r21.gdn +lmportant-notlce-w31.gdn +lmportant-warnlng-121.gdn +lmportant-warnlng-211.gdn +lmportant-warnlng-511.gdn +lmportant-warnlng-a21.gdn +lmportant-warnlng-b11.gdn +lmportant-warnlng-cx0.gdn +lmportant-warnlng-e01.gdn +lmportant-warnlng-f21.gdn +lmportant-warnlng-g01.gdn +lmportant-warnlng-g21.gdn +lmportant-warnlng-j21.gdn +lmportant-warnlng-m21.gdn +lmportant-warnlng-n11.gdn +lmportant-warnlng-n21.gdn +lmportant-warnlng-p11.gdn +lmportant-warnlng-r21.gdn +lmportant-warnlng-w01.gdn +lmrauction.com +lmrports.com +lmshop.se +lmsmithomo.altervista.org +lmsongnv.com +lnads.osdn.com +lnb-strazdumuizas-klubs.rekviziti.lv +ln.doubleclick.net +lneplfvvgcbb.com +lnfo.eu +lnhxwmhoyjxqmtgn9u.com +lnkem.com +lnkem.xyz +lnktk.com +lnmaityayurveda.com +lnow.de +lnqgw.com +lnterbank.pe-ib.com +lntraintree-prelaunch.com +lnx.esperienzaz.com +lnx.forkapple4.it +lnx.kifachadhif.it +lnx.loulings.it +lnx.ma3andi.it +lnx.makibanch.com +lnx.momingd.com +lo2.me +loader.topadvert.ru +loadeu.exelator.com +load.exelator.com +load.focalex.com +loading321.com +loadingpages.me +load.instinctiveads.com +load.jsecoin.com +loadm.exelator.com +loadopia.com +load.passionfruitads.com +load.s3.amazonaws.com +load.scanscout.com +load.sumome.com +loadus.exelator.com +loady.de.intellitxt.com +loan.aol.msk.su +loandocument.montearts.com +loan.maybachexelero.org +loanmpay.com +loanshoan.com +loansinsurancesplusglo.com +loansolo.us +loan-uk.uk.com +lobby.sexlist.com +lob.com.ru +lobstersrq.com +loc1.hitsprocessor.com +localbusinessguides.com +localeandco.com.au +localflirtbuddies.com +localgov.it +localh0st.info +localhealthagents.com +localhost.ticbeat.co +localleadsrus.com +localmatchbook.com +localmediaadvantage.com +local.nu +localpastures.com.au +localpoker.com.au +local.promoisland.net +localtiger.co.uk +locatelli.us +locate-myapple.com +locateyouricloud.com +location.fashionises.com +locationlook.ru +locations-map.com +lockdoctorlv.com +locked-cloud-appleid-srvc-cgi-id1.com +locked-n-erbalist.com +locked.one +locken-idol.com +lockergnome.us.intellitxt.com +lockerz.com +locksmithdenver.ga +locksmithdenver.gq +locksmith.jp +lococcc.com +lodgerva.com +lodki-pvh.dp.ua +loestrin.1.p2l.info +loft2126.dedicatedpanel.com +loftdigital.eu +log1.countomat.com +log3.optimizely.com +log4.quintelligence.com +log999.goo.ne.jp +log.adap.tv +log.aebn.net +loga.hit-parade.com +loga.xiti.com +log.btopenworld.com +logc111.xiti.com +logc11.xiti.com +logc135.xiti.com +logc138.xiti.com +logc13.xiti.com +logc142.xiti.com +logc146.xiti.com +logc149.xiti.com +logc14.xiti.com +logc15.xiti.com +logc169.xiti.com +logc16.xiti.com +logc173.xiti.com +logc175.xiti.com +logc180.xiti.com +logc181.xiti.com +logc187.xiti.com +logc189.xiti.com +logc19.xiti.com +logc1.xiti.com +logc202.xiti.com +logc205.xiti.com +logc206.xiti.com +logc209.xiti.com +logc210.xiti.com +logc218.xiti.com +logc22.xiti.com +logc238.xiti.com +logc252.xiti.com +logc253.xiti.com +logc25.xiti.com +logc26.xiti.com +logc279.xiti.com +logc2.xiti.com +logc31.xiti.com +logc32.xiti.com +logc35.xiti.com +logc3.xiti.com +logc400.xiti.com +logc407.xiti.com +logc7.xiti.com +logc89.xiti.com +logc8.xiti.com +log.circle.com.ng +log.clickstream.co.za +logero8g.beget.tech +log.feedjit.com +logger.cash-media.de +logger.snackly.co +logger.virgul.com +loggin98.info-2017.net +log.hankooki.com +loghouserestoration.ca +logi103.xiti.com +logi104.xiti.com +logi10.xiti.com +logi118.xiti.com +logi11.xiti.com +logi125.xiti.com +logi12.xiti.com +logi13.xiti.com +logi141.xiti.com +logi150.xiti.com +logi151.xiti.com +logi162.xiti.com +logi163.xiti.com +logi242.xiti.com +logi4.xiti.com +logi5.xiti.com +logi6.xiti.com +logi7.xiti.com +logi8.xiti.com +logi9.xiti.com +logicac.com.au +logica-info.com +logicalastrology.com +logicalmans.com +logiconengineers.net.in +logicspare.com +log.idg.no +logidlink.000webhostapp.com +logiin3248.event-2017.net +logik.info +login1235.xyz +login1237.xyz +login1238.xyz +login123.xyz +login345.xyz +login365.org +login54usd.online +login8568956285478458956895685000848545.tunisia-today.org +login-accountconfirmation.verification-paymentitunesstore.cf +login.accountdocumentonlineviewdocumentbestme.sagesae.com +login-accountidentification.verification-paymentitunesstore.cf +loginaccount.web-vip.com +login-applecom.org +login-appleit-assistenza-apple.com-support.itilprot.com +login.docaccountdownloadvesbestlinojneviewer.nboatclub.com +login.dotomi.com +login.dotomi.net +logindropaccountonlinedocumentsecure.com.sshcarp.com +loginduepunti.it +login.fidelity.com.ftgw.fas.fidelity.rtlcust.login.init.authredoltx.fidelity.com.ftgwfbc.ofsummary.defaultpage.acmeses.com +logingvety6.smartsoftmlm.co +loginhj-teck.com +login.linkedin.update.secure.login.security.com-linkedin.login.pucknopener.com +login.linkpulse.com +login.live.com.alwanarts.com +login.live.com.login.srf1.21.212.448gddfbsndhq.7910587.contact-support.com.mx +login-manage.com +login.microsoft.account.user1.csxperts.com +login.microsoftonline.comcommon.succesfullyreadyacr.com +login.microsoftonline.georgeskayaks.com +login.microsoftonline.r--0.us +loginmyappleid.com +login-onlinemicrosoft.com +login.ozlee.com +login-paypal.ga +login-paypal.sicherheitsproblem-id58729-182.com +login.pay.processing.panel.manerge.dlethbridge.com +login.regista2017pages.gq +loginsecured104.online +login-secured.liraon.com +login-to-paypal.amin-telecom.pk +login.tracking101.com +login-verify.23423423docu.sign.com345353453.colledeipini.it +login-vodafone.ru +login.wellsfargo.online.validate.data.docrenewx.com +logisticoffice.com +logistock.com.ar +logistrading.com +logliberation.xiti.com +log.mmstat.com +logn-alibabs.bugs3.com +log.newsvine.com +lognormal.net +logo.ifarm.science +logojeeves.us +log.olark.com +logo.onlinewebstat.com +log.optimizely.com +logos.libstat.com +logosun.com +logos.x-traceur.com +log.outbrain.com +logo.webservis.gen.tr +logoworksdev.112.2o7.net +logp2.xiti.com +logp3.xiti.com +log-paypal.co.uk +logp.hit-parade.com +log.pinion.gg +log.pladform.ru +logp.xiti.com +logrel.com.ng +logs-01.loggly.com +logs1125.xiti.com +logs1204.xiti.com +logs1242.xiti.com +logs1285.xiti.com +logs.comics.com +logs.eresmas.com +logs.eresmas.net +logs.loggly.com +logs.sexy-parade.com +logs.spilgames.com +log.statistici.ro +logs.thebloggernetwork.com +log.tagcade.com +log.trafic.ro +logua.com +log-upgrade-helpdata-isetting-data-us.akunnet.com +logv10.xiti.com +logv11.xiti.com +logv12.xiti.com +logv13.xiti.com +logv143.xiti.com +logv144.xiti.com +logv145.xiti.com +logv14.xiti.com +logv15.xiti.com +logv16.xiti.com +logv17.xiti.com +logv18.xiti.com +logv19.xiti.com +logv1.xiti.com +logv20.xiti.com +logv21.xiti.com +logv22.xiti.com +logv23.xiti.com +logv24.xiti.com +logv25.xiti.com +logv26.xiti.com +logv27.xiti.com +logv28.xiti.com +logv29.xiti.com +logv2.xiti.com +logv30.xiti.com +logv31.xiti.com +logv32.xiti.com +logv3.xiti.com +logv4.xiti.com +logv5.xiti.com +logv6.xiti.com +logv7.xiti.com +logv8.xiti.com +logv9.xiti.com +logv.xiti.com +logw312.ati-host.net +logw349.ati-host.net +logz.ikimfm.my +l.ohmyad.co +lohrmontage.se +lohud.us.intellitxt.com +loislgibe.top +lojaamericanas-ofertaimperdivel.com +lojadomecatronico.com.br +lojafnac.com +lojaoi.com +lojaps4.com.br +lojasamericanas-ofertasimpediveis.com +lokalavisendk.nuggad.net +lokalizacjasatelitarna.pl +lokas313.webfactional.com +lokatservices.ml +lokfongfood.com +lokjhq.xyz +lokok.com.ng +lola-app-db.nh-serv.co.uk +lolblog.cn +lolhello.com +loliyuterr66.000webhostapp.com +lo.ljkeefeco.com +lololo1223.ddns.net +lolshock.com +lol-smurfs.com +lol.to +loltrain.com +lombardfinder.ru +lomb.co +lombia.co +lombia.com +lompocmoving.com +lomza.info +loncar-ticic.com +londongaymassage.co.uk +londonlayovertours.com +londonlearningcentre.co.uk +londparig.ga +lonely-mature.com +lonelywifehookup.com +longadventure.com +long-beach-air-conditioning.com +longgreen.info +longhornblogs.us.intellitxt.com +longjiwybearing.com +longkiss.net +longlifefighter.com +longstand.net +longtermbusinesssolutions.com +longtraffic.com +longup.co +lonniewrightconstruction.net +lon.spotify.com +looj8ae.bid +lookatmynewphotos.com +lookatmyownmatchpictures.com +lookingglassemb.com +looklisten.ru +lookout2000.com +looksmartcollect.247realmedia.com +lookup2.hitbox.com +lookup32.in.net +lookup64.in.net +lookup86.in.net +lookup.hitbox.com +lookup.in.net +loonerekit.pw +looool.pl +looosleybtinter.5gbfree.com +loopbluevzla.com +loopholeswebdesign.co.uk +lootloo.net23.net +lop.com +lopesdacruzcorretora.com.br +lopezhernandez.net +lopsidedspoon.com +lorain771.mystagingwebsite.com +lorain77.mystagingwebsite.com +lordhave.net +lordofall.org +lordtook.net +lorensbergslakare.se +lorenzocasalino.com +lorimartwork.com +lorirosedesign.com +lorktino.com +lortab-cod.hut1.ru +lortab.hut1.ru +losalseehijos.es +losangeles-ads.com +losas.cabanaslanina.com.ar +loseweight.asdjiiw.com +losingthisweight.com +loslupesrestaurants.com +losmercantes.com +losnahuales.com +loso-d.com +losos.caliane.com.br +losranchos.com.gt +los.reconm.looks-recon-get.com +lost-alpha.ru +lostartofbeingadame.com +lostfilm-online.ru +lostiphonefinder-lcloud.review +losu.112.2o7.net +losujgre.pl +lotey.co.in +lotine.tk +lotot.pl +lotterymaster.de +lotto6888.com +lottocrushercode.info +lottoga.com +lottoland.pl +lottospring.com +lotusdeveloper2008.com +lou3ba.com +louboutinbooties.xyz +louboutinreplica.pw +louboutinreplica.xyz +louboutinshoes.xyz +loudloss.com +louisvil.app.ur.gcion.com +louisvil.ur.gcion.com +louisvuittonoutletstore.net +lounajuliette.com +lousecn.cn +lousianastate.com +love2068.cn +love-baby.cz +lovefacebook.comli.com +loveisblind.ddns.net +lovekumar.com.np +lovelifecreative.shannonkennedydesign.com +lovelycraftyhome.com +lovelywholesae.com +love.magicsites.ru +lovenepal.today +loveourwaters.com +loves.co.il +lovpoint.de +lowcountrytile.com +lowekeyana.co +lowephotos.info +lowest-brokerage.in +lowes.tt.omtrdc.net +low-format.ru +low-hacker.popunder.ru +lowrider.ru +lp1.linkpulse.com +lp3tdqle.com +lp4.linkpulse.com +lp.cleanmymac.online +lpcloudsvr302.com +lpcloudsvr405.com +lp.downloadquick.net +lp.empire.goodgamestudios.com +lp.jeux-lk.com +lpm-francetv.nuggad.net +lpm-lagardere.nuggad.net +lp.mp.mydas.mobi +lpm-tf1.nuggad.net +lpmxp2017.com +lpmxp2018.com +lpmxp2020.com +lpmxp2022.com +lpmxp2023.com +lpmxp2024.com +lpmxp2025.com +lpmxp2026.com +lpmxp2027.com +lp.mydas.mobi +lp.prizehub.me +lp.sa-baba.co.il +lp.sexyadults.eu +lp.sharelive.net +lp.torchbrowser.com +lpuq.com +lq3evjmi-site.ftempurl.com +lqeww.net +l.qq.com +lrbcontracting.ca +lreatonmanopayguettenabelardetemanorogenacode93submi80a.saynmoprantonmeanloj.com +lrhbook.ru +lrt7a.coldcertainchannel.com +lrytasadlt.hit.gemius.pl +lrytaslt.adocean.pl +lsassoc.com +lscpafirm.com +lse.uk.intellitxt.com +lsex.xyz +lsg.me +l.sharethis.com +ls.hit.gemius.pl +lskoncepts.com +lskxn9.top +l.socialsexnetwork.net +lspar.com.br +lsp-awak-perikanan.com +l.springmetrics.com +l-sspcash.adxcore.com +lstats.qip.ru +lstat.youku.com +lstdata.net.ec +lt3456.com +lt3.hit.stat24.com +lt.adocean.pl +lt.andomedia.com +lt.angelfire.com +ltauonline30hrs.com +ltau-regularizacao.unicloud.pl +lt.authlogs.com +ltgde.adocean.pl +lt.hit.gemius.pl +ltktourssafaris.com +ltms.estrazavi.ir +lt.retargeter.com +ltsetu.com +ltunes.set-up.appleid.apple.com-lcioud.com +ltvperf.com +lualuc.com +luanpa.net +lubbockcleaningservices.com +lubetube.com +lucanminorhockey.com +lucenttechnologiess.in +luchielle.com +luchtenbergdecor.com.br +luciazani.pt +lucibad.home.ro +luciddiagnostics.in +lucidmedia.com +luckyblank.info +luckycharmdesigns.com +luckyclean.info +luckyclear.info +lucky-day-uk.com +luckyeffect.info +luckyhalo.info +luckypure.info +luckys-fashion.com +luckyshine.info +luckyshop.net.ua +luckyson0660.com +luckystarmusic.se +luckystarsranch.com +luckysuccess.info +luckysure.info +luckytidy.info +lucyhanselman.nl +ludosis.com +luenhinpearl.com +luesojz.angelcities.com +lufhansa.com +lufthansaairlines.com +lufthanza.com +luggagecast.com +luggagepreview.com +luggage-tv.com +lugocel.com.mx +luguanmm.com +luguanzhan.com +luissalamanca.tarjetavirtual.biz +luj.sdsjweb.com +lukaszchruszcz.com +lukaszuk.com.pl +lukluk.net +lukochuriadda.com +luksona.popunder.ru +lukya.com +lumb.co +luminousweb.com.br +lumpyleaf.com +lunacu.com +lunamujer.net +lunaticjazz.com +lunebluemedia.com +luo5equ.top +lupytehoq.com +luqwpk5u-site.dtempurl.com +lurdinha.psc.br +luredtocostarica.com +lushantouzi.com +lushkitchengarden.com.au +lutes.org +lutherstable.org +lutosantarita.com.br +luvamac.com.br +luvur-body.com +luwyou.com +luxcart.ro +luxmagazine.cf +luxpolice.com +luxpolice.net +luxrelocation.lu +luxriuousyatch.000webhostapp.com +luxtac.com.my +luxup.ru +luxury-cars-24.com +luxurydreamhomes.info +luxury-girl.ru +luxuryupgradepro.com +luxuryweddingsbyfashionone.com +luxuswohnmobile.net +luycos.com +luzeequilibrio.com.br +lv.adocean.pl +lvahepictom.com +lvescore.com +lv.hit.gemius.pl +lvsemen.com +lvs.truehits.in.th +lvxg.com +lw1.gamecopyworld.com +lw2.gamecopyworld.com +lwspa4all.com +lwtzdec.com +lwyzzx.cn +lwzvsc.info +lxapzgsot.top +lxbiardenslavetusul.com +lxer.us.intellitxt.com +lxsg.net +lxwcollection.com +lyca.us +lycos.247realmedia.com +lycoscollect.247realmedia.com +lycoscollect.realmedia.com +lycos-eu.imrworldwide.com +lycosgamesville.com +lycosu.com +lydwood.co.uk +lyha.neurotrascending.com +l.yieldmanager.net +lyjqny.com +lyjscjbtw.top +lykon.eu +lymphoedematherapy.com +lyndabarry.net +lyneroy.com +lynettestore.com +lyngdalhudterapi.no +lynkedin.it +lynnodough2.com +lynx.cjestel.net +lynxfinder.com +lyonsheating.info +lyonsmechanical.com +lyqncy.com +lyqwizsvuj.info +lyricaveshow.com +lyrics.us +lyrics.us.intellitxt.com +lyrster.com +lysyp.com +lyt99.com +lzediamike.trade +l.zeroredirect.com +lzjl.com +lz-photography.de +lztz.net +lzzhyzkm.org +m01.oix.com +m01.oix.net +m01.webwise.com +m01.webwise.net +m01.webwise.org +m02.oix.com +m02.oix.net +m02.webwise.com +m02.webwise.net +m02.webwise.org +m0r0zk0-krava.ru +m0-s.san.ru +m1.2mdn.net +m1.ae.2mdn.net +m1.au.2mdn.net +m1.be.2mdn.net +m1.br.2mdn.net +m1.ca.2mdn.net +m1.cn.2mdn.net +m1crosoft.com +m1.de.2mdn.net +m1.dk.2mdn.net +m1.doubleclick.net +m1d.ru +m1.emea.2mdn.net +m1.emea.2mdn.net.edgesuite.net +m1.es.2mdn.net +m1.fi.2mdn.net +m1.fr.2mdn.net +m1.fwmrm.net +m1.it.2mdn.net +m1.jp.2mdn.net +m1media.net +m1.nedstatbasic.net +m1.nedstatpro.net +m1.nl.2mdn.net +m1.no.2mdn.net +m1.nz.2mdn.net +m1.pl.2mdn.net +m1.se.2mdn.net +m1.sg.2mdn.net +m1.uk.2mdn.net +m1.ve.2mdn.net +m1.webstats4u.com +m1.webstats.motigo.com +m1.za.2mdn.net +m2132.ehgaugysd.net +m2.ae.2mdn.net +m2.au.2mdn.net +m2.be.2mdn.net +m2.br.2mdn.net +m2.ca.2mdn.net +m2.cn.2mdn.net +m2.cn.doubleclick.net +m2.de.2mdn.net +m2.dk.2mdn.net +m2.doubleclick.net +m2.es.2mdn.net +m2.fi.2mdn.net +m2.fr.2mdn.net +m2.fwmrm.net +m2.it.2mdn.net +m2.jp.2mdn.net +m2k.ru +m2m1.inner-active.mobi +m.2mdn.net +m2.media-box.co +m2.nl.2mdn.net +m2.no.2mdn.net +m2.nz.2mdn.net +m2.pl.2mdn.net +m2.se.2mdn.net +m2.sexgarantie.nl +m2.sg.2mdn.net +m2.uk.2mdn.net +m2.ve.2mdn.net +m2.xhamster.com +m2.za.2mdn.net +m3.2mdn.net +m3.ae.2mdn.net +m3.au.2mdn.net +m3.be.2mdn.net +m3.br.2mdn.net +m3.ca.2mdn.net +m3.cn.2mdn.net +m3.de.2mdn.net +m3.dk.2mdn.net +m3.doubleclick.net +m3e46.com +m3.es.2mdn.net +m3.fi.2mdn.net +m3.fr.2mdn.net +m3gadownload.pl +m3isolution.com +m3.it.2mdn.net +m3.jp.2mdn.net +m3.nl.2mdn.net +m3.no.2mdn.net +m3.nz.2mdn.net +m3.pl.2mdn.net +m3.se.2mdn.net +m3.sg.2mdn.net +m3.uk.2mdn.net +m3.ve.2mdn.net +m3.za.2mdn.net +m4.ae.2mdn.net +m4.afs.googleadservices.com +m4.au.2mdn.net +m4.be.2mdn.net +m4.br.2mdn.net +m4.ca.2mdn.net +m4.cn.2mdn.net +m4.de.2mdn.net +m4.dk.2mdn.net +m4.doubleclick.net +m4.es.2mdn.net +m4ever.net +m4.fi.2mdn.net +m4.fr.2mdn.net +m4.it.2mdn.net +m4.jp.2mdn.net +m4.media-box.co +m4.nl.2mdn.net +m4n.nl +m4.no.2mdn.net +m4.nz.2mdn.net +m4.pl.2mdn.net +m4.se.2mdn.net +m4.sg.2mdn.net +m4.uk.2mdn.net +m4.ve.2mdn.net +m4ymh0220.tech +m4.za.2mdn.net +m57ku6sm.com +m5.ae.2mdn.net +m5.au.2mdn.net +m5.be.2mdn.net +m5.br.2mdn.net +m5.ca.2mdn.net +m5.cn.2mdn.net +m5.de.2mdn.net +m5.dk.2mdn.net +m5.doubleclick.net +m5.es.2mdn.net +m5.fi.2mdn.net +m5.fr.2mdn.net +m5home.ru +m5.it.2mdn.net +m5.jp.2mdn.net +m5.nl.2mdn.net +m5.no.2mdn.net +m5.nz.2mdn.net +m5.pl.2mdn.net +m5.se.2mdn.net +m5.sg.2mdn.net +m5.uk.2mdn.net +m5.ve.2mdn.net +m5.za.2mdn.net +m6.ae.2mdn.net +m6.au.2mdn.net +m6.be.2mdn.net +m6.br.2mdn.net +m6.ca.2mdn.net +m6.cn.2mdn.net +m6.de.2mdn.net +m6.dk.2mdn.net +m6.doubleclick.net +m6dqx-ad3hl.ads.tremorhub.com +m6.es.2mdn.net +m6.fi.2mdn.net +m6.fr.2mdn.net +m6.it.2mdn.net +m6.jp.2mdn.net +m6.nl.2mdn.net +m6.no.2mdn.net +m6.nz.2mdn.net +m6.pl.2mdn.net +m6.se.2mdn.net +m6.sg.2mdn.net +m6.uk.2mdn.net +m6.ve.2mdn.net +m6.za.2mdn.net +m77s.cn +m7.ae.2mdn.net +m7.au.2mdn.net +m7.be.2mdn.net +m7.br.2mdn.net +m7.ca.2mdn.net +m7.cn.2mdn.net +m7.de.2mdn.net +m7.dk.2mdn.net +m7.doubleclick.net +m7.es.2mdn.net +m7.fi.2mdn.net +m7.fr.2mdn.net +m7.it.2mdn.net +m7.jp.2mdn.net +m7.nl.2mdn.net +m7.no.2mdn.net +m7.nz.2mdn.net +m7.pl.2mdn.net +m7.se.2mdn.net +m7.sg.2mdn.net +m7.uk.2mdn.net +m7.ve.2mdn.net +m7.za.2mdn.net +m8.ae.2mdn.net +m8.au.2mdn.net +m8.be.2mdn.net +m8.br.2mdn.net +m8.ca.2mdn.net +m8.cn.2mdn.net +m8.de.2mdn.net +m8.dk.2mdn.net +m8.doubleclick.net +m8.es.2mdn.net +m8.fi.2mdn.net +m8.fr.2mdn.net +m8.it.2mdn.net +m8.jp.2mdn.net +m8.nl.2mdn.net +m8.no.2mdn.net +m8.nz.2mdn.net +m8.pl.2mdn.net +m8.se.2mdn.net +m8.sg.2mdn.net +m8.uk.2mdn.net +m8.ve.2mdn.net +m8.za.2mdn.net +m-99.co.uk +m9.ae.2mdn.net +m9.au.2mdn.net +m9.be.2mdn.net +m9.br.2mdn.net +m9.ca.2mdn.net +m9.cn.2mdn.net +m9.de.2mdn.net +m9.dk.2mdn.net +m9.doubleclick.net +m9.es.2mdn.net +m9.fi.2mdn.net +m9.fr.2mdn.net +m9.it.2mdn.net +m9.jp.2mdn.net +m9.nl.2mdn.net +m9.no.2mdn.net +m9.nz.2mdn.net +m9.pl.2mdn.net +m9.se.2mdn.net +m9.sg.2mdn.net +m9.uk.2mdn.net +m9.ve.2mdn.net +m9.za.2mdn.net +ma156-r.analytics.edgekey.net +ma156-r.analytics.edgesuite.net +ma204-r.analytics.edgesuite.net +ma211-r.analytics.edgesuite.net +ma.5.p2l.info +ma74-r.analytics.edgesuite.net +ma76-c.analytics.edgesuite.net +ma76-r.analytics.edgesuite.net +maadimedical.com +maanvikconsulting.com +maatch.com +maawikdimuaro.000webhostapp.com +ma.baidu.com +mabanque-bnpparibas.net +mabanque.fortuneo.fr.aljamilastudio.com +mabato.net +mabcogroup-bd.com +maboneng.com +mac64.in.net +macaddictads.snv.futurenet.com +macads.net +macallinecn.com +maccity.it.intellitxt.com +maccleanersecurity.com +macdailynews.us.intellitxt.com +macdamaged.space +macdamaged.tech +mac.devicesecureserverinstall.xyz +macerlighting.com +mac-error-alerts.xyz +macfixingsoftware.space +macfix.life +macgamefiles.us.intellitxt.com +machamerfinancial.com +machanindianrestaurant.com.au +mac-helper.site +machine1.gdmachinery.net +machine.cu.ma +macintosh-vn.com +mac-issues-resolve.xyz +mac-issues.win +mackeeperapp1.zeobit.com +mackeeperapp2.mackeeper.com +mackeeperapp3.mackeeper.com +mackeeperapp.mackeeper.com +mackeeperapp.zeobit.com +mackeeper-center.club +mackeeper-land-672695126.us-east-1.elb.amazonaws.com +macleaner.space +macleaner.work +macmeasurmenthub.club +macmeasurmentpro.club +macmegasite.us.intellitxt.com +macnewsworld.us.intellitxt.com +macnewtech.com +macnn.us.intellitxt.com +macobserver.us.intellitxt.com +maconbraves.com +macookdesign.net +mac-os.apple.com-secured.online +mac-osx.message-warning.net +macotool.com +mac-protection.info +macpurifier.com +macresource.co.uk +macroexcel.net +macromilling.com.au +macross8.com +macrotek.ru +macrowebbrid.com +mac-security-error.xyz +macshield8.club +mac-shield.com +mac-shield.com-secure.download +macshipdesign.com +mac.system-alert1.com +macsystemalert1.xyz +macsystemalert2.xyz +macsystemalert3.xyz +macsystemalert5.xyz +macsystemalert6.xyz +macsystemalert.xyz +mac-system-info-require-maintenance-contact-support-2x.info +mac-system-info-require-maintenance-contact-support-3x.info +mac-system-info-require-maintenance-contact-support-xzo1.info +mactechinfo.info +macuser.uk.intellitxt.com +macwelt.de.intellitxt.com +macworldservices2.com +macworld.uk.intellitxt.com +mad2.brandreachsys.com +madadsmedia.com +madamenoire.us.intellitxt.com +madameteacups.com +madan-mohan-college.com +madb-europa.eu +m.adbridge.de +madbullairsoft.com +madclient.uimserv.net +m.addthis.com +m.addthisedge.com +madeireiragetuba.com.br +madenstreichler.de +madeofthelightstuff.com +maderaslarivera.com +madeua.info +madhe.com +madisonavenue.com +m.admedia.com +m.admob.com +madness-combat.net +madnesssales.com +m.adnxs.com +madot.onlinewebshop.net +madpenguin.us.intellitxt.com +madrone619.com +mads.amazon-adsystem.com +mads.aol.com +mads.bnet.com +mads.cbs.com +mads.cbsnews.com +mads.chow.com +mads.cnet.com +mads.cnettv.com +mads.dailymail.co.uk +mads.download.com +madserver.net +mads.gamefaqs.com +mads.mp3.com +mad-sound.com +mads.theinsider.com +mads.tv.com +m.adsymptotic.com +mads.zdnet.com +madualburuj.com.my +mad.uk.intellitxt.com +madvertise.de +m.adx.bg +maebtjn.com +maedchen-spiele.de +maeganlara.ru +maendo.tv +maesh5g.top +mafcards.ru +mafund.cn +mag33.icehost.ro +magadownloader.com +magaliconsulting.com.au +magazine-e-luiiza.com +magazines.sp1.convertro.com +magazin-pics.ru +magazintiande.ru +magda-gadalka.ru +magedsafwat.com +magellen.com +magento-crew.net +magentofa.com +magic4sale.com +magicaidwebmart.ru +magical-connection.com +magicalfind-a.akamaihd.net +magicbestcompany.ru +magicdiet.gq +magicinternettraffic.com.pk +magicmaid.co.za +magicmarketingplaybook.com +magic-nails-fashion.de +magicplayer-s.acestream.net +magicsw.com +magicthoughts.com +magictrickillusion.de +magie-mystik-shop.de +magla.pl +maglid.ru +magma.info.pl +magnetfishing.de +magnetic.domdex.com +magnetic.t.domdex.com +magnetpress.sk +magnitonline.ru +magnoliathomas799.000webhostapp.com +magoedu.cl +magprint.com +maguinhomoveis.com.br +mah0ney.com +mahari.com.br +mahindrainsurance.com +mahiro.com +mahoningvalleyspeedway.com +maiaratiu.com +maihalertonlinealer.com +mail1.371.net +mail3x.com +mail.allnews24.in +mail.apple-appleid-unlocked.nut.cc +mail.avis.cm +mail.bangla.net +mail.blazenet.net +mailboto.com +mailcheckisp.biz +mail.cnn.cm +mail.creatives-web.com +mail.cyberh.fr +mail.edi.edu.cn +mailfacebook.com +mailfoogae.appspot.com +mailforfreedom.com +mailgate.sbell.com.cn +mail.guidev.com +mail-gw.jbic.go.jp +mailgw.thtf.com.cn +mail.hallym.ac.kr +mail.hangzhouit.gov.cn +mailhub.minaffet.gov.rw +mail.hz.zh.cn +mail.imamu.edu.sa +mailinblack.co +mail.interq.or.jp +mail.ioc.ac.ru +mail.issas.ac.cn +mailonline-d.openx.net +mail.orwbystre.com +mailout.pielab.org +mail.pmo.ac.cn +mail.poker.cm +mail.radar.imgsmail.ru +mail.romsasjord.se +mailscan3.cau.ctm.net +mails.cneic.com.cn +mailsee.liffeytas.com.au +mail.siom.ac.cn +mail.siriedteam.com +mailslots.top +mailsrv02.macau.ctm.net +mailsvra.macau.ctm.net +mail.target.cm +mailtrack1313.com +mailtrack.me +mailtribune.112.2o7.net +mailtribunecom.112.2o7.net +mail.tropmet.res.in +mail.tsinghua.edu.cn +mail-verification.com +mailwing.net +mailworker.de +mail.youcanoptout.com +mail.youcanoptout.net +mail.youcanoptout.org +mail.zzu.edu.cn +mainbx.com +main.clicksor.com +mainetoday-d.openx.net +main.exoclick.com +main.exosrv.com +mainlinehobby.net +mainnetsoll.com +mainonlinesetup.com +main.rampidads.com +mainstatserver.com +mainstream.topbucks.com +mainstreet.us.intellitxt.com +mainteck-fr.com +maintenancemickhandyman.com +maintienadomicile.be +main.vodonet.net +mairiedewaza.com +maiservices.com.pk +maithi.info +maitreesandhya.com +majesticcollege.co.uk +majorfitus.com +majorgeeks-d.openx.net +majorgeeks.us.intellitxt.com +majormomentsinfilm.com +majuni.beidahuangheifeng.com +makarandholidays.com +make-32.in +make-33.in +make-34.in +makedo.ru +makeherup.us.intellitxt.com +makeitandshakeit.webcindario.com +makeittrue.pl +makemeheal.us.intellitxt.com +makemillionsearch.xyz +makemoneyfreebies.com +make-money-online.com +makemoneyonline.com +makemoneyrobot.com +make-money.shengen.ru +makemywayorhighway.xyz +make.pro +makesideincomeonline.com +maketiandi.com +makeushot.us.intellitxt.com +makicakes.com +makinglures.info +makis.nu +makmur.info +maksim123rus33.hopto.org +maksophi.com +makundi.co.tz +makygroup.com.au +malabartransport.com +maladot.com +malajsie.webzdarma.cz +malamcharity.com +malayalam-net.com +malaysiasmile.com +malerei-roli.at +malest.com +malgaonislamiadakhilmadrasah.edu.bd +malibushare.com +malice.dk +malikshabas.com +malkm.com +mallar.co.in +mallasstore.co.in +malmaberg08a.se +malomolk.com +malteseone.com +malwaredetector.info +malwaredomainlists.com +malware-live-pro-scanv1.com +malwareremovalcenter.com +mama128.valuehost.ru +mamados2.beget.tech +mamakaffahshop.com +mamameidia.com +mamamia.au.intellitxt.com +mamamidia.com +mamatywna.pl +mamaw.com +mamilade.oewabox.at +maminoleinc.tk +mamivoi.com +mamj.ru +mammot.de +mammothcondorentalsca.com +ma-mortgage.com +mampoks.ru +man1234.com +manaempreende.com.br +manage001.adtech.de +manage001.adtech.fr +manage001.adtech.us +manage-4a7bq2r26ad2bq2e2.drqatanasamanen.com +manageaccount-client-service-icloud.cf +manage.apple.com.webobjectsd5dbc98dcc983a7028bd82d1a47549.divinityhousingprojects.com +manage.apple.com.webobjectsd5dbc98dcc983a7028bd82d1a47580.bah.in +manageba.com +manage.free.fr-service-diagnostic-mon-compte.overbayit.co.il +manage-information.com +management-accountverificationappleid-information.store +manage-myaccount.webapps-verification-fraud-pay.com +manager.rovion.com +manage-srcappid.com +mana-pools.co.za +manasagroup.com +manaveeyamnews.com +manchen.cc +mandarin.aquamarineku.com +mandez75.myjino.ru +mandiriinternetbanking.com +manejobacan.pe +mangeravechemingway.com +mangler10.generals.ea.com +mangler1.generals.ea.com +mangler2.generals.ea.com +mangler3.generals.ea.com +mangler4.generals.ea.com +mangler5.generals.ea.com +mangler6.generals.ea.com +mangler7.generals.ea.com +mangler8.generals.ea.com +mangler9.generals.ea.com +mangnejo.com +mangoice.cf +maniagroup.in +manibaug.com +manifestation.betteroffers.review +maniffatoretraiteur.com +maniniadvogados.com.br +manipulyator-peterburg.ru +maniyakat.cn +manjulahandapangoda.lk +manjumetal.com +man-kom.com +manleygeosciences.com +manmuswark.3eeweb.com +mannesoth.com +mannsshardt.de +manntv.oewabox.at +manomaaa.com +manonna.com +manoske.com +manotaso.com +manpride.com +mans.cnusher.ind.in +mansionhousebuild.co.za +mansmith.net +mansparskats.com +man-street.tk +mantel.co +mantellaro.com +mantep.in +mantodea.mantisadnetwork.com +manualterap.roleforum.ru +manu.courtindental.com +manuelfernandojr.com +manuelfernando.net +manuel.theonion.com +manutencaodecompressores.com.br +manutencaopreventiva.com.br +manve.info +manwomanmadeeasy.com +manyresultshub-a.akamaihd.net +maoled.ga +maoshanhouyi.cc +map2.adsniper.ru +mapbest.net +maplemeow.ga +mapleway2profit.com +map.media6degrees.com +mapmyride.co +map-of-iphone.com +mapqueat.com +mapquestt.com +mapquestz.us +mapquuest.com +mapricontabilidade.com.br +maprolen.com +mapross.com +maps-antivert58.eksuziv.net +mapscom2.112.2o7.net +maps.lclouds.co +maps-spyware251-300.eksuziv.net +mapstats.blogflux.com +maputomotorsport.com +maqlogemez.ga +maralied.com +maralsaze.com +marampops.net +mararoom.ru +marasai-tarui.rumahweb.org +marcandrestpierre.com +marcasdelnorte.com.mx +marcellajacquette.com +marcel-mulder.com +marceloyuvone.com.ar +marcenarianagy.com.br +marchen-toy.co.jp +marchex.com +marchinhadecarnaval.com.br +marchit.com +marchofdimes.d2.sc.omtrdc.net +marcinek.republika.pl +marciobotteon.com.br +marcjr.com.br +marco-behrendt.de +marcoislandvacations.net +marcomaga.altervista.org +marcopolo.uk.net +marcosmgimoveis.com.br +marcowebonyodziezowe.pl +mardaltekstil.com +mardelua.com +mardinnews.com +marekpiosik.pl +margohack.za.pl +marialorena.com.br +mariannelim.com +maribellozano.com +maridan.com.ua +marieforfashion.com +mariellejensen.se +mariewhj.beget.tech +marima.com +marinahgh.lpktnri.id +marineland.com.au +marinermarketing.112.2o7.net +marioricart.com.br +marirtr1.com +maritzatheartjunkie.com +mariumconsulting.com +mariyamadv.com +markbruinink.nl +market2.the-adult-company.com +market-buster.com +market.facebook.copycatcashsystem.com +market.facebook.hyperionslg.com +marketgid.com +marketing.888.com +marketing-advisor.com +marketing.beesearch.info +marketing.doubleclickindustries.com +marketingenhanced.com +marketing.hearstmagazines.nl +marketing.nyi.net +marketing.osijek031.com +marketingouroturismo.com.br +marketing-relationship.com +marketing-rewardpath.com +marketingsolutions.yahoo.com +marketingtechniques.info +marketingvici.com +marketingyourschool.com.au +marketland.ml +marketlive.122.2o7.net +marketngo.com +marketnumber.com +marketplacesms.com +marketscore.com +marketshops.co.uk +marketworksinc.122.2o7.net +markjaybeefractal.com +markmakers.in +marknelsonactor.com +markrothbowling.com +marksandspencer.122.2o7.net +markscomputadores.com.br +markt-apotheke-neuwied.de +marktforschung-stuttgart.com +marlinaquarindo.com +marmatboote.de +marmitaco.cat +marmotstore.online +maronas.de +marrakechluxuryservices.com +marriottinternationa.tt.omtrdc.net +marsden.nu +marsgatan.com +marshfielclinic.org +marshfieldcclinic.org +marshfieldclinoc.org +marsisotel.com +martaabellan.com +martgage.com +marthastewart.demdex.net +martinezgold.com +martinservice0.com +martinsfieldofdreams.com +martinvachon.ca +martlinker.com +martuz.cn +maruthorvattomsrianjaneyatemple.org +marvellousgold.de +marvento.es +marvinnote.com +marwarichori.com +marwer.info +marx-brothers.mhwang.com +maryscott.angelcities.com +masafinatuljabalwonoboyo.sch.id +masalatalk.us.intellitxt.com +masalhuda.sch.id +masaz.antoniak.biz +mascara-ranking.com +maschinenverleih-ffb.de +maschinolumber.com +mascurla.co.za +mascuts.co.za +masenkotrkr.com +mashable.d2.sc.omtrdc.net +mashinkhabar.com +masjidcouncil.org +masjlr.com +maskes-xrisas.gr +maslenka.kz +masonharman.com +massafelliphotography.com +massage-info.nl +massage-v-almaty.kz +massarwinery.com +mas.sector.sk +masserect.com +masshealthprovider.com +massmarketretailers.com +mass-traffic.com +mastercheat.us +mastercoach.com.au +masterkeybeth.otbsolutionsgp.com +masterloanspro.com +mastermind.com +master-muznachas.ru +masterrecord.com +masterseek.com +masterseek.it +mastertarget.ru +mastertracks.be +mastodon.com.au +masturbate.co.uk +maszcjc.com +mataharirama.xyz +matatinta.co.id +matb3aa.com +match960photos.890m.com +match99pics.890m.com +match.ads.betweendigital.com +match.adsrvr.org +match.basebanner.com +matchbin-assets.s3.amazonaws.com +match.com-mypictures.dicltdconsulting.com +match.com.pekoa-pl.com +match.com-photos.fduan.co.ao +matchcows.com +matchcraft.com +matcher.idtargeting.com +matchingdatings.com +match.mynewmatchpictureprofile.com +matchnewphots.creativelorem.com +matchningsdagen.se +matchpal-a.akamaihd.net +matchparties.com +matchphotos.ameliaplastics.com +matchphotosww.890m.com +match.rundsp.com +matchview.000webhostapp.com +match.xg4ken.com +matematikus.info +mateos.pl +materialservice.net +mathenea.com +mathgym.com.au +mathtag.com +matjand.cf +matomy.adk2.co +matrics.ro +matrixalchemy.com +matrixcardinfro.com +matrixgroup.co.uk +matrix.mediavantage.de +matrixshop.com +matrixwharehouse.co.za +matrxabsence.com +matsitemanagementllc.com +matt001.tk +mattchpictures.com +mattemorden.se +matthewstruthers.com +matthewsusmel.com +mattressusa.122.2o7.net +mature.xxxcounter.com +matusik-lipiec.pl +matxh-photos.62640041.date +matzines.com +mauriziobonanomi.it +maurobb.freecounter.it +maurocesari.it +mau.sextracker.com +mautic.eto-cms.ru +mauto.se +maven-aviation.com +mavenrestin.com +mavrixonline.com +mavtravel.ro +mavverick321.com +maxadserver.corusradionetwork.com +maxads.ruralpress.com +max.bannermanager.gr +max.bespokerenewables.com.au +maxbounty.com +maxclean.sn +maxcrot.com +max-eclat.men +maxeen.com +max.gunggo.com +max.i12.de +maxi4.firstvds.ru +maxiforum.ru +maxim.122.2o7.net +maximadachy.pl +maximafitness.com +maximilitary.ru +maximizerxls.com +maximpartnerspr.com +maximumcash.com +maximumpcads.imaginemedia.com +maximumprofit.biz +maxiproteccion.com +maxisoft.co.uk +maxitorne.com +maxmedia.sgaonline.com +maxmusics.com +maxonclick.com +max-p.men +maxregistrycleaner.com +maxregistrycleaner.net +maxsdome.de +maxserving.com +maxsmile.com.ua +maxthon.com +maxtop.ddns.net +maxtracker.net +maxvr.112.2o7.net +maxwealthy.com +maxxaffiliate.directtrack.com +maxxkonzept.de +maxxtor.eu +mayatek.info +mayfairhotelilford.com +mayfairnights.co.uk +maylasia.com +maymeenth.com +mayorfoundation.org +mayr-software.de +maytinhcaobang.net +mazbuzz.com +mazda.georgewkohn.com +mazda-roadsters.com +mazdaworld.us.intellitxt.com +mazoncantonmentor.co.uk +mazurfotografuje.pl +m.b00kmarks.com +mb01.com +mb140.ru +mb-520.com +mb.5.p2l.info +mbabnk.pl +mbank.hit.gemius.pl +mbank.su +mbaonline.com.au +mba-online.petrovka.info +mbapparels.com +m-barati.de +mbcobretti.com +mb.datingadzone.com +mbfctku.info +mbi3.kuicr.kyoto-u.ac.jp +mbiasi93.pe.hu +mbiologi.ru +mbn.com.ua +mbox12.offermatica.com +mbox2.offermatica.com +mbox3e.offermatica.com +mbox3.offermatica.com +mbox4e.offermatica.com +mbox4.offermatica.com +mbox5.offermatica.com +mbox6.offermatica.com +mbox9e.offermatica.com +mbox9.offermatica.com +mbox.offermatica.intuit.com +mbrdot.tk +mbs.megaroticlive.com +m.burt.io +mbuyu.nl +mb.zam.com +mcadamssupplyco.com +mcafee-home.7eer.net +mcagbtdcwklf.com +mcar.in.ua +mcclatchy.112.2o7.net +mcd-su-2.mos.ru +mcesg.com +mcfarlandfirearms.com +mcfg.sandai.net +mcgeesfirearms.com +mchglobal.com +mci12.clicksor.com +mcincendio.com +mcleanvahomes.com +mclfg.com +mclient.ivwbox.de +mcmads.mediacapital.pt +mcmaniac.com +mcmurrayhatchery.co +mcnamaratech.com +mcopolice.com +mcpeteralf.temp.swtest.ru +mcreativedesign.com.br +mcrservicesl.ga +mcsfergus.ca +mcsv.ga +mcsvoice.com +mcti.co.ao +mct.rkdms.com +mcubesolutions.club +mcusvl.gq +mcvsewse.esy.es +mc.yandex.ru +m.cyberplusserice.banquepopulaire.fr.alpes.icgauth.websso.bp.13806.emparecoin.ro +mcydg.cn +md-380.co.uk +md.5.p2l.info +mdamarillo.112.2o7.net +mdctrail.com +m.de.2mdn.net +mdefbugivafmnk.ivydancefloors.com +mdf-cam.ca +mdjacksonville.112.2o7.net +mdlcake.com +mdn1.phluantmobile.net +mdn2.phluantmobile.net +mdn3origin.phluantmobile.net +mdn3.phluantmobile.net +mdnfgs.com +mdnhinc.com +mdotm.com +m.doubleclick.net +mdpparents.112.2o7.net +mdr.ivwbox.de +mds.centrport.net +mdsignsbog.com +mdsindia.in +mdstaugustine.112.2o7.net +mdt.grandtraversedesign.com +mdtopeka.112.2o7.net +mdwardmore.112.2o7.net +mdwathens.112.2o7.net +mdwaugusta.112.2o7.net +mdwjuneau.112.2o7.net +mdwoakridge.112.2o7.net +mdwsavannah.112.2o7.net +mdwskirt.112.2o7.net +mdw-team.de +me.5.p2l.info +meabuilding.com +meandafork.com +mearns-tractors.co.uk +mearrs.com +measuremap.com +measure.richmetrics.com +meatspin.biz +meatspin.com +meatthedolans.com +meatyourmaker.com.au +mebankonline.com +mebel-alait.ru +mebel.by.ru.fqwerz.cn +mebelcomplekt.ru +mebeldekor.com.ua +mebelest.ru +mebel-vstroika.ru +meble7.pl +meble-bogart.info +mebleitalia.com +mebserier.se +mecanew.org +mecash.ru +me-cdn.effectivemeasure.net +mecdot.com +me.centronind.club +mechanicelmovements.co.uk +mecze24.6ka.info +mecz.ujm.pl +meczykilive.pl +medaille.it +medanestesia.ru +medate.com +medbookslimitedgh.com +medbroadcast.112.2o7.net +meddesk.ru +medhavi.tpf.org.in +medhelpinternational.112.2o7.net +media01.adservinghost.com +media-0.vpptechnologies.com +media101.sitebrand.com +media10.fastclick.net +media10.popmarker.com +media11.fastclick.net +media122-d.openx.net +media12.fastclick.net +media13.fastclick.net +media14.fastclick.net +media15.fastclick.net +media16.fastclick.net +media17.fastclick.net +media18.fastclick.net +media19.fastclick.net +media1.ancestry.com +media1.fastclick.net +media1.popmarker.com +media-1.vpptechnologies.com +media2021.videostrip.com +media20.fastclick.net +media21.fastclick.net +media22.fastclick.net +media23.fastclick.net +media24.fastclick.net +media25.fastclick.net +media26.fastclick.net +media27.fastclick.net +media28.fastclick.net +media29.fastclick.net +media2.adshuffle.com +media2.fastclick.net +media2fun.com +media2.legacy.com +media2.netrefer.com +media2.popmarker.com +media2.travelzoo.com +media-2.vpptechnologies.com +media30.fastclick.net +media31.fastclick.net +media32.fastclick.net +media33.fastclick.net +media34.fastclick.net +media35.fastclick.net +media36.fastclick.net +media37.fastclick.net +media38.fastclick.net +media39.fastclick.net +media3.fastclick.net +media3.popmarker.com +media4021.videostrip.com +media40.fastclick.net +media41.fastclick.net +media42.fastclick.net +media43.fastclick.net +media44.fastclick.net +media45.fastclick.net +media46.fastclick.net +media47.fastclick.net +media48.fastclick.net +media49.fastclick.net +media4.fastclick.net +media4.popmarker.com +media-4.vpptechnologies.com +media5021.videostrip.com +media50.fastclick.net +media51.fastclick.net +media52.fastclick.net +media53.fastclick.net +media54.fastclick.net +media55.fastclick.net +media56.fastclick.net +media57.fastclick.net +media58.fastclick.net +media59.fastclick.net +media5.fastclick.net +media5.popmarker.com +media-5.vpptechnologies.com +media6021.videostrip.com +media60.fastclick.net +media61.fastclick.net +media62.fastclick.net +media63.fastclick.net +media64.fastclick.net +media65.fastclick.net +media66.fastclick.net +media67.fastclick.net +media68.fastclick.net +media69.fastclick.net +media6degrees.com +media6.fastclick.net +media6.popmarker.com +media6.sitebrand.com +media-6.vpptechnologies.com +media70.fastclick.net +media71.fastclick.net +media72.fastclick.net +media73.fastclick.net +media74.fastclick.net +media75.fastclick.net +media76.fastclick.net +media77.fastclick.net +media78.fastclick.net +media79.fastclick.net +media7.fastclick.net +media7.popmarker.com +media80.fastclick.net +media81.fastclick.net +media82.fastclick.net +media83.fastclick.net +media84.fastclick.net +media85.fastclick.net +media86.fastclick.net +media87.fastclick.net +media.888.com +media88.fastclick.net +media89.fastclick.net +media8.fastclick.net +media8.popmarker.com +media-8.vpptechnologies.com +media90.fastclick.net +media91.fastclick.net +media92.fastclick.net +media93.fastclick.net +media94.fastclick.net +media95.fastclick.net +media96.fastclick.net +media97.fastclick.net +media98.fastclick.net +media99.fastclick.net +media9.fastclick.net +media9.popmarker.com +media.adcarousel.pl +media.adcentriconline.com +media.adfrontiers.com +media.adlegend.com +media.admob.com +media.adrcdn.com +media.adrevolver.com +media.adrime.com +media-adrunner.mycomputer.com +media-adserver.de +media.adservinginternational.com +media.ads.gfsrv.net +media.adshadow.net +media.adxpansion.com +media.affiliatelounge.com +mediaaplikasi.com +mediaarea.eu +media-a.vpptechnologies.com +media.baventures.com +media.betburdaaffiliates.com +mediabistro.112.2o7.net +mediabistrocom.112.2o7.net +media.b.lead.program3.com +media.bonnint.net +media.boomads.com +media.brandreachsys.com +mediabridge.cc +media-b.vpptechnologies.com +media.cashcownetworks.com +mediacces.com +mediachameleonwebdesign.co.uk +mediacharger.com +media.charter.com +mediacodec.org +media.contextweb.com +media-convert.com +media-c.vpptechnologies.com +mediadc-d.openx.net +mediadellarte.gr +mediadvertising.ro +media-d.vpptechnologies.com +media.easyads.bg +media.elb-kind.de +media.espace-plus.net +media-e.vpptechnologies.com +media.exchange.bg +media.exchange-it.com +media.fairlink.ru +media.fastclick.net +mediafile.pl +media-fire.org +media.foundry42.com +mediafr.247realmedia.com +media.ftv-publicite.fr +media.funpic.de +media-f.vpptechnologies.com +mediageneral.com +media.go2speed.org +media.gsimedia.net +media.hauptbruch.de +media.hw.adxpansion.com +media.intelia.it +medialand.relax.ru +media.lead.program3.com +medialimbo.com +media.livepromotools.com +medialogic.122.2o7.net +media.lovercash.com +media.m-adx.com +media.markethealth.com +mediamarket.in.ua +media-match.com +mediamath.com +mediamatters.112.2o7.net +mediamente-per-klick.de +mediamgr.ugo.com +media.mobpartner.mobi +mediamond.nuggad.net +media.mydas.mobi +media.naked.com +media.netrefer.com +media.nk-net.pl +mediaoffers.click +media.ontarionorth.com +mediaplayercodecpack.com +media-playerz.com +mediaplazza.com +mediaplex.com +media.pointroll.com +media.popmarker.com +media.popunder.com +media.popuptraffic.com +media.primalforce.net +mediapst.adbureau.net +mediapst-images.adbureau.net +media.pussycash.com +mediaregad.hit.gemius.pl +mediascale.de +media.scanscout.com +medias.clicks4ads.com +mediaselect.se +mediaserver.bwinpartypartners.com +mediaserver.bwinpartypartners.it +media-servers.net +medias.europacash.com +media.sexinyourcity.com +media-shoten.com +mediast.eu +media.superstats.com +mediatext.com +media.the-adult-company.com +mediative.ca +mediative.com +mediatrack.revenue.net +mediatrade.h19.ru +media.trafficfactory.biz +media.trafficjunky.net +media.travelzoo.com +mediauk.247realmedia.com +mediaupdate41.com +media.ventivmedia.com +mediavideo.pl +mediaview.globalmailer.com +mediavine-d.openx.net +media.viwii.net +mediavoice.com +media.watchnewsonlnine.com +mediawhirl.net +mediax.angloinfo.com +mediaxpart.com +media.xxxnavy.com +media.yesmessenger.com +mediaz.angloinfo.com +medicaidchoice.com +medicalbillingschools17.com +medical.carway.net +medicaljourney.me +medical-offer.com +medical-rewardpath.com +medical-systems.de +medicinacom.ru +medicine-4u.org +medicinenet.us.intellitxt.com +medicovi.com +medicreporters.com +medictube.ru +medidoresdeglucosas.com +medienhaus.nuggad.net +mediere-croma.ro +medifastarrowhead.com +medi-fitt.hu +medijobs.in +medikamenten-per-klick.de +medindexsa.com +medindia.us.intellitxt.com +medispainstitute.com.au +meditativeminds.com +medivalsinc.com +medizinreisen.de +medkletki.ru +medkritika.ru +medlern.se +medleyads.com +medmajor.ru +medobjekt.de +medosmotr-ufa.ru +medpop.oewabox.at +medrealestate.pl +medrx.sensis.com.au +meds-online24.com +medtecchina.com +med-tek.tns-cs.net +medtherapy.ru +medtroic.com +medusa.reklamlab.com +meduza.butra.pl +meduza-consult.ru +medya.e-kolay.net +medyanetads.com +med-zdorovie.com.ua +me.effectivemeasure.net +meendo-free-traffic.ga +meenou.com +meeowchicago.com +meetclgirl.com +meetinger.in +meetingrainstorm.bid +meetlocalchicks.com +meetupcom.112.2o7.net +meetupdev.122.2o7.net +meetyourmessenger.co.uk +meevehdar.com +meezantrading.pk +mefa.ws +megaapteka.ru +mega-bony-2017.pl +mega-bony2017.pl +megabony.pl +megacash.de +megacloud.com.pl +megacloudz.net +megaconsolidated.com.au +megadowner.pl +mega-download.eu +mega-download.pl +megadown.net +megadown.us +megafotki.pl +mega-gry.com +megahdporno.net +megahmas.win +megaindex.ru +megakino.net +megakurticao.com.br +megaliquidacaoamericanaj7.com +megalos.pippa.net.br +megamovie.pl +megaofertadospaisamericanas.com +megaonlinemarketing.com +megapanel.gem.pl +megaplex.oewabox.at +mega-polis.biz.ua +megapopads.com +megaprolink.com +megaslim.ru +megastats.com +megastats.top +megastream.pl +megasurfin.com +mega.vast.mega-tags.com +megavolt.net.ua +megawerbung.de +megawinswitchgear.com +meget.co.za +meghaelectronics.com +meghalomania.com +megnscuts.com +mehedyworld.com +mehirim.com +meigert.com +meiluziai.info +meincheck.de-informationallekunden.eu +meinkonto-ebay.de-kundeninformationen2333233.ru +mein.monster.de +meinooriut3.info +meirmusic.com +meisho.com.my +meistertubacinternational.com +meisure.com +meitui155.com +meiwong.net +mekarjaya.biz +me-ke.com +mek-onesystem.co.tz +melanotan.ch +melbournesbestsouvlakis.com.au +melbournetuckpointing.com.au +melding-technology.com +melelcpjekl.pw +melemusa.com +meler.it +melevamotoetaxi.com +melissaolsonmarketing.com +mellowads.com +meltwater.com +members2.hookup.com +members.commissionmonster.com +membersconnects.com +memberservicesinc.122.2o7.net +members.ghanaweb.com +membershipsalesmachine.com +members.sexroulette.com +members-usaa.economicfigures.com +memberty.com +mememakers.mobi +memnahyaho.wildcitymedia.com +memoclic.fr.intellitxt.com +memorytraveller.com +memphisrap.us.intellitxt.com +memyselveandi.com +mendipholidaycottages.co.uk +menetie.ru +menhealed.net +meniskus-information.de +mens.1.p2l.info +mensandals.xyz +mensgiftsfromitaly.com +menshealthweb.co +menstennisforums.com +mentalhealthconsulting.com.au +mentorinstituteoftechnologies.com +mepra.blautechnology.cl +meradaska.com +meramtoki.com +mercadebitcoin.com.br +mercadolivre.krovatka.net +mercadollbre.com +mercatiniusato.com +mercedes-vitoin.423.com1.ru +mercsystems.com +mercury.bravenet.com +mercycar.org +meredithlocal-d.openx.net +meredithtv.us.intellitxt.com +mere.host.sk +merhabag04.duckdns.org +mericnakliyat.com +meridia.1.p2l.info +meridia.3.p2l.info +meridia.4.p2l.info +meridiameridia.3xforum.ro +meridian-don.com +merkurakademie.de +merlagt.com +mermera.se +merriam-webster.se +merryholidays.org +merryhouse.co.uk +merrymilkfoods.com +mersiraenambush.com +mertslawncare.com +mesbuta.info +mesmobil.com.tr +mesopotemia222.zapto.org +mesotherapy.jino-net.ru +messagent.duvalguillaume.com +messagent.sanomadigital.nl +messagerie-sfr-payment.com +messages-safety-your.atspace.cc +messages-your-rec0very.atspace.cc +messagetag.com +message-warning.net +messagia.adcentric.proximi-t.com +messardu.com +messenger.zango.com +me-ssl.effectivemeasure.net +messsengerr.com +mesterads.com +mesto-x.com +meta.7search.com +metaapi.bulletproofserving.com +metabar.ru +metacafe.122.2o7.net +metacount.com +met.adwhirl.com +metaffiliation.com +metagaua.hit.gemius.pl +metalexvietnamreed.tk +metalollipop.com +metalonly.info +metalprof.ee +metals-trading.net +metaltrades.com +metaltripshop.com +metal-volga.ru +metameets.eu +metanetwork.com +meta.osqa.net +metarip.ru +metascephe.com +metastocktradingsystem.com +metaswitchweightloss.com +metcoc5cm.clarent.com +metendniorredbaocespingursshedbaocesnce.com +metering.pagesuite.com +meter-svc.nytimes.com +meteticaret.us +methodcash.com +methodshop.us.intellitxt.com +methuenedge.com +methuenmorgan.com +metin2-video.com +metric.10best.com +metric.allrecipes.com +metric.angieslist.com +metric.bizjournals.com +metric.infoworld.com +metric.makemytrip.com +metric.marthastewart.com +metric.modcloth.com +metric.mylife.com +metric.nationalgeographic.com +metric.nwsource.com +metric.olivegarden.com +metric.petinsurance.com +metric.rent.com +metrics2.pricegrabber.com +metrics.aarp.org +metrics.accuweather.com +metrics.acehardware.com +metrics.aetn.com +metrics.al.com +metrics.amd.com +metrics.americancityandcounty.com +metrics.apartmentfinder.com +metrics-api.librato.com +metrics.ariba.com +metrics.att.com +metrics.autobytel.com +metrics.automobilemag.com +metrics.autotrader.co.uk +metrics.aviasales.ru +metrics.azfamily.com +metrics.babycenter.com +metrics.babycentre.co.uk +metrics.beachbody.com +metrics.bestbuy.com +metrics.bet.com +metrics.bhg.com +metrics.bitdefender.com +metrics.blackberry.com +metrics.bloomberg.com +metrics.bose.com +metrics.boston.com +metrics.brightcove.com +metrics.caranddriver.com +metrics.carbonite.com +metrics.car.com +metrics.carphonewarehouse.com +metrics.cars.com +metrics.cbc.ca +metrics.centex.com +metrics.chacha.com +metrics.chron.com +metrics.cleveland.com +metrics.cnn.com +metrics-collector.onscroll.com +metrics.compactappliance.com +metrics.corus.ca +metrics.cosmopolitan.co.uk +metrics.crystalcruises.com +metrics.csmonitor.com +metrics.ctv.ca +metrics.ctvdigital.net +metrics.dailymotion.com +metrics.dailystrength.org +metrics.dallasnews.com +metrics.delta.com +metrics.dentonrc.com +metrics.dickssportinggoods.com +metrics.discovery.com +metrics.divinecaroline.com +metrics.diy.com +metrics.doctoroz.com +metrics.dollargeneral.com +metrics.dunkindonuts.com +metrics.elle.com +metrics.ems.com +metrics.experts-exchange.com +metrics.express.com +metrics.expressen.se +metrics.fandome.com +metrics.fedex.com +metrics.finishline.com +metrics.fitnessmagazine.com +metrics.flyingmag.com +metrics.fnac.es +metrics.ford.com +metrics.foreignpolicy.com +metrics.foxnews.com +metrics.frontlineshop.com +metrics.gamestop.com +metrics.gap.com +metrics.gcimetrics.com +metrics.gnc.com +metrics.govexec.com +metrics.harley-davidson.com +metrics.hbogo.com +metrics.health.com +metrics.hhgregg.com +metrics.homebase.co.uk +metrics.hoovers.com +metrics.howstuffworks.com +metrics.hrblock.com +metrics.iconfitness.com +metrics.ikea.com +metrics.ilsole24ore.com +metrics.impactengine.com +metrics.imvu.com +metrics.ioffer.com +metrics.ireport.com +metrics.kbb.com +metrics.kgw.com +metrics.ksl.com +metrics.ktvb.com +metrics.landolakes.com +metrics.laredoute.fr +metrics.lawyers.com +metrics.lehighvalleylive.com +metrics.lexus.com +metrics.lhj.com +metrics.maxim.com +metrics.mcafee.com +metrics.mercola.com +metrics.mlive.com +metrics.mms.mavenapps.net +metrics.moneymart.ca +metrics.more.com +metrics.mpora.com +metrics.mysanantonio.com +metrics.natmags.co.uk +metrics.nba.com +metrics.necn.com +metrics.newcars.com +metrics.nextgov.com +metrics.nfl.com +metrics.nissanusa.com +metrics.nj.com +metrics.nola.com +metrics.npr.org +metrics.nutrisystem.com +metrics.oclc.org +metrics.olivegarden.com +metrics.oprah.com +metrics.oregonlive.com +metrics.pagoda.com +metrics.parallels.com +metrics.parents.com +metrics.pe.com +metrics.pennlive.com +metrics.penton.com +metrics.performancing.com +metrics.performgroup.com +metrics.petsmart.com +metrics.philly.com +metrics.politico.com +metrics.post-gazette.com +metrics.premiere.com +metrics.radioshack.com +metrics.ralphlauren.com +metrics.rcsmetrics.it +metrics.retailmenot.com +metrics.rottentomatoes.com +metrics.seattlepi.com +metrics.seenon.com +metrics.sephora.com +metrics.sfr.fr +metrics.sharecare.com +metrics.shoedazzle.com +metrics.shopoon.fr +metrics.silive.com +metrics.sky.com +metrics.slate.com +metrics.solarwinds.com +metrics.sony.com +metrics.soundandvision.com +metrics.soundandvisionmag.com +metrics.southwest.com +metrics.speedousa.com +metrics.starwoodhotels.com +metrics.store.irobot.com +metrics.sun.com +metrics.svd.se +metrics.syracuse.com +metrics.target.com +metric.starz.com +metrics.td.com +metrics.teambeachbody.com +metrics.technologyreview.com +metrics.tgw.com +metrics.theatlantic.com +metrics.thedailybeast.com +metrics.thefa.com +metrics.thefrisky.com +metrics.thenation.com +metrics.theweathernetwork.com +metrics.thinkgeek.com +metrics.three.co.uk +metrics.ticketmaster.com +metrics.tlc.com +metrics.tmz.com +metrics.toptenreviews.com +metrics.toyota.com +metrics.toysrus.com +metrics.traderonline.com +metrics.tulsaworld.com +metrics.turner.com +metrics.tvguide.com +metrics.uol.com.br +metric.superpages.com +metrics.us.levi.com +metrics.us.playstation.com +metrics.vividseats.com +metrics.vodafone.co.uk +metrics.washingtonpost.com +metrics.which.co.uk +metrics.whitepages.com +metrics.windowsitpro.com +metrics.winsupersite.com +metrics.womansday.com +metrics.worldmarket.com +metrics.yellowpages.com +metrics.yousendit.com +metric.thenation.com +metric.trulia.com +metric.volkswagen.com +metric.worldcat.org +metric.yellowpages.com +metriweb.be +metrocuadro.com.ve +metropolemotors.com +metropolitan.pro +metropolitansage.com +metropol.oewabox.at +metropol-party.de +metro.uk.intellitxt.com +metzgerconsulting.com +metzgerei-joerg.de +meubizness.com +meuironline.com.br +meumimo.net.br +meu.pl +meuquintal.com.br +meutorrent.org +mevaa.com +mew.com.au +m.exactag.com +mex-annushka.ru +mexico-mmm.net +mexicosleevegastrectomy.com +mexicotravelnet.com +mezczyzna-trendy.pl +mezkalitohostel.com +mezzasphere.com +mfacebooc.club +m.facebook.alia-musica.org +m.facebook.com---------acc--activation---j12n12p.dooduangsod.com +m.facebook.com----------accept--our--new--tos--today-asaasans.theatticinbuffalo.com +m.facebook.com---------configure----step1.kruegerpics.com +m.facebook.com--------confirm.aznet1.net +m.facebook.com------login---step1.akuevi.net +m.facebook.com-motors-listing.us +m.facebook.com-----------------secured----account---confirmation.rel360.com +m.facebook.com----------------securelogin----acount-confirm.aggly.com +m.facebook.com-----------------securelogin---confirm.giftcardisrael.com +m.facebook.com-----securelogin---confirm.md2559.com +m.facebook.com-----------------------------securelogin-----viewaccount.javatechnologycenter.com +m.facebook.com------------step1-----confirm.pfcgl.org +m.facebook.com---------step1---confirm.shawarplas.com +m.facebook.com------------terms-of-service-agree.madkoffee.com +m.facebook.com------------validate-account.bintangjb.com +m.facebook.com------------validate---account.disos.xyz +m.facebook.com------------------validate.fb-stalker.club +mfacebooks.com +mfacebooksv.webcindario.com +mfad1.advantage.as +mf.advantage.as +mfas.safesslredirect.com +m-fb-security.000webhostapp.com +m.fr.2mdn.net +m.fr.a2dfp.net +mfr.a2dfp.net +m.friendlyduck.com +mf.sitescout.com +mg.adskeeper.co.uk +mgba.org +mgcksa.com +mgc-models.de +mgdothaneagle.112.2o7.net +mg.dt00.net +mgecjaipur.com +mgfd1b.petrix.net +mghickoryrecord.112.2o7.net +mgid.com +mgjea.org +mgjmp.com +mgjournalnow.112.2o7.net +mgm88tv.com +mg.marketgid.com +mgmforex.com +mg.mgid.com +mgoanow.112.2o7.net +mgrshs.com +mgscw.com +mgstarexponent.112.2o7.net +mgtbo.112.2o7.net +mgtbopanels.112.2o7.net +mgtimesdispatch.112.2o7.net +mgtricities.112.2o7.net +mgwcbd.112.2o7.net +mgwjar.112.2o7.net +mgwnct.112.2o7.net +mgwsav.112.2o7.net +mgwsls.112.2o7.net +mgwspa.112.2o7.net +mhcsoestsweater.nl +mhfghana.com +mhfitnesspilates.com +mh-hundesport.de +mhiiiedblscogtbmty.com +mhi-systems.ru +mhlnk.com +mhnrw.com +mh.ogercron.com +mh.pip-pip-pop.com +mhsn.edu.bd +mhtr.be +mhvillage.co +mi.5.p2l.info +mi9.gscontxt.net +mi.adinterax.com +miamiartmagazine.online +miamibeachhotels.tv +miamiboatgate.com +miamidancendrum.com +miarroba.com +miarun.ru +mibounkbir.com +micardiss.ql.st +micasainvest.com +micav.it +mice.pl +michaeldelugg.com +michaelgibbs.com +michaelkorsoutlet.store +michaelkorsoutletstore.net +michaelkorssaleoutletonline.net +michaellarner.com +michaelodega.com +michaelshop.net +micheal766.info +micmusik.com +micoel.se +micosoft.com-web.support +micraamber.net +microcontroller-cafe.com +microencapsulation.readmyweather.com +microoportunidades.com +microsearch.ru +microsearchstat.com +microsoft.com-msoft52.info +microsoftconsumermarketing.112.2o7.net +microsoft-emergency-suspension.com +microsoft-error2101.xyz +microsoft-error2102.xyz +microsoft-error2103.xyz +microsoft-error2105.xyz +microsoft-error-alert2017.com +microsoft-errorcode7414.xyz +microsoft-errorcode7417.xyz +microsoft-errorcode7474.xyz +microsoft-errorcode7477.xyz +microsofteup.112.2o7.net +microsoftgamestudio.112.2o7.net +microsoft-help24x7.com +microsofthelpcenter.xyz +microsofthelpline.xyz +microsoft.helptechnicalsupport.com +microsoftinternetexplorer.112.2o7.net +microsoftmachinetranslation.112.2o7.net +microsoftoffice.112.2o7.net +microsoftofficehome.com +microsoft-official-error2101.xyz +microsoft-official-error2102.xyz +microsoft-official-error2103.xyz +microsoftonlibe.com +microsoftonlineportal.com +microsoft-openings-security-alert-page16.info +microsofto.sytes.net +microsoftpchelpnsupport.xyz +microsoftportal.net +microsoftsecuritymessage.xyz +microsoftsecurityservice.xyz +microsoftsecurity.systems +microsoft.shopgoat.co.in +microsoft-sql-server.wp-club.net +microsoftsto.112.2o7.net +microsoft-support110.xyz +microsoft-support111.xyz +microsoft-support112.xyz +microsoft-support113.xyz +microsoft-support114.xyz +microsoft-support115.xyz +microsoftsupport.com-support0206.info +microsoftuk.122.2o7.net +microsoft-update.name +microsoftwga.112.2o7.net +microsoftwindows.112.2o7.net +microsoftwindowscom.tt.omtrdc.net +microsoftwindowsmobile.122.2o7.net +microsoftwllivemkt.112.2o7.net +microsoftwlmailmkt.112.2o7.net +microsoftwlmessengermkt.112.2o7.net +microsoftwlmobilemkt.112.2o7.net +microsoftwlsearchcrm.112.2o7.net +microsoftxbox.112.2o7.net +microsof.wemfbox.ch +microsotf.cn +microspec.co.uk +microstatic.pl +micro-techerrors.com +microticker.com +micrsoftupgradex.1apps.com +midala.112.2o7.net +midar.112.2o7.net +midcru.112.2o7.net +middleeast.co.nf +middleportfreight.co.zw +middlerush-a.akamaihd.net +midialeto.com +midiasomeluz.com.br +midistirone.com +midland-craft.ru +midmt.com +midnightclicking.com +midsen.112.2o7.net +midst.eu +miercuri.gq +miespaciopilates.com +mieszkania-pokoje-wynajem.pl +miet9ei.top +miexito.com +migente.com +mightymagoo.com +miglio.com.au +mig.nexac.com +migordico.es +migratelecom.com.br +migrationagentperthwa.com.au +migration.sunsetdriveumc.com +mihandownloader.com +mii-image.adjuggler.com +miimmigration.co.uk +mijn.ing.betaalpas-aanvraagformulier.nl.vnorthwest.com +mijn-wereld.ru +mik2.pl +mikael99635.000webhostapp.com +mikamart.ru +mikambasecondary.ac.tz +mikeboffer.mytvplayer.hop.clickbank.net +mikecsupply.com +mikeferfolia.com +mikrobiologies.ru +milana-deti.ru +milbglobal.112.2o7.net +milblueprint.com +mil-colores.com +mile.hop.ru +mileminesng.com +milestonestrategies.com +mileyramirez.com +milf.gabriola.cl +milfsites.net +milioner.popunder.ru +militarmg.com.br +militarysale.pro +military.us.intellitxt.com +milkatesterzy.club +milkfountain.com +milleniumpapelaria.com.br +milletsmarket.com +millhousecorals.com +millicinthotel.com +millionare.com +milliontrees.com +millsconstruction.org +millseagle.com +milyondolar.com +mimageads1.googleadservices.com +mimageads2.googleadservices.com +mimageads3.googleadservices.com +mimageads4.googleadservices.com +mimageads5.googleadservices.com +mimageads6.googleadservices.com +mimageads7.googleadservices.com +mimageads8.googleadservices.com +mimageads9.googleadservices.com +mimageads.googleadservices.com +mima-hosp.com +mimapandansari.sch.id +mimascotafiel.com +mimicrice.com +mimile8.com +mimwebtopss.us +min2candy.com +minager.com +minasouro.com.br +mincertinker.com +mindbox.co.za +mindstormstudio.ro +minecraft-neo.ru +minecraftpro.pl +minecraftstar.tk +minecrunch.co +minegam.com +minemytraffic.com +minero.pw +miner.pr0gramm.com +minerva.healthcentral.com +minexmr.com +ming-dun.com.tw +minhacola.com +minharevisao.com +minhman.vn +mini.7zap.com +mini.activeshopper.com +miniads.ca +minigameplanet.com +minigateexam.com +minigreensmartscom.ipage.com +minimodul.org +minimoutne.cf +minisearch.startnow.com +minisite.mtacloud.co.il +ministerioinfantil.org +ministerio-publi.info +mini.videostrip.com +minneapoliscopiers.com +minoritynursing.com +minospesial.id +minotti.rs +minovici.ro +minskinvestinc.us +minut45.ru +minyetki.ru +mipoly.edu.in +mipsa.ciae.ac.cn +mirabelki.5v.pl +miracema.rj.gov.br +miraclems.de +mirae-cctv.com +mirageads.net +miramardesign.com +miramarepalinuro.com +mirandolasrl.it +mir-betting.ru +mir-business-24.ru +mirchandakandcofirm.org +mirchibingefest.com +miremanufacturing.com +mir-holoda.by +miricleessentialoils.com +miringintumpang.sch.id +mir-limuzinov.ru +mirmedinfo.ru +mirobuvi.com.ua +mirrorcoukcelebs.skimlinks.com +mirror.pointroll.com +mirrorsearch.speedbit.com +mirrors.site50.net +mirtorrent.net +mirzonru.net +misandesign.se +miscursos.net +misegundocuadro.com +miserji.com +mishalinigarments.com +misoftservices.com +missaoeamor.com.br +missclub.info +missdionnemendez.com +misshal.com +mission-impex.myjino.ru +missionoch.org +missionservice.000webhostapp.com +mission-solidarite.tk +missis.top +missjia.us.intellitxt.com +missmaker12.com +misstacon.es +misstrends.com +missunderstood1.com +missvietnam.org +misswapster.pl +misswell.net +mista.eu +misterguerrero.com +misterjoy.ru +misterjtbarbers.com +mister-shop.com +mistr-x.org +mitrasound.ru +mitru.sk +mitsubishi.112.2o7.net +mittnamn.nu +mixandbatch2000.co.uk +mixedreading.com +mixed-wrestling.ru +mixmarket.biz +mixmaster.it +mixmodas-es.com.br +mixpanel.com +mixtapetorrent.com +mix-test.uts.ngdata.com +mixtraffic.com +mizahturk.com +mjchamonix.org +mj-ive.com +mjjsoluciones.com +mjo.me +mjpianoyn.com +mjw.or.kr +mjxads.internet.com +mjx.ads.nwsource.com +mkc-net.net +mkconstruction.ci +mkcthehomemarketplace.112.2o7.net +mkhafnorcu81.com +mklik.gazeta.pl +mkl.undip.ac.id +mknwleasuredehydratorysagp.com +mkphoto.by +mksolutions.com.br +mkt10.122.2o7.net +mktg.actonsoftware.com +mktgcdn.de.coremetrics.com +mktg-offer.com +mkumarcompany.in +ml314.com +mladost08.com +mlarmani.122.2o7.net +mlbam.112.2o7.net +mlbastros.112.2o7.net +mlbatlanta.112.2o7.net +mlbcincinnati.112.2o7.net +mlbcolorado.112.2o7.net +mlbcom.112.2o7.net +mlbglobal08.112.2o7.net +mlbglobal.112.2o7.net +mlbhouston.112.2o7.net +mlbsanfrancisco.112.2o7.net +mlbstlouis.112.2o7.net +mlbtoronto.112.2o7.net +mlidsdof.com +mlinktracker.com +mllpqyipvbmc.net +mlm.de +mlmrkxgdo.com +mlntracker.com +mlnusa.com +m.login-secured.liraon.com +mloirvkge.top +m.loldlxmy.com +mlpoint.pt +mlsglobal.112.2o7.net +mlvc4zzw.space +mm113.com +mm1.vip.sc1.admob.com +mm266.bplaced.com +mm26.com +mm58100.com +mmaadnet.ad-control-panel.com +mm.admob.com +mmafighting.us.intellitxt.com +mmapquest.com +mmarkt.oewabox.at +mmc.122.2o7.net +mm.chitika.net +mmedia.pl +mmedi.cc +mmexe.com +mmgads.com +mmgq.ru +mmile.com +m.mimzw.com +mmismm.com +mmm-global.gq +mm-mmm0.paykasabozdurma.xyz +mmmsnne.englam.com.sg +mmmust.com +mmm.vindy.com +mmnidy.com +mmobitech.com +mmofreegames.online +mmog-play.ru +mmoguider.ru +mmostrike.ru +mmotraffic.com +mmpsuf.lt +mmptrack.com +mmpy.net +mmroom.in +mmsbeauty.com +mmsolar.pl +mmsshopcom.112.2o7.net +mmstat.com +mmtmmt.tk +mmtracking.com +mmtrkpy.com +mmtro.com +mmv.admob.com +mmyeyelove.com +mn.5.p2l.info +mnbcgroup.com +mncrftpcs.com +mnctesisat.com +mnet-ad.net +mnfidnahub.112.2o7.net +mng1.clickalyzer.com +mngi.112.2o7.net +mngidailybreeze.112.2o7.net +mngidmn.112.2o7.net +mngimercurynews.112.2o7.net +mngimng.112.2o7.net +mngirockymtnnews.112.2o7.net +mngislcnac.112.2o7.net +mngislctrib.112.2o7.net +mngisv.112.2o7.net +mngitwincities.112.2o7.net +mngiyhnat.112.2o7.net +mngiyrkdr.112.2o7.net +mnlo.ml +mn.mn.co.cu +mnogabukaff.net +mnogobab.com +mnogolok.info +mno.tns-cs.net +mnshdq.com +mnslavoie.com +mntpdq.net +mnxgz.com +mo.5.p2l.info +moacbeniv.com +moandbo.com +moaramariei.ro +moatads.com +mob.adnxs.com +mob.adwhirl.com +mobaplayer.ru +mobatory.com +mobclix.com +mobcontentxx.com +mobeidrey.com +mobe.jayjagannathhotel.com +mobfactory.info +mo.bfox.com +mob-free.frl +mobiactif.es +mobiapp-games.com +mobi-ativacao-conta.cf +mobigra.com +mobi-hack.tk +mobila.pl +mobil-atualiza.tk +mobile9.us.intellitxt.com +mobile.activeshopper.com +mobileads.msn.com +mobileanalytics.us-east-1.amazonaws.com +mobileanalytics.us-east-2.amazonaws.com +mobileanalytics.us-west-1.amazonaws.com +mobileanalytics.us-west-2.amazonaws.com +mobileaps.co +mobileativacao-001-site1.dtempurl.com +mobilebabyfotografie.de +mobile.banzai.it +mobile.bitterstrawberry.org +mobilebookkeeping.co.uk +mobileburn.us.intellitxt.com +mobilecatanddogvet.com +mobilecomputermag.uk.intellitxt.com +mobile-content.info +mobile-craigslist.org +mobilede-dp.nuggad.net +mobilede.nuggad.net +mobiledl.adobe.com +mobile.facebook.ismartnaija.com +mobileforhero.com +mobile.free.espaceabonne.info +mobile-free.globaldataince.com +mobile.free-h.net +mobilefree.i.abonnement-frds.com +mobile.free.infoconsult.info +mobile-free.kofoed-fr.com +mobile-free.metulwx.com +mobile.free.moncompte.espace.clients.particuliers.francaisimpayee.fr +mobile.free.reclamtion-ifm.com +mobile.id.apps.webappsupdate-account.verify438.com +mobileid-free-fr.info +mobileif-atualiza.ml +mobilei-lfree.net +mobile.ivwbox.de +mobilejp.com +mobile.juicyads.com +mobile-lfree.fr-molass.com +mobilemedia.md +mobilemobileorlando.com +mobilemusicservice.de +mobile.paypal.com.cgi-bin.artincolor.net +mobile.plugrush.com +mobile-redirection.com +mobile-safety.org +mobile-scotiaonlineservice.com +mobileservicesconnect.com +mobiles-free.org +mobile.smartadserver.com +mobiletechreview.us.intellitxt.com +mobiletierheilpraxis.de +mobilewhack.us.intellitxt.com +mobileworry.com +mobileyoga.mobi +mobil.gamepublicist.com +mobiliaflexyliving.com +mobilierland.com +mobilityguru.us.intellitxt.com +mobility.lviv.ua +mobilnik.pl +mobioffertrck.com +mobireal.com +mobisantaapp.com +mobisex.pieprz.pl +mobishop.se +mobistos.com +mobiworld.biz +moblao.com +mobot.site +mobpartner.mobi +mobplayer.net +mobplayer.ru +mob.pobierzteraz.mobi +mobrevflwms.com +mobsantandenet.com +mobscan.info +mobsfun.com +mobsfun.net +mobstarr.com +mobularity.com +mobuna.com +moby-aa.ru +mobyapps.net +mobzones.com +mocceanttactical.website +mocean.mobi +mochibot.com +mocka.frost-electric-supply.com +mockupui.com +moc-prezentu.pl +moc.silk.com +modabutik.ru +modaotonoinvierno.com +modasrosita.nom.pe +modatest.ml +moddahome.com +modellecke.de +modelnehir.com +modelsnext.com +modenamebel.ru +modernenterprises97.com +modernlookbyneni.com +modernnlites.com +modernyear.com +modescrips.info +modesurf.com +modifiedlife.us.intellitxt.com +modijie.com +modisigndv.net +modulo-bank.com.br +modux.ml +moebelscout.de +moesen-ficken.com +moesonce.com +mogyang.net +mohamedbelgaila.com +mohammadrezazeidi.com +mohangardenproperty.com +moh.fi +mohsensadeghi.com +mohunting.com +moiesanywhere.com +moi-glazki.ru +moikdujs.com +moi-kelma.org +moirapoh.com +moivestiy.biz +mojadietanamase.pl +mojeiq.pl +mojekumpele.blogspot.com +moje-recenze.cz +mojofarm.mediaplex.com +mojowhois.com +mojpregled.com +mojpreskumanie.com +mojtlumacz.pl +mokksha.net +mokrayakiska.com +mola77.mobilenobo.com +moleculearoma.com +mole.pluto.ro +molkom.org +molla.gato1000.cl +molowo.in.ua +mom.freelogs.com +mommyish.us.intellitxt.com +momoaustin.com +momoi.5gbfree.com +momolato.com +momoxxio.com +moms4pop.org +monagences.espace3v-particuliers.com +mon-ageznces1-clients.com +monarchexcess2.com +monarchfind-a.akamaihd.net +monarchizi.com +monarchslo.com +monarhs.info +monbri.ru +monclerboots.xyz +monclercheap.xyz +monclercoats.xyz +monclerjacketsoutlet.pw +monclerjacketsoutlet.win +monclerjp.com +moncleronline.xyz +moncleroutletonline.pw +moncleroutletonline.win +moncleroutletonline.xyz +monclervests.xyz +moncompte-mobile.gzero.com.mx +monde-gourmandises.net +mondialisatincroissances.it +mondoads.s3.amazonaws.com +mondo-animali.it +monerominer.rocks +monetate.net +monetisetrk2.co.uk +monetisetrk3.co.uk +monetisetrk4.co.uk +monetisetrk5.co.uk +monetisetrk6.co.uk +monetisetrk.co.uk +monetizationking.net +monetizer.com-01.site +monetizer.info +monety-pokemony.pl +moneybackfinder.com +moneybot.net +moneycampaign.com +moneyeventcatering.com +money-every-day.com +moneyexpert.com +moneyfree.ru +moneyh.wemfbox.ch +money-lnteractfunds.com +moneymaster.ru +moneyraid.com +moneysos.com +moneytop.ru +moneytree.sextracker.com +moneyviking-a.akamaihd.net +monfrancais.fr +monibi100.com +monicake.com.br +monidopo.bee.pl +moniquerer23.com +moniqueverrier.com +monitoring.profi-webhosting.cz +monitor.oewabox.at +monitor.phorm.com +monitorwebsitespeed.com +monk.com.au +monkeyball.osa.pl +monkey-broker-d.openx.net +monkeyparts.de +monk.sitescoutadserver.com +monksstores.co.za +monofeel.com +monolithindia.com +monopod365.ru +monperla.es +monsierdroider.wang +monsontos.com +monster-ads.net +monster.gostats.com +monster.gostats.ru +monsterpops.com +monstersandcritics.advertserve.com +monstersandcritics.uk.intellitxt.com +monsterstinger.com +montazhnic.ru +montblanc.122.2o7.net +montblanccom.122.2o7.net +monteescalierbonprix.eu +monteverdegib.com +monteverdetour.com.br +montezuma.spb.ru +monthlittlelady.top +monthlywinners.com +month.nualias.com +monticarl.com +montrealgazette.stats.com +montronicstcpasettlement.com +montrox.com +montus-tim.hr +monumentparking.com +moo4ail.top +moo9iez.top +moodoo.com.cn +moodoocrv.com.cn +moogo.ru +mooi.sr +moomi-daeri.com +moonbattracker.com +moonclerk.co +moonlightreading.co.uk +moontag.com +moo.parenthoodvr.com +moosegrey.com +moosetick.com +moo.sitescout.com +mopasta.com +mopdenver.org +m.openv.tv +mopub.com +moran10.karoo.net +morconsultoria.cl +more32.in.net +moreantiques.com +morefastermac.trade +morefreecamsecrets.com +morehitserver.com +morekisok.ru +morelandlottery.com.au +more-letom.ru +moremco.net +morendi31.ru +morenewmedia.com +morenews3.net +moreperormancemac.tech +morepoweronmac.trade +more-sale.com +morevisits.info +morf.snn.gr +morgpost.ivwbox.de +morlat.altervista.org +mormonchurchgenealogy.com +mormonorg.112.2o7.net +morningnewsonline.112.2o7.net +morningstar.us.intellitxt.com +moroccomills.com +morocco-nomad-excursions.com +moroccosurfadventures.com +morol.com +morphicago.top +mortagecalculators.com +mortenhvid.dk +mortezare.ir +mortgagecloser.com +mortgageinsurancesales.com +mortgage-memphis.hotmail.ru +mortgage-rates.now-cash.com +morthanwords.com +mortonscorner.com +morusscrabandseafood.com +mosaichomedesign.com +mosales.com +moscow-clining.ru +moscow.online-podarki.com +moscow-region.ru +moscow.xrus.org +mosdverka.ru +mos-expert.pro +moseymp3.beget.tech +moskva.nodup.ru +mosquee-arcueil.fr +mosrif.ru +mossmesi.com +mostantikor.ru +mostanude.890m.com +most.cob.net.ba +most-kerch.org +mosttrendybrands.com +mostwantedtoyz.com +motd.pinion.gg +moteldb2000.pw +motelppp.com +motherlandhomesghana.com +motherless.com +motifahsap.com +motifcdn2.doubleclick.net +motifcdn.doubleclick.net +motifiles.com +motionritm.ru +motivacionyrelajacion.com +motivated-movers.com +motivcomponents.com +motleyfool-d.openx.net +motoafrika.com +moto-agro.pl +motocrossparks.com +motoracephil.com +motorbiketaxis.com +motorclubofamericawiki.com +motoren.ru +motoringcompany.com +motorl.oewabox.at +motormatic.pk +motorrollerwelt.de +motorsportmanagement.co.uk +motortrend.us.intellitxt.com +motosal.net +motosurgeon.info +mototsikl.org +motoworldmoz.com +mot-shop.de +mottart-boissons.be +mottnow.adk2x.com +motyw-fb.blogspot.com +mouads.com +mountainbetween.net +mountainoverseas.com +mountainstateshealth.co +mountainstream.ms +mountaintourism.info +mountamand.info +mountdigit.net +mountgambiercatholic.org.au +mountliterark.in +mouseflow.com +mousspayante.com +mouthinto.net +movadria.com +movak.sk +movegives.net +moveislider.com.br +movieads.imgs.sapo.pt +moviecreator.pl +moviedownloader.net +movieesanywhere.com +moviehole.us.intellitxt.com +movie-host.pl +movie-list.us.intellitxt.com +moviemail-online.co.uk +movieofgoodies.kz +moviepaidinfullsexy.kz +movieplaytubes.pl +movierulz25.com +movies.701pages.com +moviesanuwhere.com +moviesanywgere.com +moviesanywher.com +moviesfone.com +movies-in-theaters.net +moviesonline.ca.intellitxt.com +moviessanywhere.com +moviestarplanetcheatstool.com +moviestarplanethackandcheats.com +moviestarplanethackers.co +moviestarplanethack.net.pl +moviestarplanethacks.pl +moviestarplanet-haki-i-kody.crazylife.pl +movies.us.intellitxt.com +movieweb.us.intellitxt.com +moviezbonkerssk.cf +moviezone.com +movingmatters.house +movingonphysio.com.au +movingroadsl.com +movisanywhere.com +movitex.122.2o7.net +movoesanywhere.com +movsflix.com +mowfruit.com +mowser.com +moxo.com +moyakuhnia.ru +moyaterapiya.ru +moyeslawncare.com +mp-04.fbmetrix.club +mp3best.online +mp3downloadhq.com +mp3films.ru +mp3helpdesk.com +mp3-pesni.ru +mp3playerprovider.com +mp3playersource.com +mp3ringtone.info +mp3won.com +mp.5.p2l.info +mp.apmebf.com +mpartner.googleadservices.com +mpbva.com +mp.clicksor.net +mpif.eu +mpire.112.2o7.net +mpkhi-bk.multi.net.pk +mplayerdownloader.com +m.pl.pornmania.pl +m.pl.pornzone.tv +m.pl.videoinbox.net +mpmotrk.com +mporthi.com +mpottgov0001-001-site1.1tempurl.com +mppamfaba.top +mp.pianomedia.eu +mpp.specificclick.net +mpp.vindicosuite.com +mprcseal.com +mproxy.banner.linksynergy.com +mprptrk.com +mpsgfilms.ca +mpsnare.iesnare.com +mpsnare.iesnare.co.uk +mpspayonlime.com +mpsplates.com +mpss.com.sa +mpstat.us +mp.tscapeplay.com +mpv.sandai.net +mpxxtrk.com +mqiqbkanx.top +mqpx4.com +m.quantserve.com +mqwdaq.com +mr4evmd0r1.s.ad6media.fr +mrace.hopto.org +mrappolt.de +mrbitsandbytes.com +mrcab.net +mr.com.mk +mrcoolmrheat.com.au +mrcsa.com.au +mreg.hit.gemius.pl +mrinformaticabh.com.br +mrinsidesales.com +mriyadh.com +mrjeweller.us +mrknowsit.com +mrlmedia.net +mrlolik.ddns.net +mrmaxservice.com +mrpolice.com +mrpost.co.za +mrp.rubiconproject.com +mr-rank.de +mrrpilc.com +mrsbridgestearooms.com +mrsdalloways.com +mrskincash.com +mrsrichards.com +mrtg.hitbox.com +mrwhite.biz +mrxcontabil.com.br +ms0x0000001341.club +ms11.net +ms365portal.com +ms.5.p2l.info +ms.adpremium.org +msahinetms12.com +msalt.mysearch.com +m.sancdn.net +msb2x6ef0qjnm1kbf0cy.thequalitycheck.com +mschoolbucks.com +mscplash.com +msedge.net +msengonihomestays.co.ke +mseriesbmw.top +m.serulom.tk +m.servebom.com +mseuppremain.112.2o7.net +mseupwinxpfam.112.2o7.net +msfn.us.intellitxt.com +msfsaar.de +msgmwcqv.net +msgstore2.pldtprv.net +msgtag.com +mshelp247.weebly.com +msh.hamsatours.com +msk-diplomat.com +ms.ligatus.com +msmobiles.de.intellitxt.com +ms-mvp.org +msn1.com +msna1com.112.2o7.net +msnaccountservices.112.2o7.net +msnad.nuggad.net +msnads-wm9.fplive.net +msn.allyes.com +msnbc.112.2o7.net +msnbcnewsvine.112.2o7.net +msnbcom.112.2o7.net +msnbc.us.intellitxt.com +msnbe-hp.metriweb.be +msnbot-65-55-108-23.search.msn.com +msn-cdn.effectivemeasure.net +msneshopbase.112.2o7.net +msninvite.112.2o7.net +msninviteprod.112.2o7.net +msnlivefavorites.112.2o7.net +msnm.com +msnmercom.112.2o7.net +msnmercustacqprod.112.2o7.net +msn.oewabox.at +msnonecare.112.2o7.net +msnportal.112.2o7.net +msnportalaffiliate.112.2o7.net +msnportalaunews.112.2o7.net +msnportalbeetoffice2007.112.2o7.net +msnportalgame.112.2o7.net +msnportalhome.112.2o7.net +msnportallatino.112.2o7.net +msnportallive.112.2o7.net +msnportalmsgboardsrvc.112.2o7.net +msnportalscp.112.2o7.net +msnportalvideo.112.2o7.net +msnsearch.srv.girafa.com +msnservices.112.2o7.net +msn.serving-sys.com +msnsports.com +msntest.serving-sys.com +msn.tns-cs.net +msntrademarketing.112.2o7.net +msn.uvwbox.de +msnwinonecare.112.2o7.net +msn.wrating.com +ms.onscroll.com +msphack.com.pl +msphackonline.com +msphack.pl +msphacks.net +mssbcprod.112.2o7.net +msverbjhnsabhbauthsysgeb.000webhostapp.com +msvy0.ml +msw67.cafe24.com +mswindowswolglobal.112.2o7.net +mswine0rrr0x000222264032817.club +mswine0rrr0x0003312340722317.club +mswine3rrr0x00030317.club +mswiner0rr05x020817.club +mswiner0x00021032817.club +mswiner0x000280040617.club +mswiner1rr0x022217.club +mswlspcmktdev.112.2o7.net +mswmwpapolloprod.122.2o7.net +msxml.info.com +msxml.us.info.com +ms.yandex.ru +mszontiagroup.com +mt103.mtree.com +mt10.mtree.com +mt113.mtree.com +mt11.mtree.com +mt122.mtree.com +mt124.mtree.com +mt127.mtree.com +mt12.mtree.com +mt15.mtree.com +mt1.mtree.com +mt2-fire.com +mt2.mtree.com +mt32.mtree.com +mt34.mtree.com +mt35.mtree.com +mt37.mtree.com +mt4.mtree.com +mt55.mtree.com +mt58.mtree.com +mt.5.p2l.info +mt83.mtree.com +mt94.mtree.com +mt.adquality.ch +m.tamilmalls.com +mtcconsult.com +mtccsun.imtech.ernet.in +mtcount.channeladvisor.com +mtfreshfoods.com +mtg.tns-cs.net +mtldesigns.ca +mtmoriahcogic.org +mtmsms.com +mtpleasantwaterworks.com +mtquiz.blufysh.com +mtr2000.net +mtrcs.popcap.com +mtrcs.redhat.com +mtree.com +m.tribalfusion.com +mtrics.cdc.gov +mtrx.go.sonobi.com +mtsmuhammadiyahbatang.sch.id +mtsnu-miftahululum.sch.id +mtsx.com.cn +mttwtrack.com +mtu.edu.quizandshare.com +mturkcontent.com +mtv.247realmedia.com +mtv3.spring-tns.net +mtvbrazil-services.vimn.com +mtv.count.brat-online.ro +mtvn.112.2o7.net +mtvn.demdex.net +mtvnlatservices.com +mtv.nuggad.net +mtvp05j.com +mtvu.112.2o7.net +muabancantho.info +muamusic.com +mudanzas.de +muddinktogel.hol.es +muddleapp.co +mudfall.com +mudmonster.org +mueblesideas.cl +mueeza.id +mueller-holz-bau.com +muenstergemeinde.de +muenzwirkert.de +mugibarokah.id +mu.gigy.gq +mugity.gq +muglaulkuocaklari.org +mug-na-chas-moscow.ru +mugzue.merseine.com +muh-ridwan.co.id +mu-in-f167.1e100.net +muizre.ru +mujeres809.com +m.uk.2mdn.net +mukundaraghavendra.org +mulaibaru.hol.es +mulberryoutletonlineeu.com +mulbora.com +mulla.cf +multanhomes.com +multi1.rmuk.co.uk +multiclashgems.pl +multicleanindia.com +multih2h.net16.net +multiku.netne.net +multilog.de +multimedia-projector.katrina.ru +multioptik.com +multiplus.netbrsoftwares.com +multiplusnet.com +multiply.112.2o7.net +multiply.crwdcntrl.net +multipops.com +multiserviciosdelhogar.co +multiserviciosindustriales.com.gt +multitechconstructions.com +multiwygrane.pl +multi.xnxx.com +mumbaiislandlionsclub.com +mumdownunder.com +mumm.bubler.com +munchkin.marketo.net +mundialcoop.com +mundoaberrante.com +mundofit.com +mundoinmobiliarioperu.com +munil.com +munipampas.com +munizadvocacia.adv.br +munnabhaimbs.com +murbil.hostei.com +murcia-ban.es +murdoog.com +murmet.mgt.dia.com.tr +muronr.com +murowadiamonds.com +murphysautomart.net +musba.info +muscatya.id +muschelverlag.de +muschisexbilder.com +muscleandfitnesshers.us.intellitxt.com +musclebodymodel.com +musclegainingtips.com +muscle-relaxers.1.p2l.info +m.usersonline.com +museum-der-moderne.de +musezone.ru +musezone.su +mushroch.com +music102.awardspace.com +music611.com +musicallew.ml +musical-queen.de +musiccounter.ru +musicdaddy.net +musicgeneration.com.ua +musicglue.co +music.hatchfactory.in +music.ign.us.intellitxt.com +musicmembersarea.com +music-sharing.net +musicspire.online +musicstock.me +music.utrolive.ru +musicvidz.ru +musicweek.lt +musikverein-karlburg.de +musikzoo.com +musiquesarts.ch +musirc.com +muskobat.nu +muskogee.netgain-clientserver.com +muskokaseaflea.ca +muskokashopper.com +musoba.com +mustangevolution.us.intellitxt.com +mustat.com +mustwineblog.com +mutanki.net +mutex.ru +mutlubak.com +mutualcootradecun.com +muurtjeover.nl +muwmedia.com +muzaporn.com +muz-baza.net +muznachas-service.ru +muz-shoes.ru +muztops.ru +muz-tracker.net +muzzleeffect.com +mv.bidsystem.com +mvchemistry.com +mvduk.kiev.ua +mvfree.com +m.v.fwmrm.net +m-vk.fasting.tk +m-vk.myago.tk +m-vk.serulom.tk +m-vk.urmas.tk +mvonline.com +mvpicton.co.uk +mvreservations.com +mvs.mediavantage.de +mvtracker.com +mv.treehousei.com +mvxiui.com +mwadeef.com +mwc.velti.com +m.webtrends.com +mwxya.dobeat.top +mx01.openinternetexchange.com +mx01.openinternetexchange.net +mx01.webwise.com +mx03.phorm.com +mx156.hostedmxserver.com +mx1.freemail.ne.jp +mx.adserver.yahoo.com +mx.bcrekah.atwebpages.com +mx.bookmark-ref-bookmarks-count.atwebpages.com +mx.fid-fltrash.125mb.com +mx.gethelp02.atwebpages.com +mx.iesnare.com +mx.iovation.com +mxmacromedia.112.2o7.net +my2015taxfile.exportfundas.com +my2.hizliizlefilm.net +my2.teknoter.com +my8.statcounter.com +myaccount.idapple.com.au-applestoreid.com +myaccount.intl.paypal.com-----------------------ssl.spacegames.ro +my-account-support-disableinfo.com +myad.clicksor.net +my.adocean.pl +my.adtegrity.net +myaffiliateprogram.com +myaff.pl +myairmaxhit.pl +myaloevera.com +myanmardream.com +myanmarsdn.com +myanyone.net +myao.adocean.pl +myap.liveperson.com +myapologies.net +myappleid.comebackapel.ga +myappleid-verifications.com +myappleipone.org +myapplesuk.com +myasiantv.gsspcln.jp +myaviatorcar.com +myaxure.ru +mybagelo.com +my-bc.ru +my-big-family.com +mybinaryoptionsrobot.com +myblankit.com +mybloglog.com +myblogregistercm.tk +my.blueadvertise.com +myboard.net.ru +mycaf.it +mycamdenliving.com +mycamptrack.com +my-cams.net +mycartakaful.my +mycashback.co.uk +my-cash-bot.co +my-cdn.effectivemeasure.net +mycelloffer.com +mychoicerewards.com +mycleanerpc.com +mycleanpc.com +mycleanpc.tk +myclicknet.ro +myclicknet.romtelecom.ro +mycoastalcab.com +mycombin.com +mycommbankverify.com +my.coolestmobi.com +mycorelife.se +mycounter.tinycounter.com +mycounter.ua +mycouponizemac.com +mycraft.com.br +mycreditrepairfix.com +mycrepuestos.com.ar +mydaddy.b0x.com +mydailymoment.us.intellitxt.com +mydancexpress.com +mydati.com +mydbsb.com +mydeathspace.com +mydgon.com +mydhlpackage.southtoch.com +mydigitallife.us.intellitxt.com +mydirtyhobby.com +mydirtystuff.com +mydld.com +mydmp.exelator.com +mydownloadengine.com +mydownlodablefiles.com +mydreamdegree.com +my.effectivemeasure.net +myeforsa.pl +myenroll.co +myeverydaylife.net +myexclusiverewards.com +myezgear.com +myfaceb00ksecrets.comeze.com +myfacebookstalkers.com +myfamilyancestry.112.2o7.net +myfavoritegames.us.intellitxt.com +myfcb.tk +myfileupload.ru +myfitness.ma +myflightbase.com +my-flndmylphone.com +my.followerinfo.xyz +myfreecams.com +myfreedinner.com +myfreegifts.co.uk +myfreemp3.eu +myfreemp3player.com +myfreetutorials.com +myftpupload.com +myfukbuddy.com +myfuncards.com +my-funny.com +mygalaxyquiz.pl +mygameplus.com +mygameplus.ru +myghillie.info +mygiftcardcenter.com +mygiftresource.com +mygoodness.in.ua +mygooglemy.com +mygransearch.com +my-great-mobilephone.com +mygreatrewards.com +myhdradio.ca +myhealthcare.com +myhelpers.redeportal.info +myhemorrhoidtreatment.com +myhitbox.com +myhitmp3.club +myholidaybreak.co.uk +myholidaypictures.coriwsv.gq +myhongyuan.net +myhostingbank.com +myhouse123.tk +myhousetechnews.com +myiapples.com +myicloudcam.com +my.iheartradio.com +myindospace.com +myintranet.cl +myinvest.online +myiptest.com +myitdetective.com +my.iwon.com +my-jobhunter.com +mykasiportal.com +mykhyber.org +mykindclinic.com +mykings.pw +mylabsrl.com +mylada.ru +mylady111.com +mylead.eu +mylead.pl +mylesosibirsk.ru +mylftv.com +mylida.org +mylike.co.uk +mylistmanager.co.za +mylondon.hc0.me +myloveisblinds.com +mylust.adulttubeporno.com +mymailuk.co.uk +mymaitri.in +mymandarinplaymates.co.uk +mymaps-icloud.com +mymatchnewpictures.com +mymatchpictures2017.com +myminimarketplace.com +my.mobfox.com +mymobilemoneypages.com +mymodernad.com +mymoneymakingapp.com +mymountnittanyheath.com +my.mystreamdelivery.xyz +mymytonnymaxltd.org +mynatenpolicy.com +mynatgenpoicy.com +mynatgenpolocy.com +mynatgepolicy.com +mynaturalradiance.com.au +mynetav.net +mynewmatchpicturespics.com +mynewvisa.co +mynikvisit.com +mynorthwest.co +myo2.com.au +myobd2.de +myobi.cf +myoffers.co.uk +myoffertracking.com +myohoworldschool.co.in +myonigroup.com +myonlinepayday.co +mypagerank.net +mypagerank.ru +my-pc-cleaner.org +my.pcsecurityshield.com +myperiod.club +mypets.by +myphentermine.polybuild.ru +myplay.cc +myplaycity.com +mypornamateur.com +mypostepaycarta.com +mypowermall.com +myprettydog.com +myprintscreen.com +myprivateemails.com +myptccash.com +myramen.com +myrecentreviews.com +my-rent-to-own-homes-options.com +my-reward-channel.com +my-rewardsvault.com +myrseth-multimedia.no +mysagagame.com +mysavings.directtrack.com +myscholl.de +myscholli.com +myschoolservices011.net +myschooltab.in +mysearch-engine.com +mysearchweb.net +mysecurefilesviadrop.com +myseostats.com +myservicesgroup.com +myshopifyxstore.com +myshopmarketim.com +myshopmatemac.com +myshovel.com +mysimash.info +mysmallcock.com +mysmartinternet.com +mysmileydentist.com +mysocgift.ru +mysocialnetwork.pl +mysocials.pl +mysonny.ru +myspacelatinotags.com +myspiders.de +my.statcounter.com +mystat-in.net +mystat.pl +mystats.com +mystats.xyz +mystictravel.org +mystormkit.com +mystreamdeliveroo.club +mysuccessplanet.com +my-support-team.comxa.com +my.surveypopups.com +mysweetsoftware2.com +mytop-in.net +mytotalsearch.com +my.trackjs.com +mytrafficads.com +mytraf.info +mytraf.ru +mytravelplan.com +my.trgino.com +mytvnepal.org +mytx.org +mytyx.com +myubn.com +my-uq.com +myusersonline.com +myvailladebitcard.com +myvideo.count.brat-online.ro +myvksaver.ru +myvoiceisyours.com +mywebsearch.com +mywedding.md +mywgu.org +myworldis.info +mywot.com +mywot.net +myxdate.info +myyearbookdigital.checkm8.com +my.yieldmanager.com +myyjaosta.spring-tns.net +myyour.eu +mzbcdn.net +m.zeroredirect.com +n01d05.cumulus-cloud.com +n02.unternehmen.com +n149adserv.com +n180adserv.com +n214adserv.com +n24se.nuggad.net +n251adserv.com +n2gk4jw.com +n2.smartyads.com +n3302ad.doubleclick.net +n3349ad.doubleclick.net +n339.asp-cc.com +n4052ad.doubleclick.net +n4061ad.doubleclick.net +n4061ad.hk.doubleclick.net +n4403ad.doubleclick.net +n44adshostnet.com +n479ad.doubleclick.net +n4g.us.intellitxt.com +n4p.ru.redtram.com +n4p.ua.redtram.com +n673oum.com +n69.com +n85853.cn +n8f2n28as-autotradr.com +n9bcd.ads.tremorhub.com +na15.ru +na.ads.yahoo.com +naaninggeschcho.hotmail.ru +nab-account.info +nab-activation-login.com +nab.com.au.inter-sercurity.com +nabiylputramandiri.com +nabke.com +nab-m.com +nabpayments.net +nabu-neckar-fils.de +nabvalidation.com +nab-verify.com +nacap.ru +nac-bearings.ru +nacionaldoerlk4.ci80744.tmweb.ru +nactx.com +nadal1990.flywheelsites.com +n.ad-back.net +nadeenk.sa +nadegda-95.ru +nadikepri.com +nadir123015.zapto.org +n.admagnet.net +n.admob.com +n.adonweb.ru +n.ads1-adnow.com +n.ads2-adnow.com +n.ads3-adnow.com +naftemporiki.nuggad.net +nagarkusumbihsn.edu.bd +nagdak.ru +nagoya-net.com +nagrat.org +nagroportal.pl +nah6igo.bid +nah8eje.top +naheedmashooqullah.com +na.hitbox.com +nahpa-vn.com +naiadsystems.com.invalid +naibab.com +naijabids.co.uk +naijahacking.tk +naijahacklord.tk +nailbytes1.com +nailsimg.com +nailslinks.com +nainasdesigner.com +nairafestival.com +nairashafina5.000webhostapp.com +najaden.no +najanet.com +naj-filmy24.pl +najlepszakonsolaxbox.pl +najlepszewrozby.pl +najlepszyzestawtrenerapokemon.pl +najpopularniejszegryautomatowefree.com.pl +najprzydatniejsze.blogspot.com +naj.sk +nakanet.com +nakazgeroev.ru +naked3.com +nakshatradesigners.com +nakumattfaceandbookpromo2017.com +nakumititolegb.com +nalogovyy-kodeks.ru +namastea.es +namasteepost.com +namecardcenter.net +nameguess.com +namemaster46.net +namemilky.com +namenectar.com +nametests.com +namierzanie-telefonu.pl +namierz-telefon.pl +namimedia.com +namjai.com +namso.butlerelectricsupply.com +namthai.com +nana10.checkm8.com +nana10digital.checkm8.com +nancunshan.com +nancycemt1225.ddns.net +nancysnibbles.com +nancy.vn +nandanisonpaltrust.com +nandicam.com +nandomedia.112.2o7.net +nannaco.com.br +nan.netmng.com +nanoadexchange.com +nanocluster.reklamz.com +nanogroup.se +nanotech.tiberius.pl +nanotvatt.se +naomi.pro +naopoylfviurrnb.com +naotejia.com +napalm51.nut.cc +naperehresti.info +naphukete.ru +napi.lanistaads.com +napiszsms.pl +napola.com +napoliteatro.it +naqshbandi.in +naratipsittisook.com +narbhaveecareers.com +narcissism.de +narco24.me +narcoblog.net +nardulan.com +nargilerehberi.net +narkologiya-belgorod.ru +narkologiya-orel.ru +narkologiya-penza.ru +narkologiya-peterburg.ru +narkologiya-voronezh.ru +narmadasandesh.com +narnia-nekretnine.com +narosty.com +narrow.azenergyforum.com +narsinghgarhprincelystate.com +narutonaruto.ru +narwhal.hitbox.com +narzedzia-fb.blogspot.com +nasacort.1.p2l.info +nascardigitalsap.d2.sc.omtrdc.net +nasdaq.122.2o7.net +nash-krym.info +nashretlyab.ir +nashvillebagelco.com +nasioc.us.intellitxt.com +nasirkotehs.edu.bd +nasmontanhas.com.br +nasonex.1.p2l.info +nasscomminc.tk +nastanhemma.se +nastroyke.net +nastydollars.com +naszainspiracja.pl +naszasa.pl +naszemisto.pl +naszesprawdziany.pl +natakocharyan.ru +natashyabaydesign.com +natebennettfleming.com +nate.com +na-telefon.biz +natgeoedit.112.2o7.net +natgeoeditco.112.2o7.net +natgeoeditcom.112.2o7.net +natgeoglobal.112.2o7.net +natgeohomepage.112.2o7.net +natgeonavcom.112.2o7.net +natgeonews.112.2o7.net +natgeongkidsmagccom.112.2o7.net +natgeongmcom.112.2o7.net +natgeopeopleplaces.112.2o7.net +natgeophoto.112.2o7.net +natgeotravelermagcom.112.2o7.net +natgeovideo.112.2o7.net +nathaliecoleen.myjino.ru +national500apps.com +nationalbankofnewzea.tt.omtrdc.net +nationalbreakdown.com +nationaldefensetrust.com +nationalelectricwire.com +nationalenquirer.us.intellitxt.com +nationalfire.org +nationalgeographic.112.2o7.net +nationalindore.com +nationalissuepanel.com +nationallaborhire.com +nationalledger.us.intellitxt.com +nationalpost.112.2o7.net +nationalpost.adperfect.com +nationalpost-com.c.richmetrics.com +nationalsecuritydirect.com +nationalsurveypanel.com +nationaltradeshowmodels.com +nationsterm.com +nativead.tech +nativeapp.org +native.sharethrough.com +natkaaa1998.blogspot.com +natlalirans.hotmail.ru +na.tns-cs.net +nats4.fetishbucks.com +naturalbeautybathandbody.com +naturalbreakthroughsresearch.com +natural.buckeyeenergyforum.com +naturalhealth.us.intellitxt.com +naturallymesalon.com +naturalmosquitorepellant.com +naturalnacosmetica.com +naturalopal.com.au +naturel1001.net +naturemost.it +natureworldnews.us.intellitxt.com +naturfoto-abenteuer.de +naturheilpraxis-meixner.de +nauczycielkasex.blogspot.com +naufaldaou.com +naughtyadserve.com +naughtyconnect.com +nautilus.122.2o7.net +nautilus.d2.sc.omtrdc.net +nautilus.tt.omtrdc.net +naval.jislaaik.com +navdmp.com +naveenmechanical.com +navegador.oi.com.br +navegador.telefonica.com.br +navidata.pl +navigator.io +navigat-service.ru +navigearinc.com +navi.seapost.gcmar.com +navitime.co.jp +navrcholu.cz +nav.startnow.com +nawabibd.com +nawymiar.pl +nayttopojat.fi +nazanmami.com +nazuri.pe +nazwa.com +nb.5.p2l.info +nba1001.net +nba.112.2o7.net +nbads.com +nbc.adbureau.net +nbcahomes.com +nbc.interpolls.com +nbcnewyork.us.intellitxt.com +nbcots.demdex.net +nbcsports.us.intellitxt.com +nbcu.demdex.net +nbcuniversal.122.2o7.net +nbcuniversaltv.us.intellitxt.com +nbcuno.com +nbcustr.netmng.com +nbcu.tags.crwdcntrl.net +n.betus.com +nbgimak.com +nbimg.dt00.net +nbit.net +nbjmp.com +nb.myspace.com +nb.netbreak.com.au +n.bodybuilding.com +nbook.far.ru +nboxidmsg.freetzi.com +nbriskerry.com +nbrtrack.com +nbsyinalcentricem.com +nc2199.eden5.netclusive.de +nc.5.p2l.info +ncads.s3.amazonaws.com +ncbcorporation.com +ncenterpanel.cn +ncknjaff.myjino.ru +nc.ru.redtram.com +ncsmaintenance.com +ncsscu.org +nctbonline.co.uk +nctracking.com +nd11mx1-a-fixed.sancharnet.in +nd1.gamecopyworld.com +nd.5.p2l.info +ndbfav.to +ndbfav.top +ndekhahotel.com +ndl1mc1-a-fixed.sancharnet.in +ndl1mx1-a-fixed.sancharnet.in +ndl1pp1-a-fixed.sancharnet.in +ndlwxfgcs.top +ndn.cdn.auditude.com +ndolabaptistchurch.org +ndouends.com +ndparking.com +ne.5.p2l.info +nearbyad.com +nearee.com +nearlyrealty.us +neber.112.2o7.net +nebnr.112.2o7.net +necesserystrong.top +nedian-na.info +nedstatbasic.net +nedstat.com +nedstat.net +nedstat.nl +nedstatpro.net +nedstat.s0.nl +nedstats.xs4all.nl +nedstat.tripod.com +needadvertising.com +needforfile.net +neemohone.com +neepelsty.cz.cc +neerajsinghal.in.net +nefib.tourstogo.us +nefi-eb.com.br +nefpcme.com +negadbg.hit.gemius.pl +neginkala.net +neglite.com +negociandoinmuebles.com +negociante.com.br +negociermonhypotheque.com +negociobleven.com.br +negociosdasha.com +negociosgroup.com +negotiatio.eu +negozio.m2.valueserver.jp +negral.pluto.ro +nehafuramens.com +neicvs.com +nei.hitbox.com +neilowen.org +neilsensurvey.com +neirong.baidu.com +nejslevy.cz +neki.org +nelc.edu.eg +nellmapiusbi.co.za +nellyticket.beast-space.com +nelscapconstructions.com +nelsongod.ca +nem1.net +nend.net +nenito.com +nenosshop.com +neobake.com +neobankdoor.net +neobux-bg.info +neocounter.neoworx-blog-tools.net +neodownload.webcam +neoffic.com +neogenadro.hit.gemius.pl +neo.go.sonobi.com +neojeans.com.ar +neokollege.ru +neonhair.se +neorandom.dothome.co.kr +neoseeker.us.intellitxt.com +neowin.us.intellitxt.com +nepa3d.com +nepalhtml.com +neptune1.appads.com +neptune2.appads.com +neptune3.appads.com +neptune.appads.com +neref.112.2o7.net +nerez-schodiste-zabradli.com +nero-us.com +nerudlogistik.ru +nervudgevf.com +nesportscardsimages1.com +nesscorporation.se +nestorconsulting.net +nestscape.com +nesty.ru +net2c.de +net4um.com +netadclick.com +netads.hotwired.com +netadsrv.iworld.com +netads.sohu.com +netaffiliation.com +netagent.cz +netallergy.ru +netanalytics.xyz +netballdrill.com +netclassiqueflix.com +netclickstats.com +netcomargentina.net +netcomm.spinbox.net +netcommunities.com +netcscape.com +netdirect.nl +netdna.reporo.net +neteas.net +neteco.fr.intellitxt.com +netfacet.net +net-filter.com +netfilxca.com +netfilx-renew-membership.com +netfilx-uk-connect.com +netflix.activate.authkey.286322.userprofileupdates.com +netflix.billing-secure.info +netflix.netsafe.com.safeguard.key.2uh541.supportnetuser0.com +netflix.netsafe.com.safeguard.key.387ib2.supportnetuser0.com +netflixuser-support.validate-user.activation.safeguard.key.1uh3.verify-netflix0.com +netflixuser-support.validate-user.activation.safeguard.key.1uh3.verify-netflix1.com +netgear.122.2o7.net +nethit-free.nl +nethttpnm.com +netincap.com +netkomp.se +netleader.com.ng +netmag.co.uk +netoil.no +netonlsn.beget.tech +netpalnow.com +netpics.org +netpool.netbookia.net +net-radar.com +netrp.112.2o7.net +netscae.com +netsdartboards.122.2o7.net +net-server1.com +netshelter.adtrix.com +netshelter.net +net.softonicads.com +netsoftsolution.net +netspiderads2.indiatimes.com +netsponsors.com +netsprint.hit.gemius.pl +netsr.softonicads.com +netstorage.taboola.com +nettech.org.in +nettno.nuggad.net +netvouz.com +networkad.net +network.adsmarket.com +networkads.net +network.advertise.com +network.advplace.com +network-ca.247realmedia.com +networkcheck.xyz +network.clickconversion.net +network.leadpub.com +networkmedical.com.hk +networkphotographers.com +network-prolem-acces.com +network.realmedia.com +network.realtechnetwork.net +networksolutions.112.2o7.net +netzeitu.ivwbox.de +netzmarkt.ivwbox.de +neudesicmediagroup.com +neumab-wqg.de +neumashop.cl +neuro-dynamics.de +neurological.in +neurosurgeonguru.co.in +neurosurgeonsgroup.com +neurotherapie.de +neurotrascending.com +nevamoda.ru +nevergreen.net +new44chempics.890m.com +new7ob.com +new-address.tk +newadobes.com +newads.bangbros.com +newadsclicks.com +newads.cmpnet.com +newadserver.interfree.it +new-ads.eurogamer.net +newama.bounceme.net +newamericanteaparty.com +new.api.ad.xiaomi.com +newasp.com.cn +newavailabledocument.esy.es +newavailabledocumentready.esy.es +newawakeningholistichealth.com +newbie.com +newbostonvillage.com +newbritmoneymethod.com +newbrowse.livehelper.com +newbs.hutz.co.il +newburyscaffolding.co.uk +newcarnet.uk.intellitxt.com +newcastle7431.co +new.cetrk.com +new.chokertraffic.com +newclashgems.com +newclick.com +newclk.com +newcom.122.2o7.net +newcracks.net +newcustomads.com +newdamianamiaiua.it +new-dating-2012.info +newdesktop.ru +neweed.org +newelavai.com +neweuropetradings.com +new-fealture-to-updates.com +new.grandrapidsweb.net +newhairstylesformen2014.com +newip427.changeip.net +newjew.org +newjobs.d1.sc.omtrdc.net +newjunk4u.com +newlaunches.uk.intellitxt.com +newlifebelieving.com +newlife-er.com +newlifewwm.com.au +newlighttechnologies.com +newlinetile.com +newlook.112.2o7.net +new.macartu.cn +newmatch663photos.96.lt +newmatch71pics.890m.com +newmazda.info +newmecerdisfromthetittle.com +newmoonyoga.ca +newnet.qsrch.com +new-newupdate.c9users.io +newnudecash.com +newopenx.detik.com +new-our-system.aliwenentertainment.com +newpctv4u.com +newpictures.com.dropdocs.org +new-post.tk +newprom.lu +news4cars.com +news6health.com +newsanctuarylandscaping.com +newsblock.marketgid.com +newsclic.ivwbox.de +newsday.122.2o7.net +news.de.intellitxt.com +news.ebc.net.tw +news-email-link-ne.com +newservoppl.it +news-finances.com +news.followerinfo.xyz +newsinteractive.112.2o7.net +newsinternational.122.2o7.net +newsite.ahlgrens.se +news.kobatochan.co +news-korea.com +newsleaks.in +newsletter.adsonar.com +newsletters-biz.learntfromquran.org +newslife24h.com +new.smartcontext.pl +news.msnbc.us.intellitxt.com +news.nero-emea.com +news.nero-us.com +newsnetw.oewabox.at +newsok.112.2o7.net +newsoxy.us.intellitxt.com +newsperuse.com +newsquestdigitalmedia.122.2o7.net +news-readers.ru +newssourceoftoday.com +newstarplastic.co.id +new.startnow.com +newsterminalvelocity.com +news.ticbeat.co +newstimeslivecom.112.2o7.net +newstoob.us.intellitxt.com +newstraveller.ru +newstudio.tv +newstudy.net +newsvn.com +newsvp.ru +newsy-ben24.ml +newsystemsservice.com +new-systi.newsanty.com +newt1.adultadworld.com +newt1.adultworld.com +newtechspb.ru +newtger.info +newtips.co +newtopsites.com +newtrackcabs.com +newupdate.system-upgrade.org +new.usedtextbooksbuyer.com +newvalume.in.net +newvanleasing.co.uk +newversionpdun.in.net +newversionupdate.space4update.pw +newversionupdate.space4updating.win +new-vid-zone-1.blogspot.com.au +new-vk.myago.tk +new-vk.serulom.tk +newware10.craa-club.com +newware11.024xuyisheng.com +newwayscanner.info +newyorkandcompany.112.2o7.net +newyork.cbslocal.us.intellitxt.com +newyorkhotelsmotels.info +newyorkmagazine.112.2o7.net +newyors.com +nexage.com +nexcontech.com +nexium.1.p2l.info +nexon-loginc.com +nexon-loginf.com +nexprice.com +nextbackgroundcheck.gq +nextbestgame.org +nextconseil.com +nextelle.net +nextel-ringtone.komi.su +nextel-ringtone.spb.su +nextgenmusicgroup.com +nextgenstats.com +next-house.fi +nextime.top +nextlevellacrosse.com +nextlnk12.com +nextrent-crimea.ru +nextround.us.intellitxt.com +nextstepcapital.com.au +nexusglobal.fr +nexusproof.com +nexys404.us.intellitxt.com +neyscape.com +nf.5.p2l.info +n-facebook.cf +nfkv7.top +nfl.demdex.net +nfljerseyscheapbiz.us +nfljerseyscheapchinabiz.com +nfljerseysforsalewholesaler.com +nfljerseys.online +nfl.sp1.convertro.com +nfnying.gm +nfx.no +ng3.ads.warnerbros.com +ngacm.com +ngads.go.com +ngads.smartage.com +ngastatic.com +ngdhhht.org +ngd.thesun.co.uk +ngentot18.ml +ngf-secure.chronogolf.fr +nghikhangmy.com.vn +ngps1.ru +ngr61ail.rr.nu +ng.virgul.com +nh.5.p2l.info +nhl09.ru +nhl.112.2o7.net +nhl17coins.exblog.jp +nhl17coinsforps3.gratisblog.biz +nht-2.extreme-dm.com +nht-3.extreme-dm.com +ni1282360-1.web11.nitrado.hosting +niabetty.com +niamulbashir.com +nibbler.silktide.com +nicappazaza.com +nicaraguahosts.com +nicenewsinc.com +nicepics.us +nich1eox.com +nichberrios.com +nichedia.com +nichollspassivehouse.com +nickde.oewabox.at +nickleplatedads.com +nickmarek.com +nicktung.com +nickysalonealing.com +nicnel.com +nicoentretenciones.cl +nicoleeliasmakeupdesign.com +nicole-nicole.hr +nicomanalo.com +nictemultimedia.net +nielsen.112.2o7.net +nielsenwebsurveys.co +niemaszprzyjaciol.pl +nieuwste-info.nl +nifoodtours.com +niftygifty.co.uk +nig.fezbonvic.info +nightclub-avalon.de +nightvision746.weebly.com +nihoncar.us.intellitxt.com +niino.com +nijgvrihnyoohbg.com +nike.112.2o7.net +nikebuty-zgarnij.freetzi.com +nikefootball.112.2o7.net +nikefootballglobal.112.2o7.net +nikegoddess.112.2o7.net +nikehome.112.2o7.net +nikeplus.112.2o7.net +nikerunning.112.2o7.net +nikerunningglobal.112.2o7.net +nike-zgarnijbuty.coolpage.biz +nikhilrahate.com +niki-mlt.ru +nikitabuch.com +nikitsyringedrivelg.pen.io +nikjju.com +nikkiewart.ru +nikkybrown.5gbfree.com +nikolamireasa.com +nikorn-boonto.myjino.ru +nileacademy.ca +nilesolution.net +nillxforums.com +nimarakshayurja.com +nimoc.com +nimp.org +ninahosts.com +ninemsn.imrworldwide.com +ningessaybe.me +ninjadude.us.intellitxt.com +ninjafy.com +ninja.onap.io +nipponairline.com +nippon-bearings.ru +nire.com.pk +niroo.info +niryatbandhu.org +nishagopal.com +nishankgroup.com +nisikai.com +nisssan.de +nistatracking.com +niteflirt.directtrack.com +nitroclicks.com +nitropayouts.directtrack.com +nitrous.exitfuel.com +nitrous.internetfuel.com +niuxian.com +nivanspromoters.com +nivendas.net +niwea.pl +nix-admin.ru +niyiijaola.com +nj.5.p2l.info +nj-com.c.richmetrics.com +nje1.cn +nje9.cn +njkmznnb.ru +njmvc.112.2o7.net +njpuke.com +njtgsd.attackthethrone.com +njyabihc.com +njylyj.com +nkcache.brandreachsys.com +nkgamers.com +nl4.hit.stat24.com +nl.adserver.yahoo.com +nl.ads.justpremium.com +nlconsulateorlandoorg.siteprotect.net +nl.cqcounter.com +nlflop.com +nl.mediaplayercodecpack.com +nl-moneyou.netmining.com +nlmqdhps.com +nl.nedstatbasic.net +nl.nedstatpro.net +nl.netlog.com +nl-saab.netmining.com +nlus-romania.ro +nluxbambla.com +nl-ventures.com +nl.webfaceapp.info +nlwy0.com +nm.5.p2l.info +nmanchorage.112.2o7.net +nmapquest.com +nmbakersfieldca.112.2o7.net +nmbeaufort.112.2o7.net +nmbelleville.112.2o7.net +nmbradenton.112.2o7.net +nmbrampton.112.2o7.net +nmcharlotte.112.2o7.net +nmcolumbia.112.2o7.net +nmcommancomedia.112.2o7.net +nmcomnancomedia.112.2o7.net +nmeprod.122.2o7.net +nmfortworth.112.2o7.net +nmfresno.112.2o7.net +nmhiltonhead.112.2o7.net +nminmobiliaria.com +nmkansascity.112.2o7.net +nmkawartha.112.2o7.net +nmlexington.112.2o7.net +nmmclatchy.112.2o7.net +nmmerced.112.2o7.net +nmmiami.112.2o7.net +nmminneapolis.112.2o7.net +nmmississauga.112.2o7.net +nmmodesto.112.2o7.net +nmnandomedia.112.2o7.net +n-mobile.net +n.mplxtms.com +nmraleigh.112.2o7.net +nmrockhill.112.2o7.net +nmsacramento.112.2o7.net +nmsanluisobispo.112.2o7.net +nmsbaseball.com +nmstatecollege.112.2o7.net +nmtacoma.112.2o7.net +nmthatsracin.112.2o7.net +nmtoronto.112.2o7.net +nmtricity.112.2o7.net +nmvz.de +nmyork.112.2o7.net +nnihgfedgbim.com +nnordson.com +nnpcgroup-jv.com +nnptrading.com +nnsljomcd.top +nns.net.au +no1carpart.co.uk +no1chie7poh.info +no1.unternehemen.com +no.2.cqcounter.com +no3.unternehmen.org +no.adserver.yahoo.com +noah.reddion.com +nobitazaizai.info +nobleprise.com +nobody.kr +nobodyspeakstruth.narod.ru +nobrain.dk +nobrecargo.com.br +nobrokeragerealty.com +nocboard.hitbox.com +noc.hitbox.com +noclegonline.info +nocnyseans.pl +nocosmetics.ca +no.counter.mtgnewmedia.se +nocreepware.com +noc-request.hitbox.com +nodarkshadows.ca +nodepositwebdesign.com +nodevice.uk.intellitxt.com +nodika.info +nodup.ru +noelton.com.br +noen.oewabox.at +nofreezingmac.click +nofreezingmac.space +nofreezingmac.work +noham.com +nohidepors.com +noiselolpainoff.com +noithatchauau.vn +noithattinhhoaviet.com +nojobby.com +nojsstats.appspot.com +nokiastock.ru +nolagroup.com +noleggioautopadova.it +nolhi.com +nolllluma.com +nol.website +nol.yahoo.com +no-more-mozzies.com +nonaypoon.com +nonen.ddns.net +nonews.co +nonglirili.net +nonnagallery.com +nonoknit.com +nonrisem.com +nonsi.csheaven.com +nonstopeddanceraz.su +nonstopvideos.pl +noobgirls.com +nooknook.ca +noonepa.tk +noordlabcenter.com +noosociety.com +nootrino.com +nopiinbjskwh.com +nops2sign.com +noradgroup.com +noralterapibursa.com +norbertbetz.de +nordaglia.com +nordeea.fi +nordeondol.ml +nordestejeans.com.br +nordette.1.p2l.info +nordette.3.p2l.info +nordette.4.p2l.info +nordiccountry.cz +nordincorporated.com +nordiwellness.se +nordsee-ferienwohnungen-blog.de +nordstar.pro +nordstrorms.com +noreply-google.com +normalegal.ru +normalfood.ir +normandstephanepms.ca +nortelcom.112.2o7.net +northendtrains.com +northernleasing.bz +northfolkstalesoriginal.com +northjersey.112.2o7.net +northportspa.cl +northshoreafamilydaycare.com +northwestairlines.112.2o7.net +norton-antivirus-trial.searchservice.info +nortonfire.co.uk +norton.pl +norton-scan-mobile.com +nosenfantsontdutalent.com +nosetotoes.net +nospartenaires.com +nossaimprensa.com.br +nossl.aafp.org +no-survey.com +notaria-desalas.com +notebook-batteries.ca +notebook-memory.searchservice.info +notebook-pro.ru +notebookservisru.161.com1.ru +note.us +notfastfood.ru +not-found32.xyz +not-found34.xyz +not-found35.xyz +nothing-but-value.com +nothinlips.com +notice-11.recoveery016.tk +notice.info.billing.safety-in-purchase.com +notice-payment.invoiceappconfirmation.com +noticiasfgts.com +noticiasftpsrv.com +notificacao.xpg.com.br +notification-acct.ga +notification-control-fb.com.urazlife.com.tr +notifications87456949152.000webhostapp.com +notificationsfbpage.cf +notificationspagefb.cf +notificationyourspage.cf +notificatiopages.cf +notify.nuviad.com +notmdoilr.top +notoraz.com +notori.oewabox.at +notrecommended.co.uk +notsorrynotsorry.com +nottided.xyz +notxcusestody.xyz +noumeda.com +nourteenthp.angelcities.com +noushad.in +nova.collect.igodigital.com +novady.top +novafinanza.com +novaorionmetais.com.br +novasports.de +novastarled.com +novatech.vn +novatecsll.com +novatekit.com +noveduc.pt +novell.112.2o7.net +novellcom.112.2o7.net +november-lax.com +novemberrainx.com +novem.onet.pl +novem.pl +noveslovo.com +novgorod.xrus.org +noviasconglamourenparla.es +novikfoto.esy.es +novodigs.com +novomed-chita.ru +novomedia.org +novosibirsk.xrus.org +novosite.alvisimoveis.com.br +novosti-hi-tech.ru +nowala.5gbfree.com +nowcheck.seethisamazinguogradeswinmacawesome.win +nowec.co +now.eloqua.com +nowepliki.pl +nowina.info +nowinstallupgrade.clickforultimateandbest2updatingpc.top +nowinstallupgrade.goodcentralupdatesall.bid +nowruzbakher.com +nowsetup.checkerweb.com +nowsetup.freeupgradelive.com +nowtestpc.updatenewfresh4u.top +nowtorrents.com +now-update-td.eu +nowy-bonusy-codzienne.racing +nozhi-zlatousta.ru +n.pcads.ru +npktrk1.com +np.lexity.com +npoet.ru +npp-estron.ru +nqm.blackcurranthumidifiers.site +nrads.1host.co.il +nrg.checkm8.com +nrgdigital.checkm8.com +nrkno.linkpulse.com +nrk.tns-cs.net +nro.gov.sd +nr.taboola.com +nrunnershoes.com +nrv.co.za +nryb.com +ns01.kobatochan.co +ns01.ticbeat.co +ns02.kobatochan.co +ns03.kobatochan.co +ns03.ticbeat.co +ns04.ticbeat.co +ns0.kobatochan.co +ns0.ticbeat.co +ns1.123go.net +ns1.2911.net +ns1.hitbox.com +ns1.kobatochan.co +ns1.lalibco.com +ns1.multi.net.pk +ns1.ntkrnlpa.info +ns1.oix.com +ns1.oix.net +ns1.openinternetexchange.com +ns1.phorm.com +ns1.primeinteractive.net +ns1.the-sinner.net +ns1.ticbeat.co +ns1.updatesdns.org +ns1.vicp.net +ns1.webwise.com +ns1.webwise.net +ns1.webwise.org +ns2.hitbox.com +ns2.kobatochan.co +ns2.lalibco.com +ns2ns1.tk +ns2.ntkrnlpa.info +ns2.oix.com +ns2.oix.net +ns2.openinternetexchange.com +ns2.phorm.com +ns2.primeinteractive.net +ns2.rosprint.ru +ns2.vicp.net +ns2.w3open.com +ns2.webwise.com +ns2.webwise.net +ns2.webwise.org +ns2.xidian.edu.cn +ns2.youcanoptout.com +ns3.ishosting.net +ns3.kobatochan.co +ns3.openinternetexchange.com +ns3.ticbeat.co +ns416017.ip-37-187-144.eu +ns511849.ip-192-99-19.net +ns513726.ip-192-99-148.net +ns.5.p2l.info +nsads4.us.publicus.com +nsads.hotwired.com +nsads.sv.publicus.com +nsads.us.publicus.com +nsatc.net +ns.cac.com.cn +nsclick.baidu.com +nsdic.pp.ru +nsdldlese.112.2o7.net +nsfree.org +ns.huawei.com.cn +nsis.bisrv.com +ns.kobatochan.co +nsm.dell.com +ns.nint.ac.cn +nsplawmod.ac.in +nspmotion.com +nsrecord.org +nstat.tudou.com +nst.broadcast.pm +ns.ticbeat.co +nstotal.net +ns-vip1.hitbox.com +ns-vip2.hitbox.com +ns-vip3.hitbox.com +nt002.cn +n.targetbtracker.com +nt-associates.com +ntbanner.digitalriver.com +ntcompatible.us.intellitxt.com +ntdfbp.com +nt-es.imrworldwide.com +ntic.fr +ntkrnlpa.cn +ntkrnlpa.info +ntlligent.info +ntracking.optimatic.com +nttcommunications.122.2o7.net +ntv.io +ntv.ivwbox.de +n-tv.met.vgwort.de +ntweb.org +ntxcsh.com +ntxybhhe.oahqub.ml +nu7.pl +nuahpaper.com +nubolabs.com +nucia.biz.ly +nudebeachgalleries.net +nudepatch.net +nude-teenworld.de +nudo.ca +nufaq.com +nufindings.info +nugenix.co +nuggad.net +nuggad.nuggad.net +nuggetsfsc.de +nugly.barginginfrance.net +nuhomes.in +nuhu.in +nuit-artisanale.com +nuker.com +nulik.net +nullpunkt-bioenergie.de +numax.nu-1.com +number.vxshopping.com +nuneseduarte.com.br +nunezescobarabogados.com +nuptialimages.com +nuralihsan.bphn.go.id +nurebeghouse.com +nurseimmigrationusa.com +nurspielen.de +nurtanijaya.co.id +nuruljannah.id +nurusaha.co.id +nuru.viadiarte.com +nusaindahrempeyek.id +nuseek.com +nutabuse.com +nuterr.com +nutnet.ir +nutrex.co.za +nutri-balance.co.za +nutritionforafrica.co.zw +nuup.info +nuvhxc.com +nuwerk.monsterboard.nl +nv.5.p2l.info +nvcolsonfab.ca +nvd.es +nvformula.ru +nvorontsova.com +nvplv.cc +nvpmegapol.com +nvssf.com +nvtrailmaps.com +nwafejokwuactradingenterprise.com +nwaghtr.anchorhmo.com +nwhomecare.co.uk +nwindianajanitorial.com +nwolb.com.default.aspx.refererident.podiatrist.melbourne +nwwbalance.com +nx-adv0005.247realmedia.com +nx.frosmo.com +nxs.kidcolez.cn +nxtck.com +nxtscrn.adbureau.net +ny.5.p2l.info +nyads.ny.publicus.com +nycsoaw.org +nycticketviolation.com +nydailynews.d1.sc.omtrdc.net +nyfinance.ml +nyhomebuyersonline.com +nym1.b.adnxs.com +nym1.ib.adnxs.com +nyskiffintabout.com +nysubwayoffer.com +nysun.com.112.2o7.net +nytadvertising.com +nytadvertising.nytimes.com +nytbglobe.112.2o7.net +nytglobe.112.2o7.net +nythglobe.112.2o7.net +nytimesglobal.112.2o7.net +nytimesnonsampled.112.2o7.net +nytimesnoonsampled.112.2o7.net +nytmembercenter.112.2o7.net +nytrflorence.112.2o7.net +nytrgadsden.112.2o7.net +nytrgainesville.112.2o7.net +nytrgainseville.112.2o7.net +nytrhendersonville.112.2o7.net +nytrhouma.112.2o7.net +nytrlakeland.112.2o7.net +nytrlexington.112.2o7.net +nytrocala.112.2o7.net +nytrsantarosa.112.2o7.net +nytrsarasota.112.2o7.net +nytrthibodaux.112.2o7.net +nytrtuscaloosa.112.2o7.net +nytrwilmington.112.2o7.net +nytrwinterhaven.112.2o7.net +nytrworcester.112.2o7.net +nyttechnology.112.2o7.net +nz.2.cqcounter.com +nz.adserver.yahoo.com +nz-cdn.effectivemeasure.net +nzcycle.com +nzelcorporation.com +n.zeroredirect.com +nzfilecloud.weebly.com +nz-ssl.effectivemeasure.net +nztv.prod.untd.com +nzz.d3.sc.omtrdc.net +nzz.wemfbox.ch +o00.in +o0-er3.cashixirbozdur.com +o0.winfuture.de +o1.inviziads.com +o1.qnsr.com +o2adpl.hit.gemius.pl +o2.eyereturn.com +o2.hit.gemius.pl +o333o.com +o4nf2970.com +o5gee.from-ks.com +o5h.pl +o8810lc.com +o8.aus.cc +o987654wesdf.is-a-hunter.com +o9d.pl +oabaporu.com.br +oacentral.cepro.com +o.addthis.com +o.adgear.com +o.admob.com +oads.cracked.com +oakda.com +oakleyglassesonline.us +oakridgemo.com +oakso.tourstogo.us +oakwoodparkassociation.com +oampa.csheaven.com +oamsrhads.us.publicus.com +oamtrk.com +oamupa.skclick.in +oanabulai.ro +oandjweifhusentersbjeherestid.com +oa.pelagicmall.com.cn +oapsa.tourstogo.us +oas-1.rmuk.co.uk +oas.247sports.com +oas.adservingml.com +oasads.whitepages.com +oas.ad-vice.biz +oas.adx.nu +oas.aurasports.com +oas.autotrader.co.uk +oas.benchmark.fr +oasc02023.247realmedia.com +oasc02.247realmedia.com +oasc03012.247realmedia.com +oasc03049.247realmedia.com +oasc03.247realmedia.com +oasc04012.247realmedia.com +oasc04052.247realmedia.com +oasc04.247.realmedia.com +oasc05024.247realmedia.com +oasc05050.247realmedia.com +oasc05134.247realmedia.com +oasc05135.247realmedia.com +oasc05139.247realmedia.com +oasc05.247realmedia.com +oasc06006.247realmedia.com +oasc06020.247realmedia.com +oasc06.247realmedia.com +oasc08006.247realmedia.com +oasc08008.247realmedia.com +oasc08011.247realmedia.com +oasc08024.247realmedia.com +oasc08.247realmedia.com +oasc09.247realmedia.com +oasc10015.247realmedia.com +oasc10.247realmedia.com +oasc11009.247realmedia.com +oasc11.247realmedia.com +oasc12001.247realmedia.com +oasc12016.247realmedia.com +oasc12056.247realmedia.com +oasc12.247realmedia.com +oasc14008.247realmedia.com +oasc16.247realmedia.com +oasc17.247realmedia.com +oasc18005.247realmedia.com +oascenral.phoenixnewtimes.com +oascentral.123greetings.com +oascentral.abclocal.go.com +oascentral.adage.com +oascentral.adageglobal.com +oascentral.aeroplan.com +oascentral.aircanada.com +oascentral.alanicnewsnet.ca +oascentral.alanticnewsnet.ca +oascentral.americanheritage.com +oascentral.arkansasonline.com +oascentral.artistdirect.com +oascentral.artistirect.com +oascentral.askmen.com +oascentral.autoweek.com +oascentral.aviationnow.com +oascentral.beliefnet.com +oascentral.bigfishgames.com +oascentral.blackenterprise.com +oascentral.blackenterprises.com +oascentral.blogher.org +oascentral.bostonherald.com +oascentral.bostonphoenix.com +oascentral.bristolpress.com +oascentral.broadway.com +oascentral.browardpalmbeach.com +oascentral.businessinsider.com +oascentral.businessinsurance.com +oascentral.businessweek.com +oascentral.businessweeks.com +oascentral.buy.com +oascentral.buysell.com +oascentral.canadaeast.com +oascentral.canadianliving.com +oascentral.capecodonline.com +oascentral.careerbuilder.com +oascentral.charleston.net +oascentral.chicagobusiness.com +oascentral.chron.com +oascentral.citypages.com +oascentral.citypaper.com +oascentral.clearchannel.com +oascentral.comcast.net +oascentral.comics.com +oascentral.construction.com +oascentral.consumerreports.org +oascentral.covers.com +oascentral.crainsdetroit.com +oascentral.crainsnewyork.com +oascentral.crimelibrary.com +oascentral.cybereps.com +oascentral.cygnusb2b.com +oascentral.dailybreeze.com +oascentral.dailyherald.com +oascentral.dailylocal.com +oascentral.datasphere.com +oascentral.dilbert.com +oascentral.discovery.com +oascentral.dollargeneral.com +oascentral.dominionenterprises.com +oascentral.drphil.com +oascentral.eastbayexpress.com +oas-central.east.realmedia.com +oascentral.emarketer.com +oascentral.emedicine.com +oascentral.encyclopedia.com +oascentral.escapistmagazine.com +oascentral.fashionmagazine.com +oascentral.fayettevillenc.com +oascentral.feedroom.com +oascentral.fiercemarkets.com +oascentral.forsythnews.com +oascentral.fortunecity.com +oascentral.fosters.com +oascentral.foxnews.com +oascentral.freedom.com +oascentral.g4techtv.com +oascentral.ggl.com +oascentral.gigex.com +oascentral.globalpost.com +oascentral.goerie.com +oascentral.gotriad.com +oascentral.grandparents.com +oascentral.greenevillesun.com +oascentral.hamptonroads.com +oascentral.hamptoroads.com +oascentral.hamtoroads.com +oascentral.healthletter.mayoclinic.com +oascentral.herald-dispatch.com +oascentral.herenb.com +oascentral.hispanicbusiness.com +oascentral.hitfix.com +oascentral.hollywood.com +oascentral.hosted.ap.org +oascentral.houstonpress.com +oascentral.inq7.net +oascentral.internetretailer.com +oascentral.investingmediasolutions.com +oascentral.investmentnews.com +oascentral.investors.com +oascentral.investorwords.com +oascentral.itbusiness.ca +oascentral.katv.com +oascentral.killsometime.com +oascentral.laptopmag.com +oascentral.law.com +oascentral.laweekly.com +oascentral.lifetimetv.com +oascentral.looksmart.com +oascentral.lycos.com +oascentral.mailtribune.com +oascentral.mayoclinic.com +oascentral.medbroadcast.com +oascentral.metrotimes.com +oascentral.metro.us +oascentral.metrowestdailynews.com +oascentral.miaminewtimes.com +oascentral.minnpost.com +oascentral.mochila.com +oascentral.modernhealthcare.com +oascentral.motherjones.com +oascentral.movietickets.com +oascentral.nationalunderwriter.com +oascentral.necn.com +oascentral.nephrologynews.com +oascentral.nerve.com +oascentral.netnewscheck.com +oascentral.newsmax.com +oascentral.news-record.com +oascentral.newstimeslive.com +oascentral.nowtoronto.com +oascentralnx.comcast.net +oascentral.ocweekly.com +oascentral.onthesnow.com +oascentral.onwisconsin.com +oascentral.oprah.com +oascentral.phoenixnewtimes.com +oascentral.phoenixvillenews.com +oascentral.pitch.com +oascentral.planetatv.com +oascentral.poconorecord.com +oascentral.politico.com +oascentral.post-gazette.com +oascentral.pottsmerc.com +oascentral.pressdemocrat.com +oascentral.princetonreview.com +oascentral.prodivnet.com +oascentral.publicradio.org +oascentral.radaronline.com +oascentral.rcrnews.com +oas-central.realmedia.com +oascentral.record-eagle.com +oascentral.recordnet.com +oascentral.recordonline.com +oascentral.recroom.com +oascentral.recyclebank.com +oascentral.red7media.com +oascentral.redherring.com +oascentral.redorbit.com +oascentral.redstate.com +oascentral.reference.com +oascentral.regalinterative.com +oascentral.register.com +oascentral.registerguard.com +oascentral.registguard.com +oascentral.riverfronttimes.com +oascentral.sacurrent.com +oascentral.salemweb.net +oascentral.salon.com +oascentral.samsclub.com +oascentral.santacruzsentinel.com +oascentral.sciam.com +oascentral.scientificamerican.com +oascentral.seacoastonline.com +oascentral.seattleweekly.com +oascentral.sfgate.com +oascentral.sfweekly.com +oascentral.sina.com +oascentral.sina.com.hk +oascentral.southjerseylocalnews.com +oascentral.sparknotes.com +oascentral.spineuniverse.com +oascentral.sportsfanlive.com +oascentral.sptimes.com +oascentral.stackmag.com +oascentral.stansberryresearch.com +oascentral.starbulletin.com +oascentral.s-t.com +oascentral.stripes.com +oascentral.suntimes.com +oascentral.superpages.com +oascentral.surfline.com +oascentral.thechronicleherald.ca +oascentral.thehockeynews.com +oascentral.thenation.com +oascentral.theonionavclub.com +oascentral.theonion.com +oascentral.thephoenix.com +oascentral.thepostgame.com +oascentral.thesmokinggun.com +oascentral.thespark.com +oascentral.theweek.com +oascentral.timesfreepress.com +oascentral.tmcnet.com +oascentral.tnr.com +oascentral.tophosts.com +oascentral.tourismvancouver.com +oascentral.townhall.com +oascentral.traffic.com +oascentral.travelzoo.com +oascentral.trentonian.com +oascentral.tribe.net +oascentral.trutv.com +oascentral.tvnewscheck.com +oascentral.upi.com +oascentral.urbanspoon.com +oascentral.videodome.com +oascentral.villagevoice.com +oascentral.virtualtourist.com +oascentral.walmartwom.com +oascentral.warcry.com +oascentral.washtimes.com +oascentral.wciv.com +oascentral.westword.com +oascentral.where.ca +oascentral.wickedlocal.com +oascentral.wjla.com +oascentral.wkrn.com +oascentral.wwe.com +oascentral.yakimaherald.com +oascentral.yellowpages.com +oascentral.ywlloewpages.ca +oascentral.zwire.com +oascentreal.adcritic.com +oascetral.laweekly.com +oas.dallasnews.com +oas.deejay.it +oas.dispatch.com +oas.dn.se +oas-eu.247realmedia.com +oas.five.tv +oas.foxnews.com +oas-fr.video.on.nytimes.com +oas.greensboro.com +oas.guardian.co.uk +oas.heise.de +oas.hitbox.com +oas.ibnlive.com +oas.ilsecoloxix.it +oasis2.advfn.com +oasis.411affiliates.ca +oasisnewark.org +oasis.nysun.com +oasis.promon.cz +oasis.realbeer.com +oasis.zmh.zope.com +oasis.zmh.zope.net +oasjs.kataweb.it +oas.lee.net +oas.maktoobblog.com +oas.monster.com +oasn03.247realmedia.com +oas.northernandshell.co.uk +oas.nrjlink.fr +oas.nzz.ch +oas.offremedia.com +oas.populisengage.com +oas.portland.com +oas.providencejournal.com +oas.publicitas.ch +oas.rcsadv.it +oas.repubblica.it +oas.rivals.com +oas.roanoke.com +oasroanoke.com +oas.salon.com +oas.sciencemag.org +oas.signonsandiego.com +oassis.zmh.zope.com +oas.startribune.com +oas.stv.tv +oas.tidningsnatet.se +oas.toronto.com +oas.trustnet.com +oas.uniontrib.com +oas.villagevoice.com +oas.vtsgonline.com +oauoetf.com +oauth.demskigroup.com +oauthusr-001-site1.btempurl.com +oawoo.frenchgerlemanelectric.com +obada-konstruktiwa.org +obago77.5gbfree.com +oballergiya.ru +obatkesemutan.com +obbeg.adsbtrk.com +obdeskfyou.ru +obentobelfast.com +oberonincredig.112.2o7.net +oberoniplay.112.2o7.net +obesidadealgarve.com +obeus.com +obeyter.com +objects.abcvisiteurs.com +objects.designbloxlive.com +objects.tremormedia.com +objeto.com +obkom.net.ua +obkzrcclean2.az.pl +o.bluewin.ch +obnal.org +obozua.adocean.pl +observare.de +observer.advertserve.com +obs.nnm2.ru +obtimaledecouvertesasses.it +obuv-kupit.ru +obyno.xyz +obyz.de +ocat84einc.rr.nu +oca.telemetry.microsoft.com +oca.telemetry.microsoft.com.nsatc.net +ocdn.adsterra.com +oceancityinteriors.com +oceania.es +oceanic.ws +oceanup.us.intellitxt.com +ocenka34.ru +ochiek1.top +ochistka-stokov.ru +ocick.frost-electric-supply.com +ocio365.com +ockins.ml +ocnmnu.com +oconto.ru +ocp.bnet.com +ocp.cbsnews.com +ocpersian.com +ocruzeiro.com +ocse.it +ocslab.com +ocs.websponsors.com +octobert.net +octools.us.intellitxt.com +octopusgirl.com +oculusvsvr.pl +o-cv.com +ocworkbench.us.intellitxt.com +ocxxx.com +oda.as +o-dachnik.ru +odbierambony.pl +odbierzdarmowedoladowanie.wordpress.com +odbierz-nagrody.pl +odbierz-paysafecard.ujm.pl +odbior-nagrody.pl +odb.outbrain.com +odchudzaniezpasja.pl +odc.starwave.com +oddamzadarmo.eu +oddbanner.bet-at-home.com +oddcustoms.co.za +odds.optimizely.com +odesproperty.com +odessa.com.pl +o.detik.com +odin.goo.mx +odkryjfb.pl +odliczamy.net +odmarco.com +odontix.com +odontomas.org +odpowiadam.pl +odpowiedzi.edu.pl +odsmalskulturhus.se +odwiedziny-fb.pl +odywpjtw.bloger.index.hr +odzb5nkp.com +odzyskajsnapy.blogspot.com +oe24.oewabox.at +oeamtc.oewabox.at +oecnhs.info +oedet.com +oeinerge.pt +oekpal.com +oeuit.eship.cl +oewa.at +oewabox.at +oewa.oewabox.at +o.fandango.com +ofc.com.pe +of-course-secondhand.de +oferplan.abc.es +oferta1promocyjna.pl +oferta4you.com.pl +ofertasdi5.sslblindado.com +ofertasdi6.sslblindado.com +ofertasnatalinas.com +ofertas.ricardo-eletro.goodfinedining.com +ofertasupresadospaisamericanas.com +oferte.pl +oferty-online.com +offended.feenode.net +offer002.dimplexx.net +offer.alibaba.com +offer.camp +offer.dimplexx.net +offerfactory.click +offerforge.com +offergo.net +offergroup.info +offermatica.com +offerreality.com +offers99world.com +offers.affiliatetraction.com +offers.bycontext.com +offerscience.go2jump.org +offers.impower.com +offers.nordvpn.com +offersquest.directtrack.com +offers.royalvegascasino.com +offertogo.online +offertrakking.info +offertunity.click +offer.wpsecurity.website +offerx.co.uk +offf.info +office-365.life +office365.login.microsoftonline.com.boffic.com +office365-server.webapps-security.espacovecchi.com.br +office.ad1.ru +officebusinesspark.com +officecolor.com +officedocumentsfile.com +office.officenet.co.kr +officeon.ch.ma +officeonline.altervista.org +officer.us.intellitxt.com +officesetupestate.com +office-windows.ru +officeyantra.com +officialapple.info +officinaartaud.org +offline.dyd-pascal.com +offlinehbpl.hbpl.co.uk +offq.ml +offre-de-credit.com +offsetsan.com +offshoreoil.com +offside2.5v.pl +offtime.ru +offtopic.biz +ofice.idol-s.com +oficinatoreto.com.br +of.inviziads.com +ofni.al0ne.info +ogerish.com +ogien7o.bid +ogjby.tyjcva.gq +ogladaj24filmy.pl +ogladaj.online +ogladamy24.pl +oglasnikadhr.hit.gemius.pl +ogon.pl +ogphoa.com +ogulzxfxrmow.com +ogunstatenews.com +oguyajnmnd.com +oh.5.p2l.info +oha.be +ohc6eiy.bid +ohfgs.jandrheatingandcooling.com +ohgizmo.us.intellitxt.com +ohhdear.org +ohiamerica.com +ohiodronelaw.com +ohiomm.com +ohmydating.com +ohmyrings.com +ohnuat1.top +ohomemeamudanca.com.br +ohpail2.bid +ohs1upuwi8b.info +ohti5iu.bid +ohtulehtadee.hit.gemius.pl +ohtuleht.spring-tns.net +ohv1tie2.com +ohy0koh.bid +ohzoh0o.top +o.ibg.bg +oidiscover.com +oik.mactechinfo.info +oilfleld-workforce.com +oil-td.ru +oilwrestlingeurope.com +oimg.nbcuni.com +oimsgad.qq.com +oinadserve.com +oiof.com +oisrup.com +oithair.com +oi.webnavegador.com.br +oix0.net +oix1.net +oix2.net +oix3.net +oix4.net +oix5.net +oix6.net +oix7.net +oix8.net +oix9.net +oixchina.com +oix.com +oixcrv-lab.net +oixcrv.net +oixcrv-rubyem.net +oixcrv-rubytest.net +oixcrv-stage.net +oix.net +oix.phorm.com +oixpre.net +oixpre-stage.net +oix-rubyem.net +oix-rubytest.net +oixssp-lab.net +oixssp.net +oixssp-rubyem.net +oix-stage.net +ojakobi.de +ojaofs.com +oj.likewut.net +ojmekzw4mujvqeju.dreamtest.at +ojolink.fr +ojora80.myjino.ru +ojtobu.angelcities.com +ok.5.p2l.info +okaleczenie15laatkii.blogspot.com +okaleczon15-lattka.blogspot.com +okaleczona15--latka.blogspot.com +okaleczona15-llatka.blogspot.com +okayimage.com +okazjoteka.pl +okbiwwldgtts.com +okboobs.com +okcounter.com +okdesign.com.au +okeanbg.com +okel.co +okijlab.xyz +ok.internetmedia.si +okipub.com +oklahomadepartmentofcommerce.112.2o7.net +oklogistic.ru +okmagazine.us.intellitxt.com +okmusic.jp +okna-katowice.pl +oknarai.ru +oknavkliny.ru +okonich.com.ua +okout.ru +okroshki.ru +oktits.com +oktube.ru +ok-ua.info +ok.uk.intellitxt.com +okuos.com +olamoth.com +ola.pl +olcme.yildiz.edu.tr +old.advisegroup.ru +old.cincinnaticleaning.net +old-darkroast.adknowledge.com +old.durchgegorene-weine.de +oldgames.zp.ua +oldicbrnevents.com +oldies1510.com +old-rock.com +oldsite.jandrautorepair.com +old.tiffanyamberhenson.com +oldvalume64.in.net +old.yesmeskin.co.kr +ole24.gr +olekumagana.oucreate.com +olerestauranteria.mx +olgastudio.ro +olharproducoes.com.br +olimpiofotocorrosao.com.br +olivebrandresponse.com +oliveiro.it +olivier.goetz.free.fr +oliviplankssc.com +ollando.com +olqdh.top +ol.uk.at.atwola.com +oluwanidioromi.com +olvanto.ru +olwodanny.5gbfree.com +olx.hit.gemius.pl +olxro-d.openx.net +olyjune.com +olympescort.com +om9.pl +omahcorp.co.id +omahyangti.co.id +omar.standardtouch.com +om.blockbuster.com +om.businessweek.com +om.cbsi.com +om.cnet.co.uk +omcomputers.org +om.craftsman.com +om.dowjoneson.com +omecoarte.com.br +omegac2c.com +om.elvenar.com +ometrics.netapp.com +ometrics.warnerbros.com +om.expedia.com +omgates.com +omhl.info +omkarahomestay.com +om.lonelyplanet.com +om.metacrawler.com +omn.crackle.com +om.neimanmarcus.com +omni.basspro.com +omni.canadiantire.ca +omni.cash.ch +omnicleaningservices.com +omni.csc.com +omni.dispatch.com +omni.focus.de +omnikool.discovery.com +omniscbt.112.2o7.net +omni.sportingnews.com +omniture.112.2o7.net +omniture.artinstitutes.edu +omniturebanners.112.2o7.net +omniture.chip.de +omniture.com +omniturecom.112.2o7.net +omnitureglobal.112.2o7.net +omniture.shopstyle.com +omniture.stuff.co.nz +omniture.theglobeandmail.com +omnituretrack.local.com +omn.sonypictures.com +om.nuggad.net +om.onlineshoes.com +omrdatacapture.com +om.rogersmedia.com +omrtw.com +oms.com.np +om.sfgate.com +omsimplex.com +omsk.xrus.org +oms.nuggad.net +om.symantec.com +omt.honda.com +omtrdc.net +om.truecar.com +omvisidtest1.112.2o7.net +om.webcrawler.com +omy-sportswear.com +on.5.p2l.info +onadstracker.com +onawaylodge.com +oncapecodwaters.com +onceambientstore.com +onceuponatimebr.net +onclasrv.com +onclickads.net +onclickprediction.com +onclickpredictiv.com +onclkads.com +onclkds.com +oncocenter.tj +onderpalet.com +one.123counters.com +oneandonlynetwork.com +onebiz.cl +one.cam4ads.com +onecentmail.com +oneclickfiles.com +onedocs.net +onef.cf +onefilms.net +onefm.count.brat-online.ro +one-gear.com +oneg.org +onehealthpot.com +onei4ae.top +oneil-clan.com +oneillandsasso.com +oneliberia.com +oneluckyvisitor.org +oneminutesite.it +oneness4all.org +onenetworkdirect.com +oneontamartialarts.com +oneopenclose.click +onepdf.info +one.ru +onescreen.cc +oneshotdate.com +onesourcesolicitors.com +onestat.com +onestatfree.com +onet.hit.gemius.pl +onet.hit.stat.pl +onetoone.112.2o7.net +onetouchlife.com +onetransportes.com.br +onetravelguides.com +one-umnik.ru +oneund.ru +onfeed.net +onfreesoftware.com +ongciaspo.cl +ongdhong.com +onhoyziz.info +onie65garrett.ga +oniineservice.wellsfargo.com.drkierabuchanan.com.au +onineaha.org +onise.fr +onklinks.com +onlainbesplatno.ru +onlaintv.net +onlamp.us.intellitxt.com +onlgc.voluumtrk.com +onliine.pl +onlike.ro.im +onlinadverts.com +online1.webcams.com +online-32.xyz +online32.xyz +online-33.xyz +online33.xyz +online-34.xyz +online-36.xyz +online7777.com +onlineaccessappsinfouser.is-found.org +online-account-acess.net +onlineadmin.net +onlineads.magicvalley.com +online-alerts.com +online.americanexpress.com.myca.logon.us.action.logonhandler.request.type.logonhandler.robbinstechgroup.com.au +online-antispym4.com +online-auto-insurance.petrovka.info +online.bank0famerican.corn.auth-user.login-token-valid.0000.0.000.0.00.0000.00.0-accent.login-acct.overview.jiyemeradesh.com +online.bank.com.hostreme.com +onlinebay.ru +onlinebestoffers.net +online-bingo.petrovka.info +online-bradescard.com +online-broker.petrovka.info +onlinebusinessinternetchesterhill.com +online-buyprednisone.com +onlinecash.com +onlinecashmethod.com +online-cash.petrovka.info +online-casino.shengen.ru +online-casino.webpark.pl +online-chase.myjino.ru +onlinecibcupdate.temp-site.org +online-cigarettes.hitslog.net +online.citi.com.tf561vlu7j.ignition3.tv +online.citi.com.ura3vgncre.ignition3.tv +online.citi.com.zijkwmwpvc.ignition3.tv +online-classes-usa.org +online-college.petrovka.info +onlinedatingusersguide.com +online-degree.petrovka.info +onlinedetect.com +onlinedomains.ru +onlinedownloads.org +online.dropbox.com.reload.access.check.now.latrobevillage.com.au +online-error-reporting.com +onlinefastgroup.ru +onlinefileshares.com +onlinefilmz.net +online-florist.petrovka.info +online-forex.hut1.ru +online-forex-trading-systems.blogspot.com +onlinefrepdfviewer.000webhostapp.com +online-gaming.petrovka.info +onlinegooqlemailalert.com +onlinegurupopularsitecom.112.2o7.net +onlinegy7uj.co.uk +online-hd.pl +online-hit.info +online.hmrc.gov.uk.alaventa.cl +onlinehome.me +onlinehotmart.ru +online-id-bofa-account-alert.com +onlineindigoca.112.2o7.net +online-job.petrovka.info +online.ktc45.ru +onlineku.com +onlineloan-personal.net +online-loan.petrovka.info +online-locationapple.com +onlinelog.chaseonlinee.com +onlineloginfiledrives.nauttoys.com +online-mac-alerts.xyz +online-mac-errors.xyz +onlinemailsetupalerts.com +onlinemeetingnow.com +onlinemegax.com +online-metrix.net +online-mortgage.petrovka.info +online.myca.logon.us.action.support.services.index.htm.docs.cylinderliners.co.in +onlineofficeoffice365now.xyz +onlineoshatraining.pro +onlinepaypal1.myjino.ru +online.paypal.com.sttlf3c9nc.ignition3.tv +onlinepdforders.top +online-personal.petrovka.info +online-personals.petrovka.info +online-pharmacy-online.blogspot.com +online-pharmacy.petrovka.info +online-phentermine.petrovka.info +online-podarki.com +online-poker-gambling.petrovka.info +online-poker-game.petrovka.info +online-poker.shengen.ru +online-prescription.petrovka.info +onlinerewardcenter.com +onlinerxbargain.ru +online-school.petrovka.info +online-schools.petrovka.info +online-screw.cf +online-screw.ga +onlinesecure.we11sfargo.spantrdg.com +onlinesecurityverification.com +onlineserialy.ru +online-service-bank.net +onlineservices.wellsfargo.com.agserve.com.au +online.sh.cn +onlineshopeforusa.in +online-single.petrovka.info +online-site-now.com +onlineslotmaschine.com +onlines-services.com +online-support-id0283423.com +online-support-id20012.com +online-tarot-reading.beesearch.info +online.tdbank.com.profiremgt.com +online-templatestore.com +onlinetherapymagazine.com +online.ticbeat.co +onlinetoday32.xyz +onlinetoday33.xyz +onlinetoday34.xyz +onlinetoday35.xyz +onlinetoday36.xyz +onlinetoday37.xyz +online.togelonline303.com +online-travel.petrovka.info +onlinetribun.com +onlinetvseries.me +online-university.petrovka.info +onlineupdate.smallandprecise4update.download +onlineusagesurveys.com +onlineverificationbankofamericaonlinepage.horticultureacademy.com +online-viagra.petrovka.info +onlinewatch24.com +onlinewebfind.com +online.wellfarg0.com.mpcarvalho.com.br +online.wellsfargo.com.adlinkconcept.com +online.wellsfargo.com.brasilsemzikavirus.com.br +online.wellsfargo.com.integratedds.com.au +online.wellsfargo.com.kingsmeadgroup.com +online-xanax.petrovka.info +online-x.ru +online-zalukaj.eu +onlinksoft.org +onlivemidia.com.br +onload.pw +onlune.no +only2date.com +only.best-games.today +onlyfiles.net +onlyforemont.ru +onlynakedgirls.com +onlypreteens.com +onlythegames.com +only-valium.go.to +only-valium.shengen.ru +onlywoman.org +onlywornonce.net +onmops.com +on.nimp.org +onocollect.247realmedia.com +onos.switmewe.com +onparproductions.net +onrio.com.br +ons-add.men +onstrapon.purplesphere.in +ontheflix.us.intellitxt.com +onthenetas.com +ontrackprinting.net +onurerdemir.xyz +onurgoksel.me +onvis.ivwbox.de +onwadec.com +onwardclick.com +onwey.com +o-o-11-o-o.com +o-o-6-o-o.com +o-o-6-o-o.ru +o-o-8-o-o.com +o-o-8-o-o.ru +oocenter.us.intellitxt.com +oodpreprod.122.2o7.net +o-oe.com +ooen.oewabox.at +oofun.com +oofuv.cruisingsmallship.com +oohaip3.top +oojee.barginginfrance.net +ook8aim.bid +ookatthat.tokofawaid.co.id +ookei6e.top +ookoh1h.bid +ooksu.frost-electric-supply.com +oolsi.frost-electric-supply.com +oo-na-na-pics.com +ooo-gotovie.ru +ooo-olni.ru +o.opentable.com +ooph7mu.top +ooph9zu.bid +oops-cinema.ru +ooq5z.com +oosee.barginginfrance.net +oothoh5.top +ootoh4c.top +oovelearning.co.nz +oovqsvi.angelcities.com +oo.waw.pl +oowhe.frost-electric-supply.com +opcwdns.opcw.nl +opelgt-werkstatt.de +open247shopping.com +open.4info.net +openadext.tf1.fr +openad.infobel.com +openads.dimcab.com +openads.flagman.bg +openads.friendfinder.com +openads.hiphopsite.com +openads.motorrad-net.at +openads.nightlifemagazine.ca +openads.org +openads.smithmag.net +openadstream-eu1.247realmedia.com +openads.zeads.com +openad.tf1.fr +openad.travelnow.com +open.ad.yieldmanager.net +openallurls.com +openbook.us +opencandy.com +opencloudstorage.info +opencreators.net +opendc-orange.com +opendownloadmanager.com +openface.ru +openfrost.com +openfrost.net +openheartsservices.com +openingsolution.com +openinternetexchange.com +openinternetexchange.net +openload.info +openmarket.us +openmediasoft.com +openmultipleurl.com +open-odyssey.org +open.oneplus.net +openoverflow.com +open.realmofshadows.net +opensharecount.com +opensoftwareupdate.com +opensoftwareupdater.com +openstat.com +openstat.net +opentable.tt.omtrdc.net +openwidedentalmarketing.com +openx2.fotoflexer.com +openx.4shared.com +openx.adfactor.nl +openx.adtext.ro +openx.ajur.info +openx.angelsgroup.org.uk +openx.apollo.lv +openx.blindferret.com +openx.bmwpower-bg.net +openx.camelmedia.net +openx.cnews.ru +openx.coolconcepts.nl +openx.diena.lv +openx.engagedmediamags.com +openx.iamexpat.nl +openx.imoti.net +openx.itsmassive.com +openx.kokoma.pl +openx.mercatormedia.com +openx.net.hr +openx.omniton.net +openx.sexsearchcom.com +openx.shinyads.com +openx.stand.bg +openx.trellian.com +openx.utv.bg +openx.vizzia.bg +openx.vsekiden.com +openx.watchmygf.net +openx.xenium.pl +openxxx.viragemedia.com +open-yoga.com +opera1-servedby.advertising.com +operationoverdrive.net +opeslab.com +opienetwork.com +opinionreelle.com +oppgradere6.sitey.me +oprahsearch.com +opserver01.iti.net.pk +ops.picscout.com +op.standartnews.com +opt.hit.gemius.pl +optibuymac.com +opticavirtualvision.com +opticguardzip.net +optiker-michelmann.de +optikhani.co.id +optilogus.com +optimalsporthealthclubs.com +optimasportsperformance.com.au +optimization-methods.com +optimize.adpushup.com +optimized-by.4wnetwork.com +optimized-by-adv.rubiconproject.com +optimizedby.brealtime.com +optimizedby.openx.com +optimized-by.rubiconproject.com +optimized-by.vitalads.net +optimized.by.vitalads.net +optimize.doubleclick.net +optimize.indieclick.com +optimize.innity.com +optimize-stats.voxmedia.com +optimost.112.2o7.net +optimost.com +optimum-hits.com +optimus-communication.com +optimzedby.rmxads.com +option9.adultfriendfinder.com +options-nisoncandlesticks.com +optistortech.com +optitrade24.com +optmd.com +optom-deshevo.ru +opt.ximad.com +opuboikiriko.com +oqc.eu +oqgmav.com +or.5.p2l.info +oracle.112.2o7.net +oraclecom.112.2o7.net +oracleglobal.112.2o7.net +oral.pl +oralse.ca +oralse.cx +oralsexfilme.net +oranga.host.sk +orange.bageriethornslet.dk +orangeband.biz +orangebtl.com.pe +orange-bureau-business.com +orangedlabiznesu.com.pl +orangeerp.com +orange-fr.adinfuse.com +orange.fr-enqueteannuelle.xyz +orange.fr-enqueteofficielle2015.xyz +orange.fr-enqueteofficielle.online +orange.fr-felicitations.xyz +orange.fr-votre-opinion.xyz +orange.fr-votreopinion.xyz +orange-kodzik.890m.com +orangemali.co +orange.npix.net +orange.recompenses.win +orange.recompenses.xyz +orangeuk-mc.adinfuse.com +orange.weborama.fr +orangmm.ultimatefreehost.in +oranla.info +orbidapparels.com +orbitrative.com +orbiyz.com +orbowlada.strefa.pl +orcamentar.com.br +orca.qubitproducts.com +orcsnx.com +ordabeille.fr +order9.gdmachinery.net +orderadipex.findmenow.info +order-hydrocodone.polybuild.ru +orderjwell.eu +ordernorxx.com +order-phentermine.polybuild.ru +ordersildenafil.com +orders.webpower.com +order-valium.polybuild.ru +orderverification-serviceorder2017289823.com +ordie.adbureau.net +ordingly.com +oreck.tt.omtrdc.net +orecommons.org +oregoncraftsmanllc.com +oregonpropertylink.com +oreidaomelete.com.br +oreidosilk.com.br +oreillyspubnyc.com +orel-reshka.net +orenburg-gsm.ru +oren-cats.ru +orencia.pflexads.com +orentraff.cn +oreo.iawsnetwork.com +oreware.com +orf.oewabox.at +organicgranola.xyz +organichotmart.ru +organicteen.com.au +organized.it +orgasmictipsforgirls.com +orgasmus-virtual.com +orhonit.com +oriceline.com +orientality.ro +origer.info +origin2.adsdk.com +originalgospels.com +originawsaws.lankapanel.biz +origin-cached.licenseacquisition.org +origin.chron.com +origin-my.ru +origin-tracking.trulia.com +orion-code-access.net +orion.platino.gov.ve +oriontrustcyprus.com +orion-v.com +orkut.krovatka.su +orlandofamilyholiday.com +orlandoinfocom.112.2o7.net +orlandovacationsrental.com +ormort.ml +orngefr.atspace.cc +ornithos.com +orollo.fi +ororodnik.goodbb.ru +orsonet.ru +ortaklik.mynet.com +ortaokultestleri.net +ortc-ws2-useast1-s0005.realtime.co +orthofootwear.com +ortho-tri-cyclen.1.p2l.info +ortopediamigojara.cl +ortpar.com.tr +orumeva.boxhost.me +oryx-hotel.com +o.sa.aol.com +osagonline.ru +osakasushi-herblay.fr +osapeninsulasportfishing.com +oscar-rumilly.fr +osc.optimize.webtrends.com +osdir.us.intellitxt.com +osdyapi.com +osem.5gbfree.com +oshaqi.com +oshoa.iptvdeals.com +oshoforge.com +oshoo.iptvdeals.com +osigi.com +osiristrading.112.2o7.net +osj-jsap.jp +oskar-esgibtnureinen.com +oskarshamn.myfreesites.net +oslonoroadswayr.com +oslony-okienne.pl +osnova3.ru +oso0soajsjs.5gbfree.com +osoznanie-narkotikam.net +os-paypol.co.uk +osqa.com +osqa.net +ossalopez.vauru.co +oss-content.securestudies.com +oss-crules.marketscore.com +ossmalta.com +ossprojects.net +oss-survey.marketscore.com +ostats.mozilla.com +ostg.us.intellitxt.com +ostrovtaxi.ru +ostrowmaz24.com +osuq4jc.com +oswalgreeinc.com +oszukacruletke.blogspot.com +oszukacruletke.like.pl +ot8chae.top +ota.cartrawler.com +otbelivanie-zubov.com +otclick-adv.ru +otdacham.ru +otelpusulasi.com +otf.msn.com +otg.info +otherinbox.com +otherossettlement.com +otherprofit.com +other.xxxcounter.com +othtsgood.com +oticakadosh.com.br +otimanet.com.br +otosponsorki.pl +otracking.com +otsn.se +ots.optimize.webtrends.com +otsserver.com +ottacknet.112.2o7.net +ottdailytidingscom.112.2o7.net +ottilie.de +ottob.se +otto-images.developershed.com +otto-immobilien-hn.de +otukohrjv.top +otupa.awonboyswonsake.com +otylkaaotesanek.cz +otznaxbay.top +oudduitseherder.racing +oudee-power.de +ounicred.com +ouradse.com +our.affiliatetracking.net +ourbesthits.com +ourdailybreadspokane.com +ourhansenfamily.com +ournes.com +ouroldfriends.com +ouropretologistica.com.br +ourshopee.com +ourtherapy.ru +ourtimes.us +ourtoolbar.com +ourville.info +ou.shutterfly.com +outbound.rangpursoft.com +outbrain.com +outcome.co.uk +outcome.supersonicads.com +outdoorcn.com +outerinfo.com +outfitterssite.com +outgoing.orwbystre.com +outgoing.ottob.se +outils.yes-messenger.com +outils.yesmessenger.com +outlet.bgschool.bg +outlets-online.pl +out-lok.hpage.com +outlope.com +outofsightmedia.us.intellitxt.com +outpersonals.com +out.popads.net +outporn.com +outrageousdeal-a.akamaihd.net +outshop.ru +outsourcingforum.net +out.true-counter.com +outwar.com +outweb.5gbfree.com +outweb.nudt.edu.cn +ov2ochu.bid +ovalpigs.com +overblog.ezakus.net +overclockersonline.us.intellitxt.com +overflow.adsoftware.com +overlay.ringtonematcher.com +overlijdensverzekering2017.com +overnightprints.co +overstock.com.112.2o7.net +overstockcom.112.2o7.net +overstock.tt.omtrdc.net +overtha.com +overthelimit.us.intellitxt.com +overture.com +overturecom.112.2o7.net +overturecomvista.112.2o7.net +ovirus.ru +ovitkizatelefon.com +ovomexido.com +ovs.com.sg +owabgxis.wp.pl +owaportal.anafabrin.com.br +owathemes.com +owebmoney.ru +owikis.com +ownmoviesupd.com +ownshop.cf +owntkulm.pw +owohho.com +owona.net +owpuuzea.angelcities.com +ox2.sterta.pl +oxado.com +oxcash.com +ox-d.apax.servedbyopenx.com +ox-d.ask.servedbyopenx.com +ox.dateland.co.il +ox-d.bauer.servedbyopenx.com +ox-d.beforeitsnews.com +ox-d.bizjournals.servedbyopenx.com +ox-d.blogtalkradio.com +ox-d.boston.servedbyopenx.com +ox-d.buddytv.com +ox-d.cheezburger.servedbyopenx.com +ox-d.cloud9-media.net +ox-d.concourse.servedbyopenx.com +ox-d.crisppremium.com +ox-d.curse.servedbyopenx.com +ox-d.digiday.com +ox-d.eluniversal.com +ox-d.evolvemedia.servedbyopenx.com +ox-d.footballmedia.com +ox-d.futurenet.servedbyopenx.com +ox-d.gamer-network.net +ox-d.gamerpublishing.com +ox-d.globalpost.com +ox-d.hbr.org +ox-d.hdcmedia.nl +ox-d.hulkshare.com +ox-d.hypeads.org +ox-d.ibt.servedbyopenx.com +ox-d.iflscience.com +ox-d.imgur.servedbyopenx.com +ox-d.johnstonpress.co.uk +ox-d.leessp.servedbyopenx.com +ox-d.majorgeeks.com +ox-d.mediavine.servedbyopenx.com +ox-d.mirror-digital.com +ox-d.mm1x.nl +ox-d.mmaadnet.com +ox-d.motogp.com +ox-d.newstogram.com +ox-d.nydailynews.servedbyopenx.com +ox-d.officer.com +ox-d.openxadexchange.com +ox-d.philly.servedbyopenx.com +ox-d.photobucket.com +ox-d.popmatters.com +ox-d.publisherdesk.servedbyopenx.com +ox-d.ranker.servedbyopenx.com +ox-d.rantsports.com +ox-d.realtor.servedbyopenx.com +ox-d.sidereel.com +ox-d.sinclair.servedbyopenx.com +ox-d.sltrib.servedbyopenx.com +ox-d.thechive.servedbyopenx.com +ox-d.venturebeat.servedbyopenx.com +ox-d.verivox.de +ox-d.viralnova.com +ox-d.washingtonpost.servedbyopenx.com +ox-d.zenoviagroup.com +ox.e-card.bg +oxen.hillcountrytexas.com +ox.eurogamer.net +oxfam.intelli-direct.com +ox.fashion.bg +oxford-book.com.ua +oxfordlearn.co +oxfordlimoservice.com +oxfordsolarpark.com +ox.forexbrokerz.com +ox.furaffinity.net +ox.hoosiertimes.com +oxigas.com.br +ox.invia.cz +oxiouo.com +ox-i.zenoviagroup.com +oxjapan-d.openx.net +oxoo678.com +ox.pigu.lt +ox-s.e-card.bg +ox.tossoffads.com +oxxengarde.de +oxxymiron.ru +oxybe.com +oxy-gen.com +oynat.info +oyunablasi.com +oyunindir.eu +ozarslaninsaat.com.tr +ozas.net +ozdarihurda.net +o.zeroredirect.com +ozertesa.com +ozfax.com +ozforum.com +ozimport.com +ozioma.5gbfree.com +ozitechonline.com +oznurbucan.com +oz-offers.com +ozonemedia.adbureau.net +ozorkow.info +ozowarac.com +ozoz.it +ozsquads.com +oztoojhyqknbhyn8.com +oz.valueclick.com +oz.valueclick.ne.jp +ozzysixsixsix.web.fc2.com +p0.raasnet.com +p0rnking.com +p0rnuha.com +p-10.org +p128902.clksite.com +p13178.adskape.ru +p1574.adskape.ru +p1937.ic-live.com +p1.adhitzads.com +p1.tcr21.tynt.com +p2408.adskape.ru +p.24-7.help +p2.l.qq.com +p2nindonesia.com +p2p.adv.vz.ru +p30839.clksite.com +p388851.mittwaldserver.info +p3nlhclust404.shr.prod.phx3.secureserver.net +p3p.alibaba.com +p3p.com.au +p3p.mmstat.com +p4010.adskape.ru +p491.atemda.com +p4dt2-scyd6.ads.tremorhub.com +p4psearch.china.alibaba.com +p4yp41.moldex.cl +p543.adskape.ru +p69523.clksite.com +p78878.adskape.ru +p9762.adskape.ru +pa1k.com +pa.5.p2l.info +pa6.de +paalzb.com +pabxconsultants.co.za +pacan.gofreedom.info +p.ace.advertising.com +paceform.com +paceful.yanshfare.org +pacificcannabusiness.com +pacificmediaservices.com +pacific-poker.e-online-poker-4u.net +pacifique.ga +pacjentpolski.pl +packingpeople.com +paclitor.com +pacman.gkgar.com +pac-provider.com +padariadesign.com.br +p.addthis.com +p.adframesrc.com +padide3.ir +p.admob.com +p.adpdx.com +padsdel.cdnads.com +p.adsymptotic.com +padyamandslokam.com +paelladanielcaldeira.com +page-01.pe.hu +page.0ffer.eu +page2rss.com +pageaccounts3curiity.bisulan.cf +page.activeyourpage.gq +pagead1.googlesyndication.com +pagead2.googleadservices.com +pagead2.googlesyndication.com +pagead3.googlesyndication.com +pagead46.l.doubleclick.net +pagead-googlehosted.l.google.com +pagead.googlesyndication.com +pagead.l.doubleclick.net +pagead.l.google.com +pagead.topobiavi.com +page.app15.in +pagefair.com +pagefbsysntemunblcks.co.nf +pagehelpwarningg.nabatere.ga +page-info-confirm.com +pageissecured2017.com +pagelaw.co.za +pagepeels.sexmoney.com +pagerank4you.com +pagerank.jklir.net +pagerank-ranking.de +pagerank.scambiositi.com +pagerank-submitter.de +pageranktop.com +pagerank-united.de +pager.site50.net +pages-actv2016.twomini.com +pages-ads-activest.esy.es +pages-advertment-suppor-facebook.16mb.com +page-safety-fb.my1.ru +pagesecurecheck2017.cf +pagesecurityinbox5621.000webhostapp.com +pagesense.com +pages.etology.com +pagesfbnotification.cf +pagespeed.report.qq.com +pages-stats.rbl.ms +pagestat.mmi.bemobile.ua +pagetracking.popmarker.com +pageunblckssystem.co.nf +page-update.esy.es +pageurl-brx.btrll.com +pageurl.btrll.com +pageviolation2017.cf +pa.gogreenadmin.com +pagosapower.com +paiapark.com +paidclickmastery.com +paid.outbrain.com +paidstats.com +paidsurvey.in +paiementenligne2-orange.com +paiement-freemob.com +pailed.com +paime.com +paincake.yoll.net +paindontlast.com +painolympics.info +painolympics.org +pain-relief.1.p2l.info +painspecialist.in +paintball-gun.tripod.com +paintinggirl.se +pairedpixels.com +paisleyjaipur.com +paix1.sc1.admob.com +paiypal.com.service-update.pages-resolution.com +pajaza.com +pakaionline.com +pakarmywives.comlu.com +pakeleman.trade +pakietltes.pl +pakiet-steam.pl +pakietylte.pl +pakiety-pokemon-go.blogspot.com +paklandint.com +pakline.pk +pakmanprep.com +pakpolice.com +paksalad.com +palabra.nu +palaceistanbul.com +palaiswachsberg.de +palaparthy.com +paleohub.info +palhavitoria.com.br +pal-item.us.intellitxt.com +paliwo.as9.pl +palladiumknights.com +palmcoastplaces.com +palmdesertrealestateagent.com +palmebi.popunder.ru +palocco.it +palochusvet.szm.com +paloselfie.org +palpalva.com +p-alpha.ooo.al +palvira.com.ua +palwhich.com +pamietnikiwampirow.tv +pamint.com +pamkow.com +pammik.ru +pamm-invest.ru +pamoran.net +panamaforbeginners.com +panamond.info +panathingstittle.com +panchetresidency.com +panchro.co.uk +panchro.xyz +pandansari120.id +pandarastore.top +pandasoftware.112.2o7.net +pandatalk.2fh.co +pandavillage.org +pandyi.com +panel2.research-int.se +panel.adtify.pl +paneles.impresionesweb.com +panelfollowersindo.ga +panel.research-int.se +panel.trackermaterial.xyz +panel.vargakragard.se +paneshomes.com +panfundation.org +pangene.com +panguinproductions.net +panimooladevi.org +panouri-solare-acoperis.com +panseraikosagrotikossillogos.gr +panthawas.com +panther1.cpxinteractive.com +pantsflag.net +paolavicenzocueros.com +paozao.org +paparazzistudios.com.au +papausafr.com +papercrafting.ru +papercut.net.au +paperg.com +paperlesspost.com +papersmania.net +paphoselectricianandplumber.com +papi.mynativeads.com +papi.mynativeplatform.com +papla.pl +papo.coffee +pappajan.se +pappatango.com +papyal.s3rv.me +papyrue.com.ng +paques-2016.offre-exceptionnelle.xyz +parade.122.2o7.net +paradisulcopiilortargoviste.ro +paradontozanet.ru +parainterlink.com +parajumpersoutlet.online +parajumpersstore.online +paramountmarble.co.uk +parancaparan.com +paranteztanitim.com +parapanta.md +para-sante-moins-cher.com +paraskov.com +pardonmypolish.pl +parejaspapua.com +parenetpay.com +parent.oewabox.at +parfuemtest.de +parichaymilan.com +paris2.fr +parisbounds.com +pariscoworking.com +parisgroup.ae +parishlocksmiths.co.uk +park.above.com +park.beenetworks.net +parkcloud.dynadot.com +parketmilano.ru +parkfarmsng.com +park.hospitality-health.us +parkingcrew.net +parking.dmtracker.com +parkinglogan.com +parking.parklogic.com +parking.reg.ru +parklanesjewelry.com +park.parkingpanel.com +parkridgeresort.in +parlament.biz +parlosd.com +parpen.5gbfree.com +parrocchiasanleucio.it +parsely.com +parse.ly.invalid +parserks.net +parserprocase.info +parserworld.info +parship.122.2o7.net +parskabab.com +parsonschain.com.au +partex.fr +participe.da.promocao.cielofidelidade.kxts.com.br +particuliers-espace.com +particuliers-lcl2.acountactivity5.fr +particuliers.lcl-banque.mrindia.co.nz +particulierssocge.com +particulliers.secure.lcl.fr.outil.uautfrom.outil.serveurdocies.com +partimontarvillois.org +partlcle.com +partner01.oingo.com +partner02.oingo.com +partner03.oingo.com +partnerad.l.doubleclick.net +partnerad.l.google.com +partner-ads.com +partnerads.men +partnerads.ysm.yahoo.com +partner.ah-ha.com +partner.alerts.aol.com +partnercash.de +partner-cdn.men +partner.ceneo.pl +partnerearning.com +partner.finditquick.com +partner.googleadservices.com +partner-high.men +partner.join.com.ua +partnerline.men +partner.loveplanet.ru +partner.magna.ru +partner.pelikan.cz +partner.pobieraczek.pl +partner-print.men +partnerprogramma.bol.com +partners.10bet.com +partners.adklick.de +partners.adultadworld.com +partnersafe.men +partners.badongo.com +partner.sbaffiliates.com +partners.content.ad +partners.fanduel.com +partner.shareaholic.com +partnershipflooring.co.uk +partners.mysavings.com +partners.pantheranetwork.com +partners.pcsecurityshield.com +partners.popmatters.com +partners.priceline.com +partners.realgirlsmedia.com +partners-ship.pro +partners.sprintrade.com +partner-stop.men +partners.tremorhub.com +partnersuche-akademiker.de +partners.webmasterplan.com +partners.xhamster.com +partner.tagscreator.com +partner.topcities.com +partner-trustworthy.men +partner-ts.groupon.be +partner-ts.groupon.com +partner-ts.groupon.co.uk +partner-ts.groupon.de +partner-ts.groupon.fr +partner-ts.groupon.net +partner-ts.groupon.nl +partner-ts.groupon.pl +partner.wapacz.pl +partner.wapster.pl +partnerwebsites.mistermedia.nl +parttimecollegejobs.com +parttimespa.atspace.cc +party2pal.com +partybunny.ru +partygaming.122.2o7.net +partygamingglobal.122.2o7.net +partyplanninghelp.com +partyseat.com +pasakoyekmek.com +pasarseluler.co.id +pascani.md +pasoconcre.com +passblocksi.com +passbookls.info +passethus.com +passion-4.net +pass-nepal.org.np +passportblues.ru +passports.ie +passpport.com +pastadagula.com.br +pastaleads.com +pasta.se +paste-d.openx.net +pastie.org +pasypal-support.tk +paszto.ekif.hu +pata.bratimir.cpanel.in.rs +pateaswing.com +patentlaboratory.com +patern.tk +pathackley.com +pathforpoints.com +pathwaysranch.net +pathwaytodignity.org +pathwhelp.org +patiencebearsessa.com +patiofresh.com +patio-furniture.dreamhoster.com +patisserie-super.fr +patogh-persian.persiangig.com +patol01.pw +p.ato.mx +patqut.com +patriciabernardes.com.br +patriciamendell.com +patriciasolitro.club +patrickbell.us +patrickfullerconsulting.com +patrickhickey.eu +patrickhillery.112.2o7.net +patrick-house.ro +patriotcollege.com +patriotmfs.com +patrixbar.hr +patrono.com.br.villantio.com +patrzetu.pl +pattayabazaar.com +patterntrader-en.com +pattersonsweb.com +paubunyan.net +pauditgerbang.sch.id +paulbuyan.net +paul.cescon.ca +paulonabais.com +paulsdrivethru.net +paulsnetwork.com +paulwdean.com +pave.elisecries.com +pavelbuben.cz +pavelmoric.com +pavestores.com +pavlodar.xkaz.org +pawelkondzior.pl +paxil.1.p2l.info +paxito.sitetracker.com +pay11.org +pay2me.pl +payabeach.us +pay-ads.com +payanoix.cf +pay-click.rumahweb.org +paycounter.com +payday.fruitfuldemo.com +pay-day-loans.beesearch.info +paydayloanslocal.com +payday-loans.now-cash.com +paydayonlinecom.com +payeertransfer.com +pay-israel.com +payitforwardtn.com +payload.yieldbuild.com +pay-loan.com +payment.pl +payn.me +payouteror.com +paypaisecure.5gbfree.com +paypal.112.2o7.net +paypal1mai.temp.swtest.ru +paypal2016.config.data.user-id49ed5fr3d7e8s5d8e.artisticresponse.com +paypal2.caughtgbpspp.com +paypal4.caughtgbpspp.com +paypal.aanmelden-validerungs.tk +paypal-account-access-limited.legalwebconsult.com +paypal.account.activity.id73165.mdnfgs.com +paypal-account.internacionalcrucero.com +paypal-account.ogspy.net +paypal.accountreviiew-highrisk.com +paypalaccountupadate.com +paypal.approved.account.scr.cmd.check.services.member.limited.au.egiftermgred.info +paypal-aus.com +paypal.benutzer-sicheronline.com +paypal.billing-cycles.tk +paypalbonus.ptctest.tk +paypalbux.co +pay-pal-c0nfirmation.com +paypalcenter.com +paypal-check4848949.at-kundencheckid2152458216.ru +paypal-claim.gdj4.com +paypal.com30ebbywi4y2e0zmriogi0zthimtmwoweyn2mxognjngu4.sterbanot.com +paypalcom88gibinebscrcmdhomegeneraldispatch0db1f3842.voldrotan.com +paypal-com-add-carte-to-account-limited.zwagezz.com +paypal.com.akbidmuhammadiyahcrb.ac.id +paypal.com.appmkr.us +paypal.com-asp.info +paypal.com.bankcreditunionlocation.customer.service.paypal.token.verify.acounts.customer2017.token1002998272617282736525272288387272732.christianiptv.tv +paypal.com-cgi-bin-update-your-account-andcredit-card.check-loginanjeeeng.ml +paypal.com-customer.sign-in.authflow-summaries.com +paypal.com.ecoteh.org +paypal.com.es.webapps.mpp.home.almouta3alim.com +paypal.com.es.webapps.mpp.home.servicio.almouta3alim.com +paypal.com.iman.com.pk +pay.pal.com.imsfcu.ac.bd +paypal.com.istiyakamin.com +paypal.com.it.webapps.mpp.home.holpbenk24.com +paypal-commiunty.com-id-accountd.snikers.lv +paypal.com.my-accounte-support-verefication.serverlux.me +paypal.com.omicron.si +paypal.com.online.honarekohan.com +paypal.com.paypalclient098093209jkbnnov9839fnoof9.paypal.com.paypal.com.paypalclient098093209jkbnnov9839fnoof9.paypal.com.secured.superbmedia.net +paypal.com.secure.information1.vineyardadvice.com +paypal.com.secure.information.vineyardadvice.com +paypal.comservice.cf +paypal.com.se.webapps.mpp.home.foreignsurgical.com +paypal.com.signin.country.xgblocale.xengb.lindamay.com.au +paypal.com.signin.de.webapps.mpp.home.signin.country.xdelocale.xendelocale.thedaze.info +paypal-com-signin-login-com.mariea4c.beget.tech +paypal-com-signin-login-com.servicws.beget.tech +paypal.com.signin.webapps.com-unsualactivity.cf +paypal.com.ticket-case-ld-3651326.info +paypal.com.uk.signin.priauth.nav.f9a348bf60bbc6569f2.solutionslaw.com.au +paypal.com.uk.signin.secureaccount.ssltunnel.2fa-secure.com +paypal.com.update-cgi-informationsecour.mxhecqbulyadinru4pjwgofs3z5ctiady6mk.mxhecqbulyadinru4pjwgofs3z5ctiady6mk.mxhecqbulyadinru4pjwgofs3z5ctiady6mk.hrbelectric.com +paypal.com.update-limited.accounts.interdom.info +paypal.com-verified-account.info +paypal.com.verify.account.locale-x.en-us.logged-in.account-summary.verify.gon543.com +paypalcom-webapps-confirm-payment-revision-unvailable.clkhss.com +paypal.com.webapps.mpp.de.home.almouta3alim.com +paypal.com.webapps.mpp-home.almouta3alim.com +paypal.com.webapps.mpp.home.de.almouta3alim.com +paypal.com.webapps.mpp.home.e.belllimeited.belllimeited.com +paypal.com-webaps-login-access-your-account-limited-scure.aprovedaccount.info +paypal-confirmation.aoic.org.my +paypal.co.uk.mikhailovaphoto.ru +paypal.co.uk.webscr.home.account.selection.signin.use.of.cookies.europe-stores.com +paypalcridit.com +paypalcustomercare.studiografia.com.br +paypal.customer-konten-aanmeldens.tk +paypalcz.cz +paypal.de-kontaktaktualisierung.eu +paypal.de-mitgliedscheck.info +paypal.de-onlines.com +paypal.de-secure-log.in +paypal.de-signin-sicherheit-1544.paypal.de-signin-sicherheit-3339.amazon.de-signin-meinkundenservice-4630.amazon.de-signin-sicherheit-8562.amazon.de-signup-kundenservice-userid.39467725614111.supportlivefast.ru +paypal.de-signin-sicherheit-2070.amazon.de-signin-meinkundenservice-4630.amazon.de-signin-sicherheit-8562.amazon.de-signup-kundenservice-userid.39467725614111.supportlivefast.ru +paypal.de-signin-sicherheit-3339.amazon.de-signin-meinkundenservice-4630.amazon.de-signin-sicherheit-8562.amazon.de-signup-kundenservice-userid.39467725614111.supportlivefast.ru +paypal.de-signin-sicherheit-7295.paypal.de-signin-sicherheit-3339.amazon.de-signin-meinkundenservice-4630.amazon.de-signin-sicherheit-8562.amazon.de-signup-kundenservice-userid.39467725614111.supportlivefast.ru +paypal-deutschland.secure-payments-shop.com +paypal-e707aa.c9users.io +paypal-easyway.conditions2016.data.config-set01up02.luxeservices455.com +paypal-einloggen.h200622.paychkvalid.com +paypal.eu.uk.verification.com.bihartechnical.com +paypal-exchange.com +paypal.fitwelpharma.com +paypal-hilfe.mein-hilfe-team.de +paypal.homepplsgroup.com +paypal-idcheck84494.at-kundencheckid2152458216.ru +paypal-info.billsliste.com +paypal-information.net23.net +paypal.it.msg32.co.uk +paypal.konten00-assess-aanmelden.tk +paypal.konten00-dat00-verifizierungs.com +paypal.konten00x004-konto-verifizerungs.com +paypal.konten00x1kunden-aktualieren.com +paypal.konten00xkunden00-aktualiseren.com +paypal.konten010xkunden00-aktualiseren.com +paypal.konten-aanmelden-sicherheit.tk +paypal.konten-assistance.tk +paypal.konten-kunden000x009-verifikation.com +paypal.konten-siche080-aanmelden.tk +paypal.konten-sicher-bestatig.com +paypal.konten-sicher-kunde.tk +paypal.konten-sicheronline.tk +paypal.konto00-kunde00x-verifikations.com +paypal-konto.at-kundensicherheitscheck2016032016.ru +paypal-kontosecure.at-kundensicherheitscheck2016032016.ru +paypal.kontoxkunden002-verifizerungs.com +paypal.kunden0-00x16-aktualiseren.com +paypal.kunden00-konten080-verifikations.com +paypal.kunden00-konten-aktualiseren.tk +paypal.kunden00x016-konto-uberprufen.com +paypal.kunden-00x016-uberprufen.me +paypal.kunden00x0konten080-080verifikations.com +paypal.kunden00x13009xkonten-verifikations.com +paypal.kunden00xkonten00-20x16-verifikations.com +paypal.kunden00xkonten00x00x1600-verifikations.com +paypal.kunden00xkonten00x160-verifizerungs.com +paypal.kunden01-010xkonten-verifikations.com +paypal.kunden01090xkonten-00aktualiseren.com +paypal.kunden0190xkonten-00aktualiseren.com +paypal.kunden-020x1600-verifikation.com +paypal.kunden080aanmelden.tk +paypal.kunden080xkont00xaktualiseren.com +paypal.kunden080xkunden080-verifikations.com +paypal.kunden090xkonten00-080aktualiseren.com +paypal.kunden090xkonten00-verifikations.com +paypal.kunden090xkonten-080aktualiseren.com +paypal.kunden0-konten08xaktulaiseren.com +paypal.kunden-100x160-verifikation.com +paypal.kunden-200x0010-aktualiseren.com +paypal.kunden-200x160-verifizerung.com +paypal.kunden-88konten80x00aktualiseren.com +paypal.kunden88x88konten090-aktualiseren.com +paypal.kunden-check-validerung.com +paypal.kunden-customer-validerung.tk +paypal.kunden-dat00-uberprufen.com +paypal.kundenformular-pp-login.com +paypal.kunden-konten00xaktualiseren.com +paypal-kundensicherheit.at-kundensicherheitscheck2016032016.ru +paypal.kunden-sicher-online.com +paypal.kunden-validerungs.tk +paypal.lcl-secur.com +paypal-limited.com.server27.xyz +paypal.limitedremoved.culinae.no +paypal.limited-verificationupdatenow.com +paypall.info +paypal.lockhelp.org +paypal-log84849842.at-kundencheckid2152458216.ru +paypal-logcheck84844.at-kundencheckid2152458216.ru +paypal.login.access.for.help.eshop-access.ga +paypal-login-security-account.ml +paypal.logins-security-account-com.com +paypall-service.trendinghuman.com +paypal.mailverifizieren.de +paypalmegiuseppe.altervista.org +paypal.meinkonto-hilfe-ssl.de +paypal.myaccount.limited.security.com.4banat.net +paypal-my-cash.com +paypal-notice.farmshopfit.com +paypal.nz-15eed9c4371186bf.com +paypal-official-account-verification-site.srbos.com +paypal-personeninfo.at-kundensicherheitscheck2016032016.ru +paypal.puresecurenetwork.net +paypalresolu.myjino.ru +pay-palreviewcenter.16mb.com +paypalsecure-2016.sucurecode524154241.arita.ac.tz +paypal-secure.at-kundensicherheitscheck2016032016.ru +paypal-securelogin.com.accounntreviews-highrisk.com +paypal-secureupdate.com.server27.xyz +paypal-security-cgi-bin-cyc-update-profile-verification.invierta-miami.com +paypal-service.at-kundensicherheitscheck2016032016.ru +paypal.service.id.indomima.com +paypal-service.ogspy.net +paypal-services48844.at-kundensicherheitscheck2016032016.ru +paypal.sicher0-aanmeldens.tk +paypal.sicherer-daten-abgleich.com +paypal-sicher.save-payments-service.com +paypal-sicher.save-payments-support.com +paypal.sicherungsserver-id-133660.cf +paypal-signin-account-secure.com +paypalssl.doubleclick.net +pay.pal-support.stableppl.com +paypal-update-information.ga +paypal-update-services.us +paypal.verification.democomp.com +paypalverify-uk.com +paypalvsgooglecheckout.com +paypel.limited.account.bravocolombia.com +payperclickadvertising.org.uk +pay-per-search.com +payperspot.it +paypertext.com +paypinfoservi.it +paypl.com-resolved.account.ticaproduce.com +payplupdatecenter.pl +paypolsecure.com +paypopup.com +paysafecard.name +paysafe-deals.pl +paysagiste-isere.com +paysecurereview.com +payserve.com +payservsecure.com +paytren7.com +paytrenberjaya.com +payusatax.com +payyaal.com +pazarbirder.com +pazarlamacadisi.com +pazorial.com +pb7.us +pb9r9w5bk5bipws.com +pb-dv.ru +pbg2cs01.doteasy.com +pbid.pro-market.net +p.bm23.com +pbnet.ru +pbs.fkip.unja.ac.id +pbterra.com +pb.tynt.com +p-business.ru +pb-webdesign.net +pc2sms.eu +pc2.yumenetworks.com +pc4maintainance.theperfectupdate.org +pc.adonweb.ru +pcads.ru +pcadvisor-uk.intellitxt.com +pcadvisor.uk.intellitxt.com +pcash.globalmailer5.com +pcash.imlive.com +pcash.wildmatch.com +pcbangv.com +pcboa.se +pc-broe.dk +pcbutts1.ourtoolbar.com +pcbutts1.software.informer.com +pcbutts1-therealtruth.blogspot.com +pc-care365.net +pccleaner.com +pccleanerpro.com +pccleanersolutions.com +pc.club +pcconnectioncom.112.2o7.net +pc-detox.com +pceaujeuickviefaloemiaceaxca.org +pcgamer.uk.intellitxt.com +pcgameshardware.de.intellitxt.com +pc-gizmos-ssl.com +pcgroup.com.uy +pch.122.2o7.net +p.chango.com +pchealthcheckup.net +pchomegeek.com +pcil.blufysh.com +pc-infopratique.fr.intellitxt.com +pcinpact.fr.intellitxt.com +pcmag.us.intellitxt.com +pcmatic.com +pcmedico.com +pcmightymax.net +pc-mit-schmidt.de +pcmodel.nfcfhosting.com +pcmsumberrejo.or.id +pcnawa.com +pcnetworkreliablecloudservices.online +pcookie.aliexpress.com +pcookie.cnzz.com +pcookie.taobao.com +pcper.us.intellitxt.com +pcpitstop.com +pc-pointers.com +pcpro.uk.intellitxt.com +p.cpx.to +pcregistrycleaner.com +pcrepaired.co.in +pc-scanner16.com +pcsecurityshield.com +pc-services.ru +pcspeedup.com +pc-test.net +pctoolscom.112.2o7.net +pctuzing.php5.cz +pcupgrade.check4newupdates.net +pc-virus-d0l92j2.pw +pc-virus-k7d4v9.online +pc-wallpapers.co.uk +pcwelt.de.intellitxt.com +pcworldcommunication.122.2o7.net +pcworldcommunication.d2.sc.omtrdc.net +pcw.uk.intellitxt.com +pd1.funnyhost.com +pdamods.ru +pda.mv.bidsystem.com +pddm.org.au +pdf.adoppe.account.pateloptics.com +pdfbooksfree.us +pdf-download-auctect.rogibgroup.com +pdffgoofg.crossfitzulu.com +pdf-file.co.za +pdf-guard.com +pdfileshare.com +pdf-platinum.info +pdk.lcn.cc +pdmcwrtkhvb.mottbuilding.com +pdn-4.com +pdn.applovin.com +pdns.cz +pdns.download +pdns.nudt.edu.cn +pds.directrev.com +pdsecurity.pl +pdshpollcjfj.com +pdstexas.net +pdtronto.com +pdunaidaipniilvejgf.com +pe.5.p2l.info +peacepowder.com +peace-power.de +peakclick.com +peakpharmaceuticals.com.au +peaky.tags.yield-atx.com +pear.dementiaadvocacy.com +pearlandblinds.com +pearlinfotechs.com +pearlisland.ru +pearsonacessnext.com +pebble-adhese.gva.be +pebble-adhese.hbvl.be +pebblecreekgolfcourse.com +p.ebdr2.com +pebi.co +pecaimports.com.br +pecasnotebook.com.br +pece.com.br +pechikamini.ru +pedalsnt.com +pediped.co +pednanet.servicos.ws +pedropedreiromoxik.su +pedropolis.co +peeg.fronterarq.cl +peekyou.com +peelads.hustler.com +peep-auktion.de +peer39.com +peerfly.com +pegase-carburant.com +pegasocyc.com.mx +peggyjanis.com +peguards.cc +pei-ads.playboy.com +pei-ads.thesmokingjacket.com +peiceline.com +peitui.com +pekisvinc.com +pekori.to +pelfind.me +pellamuseum.culture.gr +pelmorexmedia.122.2o7.net +pelna-wersja.pl +peloclub.com +pemclub.com +pemoallu.beget.tech +pempoo.com +pendelprognos.se +pendencia21.com.sapo.pt +pendulum-wall-clocks.com +penelopelombard.com +penisvergrotendepillennl.ovh +penix.nl +pennasol.bg +pennwellcorp.112.2o7.net +pennwellco.tt.omtrdc.net +pennyinsouthamerica.com +pennystock-picks.info +pennyweb.com +pensilwarna.com +pension-appelburg.de +pensionetranchina.com +pension-helene.cz +pensplan4u.com +pensplan.com +pentacompza.co.za +pentonmedia.122.2o7.net +penton.us.intellitxt.com +pentragonar.org +pentrucristian.ro +penwithian.co.uk +people-choice-sites.com +peopleiknow.org +peopleinmotion.datasenter.no +peoplerus.com.au +peoria33884.cz.cc +pepelacer.computingservices123.com +pepipo.com +pepperjamnetwork.com +pepperstyle.ru +percentmobile.com +percin.biz.ly +perezhilton.us.intellitxt.com +perfectaudience.com +perfectinvestment.biz +perfectionautorepairs.com +perfectionistenglish.net +perfection-pleasure.ru +perfectmoney.is.fectmoney.com +perfectpcb.com +perfectpointing.com +perfectpracticeweb.com +perfectwealth.us +perfilfacebook1.site88.net +perfiliate.com +performance-32.xyz +performance-34.xyz +performance-35.xyz +performance-36.xyz +performance-37.xyz +performanceadexchange.com +performancecoach.ie +performancerevenue.com +performancerevenues.com +performancing.com +perfspot.crwdcntrl.net +peridotsgroup.com +periperigrillluton.co.uk +perlabsshipping.com +perlssend.com +permissioninteractiv.tt.omtrdc.net +perm-profnastil.ru +perm.xrus.org +perosan.com +perpinshop.com +perronicoach.com.br +persgroepadvertising.nl +perso.estat.com +personalantispy.com +personal.bofa.accounts.2-fa.co +personalcare-offer.com +personalcashbailout.com +personal.editura-amsibiu.ro +personalkapital.com +personalloanexplorer.com +personal.metrobankonline.co.uk.metrobankretail.servletcontroller.myaccounts.internetbanking.estatement.paymentreview.activity.transfernotification.mikeymccleary.com +personal.regankiefiuks.com +personal-sitcherheit.cf +personal-sitcherheit.ga +personalspanishclasses.com +personaltrainersouthlondon.com +personnalisationdescomptes.it +personsupport.com +perso.wanadoo.es +perspectivamkt.com.br +perssonsplatprod.se +persuasion.ie +perthpropertyrental.com +perugemstones.com +pesanfiforlif.com +pescamania.it +pesgliny.com +pesonamas.co.id +pesosaver.com +pesptz.org +pesquisesuaviagem.com.br +pest-control-in-houston.com +pestkontrol.net +pestomou.info +pesugihanputih.net +petakfc.112.2o7.net +petamain.112.2o7.net +petanqueclubmarcinelle.net +petardadhd.com +petdonkey.com +petedrummond.com +petermatson.com +petermcannon.com +peter-north-cum-shot.blogspot.com +peterschramko.com +petersenmontessori.com +petersteelebiography.com +peterstradvard.se +peterstuyvesantbuilding.nl +peter-walters.com +petfooddirect.d1.sc.omtrdc.net +petitecosmetic.com +petlubes.com.pk +petpalacedeluxe.com.br +petpalsportraits.co.uk +petrafashion.com +petra.nic.gov.jo +petrenko.biz +petrol4gp.info +petrolsigaze.com +petroservicios.net +petrovka-online.com +petrovoll.gconoil.com +petruzviaggi.it +petsblogroll.com +petsdeluxo.com.br +pets.finaltips.com +petsmovies.com +peugeot-club.org +peugeotscooter.dk +pewit.pw +peypal.fr.secure-ameli.com +pf11.com +pfa.levexis.com +pfaltzgraf.com +pfcuay.o-f.com +pfengineering.com +pferde-messe.de +pffn.pl.tn +pfhyvye.com +pfinnovations.com +pfizer.122.2o7.net +pflegekasse.com +pflexads.com +pfst.tplnakjfklajkfafsd.esy.es +pf.tradedoubler.com +p.funtoonez.com +pfv1.com +pg2.solution.weborama.fr +pgalvaoteles.pt +pgamggzxj.top +pgmediaserve.com +pgoogleawbgo.xyz +pgpartner.com +pgssl.com +ph-ad01.focalink.com +ph-ad02.focalink.com +ph-ad03.focalink.com +ph-ad04.focalink.com +ph-ad05.focalink.com +ph-ad06.focalink.com +ph-ad07.focalink.com +ph-ad08.focalink.com +ph-ad09.focalink.com +ph-ad10.focalink.com +ph-ad11.focalink.com +ph-ad12.focalink.com +ph-ad13.focalink.com +ph-ad14.focalink.com +ph-ad15.focalink.com +ph-ad16.focalink.com +ph-ad17.focalink.com +ph-ad18.focalink.com +ph-ad19.focalink.com +ph-ad20.focalink.com +ph-ad21.focalink.com +phafah4.bid +pham.duchieu.de +phamkimhue.com +phantomfest.rs +phantomsuperchargers.com +pharaohvision.com +pharirgatic.hotmail.ru +pharmacoidea.com +pharmacy-canada.forsearch.net +pharmacy.hut1.ru +pharmacy-i.com +pharmacyincity.com +pharmacy-news.blogspot.com +pharmacy-online.petrovka.info +pharmacyrxone.com +pharmadeal.gr +pharmafinanceholding.com +pharmaspan.com +pharmtalk.com +phatthalung.go.th +ph-cdn.effectivemeasure.net +phdpublishing.tk +phee1oci.com +pheedo.com +pheihoe8.com +phendimetrazine.1.p2l.info +phentermine.1.p2l.info +phentermine.3.p2l.info +phentermine.4.p2l.info +phentermine.aussie7.com +phentermine-buy-online.hitslog.net +phentermine-buy.petrovka.info +phentermine-online.iscool.nl +phentermine-online.petrovka.info +phentermine.petrovka.info +phentermine.polybuild.ru +phentermine.shengen.ru +phentermine.t-amo.net +phentermine.webpark.pl +phg.hitbox.com +phi7phu.bid +phidacycles.fr +philadelphia_cbslocal.us.intellitxt.com +philashop.de +philatelyworld.com +philipfortenberry.com +philips.112.2o7.net +phillyburbscom.112.2o7.net +phillycom.112.2o7.net +philly.demdex.net +philly-d.openx.net +phillymedia.112.2o7.net +philmasolicitors.com.ng +phimsex4u.biz +phitenmy.com +phixelsystems.com +phlomy.ga +phlpolice.com +phmetals.in +phnompenhbicycle.com +phoaz.cruisingsmallship.com +phobia.us +phoenix-adrunner.mycomputer.com +phoenixads.co.in +phoenixcontactrendezveny.com +phonearena.us.intellitxt.com +phone-calling-card.exnet.su +phonecenter24.de +phonefind.info +phone-forum.de +phonejapan.com +phonesdevelopers.com +phonesecure.mobi +phonespecifier.com +phoneysoap.com +phorm.biz.tr +phorm.ch +phormchina.com +phorm.cl +phorm.co.in +phorm.com +phorm.com.br +phorm.com.es +phorm.com.mx +phorm.com.tr +phorm.co.uk +phormdev.com +phormdiscover.com +phorm.dk +phorm.es +phorm.hk +phorm.in +phorm.info.tr +phorm.jp +phormkorea.com +phorm.kr +phormlabs.com +phorm.nom.es +phorm.org.es +phormprivacy.com +phorm.ro +phormservice.com +phormsolution.com +phormstandards.com +phorm.tv.tr +phorm.web.tr +photobox-tracking.adalyser.com +photobucket.adnxs.com +photochki.com +photographpan.com +photographylife.co +photo.houseofgaga.ru +photokitchendesign.com +photomoa.co.kr +photook.vxm.pl +photorepair.ru +photos0.pop6.com +photos1.pop6.com +photos2.pop6.com +photos3.pop6.com +photos4.pop6.com +photos5.pop6.com +photos6.pop6.com +photos7.pop6.com +photos8.pop6.com +photosbylucinda.com +photoscape.ch +photos.daily-deals.analoganalytics.com +photos.helli.nu +photos.pop6.com +photostudiolightings.com +phototphcm.com +photo.video.gay.free.fr +photoworkshopholidays.com +phox2ey.bid +php01-30914.php01.systemetit.se +php4you.biz +phpads.astalavista.us +phpads.cnpapers.com +phpads.flipcorp.com +phpads.foundrymusic.com +phpads.i-merge.net +phpads.macbidouille.com +phpadsnew.abac.com +phpadsnew.gamefolk.de +phpadsnew.new.natuurpark.nl +phpadsnew.wn.com +phpancake.com +php-archiv.de +phpcouponscript.com +phpctuqz.assexyas.com +php.fark.com +php-filemanager.net +php.genesismedia.com +php-mag.de.intellitxt.com +php-magnet.de.intellitxt.com +phpmon.brainsonic.com +phpmyvisites.net +phpoutsourcingindia.com +phpscriptsmall.info +phuket-account.com +phuketscreen.com +phukienhdpe.vn +phuthamafrica.co.za +phyldixon.com +physfunc.ru +physique.be +physislifesciences.com +physorg.uk.intellitxt.com +physorg.us.intellitxt.com +physpayments.com +piatrans.com +pic2fly.com +picadmedia.com +picantemexicancuisine.com +pic.casee.cn +piccdata.com +piccolaosteria.de +piccshare.com +pichinchha.com +pichinchia.biz +pichinchia.me +pichlncha.me +pick-a-pizza.com.au +pickbuild.net +pickfonts.com +pickmeupnews.us.intellitxt.com +pickmoon.net +pick-savings.com +pickyourjordans.ru +pickytime.com +picoslavajato.com +picphotos.net +pics.cnomy.com +picscout.com +picsearch.com +picsfair.com +picsforkeywordsuggestion.com +picshic.com +pics.kolmic.com +pics.myownnewmatchpicture.com +pics.skenzo.com +pic.starsarabian.com +pics.yad2.co.il +picturedrop.d1688.net +picturepof.com +picturesfrom.com +picturesify.com +picturesmania.com +picture-uploads.com +p.ic.tynt.com +pidelorapido.com +piedmontranches.com +pieniadzedowziecia.pl +pierrebeaudrycga.com +pierrehardysale.online +pierwszaligablog.wordpress.com +piesaonline.com.mx +pietexture.com +pigra.csheaven.com +pigrafix.at +pigredoben12.sytes.net +pihl.se +pikepods.com +pila.pl +pilkanozna.yolasite.com +pillartypejibcrane.com +pillorydowncommercials.co.uk +pillscash.com +pills.ind.in +pillsmoney.com +pilltabletsrxbargain.net +pilmedia.ads.visionweb.no +pimandersson.se +pimproll.com +pimpwebpage.com +pinaccles.com +pinakaglobal.com +pinddanatgaya.com +pindii.com +pinecliffspremierclub.com +ping1.unicast.com +ping.chartbeat.net +ping.crowdscience.com +pingfore.qq.com +pingfore.soso.com +ping.hellobar.com +pingomatic.com +ping.onscroll.com +ping.qbaka.net +pings.blip.tv +pings.conviva.com +pingting.biz +pinion.gg +pinkbike.co +pinkdreaminc.us +pinkduck.ga +pink.habralab.ru +pinkisthenewblog.us.intellitxt.com +pinkpillar.ru +pinkstar.pl +pinoynegosyopn.com +pinsdaddy.com +pinstake.com +pintapel.com.br +pintattoos.com +pinturabarcelona.com.es +pinturasdellavalle.com.ar +pioaltkirch.bloxode.com +pionirbooks.co.id +pio.polytopesexempt.com +p.iovation.com +piozx111871111z.xyz +pi.pardot.com +pipe-bolt70.ru +pipedream.wistia.com +pipesproducciones.com +pipki.r.acdnpro.com +piraraku.com +piratebays.eu +piratecams.com +pirateday.ru +pirckxungwkv.com +piriewaste.com.au +pirotehnikafenix011.co.rs +pisanieprac.info +pisciculturachang.com.br +piscomacchupichu.com +piski.top +pissingteengirlsfreemovies.blogbugs.org +pitaya-organicos.com +pitbull-video.ujm.pl +pitbullwestcoast.pl +pitchtext.com +piter.xrus.org +pitfield.co.uk +pittsburghcollegelawyer.com +pittsburghpostgazette.112.2o7.net +piuminiita.com +pivot2health.com +piwiarniawarka.opole.pl +piwik.cam-content.com +piwik.datawrapper.de +piwik.denik.cz +piwik.ientry.com +piwik.jccm.es +piwik.medienhaus.com +piwik.mortgageloan.com +piwik.n24.de +piwik.onlinemagasinet.no +piwik.org +piwik.pokerlistings.com +piwik.redtube.com +piwik.wsws.org +pix01.revsci.net +pix02.revsci.net +pix03.revsci.net +pix04.revsci.net +pix24x7.com +pix360.co.nf +pix521.adtech.de +pix521.adtech.fr +pix521.adtech.us +pix522.adtech.de +pix522.adtech.fr +pix522.adtech.us +pixalilyfoundation.com +pix.btrll.com +pixel1097.everesttech.net +pixel1324.everesttech.net +pixel1350.everesttech.net +pixel1370.everesttech.net +pixel1553.everesttech.net +pixel1739.everesttech.net +pixel.33across.com +pixel.adadvisor.net +pixel.adblade.com +pixel.adcrowd.com +pixel.admedia.com +pixel.adsafeprotected.com +pixel.adsniper.ru +pixel.adssafeprotected.com +pixel.advertising.com +pixel-a.sitescout.com +pixel.blog.hu +pixelbox.uimserv.net +pixel.captora.com +pixel.condenastdigital.com +pixelcounter.elmundo.es +pixelcounter.marca.com +pixel.crosspixel.net +pixeled.mx +pixel-eu.rubiconproject.com +pixel.everesttech.net +pixel.facebook.com +pixel-geo.prfct.co +pixel.indieclick.com +pixel.industrybrains.com +pixel.ingest.at.atwola.com +pixel.invitemedia.com +pixel.jumptap.com +pixel.keywee.co +pixell.club +pixel.mathtag.com +pixel.meteora.us +pixel.mtrcs.samba.tv +pixel.newscred.com +pixel.parsely.com +pixel.pcworld.com +pixel.quantserve.com +pixel.realtor.com +pixel.redditmedia.com +pixel.rubiconproject.com +pixelrz.com +pixel-secure.solvemedia.com +pixelservice.apphb.com +pixel.sitescout.com +pixels.livingsocial.com +pixels.mentad.com +pixel.sojern.com +pixel.solvemedia.com +pixel.staticworld.net +pixel.tapad.com +pixel.theagency.com +pixeluae.ae +pixel-us-east.rubiconproject.com +pixel-user-1039.everesttech.net +pixel-us-west.rubiconproject.com +pixel.watch +pixel.wp.com +pixel.yabidos.com +pixel.yola.com +pixgood.com +pix-hd.com +pixiedust.buzzfeed.com +pix.impdesk.com +pix.lfstmedia.com +pix.pulsemgr.com +pix.revsci.net +pixrr.com +pix.silverpush.co +pix.tagcdn.com +pixxur.com +pizarronesmonterrey.com +pizda.lol +pizdopletka.club +pizza24.fr +pizza.com.my +pizzadaily.org +pizza-imperia.com +pizzaspecialle.com.br +pizza-tycoon.com +pizzeria-kinna.se +pizzeriavillagio.se +pizzotti.net +pjlapparel.matainja.com +pk.adlandpro.com +pk-cdn.effectivemeasure.net +pk-entertainment.com +pkfi.net +pkjewellery.com.au +pkmuz.ddns.net +pkpinfra.fi +pkpojhc.com +pk-pomosch.ru +pk-pula.com +pkr1hand.com +pk-services.ru +pks-setiabudi.or.id +pl106067.puhtml.com +pl107977.puhtml.com +pl108062.puhtml.com +pl109504.puhtml.com +pl11074444.puhtml.com +pl120422.puhtml.com +pl12258511.puhtml.com +pl136883.puhtml.com +pl137937.puhtml.com +pl176754.puhtml.com +pl1978.puhtml.com +pl1.slimg0ji-berry.com +pl1.titan-man.pro +pl1.yumenetworks.com +pl2.slimg0ji-berry.com +pl2.titan-man.pro +pl3087.puhtml.com +pl3861661.puhtml.com +pl5102.puhtml.com +pl5318.puhtml.com +pl6429510.puhtml.com +pl.aasoldes.fr +placadegesso.com.br +pladform.ru +pl.ads.justpremium.com +plaff-go.ru +plaidpainting.com +plain.bulkmediatory.com +planebaby.com +planetapokera.ru +planetatierra.cl +planetcancerfree.se +planetdesign3.com +planetout.122.2o7.net +planetronics.in +plank.duplicolor.cl +planmedpanama.com +plantaardigebrandstof.nl +plantapod.com.au +planthisweekend.com +plantinum.de +plants-v-zombies.com +planum.mx +plarium.com +plasma-rent.de +plasmatv4free.com +plasmatvreward.com +plastgranar.nu +plastgran.com +plastiv.com +plastjulgranar.se +plastweb.ru +platads.com +platamones.nl +plate-guide.link +plater-emilii.naszebanki.pl +platesauto.com +platform.communicatorcorp.com +platinum-casino.ru +platinumconstructioncompany.com +platinumcpr.com +platinumdeals.gr +platinumindustrialcoatings.com +platinum-net1.com +platnosc.link +plattangsborste.se +plavix.shengen.ru +play4traffic.com +play.appiq.mobi +playbetshere.com +playboyfiles.xblog.in +playenergy.org +playerassist.com +playerflv.com +player.movenetworks.com +playersaid.com +playersclub.reefclubcasino.com +playfromcolumbiahouse.com +playfuls.uk.intellitxt.com +playgril.com +playhaven.com +playhd.pl +playinvaders.com +playlearnandcare.com +playlink.pl +play-logic-games.com +playlott.com +playmatesfast.com +playmax.co +playmobia.com +playmobileads.com +play.mobsfun.net +play-movie.pl +playmovie.pl +play-mp3.com +playnow.guru +playnowunlimited.biz +play-poker-free.forsearch.net +playsataion.com +playsations.com +playstatation.com +playstoresuggester.com +playtime.tubemogul.com +play.traffpartners.com +play.videosongplayer.com +pl.bbelements.com +pl.betclic.com +pl.bustcream-pro.com +pldbygg.se +pldev.112.2o7.net +pleasedontlabelme.com +pleaseupdate.checkupdateslive.net +please-update-your-paypal-account-informations.ipcamerareports.net +pleasewaitforredirectitm328788733.com +pleimarket.ru +plengeh.wen.ru +pl-engine.intextad.net +pleon-olafmcateer.rs +pleserfu.beget.tech +pl.gmads.net +pl.health-line.me +p.liadm.com +pliczek.pw +pl.id-forex.com +pliki-24.pl +pliki.pw +plikson24.pl +plikson.pl +pliks.pl +plissconfrimfage1222.plisceeksfanspage.tk +plista.com +pl.jetzt-teilnehmen.net +pl.krainabajek.pl +pl.longup.co +plmatrix.com +pl.mevida.me +pl.mysafesmartphone.com +ploaz54.com +plocatelli.com +ploenjitmedia.azurewebsites.net +plohaya-kreditnaya-istoriya.ru +plolgki.com.cn +p.lp4.io +plprockl.com +p.l.qq.com +plr-ebook-shop.de +pl.search.etargetnet.com +plsinativo.com +pl.slimg0ji-berry.com +plsoyfoods.112.2o7.net +pl.spanel.gem.pl +pl.team +pl.testony.com +pl.titan-man.pro +plueschtiere.de +plugandprofit.org +pluggedincommunications.com +plugin.2easydroid.com +plugin.mediavoice.com +pluginx.perfectgonzo.com +plug.plugerr.com +plugrush.com +plugs.top +plumsoftware.co.uk +pluscss.com +plusdance.win +plus.iwon.com +plus.link4link.com +plusnetwork.com +plusonetelecom.com +pluto.adcycle.com +plutopac.com +plvk-power.com +pl-vouchers.com +pl.wizappz.com +pl.yumenetworks.com +plywam-leszno.pl +pm.adsafeprotected.com +pmc-d.openx.net +p.medialytics.com +pmelon.com +pmesantos.com.br +pmetrics.getclicky.com +pmetrics.performancing.com +pmg.ad-logics.com +pmljvu.sisplm.ml +pmodavao.com +pmpltda.cl +pmrconstructions.in +pmstrk.mercadolivre.com.br +pmtturcngosr.com +pm.w55c.net +pn1.adserver.yahoo.com +pn2.adserver.yahoo.com +pncbank.averifier.com +p.nexac.com +pngjmz.misterjoy.ru +pnmgghschool.edu.bd +pnovel.com +pntm.adbureau.net +pntm-images.adbureau.net +p.nxtck.com +poacprod.122.2o7.net +pobeiranie.pl +pobieralnia.com.pl +pobieram-plik.pl +pobieramy-pliki.pl +pobierane.pl +pobierz1234.pl +pobierz-123.pl +pobierz123.pl +pobierz24.pl +pobierz.biz +pobierzebooka.pl +pobierzgo.pl +pobierz-plik24.pl +pobierzpliki.net +pobierzpliki.pl +pobierzplik.net +pobierz.shop.pl +pobierzteraz.mobi +pobraniowo.pl +pocha-navi.com +pochemychka.net +pochtovyi-index.ru +pocketfullofpoems.com +pocketlint.uk.intellitxt.com +poconorecordcom.112.2o7.net +podarunkowartvagd.pl +poderglobal.net +podgladamy.com +podgladfacebokaa.blogspot.com +podgladnijmnie.pl +podiatristcanberra.com.au +pod.infinitypersonals.com +pod.manplay.com +pod.sexsearch.com +podshipniki-nsk.ru +podshipniki-ntn.ru +podzemi.myotis.info +poechan.ga +poechan.ml +poems.com.ua +poffdoc.com +poffet.net +pogi.ga +pogodnyyeavarii.gq +pogruztehnik.ru +pogruz.wanyizhao.net +poiert.science +poilers.stream +pointclicktrack.com +pointectronic.com.br +pointhost.pl +pointroll.com +pointscape.com.sg +pointspermis.fr +poisk-zakona.ru +pojdelo.weebly.com +pojebol.pl +pokachi.net +pokdeng.com +pokemon2k16go.blogspot.com +pokemongoczsk.com +pokemongooo.ml +pokemon-go-pakiety.blogspot.com +pokemonkonkurs.pl +pokemonliquidcrystal.com +pokemonporno.com +pokemon-vip.rdx.pl +pokemonzestaw.pl +poker.cm +poker-games.e-online-poker-4u.net +pokerniydom.ru +pokerpolska.pl +poke-zestaw.pl +pokolorujfb.glt.pl +pokolorujfb.pl +pokolorujfejs.eu +pokrokus.eu +poland3.instant-winner275.online +poland.gift-today85.online +polandsad.com.ua +polaris-software.com +polaris.tns-cs.net +pol.bbelements.com +polcin.de +poldk.nuggad.net +pole.6rooms.com +polecieli.pl +polemecatech.be +police11.provenprotection.net +police-fbi.securityservice.review +policyforlife.com +policy-updatos.com +polimentosindependencia.com.br +polinef.id +poliomielite.it +politicalheadlines.com +politicalopinionsurvey.com +politicsresources.info +polkawlesie.blogspot.com +pollserver.interpolls.com +pollys.design +polnolunie.com +polrn.com +polsatboxingnight-transmisjahd.ujm.pl +polska-nagroda.off.ltd +polskasupermarkecie.website +polska.travel.pl +polskiecolorado.com +polskieinfo365.wordpress.com +polskiemieso.eu +polub.co +polybuild.ru +polycliniqueroseraie.com +polyseed.my +polytopesexempt.com +pomeranian99.sitetracker.com +pomfjaunvb.scrapper-site.net +pomoc-drogowa.cba.pl +pomosh-stydenty.ru +pompenation.com +pomtbmbub.top +poneytours.com +pong.qubitproducts.com +pons-presse.com +pontevedrabeachsports.com +pontiacsolstice.info +pontosmilies.com +pony-business.com +poojaprabhudesai.com +pool.adhese.be +pool.adhsm.adhese.com +pool.admedo.com +pool.ads.netlog.com +pool-colruytgroup.adhese.com +pool.dichtbij.adhese.com +pool.euroads.no +pool-nrc.adhese.com +pool.nrc.adhese.com +pool.pebblemedia.adhese.com +pool.persgroep.adhese.com +pool-roularta.adhese.com +pool.roularta.adhese.com +pool.sanoma.adhese.com +poort.pl +pop3.leanstepup.com +pop6.adultfriendfinder.com +pop.adrent.net +popadscdn.net +popads.ero-advertising.com +popads.net +popander.mobi +popcapgames.122.2o7.net +popcash.net +popclick.net +popcounter.com +popdirt.us.intellitxt.com +pop.dnparking.com +pop.egi.biz +popfill.us.intellitxt.com +popflawlessads.com +popfree.adultcash.com +pop.hamnail.net +popissuesolved.co.in +popit.mediumpimpin.com +popmarker.com +popmyads.com +popmycash.com +pop.net21pk.com +popoholic.us.intellitxt.com +poponclick.com +poponthepop.us.intellitxt.com +poppen-nw.net +poppers-rush.ru +pop.redirect.adsjudo.com +pop.revimedia.com +popsci.com.122.2o7.net +pops.ero-advertising.com +popserve.adscpm.net +pops.velmedia.net +poptm.com +poptones.com +poptool.net +popub.com +popularmechanics.us.intellitxt.com +popunder.adsrevenue.net +popunder.com +popunder.fpctraffic.com +popunder.loading-delivery1.com +popunder.net +popunder.paypopup.com +popunder.popcde.com +pop-under.ru +popunder.ru +popupclick.ru +popupdelete.in.net +popupdomination.com +popup.matchmaker.com +popupmoney.com +popup.msn.com +popupnation.com +popup.oxcash.com +pop-up-remove.in.net +popups.ad-logics.com +popups.afftrack001.com +popups.infostart.com +popup.softreklam.com +popup.taboola.com +popuptraffic.com +popuptraf.ru +pop.zompmedia.com +poquoson.org +poraodigital.com.br +porcmistret.for-our.info +porjoipas.it +pormi.com +porn555.com +pornban.net +pornbrases.com +porndairy.in +porngalleries.top +porn-girls-nude-and-horny.com +porngraph.com +pornhub-forum.ga +pornhubforum.tk +pornhub-forum.uni.me +pornhub-ru.com +pornmania.pl +porn.mtree.com +porno24-dom.ru +pornoalpha.com +pornoblood.com +pornobrazzers.biz +pornodojd.ru +porno-dojki.net +pornofiljmi.com +porno-flatrate.net +pornoforadult.com +pornogig.com +pornokajf.com +pornoklad.net +pornoklad.ru +pornokorol.com +pornolab.pw +pornolook.net +pornophoto.xyz +porno-play.net +porno-raskazy.ru +pornosee.info +pornosexovideos.com +porno.simple-image.com.ua +pornoslive.net +porno-transsexuals.ru +pornotubexxx.name +pornpost.in +pornstar-candysue.de +pornstarspic.com +pornstarss.tk +pornstartits.xblog.in +porntrack.com +porntraff.com +porn-w.org +pornxxx3.com +pornzone.tv +porodasobak.net +porschecosv.com +portablevaporizer.com +port.aconti.net +portadd.men +portailfree.net +portail-mobile-free-e-secure.com +portal.100am100.kz +portalangels-1.pop3.ru +portalangels.pop3.ru +portalatualizacao.com +portaldeanuncios.com.br +portal-de-desbloqueio.com +portaldenoticias9055.com.br +portal.dvlove.com +portal-eu.ru +portalfiremasters.com.br +portalgrupobuaiz.com.br +portaliaf.com.br +portallsmiles.com +portalmobillebb.com +portal-mobvi.com +portalrodzinny.pl +port.bg +portfund.com +porthuenemeflorist.com +portnoff.od.ua +porto.abuilder.net +portosalte.com +portraitphotographygroup.com +portraitquest.com +portside.cc +portside.xyz +portssltcer.com +portuense.it +portuguesehotels.com +port.wayserve.com +posadalasoniada.com.ar +pos.baidu.com +posed2shade.com +poshiv-chehol.ru +posible.net +positive2b.ru +positivebarperu.com +positive-displacement-meter.com +positiv-hiv-aids.de +positivity.it +pos-kupang.com +pospr.waw.pl +possibleboats.com +post-1jp.com +posta.andriake.com +postbank.488-s8.usa.cc +postbox.mos.ru +postchronicle.us.intellitxt.com +postclass.com +postclick.adcentriconline.com +post.creatingaccesstoushere.com +posteitalianeevolution.com +posteitalianemobile.com +posteitalianeverifica.com +postepay-bpol.it +postepay-evolution.eu +poster.gamesprite.me +poster-op2joygames.me +postesecurelogin.porcmistret.for-our.info +postesecurelogin.posta.it.bancaposta.foo-autenticazione.fkejmqrkp4i8n5dq9jbfs8kfycxwvl72waairixkqunly5k96fq4qwrsjedv.porcmistret.for-our.info +postesecurelogin.posta.it.bancaposta.foo-autenticazione.mvi4izlrmiobltodxr5e2un7zinkx6xidqtry6zdxbxm6utzpyqjbnzk2k8w.porcmistret.for-our.info +postesecurelogin.posta.it.bancaposta.foo-autenticazione.mxq97svectqmg0rvr1jb4fd37d1indvp2cnyuj4xskjyjrk1it3bo64kzutd.porcmistret.for-our.info +postesecurelogin.posta.it.bancaposta.foo-autenticazione.porcmistret.for-our.info +postesecurelogin.posta.it.porcmistret.for-our.info +postesecurelogin.randomstring.porcmistret.for-our.info +postgazettecollect.247realmedia.com +posthen.com +posthostandshare.com +postimees.spring-tns.net +postit.usa.cc +postmasterdirect.com +postmedia.demdex.net +post.netchina.com.cn +postosmpf.com +postquampro.com +postrelease.com +post.rmbn.ru +post.securestudies.com +posttimg.org +potalacrafts.com +potamitis.gr +potbnb.com +potenza.cz +potoideas.us +potrosac-in.org.rs +potvaporizer.com +pousadaalohajeri.com.br +pousadadestinocerto.com.br +pousadajuventudedobranco.com.br +pousadapontalparaty.tur.br +pousadaventosul.com +poverty.tutoner.tk +powabcyfqe.com +powellsbooks.122.2o7.net +powenlite24.ru +power.bestconstructionexpertwitness.com +powercms.ru +power.info.com +powerkeepers.net +poweronemedia.122.2o7.net +powerplanting.com +powershopnet.net +power-surge.com +powertoolsbyterri.com +powerturk.rocks +powitania.pl +powr-counter.herokuapp.com +powwowok.com +poyday.com +pozdrav-im.ru +pozdravleniya-c.ru +pozdrawleniya.com +pozdrawleniya.ru +pozvonim.com +pozyczka-minutowa.pl +pp2.pptv.com +ppactivity-protectyouraccount.com +ppbrazil.com.br +pp-budpostach.com.ua +ppcexpertclasses.com +ppc-parked.domainsite.com +pp-data-service-de.info +pp-daten-de.ga +pp-daten-de.gq +pp-daten.ga +pp-daten.gq +pp-de-identitatsbestatigung.ga +pp.free.fr +pp-genius.de +pp-ger-de.germanger-verifyanfrage.ru +pp-identitatsbestatigung.cf +pp-identitatsbestatigung.ga +ppintl-service-limited-access-cgi-ssl.com +ppjm.unnes.ac.id +pp-kundensicherheit.com +ppl3.pl +p.placemypixel.com +pple.com.virus-mac.com +pplverified.com +pp.nrelate.com +ppoi.org +ppout.net +pp.pplproblems.com +pppurdu.org.pk +pprincparts.com +pprivate.suncappert.com +p.profistats.net +p.promocionesparati.com +pp-secure-de.gq +pp-secured.ssl.ssl-pp-secure.com +ppsoul.com +pp-support-de.gq +pp-support-service-de.gq +pp-support-service.gq +p.publico.es +pp-user-security-de.ga +pp-user-security-eu.cf +pp-verification-93018.ga +pp-verifizierung.info +ppwahidhasyim.com +p.pxl2015x1.com +pq-direct.revsci.net +pq.stat.ku6.com +pqwaker.altervista.org +pr0fit-b0x.com +pr.20min.es +pr.5.p2l.info +p.raasnet.com +praceline.com +pracomecarmusicbar.com.br +practicaldocumentstament.com +practicetoothpaste.com +practitionerconnect.com.au +pracuj.adocean.pl +pracuj.hit.gemius.pl +pradakomechanicals.com +praddpro.de +pradeepgyawali.com.np +praga17.energosp.idl.pl +pragatiestates.com +pragatiwebbranding.com +pragmaticinquiry.org +praisong.net +prajwelcome.com +prakashlal.com +praktischertipp.de +praktycznaszkolabiznesu.pl +prantikretreat.in +prataconstrutora.com.br +prateleiraseacessorios.com.br +pratiquesaude.com +pratutor.com +pr.atwola.com +pravoholding.ru +prawdziwyrozwoj.pl +praximoto.se +praxisww.com +prayogispl.in +prchecker.info +prciousere.com +pr-cy.ru +preapprovedloansoffline.kz +preapprovedloansonline.kz +prebid.districtm.ca +precallege.com +precatelan.pw +precisioncounter.com +precytec.com.ar +predfe.com +predictad.com +predictiondisplay.com +predictivadnetwork.com +predictivesearch.com +predioplus.com +predominant-invent.tk +prefer.gutterhelment.com +prefersurvey.net +prefix.hit.gemius.pl +prefix.payhelping.com +pre.footprintpredict.com +preg.marketingvici.com +pregnancycalendar.co.in +pregnant.guru +preisrobotr.de +preland.softmonetize.com +preligions.com +premia.com +premier-one.net +premiertransitions.com +premioagol.it +premium.ascensionweb.com +premiumdxb.com +premiumholidayoffers.com +premiumlink.7tools.eu +premium-live-scan.com +premium.mookie1.com +premium-offers.com +premiumpedia.com +premiumproductsonline.com +premium-reward-club.com +premium.trackermaterial.xyz +premiumtv.122.2o7.net +premiumvideoupdates.com +preparevideosafesystem4unow.site +preparevideosafesystem4unow.space +preparufinotamayo.com +preramet123.name +presbiteriodecampinas.com.br +preschooltc.com +prescription-drugs.easy-find.net +prescription-drugs.shengen.ru +presencefrominnovation.com +presence-pc.fr.intellitxt.com +presentation-atl1.turn.com +presentedopapaiamericanas.com +preservisa.cl +presetrabbits.com +president-ceo.riverbendchalets.co.za +presleywebs.uk.pn +presse.grpvessel.com +presse-mediaspar-tv.de +pres.serverhome.com +pressmagazine.eu +presspig.com +pressurespot.com +prestigecoachworks.co.uk +prestigeservices.gq +prestitoprotestati.it +prestoris.com +preteenland.com +preteensite.com +prettyandgreen.se +prettyboring.us.intellitxt.com +pretty-mart.com +p.reuters.com +prevacid.1.p2l.info +prevent-asian-flu.com +preventheadacheguide.info +preventine.ca +preventionsante.com +preventivogratuito.it +preview.leadmediapartners.com +preview.licenseacquisition.org +preview.msn.com +previonacional.com +prexyone.appspot.com +prezent.odchudzaniezpasja.pl +prezentowo.org +prezenty-pl.info +pr-fahad.com +p.rfihub.com +pribadys-support10.business +priccey.000webhostapp.com +pricemistake.com +pricheski-video.com +pridesource.advertserve.com +pride-u-bike.com +priestlakeuncorked.com +prieurecoussac.com +priiceline.com +prilosec.1.p2l.info +prima-f.de +primaryads.com +primeassociatesinc.com +primediabusiness.122.2o7.net +primemensfitness.112.2o7.net +primepolymers.in +primeproducoes.com.br +primestarmagazine.112.2o7.net +primetime.ad.primetime.net +primetime.net +primetimesolutions.tt.omtrdc.net +primosearch.com +pringlepowwow.com +printcalendars.com.au +printdirectforless.com +printerplastics.com +printinginn.com.pk +printingpeach.com +printingpune.in +print.khingtracking.com +print-kom.com +printmail.biz +printmakingonline.com +printondemandsolution.com +printouch.com +printquote.co.za +printronix.net.cn +priora-2.com +prisacom.112.2o7.net +priscillaschool.com +prismjobs.in +priusonline.us.intellitxt.com +privacyassistant.net +prival.co +privatamateure.com +privatbank46.ru +privatcamvideo.de +privatebay.se +privatecash.com +privateci.com +privatecustomer-support.com +privatedni.com +privatefx.all4invest.info +privatefx-in.ru +private.hotelcesenaticobooking.info +private-id.tk +private.ie +privaterealestatelending.com +privatewealthgroup.asia +privatex.io +privateyorkcardiologist.co.uk +privat-girl.net +privatkunden.datapipe9271.com +privatov-zapisi.ru +privatzimmer-harz.de +privdog.com +prive-paneel.eu +prive-parool.nl +privhosting.com +privitize.com +prize44.com +prizeestates.cricket +prizefestival.mobi +prizemachine.games.iwon.com +prizesbook.online +prizes.co.uk +prizestohandle.club +prjcq.com +prk.firstconf.3gb.biz +prlog.ru +prm.europacash.com +prm-ext.phorm.com +prnewswire.122.2o7.net +proactiveacademybd.com +pro.adulttubeporno.com +pro-advertising.com +pro-alpinisty.ru +proanalytics.cn +proastrohouse.ru +probablyreport.net +probably.space +probes.cedexis.com +probestsale.su +probe.yieldlab.net +problemfanpage.problemhelp.ga +pro-blog.com +probolan50.pl +procalidad.giz.pace.org.gt +proceedcollected.com +procheckpagezi.hol.es +procholuao.com +pro.clanweb.cz +proco.no +procsa.es +procuradores-elche.com +prod2016.com +prod-abc.ro +prodctsfemco.com +prod-d.openx.com +prodesign-furniture.com +prod-e.sprtad.com +prodess.ru +prod-js.aws.y-track.com +prod-services.interactiveone.com +producm.ru +productarium.com +production.chosenchurch.divshot.io +productiondoc19.org +productivity-engineering.com +productopinionpanel.com +productpartnersllc.tt.omtrdc.net +productresearchpanel.com +product-reviews.uk.intellitxt.com +products-gold.net +producttestpanel.com +produkto.net +produla.czatgg.pl +prodvigator.ua +proekt-gaz.ru +proekt-mos.ru +proeventos.pe +proext.com +prof.beta.estat.com +profbhack.com +profero.com +profesionalni.date +profesorparticular.es +prof.estat.com +proficientnewyorkconstruction.com +profigera.pt +profileawareness.com +profiles.hitslink.com +profileszpieg.pl +profile.uproxx.com +profileuserappsioscanad.is-leet.com +profiling.avandor.com +profiling.veoxa.com +profi-ska.ru +profitboosterapp.com +profitkode.com +profitmaximizer.co +profit-opportunity.com +profitrumour.com +profitshare.bg +profitshare.emag.ro +profitshare.ro +profitsitesbiz.com +proflashdata.com +profl.org.za +profm.count.brat-online.ro +profolan.pl +profootballweekly.us.intellitxt.com +profosinubi.org +proftests.net +prof.youandmeandmeandyouhihi.com +progettocrea.org +prognari.com.ng +programasmiles.com +programasmlles.com +programdarmowy.pl +programmerpsw.id +programmerworld.us.intellitxt.com +programme-tv.fr.intellitxt.com +programtotalatoma.esy.es +programyfb.blogspot.com +programyhakerskie.pl +progressiveengrs.com +progress-upakovka.ru +pro.hit.gemius.pl +pro.hit.stat24.com +prohoster.info +prohouselkv.com +pro.i-doctor.co.kr +prointer.net.ua +pro.ip-api.com +project2.realtracker.com +projectangra.com +projectforte.ru +projectmanagementmethodologies.com.au +projectnet.sineti.com +projectorpeople.112.2o7.net +projector-rental.iffphilippines.com +projectorreviews.advertserve.com +projectorreviews.us.intellitxt.com +projectrenewals.info +project-romania.com +projects.globaltronics.net +projectv.info +projectwonderful.com +projectw.skimlinks.com +projefrio.com.br +projekthandel.de +projekt-tester.club +projetomagiadeler.com.br +projex-dz.com +prokennexbadminton.com +prokino.pl +prokotov.com +prolabrx.com +prolapseman.com +pro-las.com.tr +pro.letv.com +prolockers.cl +prom23.ru +promable.com +promalp-universal.ru +pro.marinsm.com +prombudpostach.com.ua +prom.ecato.net +promgirldresses.xyz +promisingnews24.com +promo1.webcams.nl +promo.awempire.com +promo.badoink.com +promo.begun.ru +promobenef.com +promo.betcity.net +promo.bongacash.com +promo.cams.com +promocaonatalina.com +promocaopassagensaereas2016.com +promocionesparati.com +promo.cityads.ru +promo.clickcash.com +promo.clicnscores.com +promocliq.com +promocoesp.sslblindado.com +promo.content.premiumpass.com +promodj.com +promo.easy-dating.org +promofax.co.uk +promoferta.pl +promoforum.ru +promo.freshdirect.com +promo.hdvbucks.com +promoheads.com +promo.intuitext.ro +promo.lifeselector.com +promo.lonelywifehookup.com +promo.love-money.de +promo-max.pl +promo-m.bongacash.com +promo.mes-meilleurs-films.fr +promo.mobile.de +promontime.com +promo.passioncams.com +promo.pimproll.com +promosamericasmotox.pixub.com +promos.camsoda.com +promo.sensationalcash.com +promoserver.net +promos.fling.com +promos.meetlocals.com +promos.naked.com +promo.streaming-illimite.net +promo-studio.ru +promos.wealthymen.com +promote-bz.net +promotelovemovement.com +promote.pair.com +promotion-campaigns.com +promotion.com-rewards.club +promotion.partnercash.com +promotion.partnercash.de +promotions.betfred.com +promotions.monthlywinners.com +promotions.yourfirstmillion.biz +promotools3.globalmailer.com +promotools4.globalmailer.com +promotools.globalmailer.com +promotools.islive.nl +promotools.vpscash.nl +promotrucks.com +promo.twistyscash.com +promo.ulust.com +promover.org +promoviral.com +promo.webmasterprofitcenter.com +promo.worldprofitcenter.com +promwhat.ml +pronekut.com +pronetadvertising.com +pro-networks.us.intellitxt.com +pronorm.fr +pron.pro +prontoapoio.com +proof-of-payment-iphone.com +pro-okis.ru +propanegrills.biz +proparty.altervista.org +propecia.1.p2l.info +propellerads.com +propellerpops.com +propermedia-d.openx.net +propertologie.com +property1.gdmachinery.net +propertybuyerfiles.us +propertygo.biz +propertymanagementoffice.com +property-place.com +propertyservicesqueenstown.co.nz +propertyxchange.pk +prophettothenations.org +proportionalgames.com +proposal-engine.com +proposalnetwork.org +proposal.tw +propro.mystagingwebsite.com +proprostatit.com +propties.com +proptysellers.co.za +proradio.org +proranktracker.com +proresultsrealestate.com +prorodeosportmed.com +pro-schiesssport.de +prosdyuqnsdwxm.intend-incredible.ru +prosearchs.in +prosecomm.com +prosieben01.webtrekk.net +prosisoma.com.co +prosistech.net +prosmibank.ru +prosninas.org +prospeaker.com +prosperent.com +prosperity.charifree.org +prosperityhangout.com +prosperitysolutions.in +prostatic-protests.000webhostapp.com +prostavor.co.za +prostitutki-almata.org +prostitutki-astana.org +prostitutki-belgoroda.org +prostitutki-kharkova.org +prostitutki-kiev.org +prostitutki-novgoroda.org +prostitutki-odessa.org +prostitutki-rostova.org +prostitutki-tolyatti.org +prostitutki-tyumeni.org +prostitutki-yaroslavlya.org +protal.discover.com-account-security.prolecare.com +protecaccountamik.000webhostapp.com +proteccao24h.pt +proteccionydefensassdi.com +proteckaccounts15621484.000webhostapp.com +protect.advancedcleaner.com +protectfillaccount.com +protection201-account.6827-update.team.com8serv1130.webs001231cr-cm-lgin-submmit-id99-l0gin-submito9-id.ppi11781-lo0gin-loogiin-2578901.ap.serv15676.betatem.com +protection32.in.net +protection.alpolice.com +protection.aspolice.com +protection.aupolice.com +protection.azpolice.com +protection.bspolice.com +protection.btpolice.com +protection.bypolice.com +protection.capolice.com +protection.ccpolice.com +protection.dkpolice.com +protection.espolice.com +protection.frpolice.com +protection.fxpolice.com +protection.gapolice.com +protection.grpolice.com +protection.hkpolice.com +protection.hnpolice.com +protection.idpolice.com +protection.ilpolice.com +protection.iqpolice.com +protection.itpolice.com +protection.itpolice.net +protection.jmpolice.com +protection.kppolice.com +protection.kypolice.com +protection.lapolice.com +protection.lapolice.net +protection.lbpolice.com +protection.lcpolice.com +protection.lipolice.com +protection.lrpolice.com +protection.lspolice.com +protection.lvpolice.com +protection.mapolice.com +protection.mcpolice.com +protection.mdpolice.com +protection.mepolice.com +protection.mnpolice.com +protection.mopolice.com +protection.mspolice.net +protection.napolice.com +protection.napolice.net +protection.ncpolice.com +protection.nzpolice.com +protection.papolice.com +protection.pfpolice.com +protection.pgpolice.com +protection.phpolice.com +protection.pkpolice.com +protection.prpolice.com +protection.ptpolice.com +protection.sbpolice.com +protection.scpolice.com +protection.sdpolice.com +protection.secure.confirmation.fbid1703470323273355seta.1375333179420406.10737418.smktarunabhakti.net +protection.sipolice.com +protection.skpolice.com +protection.stpolice.com +protection.tkpolice.com +protection.tnpolice.com +protection.topolice.com +protectionupdatecenter.com +protection.vapolice.com +protection.vipolice.com +protectsoft.pw +protectssqt.com +protect-x.com +protectyouraccount.grupoprovida.com.br +protect-your-privacy.net +proteina.mx +protintfl.com +protizer.ru +protonix.shengen.ru +proton-tm.com +protraffic.com +protvadmd.hit.gemius.pl +protvmd.adocean.pl +proudclick.com +provacripisa.altervista.org +provenfeedback.com +provexia.com +provideplant.com +providermn.com +provisa.com.mx +provisionhop.de +provitpharmaceuticals.com +provmen.com +prowiders.com.pk +proximityads.flipcorp.com +proxy.blogads.com +proxycfg.marketscore.com +proxyelite.biz +proxy.ia2.marketscore.com +proxy.ia3.marketscore.com +proxy.ia4.marketscore.com +proxy.kobatochan.co +proxy.or3.marketscore.com +proxy.or4.marketscore.com +proxyradar.com +proxysite.org +proxy.sj3.marketscore.com +proxy.sj4.marketscore.com +proxy.softonicads.com +proxy.ticbeat.co +proyecto-u.webcindario.com +prpops.com +prpsolutions.in +pr.realvu.net +prriceline.com +prscripts.com +prsitecheck.com +pr-star.de +prstats.postrelease.com +prtscrinsertcn.net +prudentialverani.com +prx1gv.top +pryanishnikov.com +pr.ydp.yahoo.com +pryszcz-wideo.blogspot.com +przelicznikczasufb.pl +przepismix.pl +przyjacielska.pl +przyspieszkomputer.pl +przyspiesz.pl +ps2.ign.us.intellitxt.com +ps2.interpolls.com +ps3news.us.intellitxt.com +ps7894.com +psa48.ru +p.securedownload01.com +ps-eu.amazon-adsystem.com +ps.eyeota.net +psgteel.com +psialapka.pl +psicologiadellaudiovisivo.it +psicologia-online.com +ps.interpolls.com +pskcijdc.bloger.index.hr +pslan.kiev.ua +psline.com +psn-code.eu +psn-codes-generator.com +psn-code.xyz +ps.ns-cdn.com +psooz.tourstogo.us +psorias.atspace.com +psoriasis-file.trade +psp3d.us.intellitxt.com +pspaypal.co.uk +pspblog.ru +pspcave.uk.intellitxt.com +psp.ign.us.intellitxt.com +psppassion.com +psqmftmj.pw +pssepahan.com +psstt.com +pssucai.info +pst2017.onlinewebshop.net +pstatic.datafastguru.info +pstatic.davebestdeals.com +pstats.blogworks.com +ps-us.amazon-adsystem.com +psvita.ru +psx.ign.us.intellitxt.com +psychologisthennig.com +psy.mtree.com +psy-ufa.ru +pt21na.com +ptads.sv.publicus.com +ptairconditioning.co.za +ptano.cf +ptano.gq +ptarepjx.com +ptatllc.com +ptcbristol.com +ptewh.iptvdeals.com +ptgame.eu +pticket.co +ptidolaku.id +ptool.barginginfrance.net +p.toourbb.com +ptp4ever.net +pt.peerius.com +ptpgold.info +ptrads.mp3.com +ptreklam.com +ptreklam.com.tr +ptreklamcrv.com +ptreklamcrv.com.tr +ptreklamcrv.net +ptreklam.net +ptreklamssp.com +ptreklamssp.com.tr +ptreklamssp.net +ptron.de +ptrrecordss.com +pts163.ru +pt.trafficjunky.net +pttsite.com +ptuph.barginginfrance.net +ptush.iptvdeals.com +p.twitter.com +pub12.bravenet.com +pub13.bravenet.com +pub16.bravenet.com +pub17.bravenet.com +pub23.bravenet.com +pub26.bravenet.com +pub27.bravenet.com +pub28.bravenet.com +pub29.bravenet.com +pub2.bravenet.com +pub30.bravenet.com +pub31.bravenet.com +pub34.bravenet.com +pub39.bravenet.com +pub40.bravenet.com +pub42.bravenet.com +pub43.bravenet.com +pub45.bravenet.com +pub47.bravenet.com +pub49.bravenet.com +pub50.bravenet.com +pub7.bravenet.com +pub9.bravenet.com +pubads.g.doubleclick.net +pub.chez.com +pub.clicksor.net +pub.club-internet.fr +pubdirecte.com +pub.ftv-publicite.fr +pub.hardware.fr +pubimgs.sapo.pt +pubish.com +publiads.com +public2.zz.ha.cn +publicandolo.com +publicationsunbound.112.2o7.net +public.co.uk +publicidad.adlead.com +publicidad.elmundo.es +publicidad.entelchile.net +publicidades.redtotalonline.com +publicidadyrecursos.com +publicis.adcentriconline.com +publicsouq.com +publir-d.openx.net +publish.bonzaii.no +publishers.adscholar.com +publishers.bidtraffic.com +publishers.brokertraffic.com +publishers.clickbooth.com +publishers.domainadvertising.com +publishing.kalooga.com +publishpartners.com +pubmatic.com +pub.oxado.com +pub.pgssl.com +pub.realmedia.fr +pub.sapo.pt +pubs.hiddennetwork.com +pubshop.img.uol.com.br +pubs.lemonde.fr +pubs.mgn.net +pub.softonic.com +pub.sv2.biz +pubted.com +pub.ticbeat.co +pub.weatherbug.com +pub.web.sapo.io +pubx.ch +pudukkottai.in +puenteaereo.info +puertovallartamassage.com +puertovarasflyfishing.com +pufip.com +puhtml.com +pukaporn.com +pulharktheherald.112.2o7.net +puliquan.com +puliyampillynamboothiri.com +pulkauaiworld.112.2o7.net +pulpantagraph.112.2o7.net +pulsarchallengeforum.com +pulse33.ru +pulseonclick.com +pulsewebhost.com +pulsix.com +pulso.butlerelectricsupply.com +pultheworldlink.112.2o7.net +pumax.eu +pumipups.com +pumpkin.brisik.net +pumpkin.co.uk +punchjump.us.intellitxt.com +punch.race.sk +puncturewala.in +pungu.co.id +punjabheadline.in +punkty-karne.pl +punset.com.mx +puntoygoma.cl +pu.plugrush.com +puppy-dog.ru +puppytoob.us.intellitxt.com +purchase.hut1.ru +purchasepillsnorx.com +pureadexchange.com +pureandsimpleways.com +purebanquet.com +purefuck.com +pureherbs.pk +pure.hitbox.com +pureleads.com +purenaturalshop.ru +purethc.com +purgecolon.net +puroclean.com +purplesphere.in +purplestats.com +purplesteel.com +purredheanb.online +purryowl.com +purseagency.tk +puserving.com +push-ad.com +pushdata.sendpulse.com +push.poptm.com +pussl10.com +pussl11.com +pussl12.com +pussl13.com +pussl14.com +pussl15.com +pussl16.com +pussl17.com +pussl18.com +pussl19.com +pussl20.com +pussl21.com +pussl22.com +pussl23.com +pussl24.com +pussl26.com +pussl27.com +pussl28.com +pussl29.com +pussl2.com +pussl30.com +pussl31.com +pussl32.com +pussl33.com +pussl34.com +pussl35.com +pussl36.com +pussl37.com +pussl38.com +pussl3.com +pussl4.com +pussl5.com +pussl6.com +pussl7.com +pussl8.com +pussl9.com +pussyfleet.com +pussygreen.com +pussysaga.com +putags.com +puteshestvennik.com +putevka24.ru +putitin.me +putlockers.ist +pu.trafficshop.com +putrr10.com +putrr11.com +putrr12.com +putrr13.com +putrr14.com +putrr15.com +putrr16.com +putrr17.com +putrr18.com +putrr19.com +putrr20.com +putrr2.com +putrr3.com +putrr4.com +putrr5.com +putrr6.com +putrr7.com +putrr8.com +putrr9.com +putty.ch +puush.in +puzo2arbuza.ru +puzzlesgaming.com +puzzleweb.ru +pvc-gumlac.de +pvgfdgv.com +p.vibrant.co +pvmotors.in +pvmultimedia.net +pvpub.paruvendu.fr +pvspark.com +pv.wantsfly.com +pw0.pl +pw.cnzz.com +pweaatek.com +pwfurnishings.com +pwgfabrications.co.uk +pwinsider.us.intellitxt.com +pwmsteel.com +pwp.netcabo.pt +pwrfcia.com +pwvita.pl +pwwysydh.com +pwzn9ze.com +px10.net +px1alsry.com +px24.com +px.adhigh.net +px.admonkey.dapper.net +px.cdn.creative.medialytics.com +pxc.otto.de +px.dynamicyield.com +pxhdwsm.com +pxl.ibpxl.com +pxl.pmsrvr.com +px.moatads.com +px.owneriq.net +px.splittag.com +px.steelhousemedia.com +py100.ru +pybul.bestfrozenporn.nl +pyna.in +pypl-contact.com +pypl-premium.com +pypl-service.com +pyq6n.com +pyramidlitho.webs.com +pyrodesigns.com.au +p.zeroredirect.com +pzubiegnowychidei.pl +q1k.ru +q1mediahydraplatform.com +q28840.nb.host127-0-0-1.com +q2thainyc.com +q459xx.com +q8d.com.pl +q993210v.bget.ru +qabbanihost.com +qacupuzute.angelcities.com +q.admob.com +qalab.com.au +qantasfly.com +qap.it +qa.stats.webs.com +qaykb.com +q.azcentral.com +qbedding.co.za +q.b.h.cltomedia.info +qbhcsope.com +qbridesmaid.com +qc.5.p2l.info +qcexample.com +qci.me +qcs-inc.com +qcstrtvt.bloger.index.hr +qctop.com +qdae.com +qds.count.brat-online.ro +qdx.it +qenabled.com +qeqirndtj.top +qexyfu.bugs3.com +qfsstesting.com +qgmmrvbqwlouglqggi.com +qgptqqsu.info +qgsruo.com +qgtjhw.com +qhhxzny.gov.cn +qihv.net +qihxhorqtorq.com +qii678.com +qikdownloads.com +qip.magna.ru +qip.ru +qitmall.com +qitrck.com +qitt.ru +qivtmiooxibi.com +qjdlk.info +qjex.net +qjjto.com +qj.us.intellitxt.com +qkie.com +qksrv.com +qld10000.net +qlipso.checkm8.com +qlipsodigital.checkm8.com +qlog.adap.tv +qlrlzy.com +qmjxancorml.com +q-moto.ru +qmvzlx.com +qmx7.pl +qmzpvfmbx.top +qnsr.com +qoldensign.net +qpodgladacz.glt.pl +qponn.net +qpszrmcni.top +qpwflleg.com +qpxepj.com +qpypcx.com +qq6500.com +qqbabytrading.com.my +qqewfjdp.angelcities.com +qqjay2.cn +qq.kyl.rocks +qqlogo.qq.com +qqmeise.com +qqxxdy.com +qqzc.info +qqzhanz.com +qra0ct.top +qrcdownload.ibcustomerzone.com +qring-tms.qq.com +qrkwlhmq.net +qshfwj.com +qs.ivwbox.de +qs.oewabox.at +qss-client.qq.com +qs.wemfbox.ch +qtcoxqffeefb.com +qto.reprintingstakeholder.com +qtwu1.com +quad-cleaner.com +quadhifi.nl +quadmoney.co.zw +quadpro.in +quad-registry-cleaner.softonic.fr +quad.yadro.ru +quaintcan.com +quakershilltyres.win +qualifiedourspecialoffer.com +qualitop.com +qualityair.bm +qualitygalfa.com +quality.gold +qualityindustrialcoatings.com +qualitymarketzone.com +qualityponno.com +qualityporn.biz +quality-traffic.com +quallpac.com +qualtrrics.com +quangcaons.com +quantcast.com +quanticausinagem.com.br +quantserve.com +quantumhelios.com +quantumwomanentrepreneur.com +quareclk.com +quarkkeulchen.de +quarterserver.de +quartzslabchina.com +quatanggarenavn.com +qubble.com +quebec-bin.com +quebec-franceteam.com +quedesastre.cl +quee4wa.top +queenpharma.com +queenstand.net +quei1ai.top +quelle.ru +quenotelacuelen.com +quentumabintl.com +queqer.com +questaffiliates.net +questiacom.112.2o7.net +question2answer.com +questionmarque.ch +questsoftware.112.2o7.net +quickapps.in.net +quickbrowsersearch.com +quickbuck.com +quickcashlimited.com +quickcash-system.com +quickcreditscore.co.uk +quick-decor-dz.com +quickdownload.in.net +quickfeetmedia.com +quickfilmz.com +quick-helpme.net +quickloanbank.com +quick-offer.com +quickpayportaal.com +quickpwn.us.intellitxt.com +quicksandear.com +quick-seeker.com +quickupdateserv.com +quickvids.ml +quierochat.co +quigo.com +quik2link.com +quik-serv.com +quiltsr4u.com +quimicaindustrialsolidaridad.com +quindecim.de +quinnwealth.com +quinst.com +quinstreet.us.intellitxt.com +quirkycoolliving.com +quisma.com +quitefilm.com +quit-smoking.ga +quiz-fun.com.my +quizletapp.com +quiznow.pl +quizzitch.net +quizzstar.com +quoo4ae.to +quoo4ae.top +quoo5ie.bid +quoram.com +quoteschronicle.com +quotidiennokoue.com +qvam.gr +q-venture.com +qvjql3e.com +qvvksmeemfgd.com +qw2-we.cashixirbozdur.com +qwarckoine.com +qwas0.trackvoluum.com +qwebirc.swiftirc.net +qwepa.com +qwer3.pl +qwesa.ru +qwesite.com +qwestfull.112.2o7.net +qwotozvolhpwfpwg.com +qxfbduci.net +qxkkey.com +qxyl.date +qybabit.com +qy.corrmedic.ru +qyingqapp.com +qyltdokofljh.com +qywptqqofpql.com +q.zeroredirect.com +qz.informs.com +qzip.cjb.net +r01.ibg.bg +r0218.rsstatic.ru +r11---sn-p5qlsnzk.googlevideo.com +r17---sn-vgqsenes.googlevideo.com +r1.ace.advertising.com +r1-ads.ace.advertising.com +r1.affiliatefuel.com +r1.literotica.com +r1---sn-vgqsen7z.googlevideo.com +r1.sn-vgqsen7z.googlevideo.com +r1.zedo.com +r20---sn-vgqs7ne7.googlevideo.com +r20.sn-vgqs7ne7.googlevideo.com +r23foto.co.id +r.254a.com +r2.adwo.com +r2m.hopto.org +r2prod.com +r2---sn-h5q7dne6.googlevideo.com +r2---sn-vgqs7n7k.googlevideo.com +r3gistere22.fanpage112.ml +r.4at1.com +r4---sn-vgqs7nez.googlevideo.com +r4.sn-vgqs7nez.googlevideo.com +r4tw7w.top +r5.dir.bg +r7mediar.com +r9accelerator.co.nz +r9rs.com +raagjat.com +raahenseutu.jainos.fi +raamskitcheninteriors.com +raavidesigns.com +rabotaetvse.ru +rabota-v-inretnete.ga +rabot.host.sk +r.ace.advertising.com +raceholdingsbd.com +rachasri.net +rachel11122.com +rachelnovosad.com +racinginparadise.com +r.ad6media.fr +radar.cedexis.com +radaronline.advertserve.com +rada.ru +radarurl.com +radbrains.com +r.adc-serv.net +raddonfamily.com +radforddwilawyer.com +radhas.in +radiate.com +radicalzhr.com +radioalterna.net.ve +radioat.oewabox.at +radioeonline.com +radiofortuna.de +radiogambling.com +radioouroverde.com +radiopachuk.net +radioportatil.com +radio-seek-cut.ru +radiosonarte.com.br +radiosouf.free.fr +radiotk.org +radius-retail.com +rad.live.com +r.admob.com +rad.msn.com +rado.elegance.bg +r.adrolays.de +r.adserver01.de +rads.stackoverflow.com +raeyourskin.com +rafaelhairstudio.com +rafaelsport.co.id +rafael-valdez.com +rafastudio.nl +rafiashopping.com +ragalaheri.com +raganinfotech.com +ragecash.com +rah7uph.bid +rahmadillahi.id +rahulthehacker.tk +raidcomasia.my +rail.us +railwaytimings.com +raimundi.com.br +rainbowclub.hitbox.com +rainbowcolours.me.uk +rainbow-de.mythings.com +rainbow-es.mythings.com +rainbow-fi.mythings.com +rainbow-geo-p.mythings.com +rainbowice.ru +rainbowmedia.122.2o7.net +rainbow-mx.mythings.com +rainbow.mythings.com +rainbow-nl.mythings.com +rainbow-no.mythings.com +rainbow-ru-ak.mythings.com +rainbow-ru.mythings.com +rainbow-sg.mythings.com +rainbow.topbucks.com +rainbow-uk.mythings.com +rainbow-us.mythings.com +raisbank.com +raisedseo.com +raishahost.tk +raj4.com +rajamc.com +rajasthanphotofest.com +rajasthantourismbureau.com +rajhomes.co.za +rajkachroo.com +rajupublicity.com +rake2mysweeps.com +rakkertje.org +rakshahomes.com +rakuten.112.2o7.net +rallyeair.com +ralva-vuurwerk.nl +ramadan.vallpros-as.com +ramazansoyvural.com +ramepoo2525.codns.com +rameshco.ir +ramie.me +ram-ji.com +rammstien.de +ramonmangion.com +rampagegramar.com +rampidads.com +rampurhs66.edu.bd +ranbux.com +randalljhoward.com +randevumads.com +randifertahses.com +randki-sex.com +randmcnally.112.2o7.net +randomstring.boyalitim.com.tr +randomstring.kirikler.com +randomstring.logorder.com +randomstring.musiadkayseri.org +randstat.it +randstdusa.com +raneevahijab.id +rangeeleraag.com +rangerssteve.io +rank3w.com +rankainteriors.co.in +rankchamp.de +rank-checker.online +ranker.springboardplatform.com +rankia.com +ranking2017.ga +rankingchart.de +ranking-charts.de +rankingfryzjerow.pl +ranking-hits.de +ranking-id.de +rankingkwiaciarni.pl +ranking-links.de +ranking-liste.de +rankingscout.com +ranking-street.de +rankinoutlet.com +rank-master.com +rankmytattoos.us.intellitxt.com +ranksays.com +ranks.boardtracker.com +ranksonic.info +ranks.sextracker.com +rankyou.com +ranopelimannanarollandmariearim.890m.com +ransomware-alert.secure-server-alert.info +ransun.net +ranthambor.com +rantsports.us.intellitxt.com +raosgroups.com +raovat4u.com +raovathouston.net +rapax.it +rapevideosmovies.com +rapidcounter.com +rapideo.pw +rapidesuivisdesdonneesinformatiquedelamessagerie.000webhostapp.com +rapidformsystems.com +rapidgator-porn.ga +rapidlyserv.com +rapidokbrain.com +rapidprototypeservice.com +rapidresponse.directtrack.com +rapidservice.com.ec +rapidsmo.pl +rapsubs.popunder.ru +raptorss.com.au +rapturerebuttal.com +rarabarnfi.hotmail.ru +rar-password-cracker.softonic.fr +rasdabase.com +rasendezwerge.de +rashtrahit.org +raskrutka.ucoz.com +rasmussenreports.us.intellitxt.com +rasteniya-vs-zombi.ru +rasthof-frankenhoehe-nord.de +rasvek.com +ratemodels.net +rate.opinionlab.com +rate.ru +ratherer.com +rathkealechildcare.ie +rathorekriti.com +ratings.lycos.com +rat-on-subway.mhwang.com +rattanmegastore.co.uk +raudatravels.com +raumobjektgruppe.de +raus.de +ravelotti.cn +ravel-rewardpath.com +ravene.de +ravengroupbd.com +rawa-maz.pl +raw.oggifinogi.com +rawoo.barginginfrance.net +rawstory.us.intellitxt.com +raxcompanyltd.co.ke +rayan-air.com +rayihayayincilik.com.tr +raymandshop.ir +raymondjams.com +raymoneyentertainment.com +raynanleannewedding.net +raynexweb.com +raynic.com +rayo.pereira.multi.net.co +raypro.z1.bbzone.net +razacoin.com +razada.ga +raza-entp.myjino.ru +razamicroelectronics.com +razao.t5.com.br +razorweb-a.akamaihd.net +razyboard.com +rb0577.com +rb1.design.ru +rbabnk.com +rb.adnxs.com +rbartdeguauwfnmuf.com +r-basant.myjino.ru +rb.burstway.com +rbc-1royalbank.com +rbcanada-update.com +rbc.com.bankvercom.com +rbcgaru.hit.gemius.pl +rbcholdings.com +rbconlineactivation.com +rbcpersonal-verifications.com +rbcroyalbank.jobush.ga +rbcroyalbankonlines.com +rbcroyalbankonlline.com +r.bid4keywords.com +rb.insightexpressai.com +rbk.netmng.com +rbmods.se.intellitxt.com +rb-net.com +rb.newsru.com +rbqip.pochta.ru +rb.revolvermaps.com +rbupdate.com +rcacas.com +rcarle.com +r.casalemedia.com +rc.asci.freenet.de +rc-au.imrworldwide.com +rcb101.ru +rc.bt.ilsemedia.nl +rcci.122.2o7.net +rccl.bridgetrack.com +rc.de.adlink.net +rcdna.gwallet.com +r.chitika.net +rc.hotkeys.com +rc-kites.de +rckymtnnws.112.2o7.net +rclandvatter.000webhostapp.com +r.clickdensity.com +rcm.amazon.com +rcm-eu.amazon-adsystem.com +rcm-images.amazon.com +rcm-it.amazon.it +rcm-na.amazon-adsystem.com +rc-modellbau-mostviertel.at +rcmth.com +rcntelecom.112.2o7.net +rconnect.mx +r-control.ru +rcp.co.za +rc-plus.com +rcpmag.us.intellitxt.com +rcpmda.ikan1080.xyz +rc.revolvermaps.com +rc.rlcdn.com +rcsp-lk.ru +rctionline.com +rcturbo.com +rc.wl.webads.nl +rd1.hitbox.com +rd.advertising.com +rd.alphabirdnetwork.com +rd.clickshift.com +rd-direct.com +rdggfh.co +rd.intl.doubleclick.net +r.dir.bg +rd.jiguangie.com +rdmadrasah.edu.bd +r.domob.cn +rdovicia.my-tube-expert.ru +rdraff.com-app1.site +rd.revolvermaps.com +rdsa2012.com +rd.sk +rdtkanerraticallyqozaw.com +rduafylq.info +rdwurasildeafeninguvuc.com +rdzhoniki.rus-link-portal.ru +reachjunction.com +reachtheonline.coxslot.com +reactads.cdn.adglare.net +reactads.com +reactads.engine.adglare.net +reactivate.netflix.com.usermanagement.key.19735731.reactivatenetfix.com +reactivate.netflix.com.usermanagement.key.19735732.reactivatenetfix.com +reactvie-acount-full-inf11o.com +reactx.com +readersdigest.tt.omtrdc.net +readgoldfish.com +readheadstick.biz +readserver.net +readyexpress.com.ve +readyfile.pl +readynewsoft.fixinstant.com +readynewsoft.newsafeupdatesfree.org +readyourlifeaway.com +reagroup.122.2o7.net +realads.realmedia.com +realaudio.cimedia.net +realbannerads.com +realcastmedia.com +realclix.com +realestateeconomywatch.com +realestateidealsolutions.com +realestateinluxor.com +realestateschol.org +realgfsbucks.com +realgift.men +realgrown.co +realinvestment.pl +realitatea.count.brat-online.ro +realitateadro.hit.gemius.pl +realitatero.adocean.pl +realityaxa.com +realitykings.com +realitytea.us.intellitxt.com +realitytvmagazine.us.intellitxt.com +realizemobicom.com +realizmobi.com +realladrilhos.com +realmedia-a592.d4p.net +realmedia-a800.d4p.net +realmedia.advance.net +realmedia.channel4.com +realmedia.nana.co.il +realmonte.net +realnye-otzyvy.info +realoneconsultants.com +realpropertyrighttime.com +realslovespell.com +realtechnetwork.com +realtimeads.com +real-time-analytics.com +realtime.deximedia.com +realtime.services.disqus.com +realting-moscow.ru +realtorbuyersfile.com +realtors-presentationsllc.com +realtouchbannerwidget.aebn.net +realtracker.com +realtybuyerfiles.us +realtybuyersdoc.xyz +realtypropertyfile.us +realtytimes.com +realwebinfo.su +realybooks.com +reasoninghollow.com +reativacaobradescoservicoonline2015.esy.es +reaydy.000webhostapp.com +rebatestatus.us +rebathgallery.com +rebellionmedia.rotator.hadj7.adjuggler.net +rebelmouse.com +rebid.com +rebisihut.com +rebolyschool.iso.karelia.ru +rebootblueprint.com +reboot.sitescout.com +rebotstat.com +rebtelnetworks.112.2o7.net +rebuildermedical.com +recadastrovotorantim.com +recadrastramentofacil.com +recartucho.com +rec.convertale.com +received-notice2x.com +received-notice-log-in-disable-payment.com +receive.inplay.scanscout.com +receptiveink.com +recette.confiture.free.fr +recettesvitefaites.com +recinziireale.com +recipedays.com +recipedays.ru +recipeland.us.intellitxt.com +recipeshome.ru +reckonstat.info +reclamus.com +recl.kulinar.bg +recluse.me +recoae.com +recommender.scarabresearch.com +reconfirmagain.at.ua +reconnaissancedirects.altervista.org +reconnectinglives.com +reconnectworkshops.com +record.affiliatelounge.com +record.commissionlounge.com +recordeaglecom.112.2o7.net +recordnetcom.112.2o7.net +recordonlinecom.112.2o7.net +recordpage-a.akamaihd.net +recover-active-support.info +recover-apple-support.website +recover-facebook.com +recover-fb08900.000webhostapp.com +recovers-setings.atspace.cc +recover-statement.cf +recovery-account.info +recoveryaccount.xyz +recovery-active-support.info +recoverybusinessmanagerpage.esy.es +recovery-confirm-active.info +recovery-fanpage1662.suport7288.gq +recovery-info.com +recovery-page.com +recoverystalbans.com +recovery-userid.com +recreation-leisure-rewardpath.com +recruiter-talk.com +recruitingpartners.com +recs.richrelevance.com +rectangledownloads.com +rectricial-sashes.000webhostapp.com +recuperodativicenza.it +red01.as-eu.falkag.net +red01.as-us.falkag.net +red02.as-eu.falkag.net +red02.as-us.falkag.net +red03.as-eu.falkag.net +red03.as-us.falkag.net +red04.as-eu.falkag.net +red04.as-us.falkag.net +red.ads.t-online.de +redalforja.org +redapplied.com +red.as-eu.falkag.net +red.as-us.falkag.net +redbalcony.us.intellitxt.com +redbottomheels.xyz +redcada.com +redcamif.info +redclawmexico.com +redcupcompany.se +reddecorazones.com.pe +reddii.org +red-download.pl +redefine2.hit.stat24.com +redefine.hit.stat24.com +redemptionengine.com +redereis.com.br +redesdeprotecaoabcd.com.br +redesdeprotecaosaocaetano.com.br +redesnvc.com +redesparaquadras.com.br +r.edge.inmobicdn.net +redheart.ca +redheart.ru +redherring.ngadcenter.net +redhotchilli.co.uk +redhotdirectory.com +redhotfreebies.co.uk +redir.adap.tv +redir.adsonar.com +redirect.click2net.com +redirect.clickshield.net +redirectcpv.com +redirect-expedia.it +redirect.hotkeys.com +redirectid.ru +redirectingat.com +re-directme.com +redirectme.net +redirect.redirect.com-myca-logon-us-chase.bank-login-en-us.destpage2faccountsummary.cgi-bin.6420673610445.chase-bank-support.tk +re.directrev.com +redirects.coldhardcash.com +redirects.ero-advertising.com +redirect.site50.net +redirect.todayreward.net +redirect.tracking202.com +redirect.trafficreceiver.club +redirectvoluum.com +redirect.xmlheads.com +redir.juicyads.com +redirlock.com +redir.metaservices.microsoft.com +redlinecompany.ravelotti.cn +redlinks.cl +rednise.com +redoanrony.com +redonetype.com +redoperabwo.ru +redroofing.com +redroomnetwork.com +redrunner.com +redsheriff.com +redstartechnology.com +reducelnk.com +redurbanspa.com +reduxads.valuead.com +reduxmedia.com +redzon.com +reedbusiness.com.invalid +reed-cw.grapeshot.co.uk +reeise.altervista.org +re-electshadqadri.com +reelheroes.net +reelmovienews.us.intellitxt.com +re-ent.com +reeyanaturopathy.com +refaccionariatonosanabria.com +refads.pro +refconstruct.com +refer100.outster.com +refer102.outster.com +refer1.outster.com +refer20.outster.com +refer25.outster.com +refer46.outster.com +refer85.outster.com +referal.begun.ru +refer.ccbill.com +referencemoi.com +refererx.com +referral.topbucks.com +referral.vod.topbucks.com +referralware.com +referrer.disqus.com +reffermetocasenumber78858850885id.okime09979hdhhgtgtxsgvdoplijd.rakuemouneu.com +refinance.shengen.ru +refinejmegahair.com.br +reflexonature.free.fr +ref-type-site-ooters.atwebpages.com +refundfunds-etransfer-interac.com +refund-hmrc.uk-codeb6159368de39251d7a-login.id-107sbtd9cbhsbtd5d80a13c0db1f546757jnq9j5754675743465468.zirakpurproperty.com +refuzion.se +reg0rr01x011917ml.club +reg11ster088.fanspage-confrim3.ml +regalosdetalles.cl +regame.su +regards-bmo.me +regardscibc.info +reg-cleaners.com +regclean.software-phile.com +reg.coolsavings.com +regcure.software-phile.com +regdefense.com +regencycinema8.com +regflow.com +regie.espace-plus.net +regiiisconfriiimsafeetyy.reggiscoonfrim.gq +regio.adlink.de +regionalconcreteco.com +regionalcurry.com +regionshop.biz +regisconfrimfanpage766.confrimsuportfanpage9888.tk +regis-fanpaqee.dev-fanpage23.cf +regis.foultier.free.fr +register-90.d3v-fanpag3.tk +register-acunt-fanpage89.suportconfrim76.ml +register.cinematrix.net +registercom.122.2o7.net +registercom.tt.omtrdc.net +registerdrivegoogle.sytes.net +registerer2.f4npage-confr1m.cf +register.silverscreen.cc +registratciya-v-moskve.ru +registre-suport42.accunt-fanpage87-confrim.tk +registro-atualizar-apps.tk +registros-saintandera.com +registrycleanerforvista.com +registrycleanerfree.blogspot.com +registry-cleaner.net +registrycleaner.onlinedownloads.org +registrycleanerpro.net +registrycleaner-reviews.net +registry-cleaners-compared.com +registrycleanersreviewed.com +registrycleanertechnology.com +registrycleanertop.com +registry-clean-up.net +registrydefender.com +registrydefenderplatinum.com +registrydomainservices.com +registry-error-cleaner.com +registryfix.com +registry-fix-softwares.com +registryregistrycleaner.triedtool.com +registryregistrytool.triedtool.com +registrysweeper.com +regiuseraccess.com +reglasti.com +reglements-generals.com +reglezvousthisimport.com +regnow.com +regnow.pcsecurityshield.com +regreed.ga +regrep.reclean.hop.clickbank.net +regsways.top +regular666.ru +rehabretie.com +rehab.ru +reichertgmbh.de +reico-hundenahrung.de +reiddundas.com +reilrbenefitimpos.com +reimageplus.com +reimbergit.com.br +reincontrols.com +rein-federn.de +reinvigorate.net +reisegruppen.com +reiselinksammlung.de +reisenburo.de +reishus.de +reitanlage-gut-zollhaus.de +reiten-live.de +reitponykontor.com +rejestrowanko.com.pl +rejestruj-sie.pl +rek2.tascatlasa.com +rek.adtotal.pl +re.karamurseltesisat.com +reklam-1.com +reklama1.ru +reklama.botevgrad.com +reklamagaci.com +reklama-i-rabota.ru +reklama.mironet.cz +reklama.neg.bg +reklamanet.net +reklama.offmedia.bg +reklama.onet.pl +reklam.arabul.com +reklama.reflektor.cz +reklama.ve.lt +reklama.wisdom.bg +reklamcsere.hu +reklam.ebiuniverse.com +reklamer.com.ua +reklame.unwired-i.net +reklam.memurlar.net +reklam.milliyet.com.tr +reklam.misli.com +reklam.mynet.com +reklam-one.com +reklam.rfsl.se +reklamsekeri.com +reklam.softreklam.com +reklam.star.com.tr +reklamtrk.com +reklamuss.ru +reklam.vogel.com.tr +reklam.yonlendir.com +reklamy.sfd.pl +re.kontera.com +rekovery001.fanpage0001.tk +rekovery002.fanpage0001.ml +rekovery004.fanpage0001.cf +rekoveryy1.recovery-fanpagee.tk +rekrutacja.zafriko.pl +rek.www.wp.pl +relaax.co.cc +relacoesedicas.com.br +relationshipqia.com +relatorioserasa.webcindario.com +relatosenseispalabras.com +relax.ru +relaxsearch.uphero.com +relaxvous.fr +relay-ba.ads.httpool.com +relay-ba.toboads.com +relay-bg.ads.httpool.com +relay-bg.toboads.com +relay-cz.ads.httpool.com +relay-ks.ads.httpool.com +relay-mk.ads.httpool.com +relay.mobile.toboads.com +relay-rs.ads.httpool.com +relay-si.toboads.com +relenza.asian-flu-vaccine.com +relestar.com +relevantknowledge.com +relevanz10.de +reliableshredding.com +relief-for-toe-nail-fungus.com +relimar.com +relish.com.cn +relmaxtop.com +reltime2012.ru +reltime-2014.ru +remarketingpixel.com +remastercard.com +remax-chiemsee.de +remedyotc.com +remission.tv.gg +remmling.de +remnantrhetoric.com +remodelingonlinecom.112.2o7.net +remontbiz.ru +remont-comp-pomosh.ru +remont-fridge-tv.ru +remontgruzovik.ru +remont-komputerov-notebook.ru +remont-mobile-phones.ru +remont-ustanovka-tehniki.ru +remorcicomerciale.ro +remotead.cnet.com +remotead-internal.cnet.com +remote-dba.de +remotegeeks.com +remotrk.com +removearrest.com +remove-limited-account.com +removepop.co +remowindowsnow.com +remox.com +rem.rezonmedia.eu +remybutler.fr +renaissancevanguard.com +rencontreavenue.com +renecaovilla.online +renecaovillasale.online +reneeshop1.com +renegadesforchange.com.au +renewablewealth.com +renewalplans.com +renewalss.com +renewaltourplus.club +renew-appleid-appservice-recovry-wmiid2017-billing.case4001.pw +renew-appleid-appservice-recovry-wmiid2017-billingexp.case4001.pw +renew-info-account.com +renoise-info.de +renoregency.com +renova.1.p2l.info +renovaremedlab.com.br +renovatego.com +renow.solutions +rentalsww.com +rentascoot.net +rentatoldosycarpas.com +rentcom.112.2o7.net +rentcom.tt.omtrdc.net +rentech.com.tr +rentehno.ru +rentfromart.com +rentminsk.net +rentskinow.jp +rentumajiklere.com +reostore.com +repaire-discoversy-eswal.fulba.com +rep-am.com +repeatlogo.co.uk +replacement-windows.gloses.net +replicaclub.ru +replicalouboutin.xyz +replica-watch.ru +report02.adtech.de +report02.adtech.fr +report02.adtech.us +report-ads-to.pubnation.com +reportajesadomicilio.com +report.broadcastpc.tv +reporter001.adtech.de +reporter001.adtech.fr +reporter001.adtech.us +reporter.adtech.de +reporter.adtech.fr +reporter.adtech.us +reporterrecife.com.br +reportimage.adtech.de +reportimage.adtech.fr +reportimage.adtech.us +reporting.cpxinteractive.com +reportingsales.com +reporting.singlefeed.com +report.mitsubishicars.com +reports.extreme-dm.com +report-sign.xyz +reports.quisma.com +reports.wes.df.telemetry.microsoft.com +report.trackermaterial.xyz +reposomolina.com +represetn.com +repression.at +reprise.com.tr +reptilien.ch +republer.com +republicanherals.com +republication.co.uk +republicebank.co +republika.onet.pl +repuestosfranceses.com +repuestosyserviciosbaldeonsrl.com +repum.ml +req1.appads.com +req2.appads.com +req3.appads.com +req.adsmogo.com +req.appads.com +req.tidaltv.com +requiemfishing.com +requiredstatus.club +rereddit.com +re-rere.esy.es +re.revolvermaps.com +re.rutan.org +res.adplus.co.id +resanium.com +researchdoc.info +researchnow.co.uk +researchoerjournal.net +researchsucks.com +reseaux-telecoms.fr.intellitxt.com +resellerclub.com +reseller.hitbox.com +resellermastery.com +reseller.sexyads.com +resellersrating.com +resellerwireless.com +resentic.ga +reservapista.es +reservationsa.co.za +reserved34.xyz +reserve.jumpingcrab.com +reserver-appleid.info +resetinc.in +resgatepontosicoobcard.online +residence-mgr-bourget.ca +residencesdelhione.com +residualincomegold.com +resizer-oferplan.abc.es +res.levexis.com +resmbtreck.esy.es +resoltados.com +resolution-infocenter.com +resolvd-managaccont-idapple.com +resolve-icloud-account-locked.gq +resolvethem.com +resolvingserver.com +resortcollectionhouston.com +resourcedevelopmentcenter.org +resources.eyereturn.com +resources.hitbox.com +resources.infolinks.com +resources.kiosked.com +resourcesubmitter.com +responsinator.com +responsive-test.net +respublica-otel.ru +resr.configure.8c1.net +ressys.co.uk +restaurant-altes-theater.de +restaurantcom.tt.omtrdc.net +restaurantemiramonte.com +restaurantlescampi.com +restaurant-symposion.de +restaurant-traditional.ro +restaurant-yagodka.ru +restaureant.com +restorator-msk.ru +restoredchurchofgod.112.2o7.net +restore-pc.com +restoschinois.com +restrictedpagesapple.com +restricted.pl +resultadoselecciones2016.com +results.adworldmedia.com +results.cafefind.net +resultshub-a.akamaihd.net +resultt-appleecc.com +resume-help-queen.com +retailrealestatenyc.com +retailwith.com +retajconsultancy.com +retaraga.ru +retarcl.net +retargeter.com +retin-a.1.p2l.info +retracker.com +retreatia.com +retriever-training-stolberg.de +retrocafe.se +retrogame.de +retrogamingandemulation.com +rettificabellani.com +returgahefesds.com +return.bs.domainnamesales.com +return.domainnamesales.com +return.uk.domainnamesales.com +reunioncom.112.2o7.net +reunion.tt.omtrdc.net +reussiteinfotech.com +reuters-d.openx.net +rev.adip.ly +rev.avsforum.com +revcontent.com +rev.economicfigures.com +revelations.trovus.co.uk +revelco.co.za +revelionsibiu.ro +revenue-agency-refunde.com +revenue.com +revenuedirect.com +revenuegateway.directtrack.com +revenue.ie.clxros.tax +revenue.ie.hh1sd.tax +revenue.net +revenueonthego.com +reverselogistics.in +reverse-mortgage-info.com +reversing.cc +reverso.refr.adgtw.orangeads.fr +reverzz.in.net +reviewcentrecom.skimlinks.com +reviewcity.ru +reviewdetector.ml +reviewer.de +reviewmakers.us +reviews.domainplayersclub.com +revistacientifica.posgradoune.edu.py +revistaelite.com +revistaindustria.com +revitagene.com +revivalcollective.com +reviveads.faktor.bg +revive.vkushti.tv +rev.lanistaads.com +revokocha.000webhostapp.com +revoluciondigital.com +revolution.ign.us.intellitxt.com +revotrack.revotas.com +revsci.net +revsci.tvguide.com +revstats.com +rew-2343223423.review +rewardblvd.com +rewardhotspot.com +rewardit.com +rewardpoll.com +rewardsflow.com +rewards.macandbumble.com +rewardsnow.co.uk +reward-survey.net +rewardszoneusa.com +rewdedaa.gratisdejtingsajter.com +rewthenreti.ru +rexafajay.axfree.com +rexboothtradingroup.com +rex.co.pl +rexportintl.com +rey3935.112.2o7.net +reyalmadrid.com +reycross.cn +reyel1985.webnode.fr +rezponslife.se +rezrezwhistler.112.2o7.net +rfacbe.com +rfd-split.hr +rfeelinit.com +rff-cfal.info +rfga5e4gn545.altervista.org +rforreview.com +rfv.pl +rgcmn.co +rgdhcm.co +rgeiy.cc +rgmm.co.za +rg.revolvermaps.com +rgshost.com +rgzpseubgxho.com +rgzv-erfordia.de +rh.adscale.de +rhads.sv.publicus.com +rheumatism.sa +rhgestion.cl +rhino-linings.com +rhodeislandvoters.com +rh.qq.com +rh.revolvermaps.com +rhtag.com +rhtrfhjrtfh.pl +rhwndkf45.codns.com +rhythmvideos.com +ri.5.p2l.info +rialp.getenjoyment.net +riastugan.se +ribcagebags.com +r.ibg.bg +ribi.com.co +ribieiendom.no +ricardo.ch.dx9etpblhqjxi68.harshadkumarbhailalbhai.com +ricardoeletro.com.br.promody.co +ricaricheelettricheauto.com +ricasad.sx +ricebistrochicago.com +richardhowes.co.uk +richinvestmonitor.com +richmails.com +richmedia247.com +richmedia.yimg.com +rich.qq.com +richsportsmgmt.com +richtwerte.de +richwebmaster.com +ric.info +rick.5gbfree.com +rickandhelena.com +rickecurepair.com +rickey.us.intellitxt.com +rick.nirmallife.co.in +rickparty.com +rickrolling.com +ricksyers.com +ri.clickability.com +ricorsogiustizia.org +ridagellt.com +rideordie.ga +ridepush.com +riders.ro +ridontrump.com +rifaknitwear.com +riflessiformazione.it +riforma.net.br +rifugiofonteghi.it +rigdonmarine.com +rightbusiness.net +rightclickgt.org +rightcomputerguide.club +rightenergysolutions.com.au +rightmedia.net +rightprocessor.club +rightscomputer.in +rightstats.com +righttobearohms.com +rig.idg.no +rikuzen.biz +rillyone.5gbfree.com +rimakaram.net +ri-materials.com +rimedia.org +rimi.org +rinaldo.arq.br +rinecreations.in +ring4rhino.com +ringcentral.112.2o7.net +ringeagletradingco.pw +ringhotel-reichenbach.de +ringieradro.hit.gemius.pl +ringieradrs.hit.gemius.pl +ringierag.112.2o7.net +ringierro.adocean.pl +ringierrs.adocean.pl +ringporno.com +ringsurf.us.intellitxt.com +ringtonematcher.com +ringtonepartner.com +rinitis.com +ri.nuggad.net +rioparkma.com.br +riotassistance.ru +riotpoint.eu +riotpoints.pl +riowebsites.com.br +ripom.com +riptow.com +riptownmedia.122.2o7.net +rique.host.sk +ri.revolvermaps.com +riscorp.com +rise-media.ru +riserawalpindi.com +rishabh.co.in +rishteynate.com +risingbusiness-ph.com +riskejahgefe.com +riskpreventionsystems.com +riskyananda12.000webhostapp.com +riskymail4free.com +risparmiocasa.bz.it +risqsolutions.com +riss.no +riss.pk +risspl.com +ristoncharge.in +ristoranti-genova.com +ritlweb.com +ritzgrage.com +rivaajplanner.com +rivasearchpage.com +rivera.co.id +riverdeep.112.2o7.net +river-hunters.ru +riverlandsfreerange.com.au +rivopcs.com.au +riwxluhtwysvnk.com +rixenaps.com +rizkyamaliamebel.co.id +rjbargyjrs.com +rjhoh.info +rjig.com +rjinternational.co +rjmaza.com +rjmjr.net +rkcache.brandreachsys.com +rkcconsultants.com +rkkdlaw.com +rk.revolvermaps.com +rktesaudi.com +rl8vd.kikul.com +rlamsa.com +rlcdn.com +rle.ru +rlgroup.me +r.ligatus.com +r.looksmart.com +rluna.cl +rlxl.com +rma-api.gravity.com +rm-admin-demo.iovation.com +rmads.eu.msn.com +rmads.msn.com +r-malic-artist.com +rmbn.net +rmbn.ru +rmcdn.2mdn.net +rmcdn.f.2mdn.net +rmcv.us +rmcworks.co.in +rmd.atdmt.com +rmedia.adonnetwork.com +rmedia.boston.com +rmgparcelforcecom.112.2o7.net +rmgroyalmailcom.112.2o7.net +rmisllc.net +rmm1u.checkm8.com +rmms.net.au +r.mobpartner.mobi +rms.admeta.com +rmsi.nuggad.net +rm.tapuz.co.il +rmtojtl.com +rnbdirt.us.intellitxt.com +rncgopcom.122.2o7.net +rnews.focus-news.net +r.nexac.com +rngetek.com +rnhbhnlmpvvdt.com +rnhhqwqs.info +rn.hkfklflkggnow.com +rnmjxkjvfklokw.pw +rn-to-bsn.com +ro1adro.hit.gemius.pl +ro1ro.adocean.pl +ro2.biz +roac-wagn.org +roadbank-portal.com +roadmaxgear.com +ro.adocean.pl +roalgames.com +roar.com +roaringcash.com +roast-bones.fr +roatanfractional.com +ro.bbelements.com +robbieg.com.au +robdeprop.com +robe-de-soiree-fr.com +robertgirsang.com +robert-hansen.me +robert-millan.de +robertoalvarado.com +robertpomorski.com.pl +robertsplacements.ru +robertturek.com +robie.it +robointel.com +roboshot.cl +robot-forex.biz +robotreplay.com +robtopol.in +robtozier.com +robux.link +rochfashionstudio.com +rociofashion.com +rockerplace.com +rockersreunion.com +rocketspaceks.com +rockettalk.net +rockhestershie.com +rockingclicks.com +rockinmane.com +rocklandbt.com +rockleadesign.com +rockma.se +rockprogblog.com +rocks.io +rocksresort.com.au +rockstaenergy.com +rockyinstincts.com.au +rodale.d1.sc.omtrdc.net +rodbosscum.com +roderoad.com.au +rodjebacken.se +rodlicence.net +rodneys-shop.com +rodrigofontoura.com.br +rodtheking.com +r.offnews.bg +rofownengineeringltd.com +rogde.adocean.pl +rogerciel.com.br +rogerhsherman.com +rogerma.net +rogerreupertsopa.com +rogersandstephens.com +rogersscotty.com +rogervivierforsale.com +ro.hit.gemius.pl +rohitshukla.com +rohrbau-melle.de +roia.biz +roidatuddiana.id +roifmd.info +rojakpot.us.intellitxt.com +rojgarexchange.in +rok.com.com +rokeyafabrics.com +rokobon.com +rokos.co.zw +roks.ua +rokus-tgy.hu +rolaxia.com +roldanconsultants.com +roleforum.ru +rolemodelstreetteam.invasioncrew.com +roll123.com +rollizug.de +rolloninz.com +rollsport-landau.de +rolstyl.pl +rolyjyl.ru +rolzem.com +roma-kukareku.livejournal.com +romania-report.ro +romantika-dessous.de +romaresidence.com.br +romdiscover.com +romeiroseromarias.com.br +romepartners.com +rome.specificclick.net +rompaservices.com +romsigmed.ro +romulobrasil.com +romvarimarton.hu +ronaldhepkin.net +ronasiter.com +ronghai.com.au +ronittextile.com +ronjaapplegallery.net16.net +ronpavlov.com +ronsorg.net +roofers.org.uk +roofgreen.in.ua +roof-online.com +rooimier.co.za +room24.superdows.com +roomairbnbnet.altervista.org +roomsairbnub.altervista.org +roomsiarbab.altervista.org +roopot.tk +roorbong.com +roosevelt.gjbig.com +rootandroid.org +rootbuzz.com +root.dns.bz +root.rampupelectrical.com.au +root--servers.org +ropabarca.se +r.openx.net +ropesta.com +rosa-amelia.cl +roscoesrestaurant.com +ros-ctm.ru +roseandcrownhiston.com +ro.search.etargetnet.com +roseaucs.com +rose.ixbt.com +roselea.com.au +rosettastone.tt.omtrdc.net +rosetteselia.eu +rosewinegl.info +rosewoodcare.co.uk +roshanavar.com +rosiautosuli.hu +rosikha.id +roskatrack.roskadirect.com +rospromtest.ru +rossanasaavedra.net +rossettoedutra.com.br +rossmann2.wygraj-teraz.com +rossmark.ru +ross.starvingmillionaire.org +rost-digital.de +rostham.ir +rostovgvardia.ru +rostov.xrus.org +rot2.imoti.net +rotabanner100.utro.ru +rotabanner234.utro.ru +rotabanner468.utro.ru +rotabanner.com +rotabanner.utro.ru +rotaryalkemade.nl +rotaryclubofsonarpur.org +rotaryd1650.org +rotate.infowars.com +rotator.7x3.net +rotator.adjuggler.com +rotator.adxite.com +rotator.axiatraders.com +rotator.hadj7.adjuggler.net +rotator.juggler.inetinteractive.com +rotator.nbjmp.com +rotator.offpageads.com +rotator.tradetracker.net +rotator.tradetracker.nl +rotator.trafficstars.com +rotessofa.de +rotgerinc.com +rotobanner468.utro.ru +rotor6.newzfind.com +rotvast.nl +rotxfomml.top +roufians.com +rouitieress-meys.info +roulettenumber.com +roulette-online.petrovka.info +roundtelevision.com +roundupconcentratsettlement.com +route666.se +router.adlure.net +router.googlecom.biz +routexx.com +rovion.com +row-advil.waze.com +rowanmclean.com +rowingdory.com +rowinglyzone.com +roxio.112.2o7.net +roxres.creturemus.com +roxr.net +roxsurgical.com +royalair.koom.ma +royalapparels.com +royalashes.com +royal-betting.net +royalcarinnean.com +royalcar-ufa.ru +royalcra.com +royalgreen.net +royalindiabikes.com +royal-investments.net +royalplacement.co.in +royalrbupdate.xyz +royalvegascasino.com +rozalli.com +rozamondorelie.trade +roznica.com.ua +rozpremiumtissues.com +rozwiazanie-konkurs.pl +rp9.ru +rpc.ant.com +rpc-php.trafficfactory.biz +rpc-retirement.com +rpc.trafficfactory.biz +rpfi-indonesia.or.id +rpg2.de +rpg.us.intellitxt.com +rp.hit.gemius.pl +rpmdo.com +rpm.newrelisc.com +rp-online.met.vgwort.de +rpt.anchorfree.net +rpt.footlocker.com +rpt.rad.msn.com +rq82.com +rq.adfox.ru +rq.adtrackdirect.com +rqbhpqbmlcbviv.com +rqdsj.com +rqstd.com +rq.trackingadirect.com +rqtrk.eu +rr1.outster.com +rr1.xxxcounter.com +rr2.xxxcounter.com +rr3.xxxcounter.com +rr4.xxxcounter.com +rr5.xxxcounter.com +rr7.xxxcounter.com +r.refinedads.com +rregnuma.com +r.reklama.biz +r.remarketingpixel.com +rrghs.edu.bd +rrjjrministries.com +rrmlyaviljwuoph.com +rrpartners.122.2o7.net +rs108.nsresponse.com +rs1.qq.com +rs2.qq.com +rs.adocean.pl +rscounter10.com +rsc.scmspain.com +rsense-ad.realclick.co.kr +rsgaropaba.com.br +rsgde.adocean.pl +rsg-releases.pw +rs.gwallet.com +rs.instantservice.com +rsiuk.co.uk +rskenterprises.in +r.skimresources.com +rsmh.pl +rsonsindia.com +rss.buysellads.com +rs.search.etargetnet.com +rsslessons.su +rs-staticart.ybcdn.net +rs.static.etargetnet.com +rst.sendsizelimit.org +rsvpphotobooth.com +rt2.infolinks.com +rt3.infolinks.com +rt7890.com +rta.dailymail.co.uk +rt.applovin.com +rt.applvn.com +rt-audio.nl +rtax.criteo.com +rtb10.adscience.nl +rtb11.adscience.nl +rtb12.adscience.nl +rtb13.adscience.nl +rtb14.adscience.nl +rtb15.adscience.nl +rtb16.adscience.nl +rtb17.adscience.nl +rtb18.adscience.nl +rtb19.adscience.nl +rtb1.adscience.nl +rtb20.adscience.nl +rtb21.adscience.nl +rtb22.adscience.nl +rtb23.adscience.nl +rtb24.adscience.nl +rtb25.adscience.nl +rtb26.adscience.nl +rtb27.adscience.nl +rtb28.adscience.nl +rtb29.adscience.nl +rtb2.adscience.nl +rtb30.adscience.nl +rtb3.adscience.nl +rtb3.doubleverify.com +rtb4.adscience.nl +rtb5.adscience.nl +rtb6.adscience.nl +rtb7.adscience.nl +rtb8.adscience.nl +rtb9.adscience.nl +rtb-ads.avazu.net +rtbcdn.doubleverify.com +rtb-csync.smartadserver.com +rtb-lb-event-sjc.tubemogul.com +rtb.metrigo.com +rtb.nativeads.com +rtb.pclick.yahoo.com +rtbpop.com +rtbpopd.com +rtbproxy.mgid.com +rtb-px.content.ad +rtbterra.com +rtb.tubemogul.com +rtc.romdiscover.com +rt.donnacastillo.com +rtd.tubemogul.com +rte-img.nuseek.com +rtg.instantmixcup.com +rt.globalmailer.com +rtkgvp.com +rt.legolas-media.com +rt.liftdna.com +rtl.ivwbox.de +rtl.oewabox.at +rtotlem.pacorahome.com +rtrgt2.com +rtr.innovid.com +rts.doublepimp.com +rts.pgmediaserve.com +rts.phn.doublepimp.com +rts.revfusion.net +rts.sparkstudios.com +rtst.122.2o7.net +rtt.adrolays.de +rt.udmserve.net +r.turn.com +rtve.d1.sc.omtrdc.net +rt.visilabs.com +rtysus.com +rtyszz.com +ru2.hit.stat24.com +ru4.com +ruangmakna.net +rubanners.com +ru.bbelements.com +rubi4edit.com +rubiccrum.com +rubiconproject.com +rubiks.ca +rubinapetra.trade +rubinbashir.net +rubinhostseo.com +rubriccrumb.com +rubyandrobin.com +rubychinese.com.au +rubyfortune.com +rubylan.net +rubytag.net +ruckerstattungswissconn.com +ruclicks.com +ruc.link +ru.com.co +rucrypt.com +ru-dety.ru +rudigier.com +rudy.adsnative.com +ruemedia.adspirit.net +ruemmelin.info +ruex.org.ua +rufeelini.com +rufex.ajfingenieros.cl +ruff-partner.de +rufgusmis.com +ruhr-uni-bocum.de +ruigena.com +ruiland.com.mx +ruivabretof.com +ruiyangcn.com +rukino.org +ruki.ro +rukn-aljamal.com +rulerabbit.com +rules.atgsvcs.com +rules.securestudies.com +ruletkasystem.eu +ruletka-systemy.com +rumahmakannusantara.biz.id +rumamba.com +rum-collector.pingdom.net +rumds.wpdigital.net +rumog.frost-electric-supply.com +rumok.com +rumorfix.us.intellitxt.com +rum-static.pingdom.net +run2anywhere.com +run4anywhere.com +run.admost.com +run.adrizer.com +rundll.co.in +runehp.com +running-line.ru +runslin.com +runstocks.com +runzemaoye.com +rupeewiz.com +rupolding.de +rupor.info +ruporno.org +ru.redtram.com +rurik.at.ua +rurphkjqpsry.com +rusads.toysrus.com +ruscopybook.com +rusenvironmental.net +rusexy.xyz +rushisreal.com +rushrepublic.co.uk +rusoft-zone.ru +ruspdd.com +ruspolice.com +ruspolice.net +russelakic.com +russellhardie.co.nz +russianfossils.com +russianjet.com +russianriver.wine +russian-sex.com +russia-today-video.ru +russintv.fr +russkie-gorki.ru +russkoe-zdorovie.ru +russ-shalavy.ru +rus-teh.narod.ru +rusunny.ru +rutacolegial.com +ru.theswiftones.com +ru-traffic.com +rutrk.org +ru.velti.com +rv.adcpx.v1.de.eusem.adaos-ads.net +rvdjupbinxgidlv.com +rv.furaffinity.net +rvfybrjcr.top +rv-gateway.supersonicads.com +rvkeda.com +rvnc72k.com +rvpadvertisingnetwork.com +rvtv.ru +rvwsculpture.com +rvwvzw.com +rvzr-a.akamaihd.net +r.w.inmobi.com +rwpqswjr.info +rx8club.us.intellitxt.com +rxhair.info +rxrgjjjtdj.rudeliver.top +r.xyz1.pl +ry1wnld.com +ryanbaptistchurch.com +ryanchrist.org +ryanrange.com +ryanrhodes.net +rya.rockyou.com +rybalka-opt.ru +rydium.us.intellitxt.com +rygwelski.com +r.yieldkit.com +ryrcfvklmnoh.com +ryszardmisiek.art.pl +ryuitaqw.pw +ry.znvzzptgblovers.download +rzeczyzadarmo.bo.pl +rzeczyzadarmo.pl +r.zeroredirect.com +rzetelneapteki.pl +rzetelnebiuro.pl +rzltapl2.myhostpoint.ch +rzltimpo.myhostpoint.ch +s01.delivery.addynamo.com +s01-delivery.addynamo.net +s01.flagcounter.com +s02.flagcounter.com +s0.2mdn.net +s03.flagcounter.com +s04.flagcounter.com +s05.flagcounter.com +s06.flagcounter.com +s07.flagcounter.com +s08.com.br +s08.flagcounter.com +s09.flagcounter.com +s0b.bluestreak.com +s101.cnzz.com +s102.cnzz.com +s103.cnzz.com +s105.cnzz.com +s106.cnzz.com +s108.cnzz.com +s109.cnzz.com +s10.cnzz.com +s10.flagcounter.com +s10.histats.com +s10.sitemeter.com +s110.cnzz.com +s111.cnzz.com +s112.cnzz.com +s113.cnzz.com +s115.cnzz.com +s116.cnzz.com +s1184.t.eloqua.com +s118.cnzz.com +s11.cnzz.com +s11.flagcounter.com +s11.histats.com +s11.sitemeter.com +s120.cnzz.com +s128.histats.com +s129js.histats.com +s12.cnzz.com +s1.2mdn.net +s12.sitemeter.com +s130.cnzz.com +s131.cnzz.com +s132.cnzz.com +s137.cnzz.com +s13.cnzz.com +s13.sitemeter.com +s1415903351.t.eloqua.com +s142.cnzz.com +s1471.t.eloqua.com +s1481.t.eloqua.com +s14.cnzz.com +s14.sitemeter.com +s15.cnzz.com +s15.sitemeter.com +s-161978.abc188.com +s16.cnzz.com +s16.sitemeter.com +s17.sitemeter.com +s18.cnzz.com +s18.sitemeter.com +s199.vh46547.eurodir.ru +s19.cnzz.com +s19.sitemeter.com +s1.adform.net +s1.buysellads.com +s1.cnzz.com +s1.cz.adocean.pl +s1.czgde.adocean.pl +s1.delfilt.adocean.pl +s1.edipresse.adocean.pl +s1.eyeonmusica.it +s1.gratkapl.adocean.pl +s1.hit.stat24.com +s1.hit.stat.pl +s1.inviziads.com +s1.listrakbi.com +s1.my.adocean.pl +s1.myao.adocean.pl +s1.pracuj.adocean.pl +s1.rotaban.ru +s1.shinystat.com +s1.shinystat.it +s1.sk.adocean.pl +s1.skgde.adocean.pl +s1.thecounter.com +s1-tracking.adalyser.com +s1w.co +s.206ads.com +s.206solutions.com +s20.cnzz.com +s20.sitemeter.com +s212.ucoz.net +s2150.t.eloqua.com +s21.sitemeter.com +s22.cnzz.com +s22.sitemeter.com +s23.cnzz.com +s23.sitemeter.com +s248.meetrics.net +s24.cnzz.com +s24.sitemeter.com +s25.sitemeter.com +s26.cnzz.com +s26.sitemeter.com +s27.sitemeter.com +s282.meetrics.net +s28.cnzz.com +s28.sitemeter.com +s290.mxcdn.net +s-295606.abc188.com +s29.cnzz.com +s29.sitemeter.com +s2.buysellads.com +s2d6.com +s2.hit.stat24.com +s2.hit.stat.pl +s2.shinystat.com +s2.shinystat.it +s2.statcounter.com +s2.tracemyip.org +s2.trafficmaxx.de +s2.video.doubleclick.net +s2.youtube.com +s300.meetrics.net +s3015.t.eloqua.com +s30.cnzz.com +s30.sitemeter.com +s31.sitemeter.com +s323.t.eloqua.com +s32.bilsay.com +s32.research.de.com +s32.sitemeter.com +s33.cnzz.com +s33.sitemeter.com +s34.cnzz.com +s34.sitemeter.com +s35.sitemeter.com +s36.sitemeter.com +s37.cnzz.com +s37.sitemeter.com +s38.cnzz.com +s38.sitemeter.com +s-39.predictvideo.com +s39.sitemeter.com +s3.adbers.com +s3.addthis.com +s3.buysellads.com +s3.cnzz.com +s3cur3.altervista.org +s3.hit.stat24.com +s3.hit.stat.pl +s3.pageranktop.com +s3.phluant.com +s3.shinystat.com +s3.shinystat.it +s3.trafficmaxx.de +s40.sitemeter.com +s41.sitemeter.com +s42.cpmaffiliation.com +s42.sitemeter.com +s43.sitemeter.com +s44.sitemeter.com +s45.sitemeter.com +s46.sitemeter.com +s47.cnzz.com +s47.sitemeter.com +s48.cnzz.com +s48.sitemeter.com +s49.sitemeter.com +s4.cnzz.com +s4d.in +s4.histats.com +s4.hit.stat24.com +s4.hit.stat.pl +s4is.histats.com +s4le.net +s4rver.com +s4.shinystat.com +s4.shinystat.it +s50.cnzz.com +s50.sitemeter.com +s51.cnzz.com +s51.sitemeter.com +s536335847.mialojamiento.es +s54.cnzz.com +s55.cnzz.com +s5.addthis.com +s5.cnzz.com +s5.spn.ee +s61.cnzz.com +s62.cnzz.com +s62.research.de.com +s63.cnzz.com +s65.cnzz.com +s66.cnzz.com +s68.cnzz.com +s69.cnzz.com +s6d9f6a.at.ua +s6.lebenna.com +s6-pixel.c1exchange.com +s704221163.sito-web-online.it +s70.cnzz.com +s76.cnzz.com +s7.addthis.com +s7.cnzz.com +s80.cnzz.com +s83.cnzz.com +s84.cnzz.com +s85.cnzz.com +s88.cnzz.com +s89.cnzz.com +s8.cnzz.com +s8j1e.com +s8-nowy-wygraj.comli.com +s8s8s8.com +s8x.pl +s92.cnzz.com +s94.cnzz.com +s94u13.top +s95.cnzz.com +s99.cnzz.com +s9.addthis.com +s9c.com.pl +s9.cnzz.com +s9.shinystat.com +sa1.ipon.lt +sa2.ipon.lt +sa2xskt.com +sa7tk.com +saafarihotels.com +sa.aol.com.122.2o7.net +saawa.com +sabaapress.com +sababaishen.com +sabadellat.com +sabashbangladesh.org +sa.bbc.co.uk +sabine-runge-schreibmedium.de +sabizonline.com +sabounyinc.com +sabthekhojayga.com +sabunla.com +sacdcad01.salon.com +sacdcad02.salon.com +sacdcad03.salon.com +sac-informativo.ga +sack.net +sackys.com.mx +sacoles.com +sacredphoenix.com +sact.atdmt.com +s.ad121m.com +s.ad131m.com +sadapm.com +sadaqatbd.com +saddaftar.com +sade-ecrivain.com +s.adexpert.cz +s.adframesrc.com +sadiqtv.com +sadkajt357.com +s.admathhd.com +s.admob.com +s.admulti.com +s.adnxtr.com +s.adroll.com +s-adserver.cxad.cxense.com +s-adserver.sandbox.cxad.cxense.com +sad.sharethis.com +s.ads.t-online.de +sad-torg.com.ua +s.advertiserurl.com +sady-urala.ru +sae3phu.bid +saeamec.com +saemark.is +saem.it +sa.entireweb.com +saequity.com +saeubert.de +safaribooks.112.2o7.net +safari-critical-alert.com +safe-ads-department.com +safeagent.cloud +safe-app.net +safeaquacare.com +safe.bestapps.com-protection.info +safeboxx.kiddibargains.com +safebrowse.com +safedownloadcenter.com +safedownloadsrus166.com +safeedu.com +safe-es.imrworldwide.com +safefshare.com +safeglobaloutlet.ru +safehandlersurf.com +safe.hyperpaysys.com +safeinformationandmode.com +safelinking.net +safemac.co +safemobilelink.com +safemode.imranzaffarleghari.com +safensecure.xyz +safenyplanet.in +safepay2.interactivebrands.com +safepccleaner.com +safepharmstore.com +safepillelement.ru +safetech-online.com +safetem.com +safety-4391.ucoz.ro +safety-acount-system.hoxty.com +safety.amw.com +safety-page-system.hoxty.com +safetyscan.biz +safetyscan.co +safetyscan.info +safetysurfacing.net +safety-user.my1.ru +safetywarningquick.xyz +safflepastorat.se +safir.com.pl +safnis.is +sagarex.us +sagarmanisa.com +sageanalyst.net +sagedigital.checkm8.com +sagemark.ca +sagent.io +sage-tech.com +sahafci.com +saharaartesanias.com.ar +sahayihelp.com +sahraex7vah.info +sai-ascenseurs.fr +saiba-mais-fgts.esy.es +saicopay.irhairstudio.com +saidbelineralservices.ga +saidkiss.net +sail-horizon.com +saintard.cl +saintlawrenceresidences.horizontechsystems.com +saintmor.com +saitevpatorii.com +sajatvelemeny.com +sa.jumptap.com +sakarta.ga +sakitsakitan.hol.es +saksfifthavenue.122.2o7.net +saladecomunicacion.santander.cl.centroagape.cl +salat.pl +saldaomega2015.com +saldodeofertas.ml +saldodeofertas.tk +sale-japan.com +salemvideoservices.com +sales3.gdmachinery.net +sales-cloud.com +saleseekr.com +salesforce.122.2o7.net +salesforcecom.tt.omtrdc.net +salesianet.net +saletool.ru +saleytarget.su +saleztarget.su +saligopasr.com +salimahcikupaols.id +salimer.com.ng +salintasales.com +salintoshourt.com +salliemaecom.112.2o7.net +sallysdottrar.se +salman.or.id +salmassi.ir +salmonfishingsacramentoriver.com +saloboy.popunder.ru +salomonsanchez.com +salon77.co.uk +salonbelladonnaandspa.com +salonkamarmandi.id +salonlimalimon.com +salonspasakura.ru +salopengi.com +salsakurslari.com +salseras.org +salseroporexcelencia.com +salutmontreal.com +salvagexhausters.com +salzburg.oewabox.at +samabelldesign.com +samaclub.com +s.amazon-adsystem.com +sameetc.tk +samething.cf +samfawahl.com +samli.com.tr +sammlungfotos.online +sammyweaver.com +samochod-odbior.pl +samoiedo.it +samolet.fr +samoniklo.pw +samo-soznanie.ru +sampah.hol.es +sample.5gbfree.com +sampleletters.net +samrisadecv.com +samsaracorbett.com +samsclub.112.2o7.net +samsclub33.pochta.ru +sam-sdelai.blogspot.com +samsthita.com +samsung3.solution.weborama.fr +samsung6edge.pl +samsungacr.com +samsungads.com +samtaawaaztv.com +samtrack1.com +samvaulter.com +samwooind.co.kr +sanalreklam.com +sanamtextile.com +sana.newsinc.com +sanatorioesperanza.com.ar +sanatorrii.ru +sancheztalledo.com +sandarac.com.au +sandbox.tk +sandfish.com +sandhillsonline.com +sandiegosecuritiesattorney.com +sandiltd.ge +sandokan66.no-ip.info +sandralucashyde.org +sandravanreys.us +sanfordcorps.com +sangye.info +sanimex.com +sanjesh.estrazavi.ir +sanjivanihospitalandresearchcenter.org +sanjosecatreeservice.com +sankakustatic.com +sankt-peterburg.nodup.ru +sanluisobispowineclubs.com +sanmartin-tr.com.br +sanpietrotennis.com +sansil.eu +sanskarjewels.com +sansonconsulting.com +sansungpromotions.com +san-syo.co.jp +santa.antederpf.com +santacatalina.org.pe +santacruzsentinel.112.2o7.net +santacruzsentinelcom.112.2o7.net +santacruzsuspension.com +santacruzvillage.com +santamilll.com +santamobile.esy.es +santa-mobi.webcindario.com +santander3.com +santander.app-sincronizar.com +santanderb-dados.online +santander.br-pessoa-fisica.com +santander-cl.ga +santander-cnv.com +santanderhub.com +santander.jelastic.dogado.eu +santander-registros.com +santanders-service.com +santandervirtual.xyz +santasecuritbr.000webhostapp.com +santasgift.ml +santavita.com.br +santdervangogh.com.br +santechnik.jimdo.com +sante-habitat.org +santhirasekarapillaiyar.com +santissimo.it +santiware.com +santoantonio.portalrz.com.br +santosemota.com +santoshshivalingh.com +santrnrksmv.com +santrrkstt.com +santuarioopus5.com.br +sanuhotels.com +sanyai-love.rmu.ac.th +sanya.vipc2f.com +sanyuprojects.com +sapartoo.com +sapato01.webtrekk.net +sapatoru.widget.criteo.com +saponintwinfish.com +sapphirecaterers.com +sapphireinformation.com.ng +saquecaixafgts.com.br +saquefgtsinativos.com.br +saqueinativos.com +saqueseufgts.com +sarae.se +sarafangel.ru +sarahadriana.com +sarahcraig.org +sarahdaniella.com +sarah.dntrx.com +saralaska.org +saranconstruction.com +saranville.com +saraprichen.altervista.org +sararoceng81phpex.dotcloudapp.com +saratov.xrus.org +s.arclk.net +sardahcollege.edu.bd +sardinie.us +sarepta.com.ua +sarf3omlat.com +sariherbal.com +sarmangroup.com +sarprofmediator.ru +sars.5gbfree.com +sarvirestaurant.com.au +sas70solutions.net +sasangirtravels.in +sasapparel.com.au +sascentral.com +sa.scorecardresearch.com +sascu.org +sas.decisionnews.com +sasdiskcleaner.com +sashagreyblog.ga +sashipa.com +saso.5gbfree.com +sasson-cpa.co.il +sassynslim.com +sastechassociates.com +sas-truck.ru +s.as-us.falkag.net +satact.com +sat-city-ads.com +satelitni-technika.cz +s.atemda.com +satgurun.com +s.ato.mx +satpix.de +sat.scoutanalytics.com +saturn1.appads.com +saturn2.appads.com +saturn3.appads.com +saturn.appads.com +saturnindia.co.in +saturnlazienki.eu +saturn.tiser.com.au +sauce.nu +saugatuck.com +saumildesai.com +saunaundbad.de +savasdenizcilik.com +savefrom.com +saveindex.xyz +savemanny.us.intellitxt.com +savememoney.co.za +savemypc.co +save-my-snap.pl +saveourlifes.niwamembers.com +save-payments-service.com +save-plan.com +savetubevideo.com +saveupto20.com +save-your-pc.info +savingnegociacoes.com.br +savingsslider-a.akamaihd.net +savings-specials.com +savings-time.com +sa-vision.com +savoyminicab.com +savvyads.com +sawin.beth.webd.pl +sa.www4.irs.gov.irfofefp.start.dojsessionid.hiwcwgdr94ijgzvw.4rcbrnd.texreturn.poeindustrialgiantnigeria.com +saxobutlereagle.122.2o7.net +saxoconcordmonitor.122.2o7.net +saxoeverett.122.2o7.net +saxofosters.122.2o7.net +saxogoerie.122.2o7.net +saxogreensboro.122.2o7.net +saxoorklamedia.122.2o7.net +saxopeninsuladailynews.122.2o7.net +saxorutland.122.2o7.net +saxosumteritem.122.2o7.net +saxotech.122.2o7.net +saxotechtylerpaper.122.2o7.net +saxotelegraph.122.2o7.net +saxotoledo.122.2o7.net +saxowatertowndailytimes.122.2o7.net +saxowenworld.122.2o7.net +saxowesterncommunications.122.2o7.net +saxp.zedo.com +sax-sex.com +sayac.hurriyet.com.tr +sayac.onlinewebstat.com +sayac.onlinewebstats.com +sayelemall.com +sayfabulunamadi.com +sayhello.popunder.ru +sayherbal.com +sayonaraclub.eu +saysidewalk.com +sb1moke.com +s.baidu.com +sbarkey.bplaced.net +sbattibu.com +sbcgloab.esy.es +sbcq.f3322.org +sbdl.no +sbergonzi.org +sbethot.com +sb.freeskreen.com +sbhinspections.com +s.bledea.us.mhqo.ga +sb.monetate.net +sbnationbidder-d.openx.net +sbnc.hak.su +s.boom.ro +sbornik-zakonov.ru +sbparish.com +sbprabooks.com +sbrfeesettelment.com +sbricur.com +sbsblukgov.112.2o7.net +sb.scorecardresearch.com +sbscourier.gr +sbt-aqua.ru +sbtdesign.co.uk +s.btstatic.com +sb.voicefive.com +sbwealthsolutions.ca +sbx.pagesjaunes.fr +sc10.net +sc1.admob.com +sc.5.p2l.info +sc9.admob.com +scaffolds.forpreviewonly.com +scalerite.co.za +scaliseshop.com +scambiobanner.altervista.org +scambiobanner.aruba.it +scan.antispyware-free-scanner.com +scaner-do.tk +scaner-figy.tk +scaner-file.tk +scaner-or.tk +scaner-sbite.tk +scaner-sboom.tk +scaner-sdee.tk +scaner-tfeed.tk +scaner-tgame.tk +scanmarine.info +scanmyphones.com +scanner-alexa.top +scanner-alex.top +scanner-andrew.top +scanner-barak.top +scanner.best-click-av1.info +scanner.best-protect.info +scanner-brian.top +scanner-donald.top +scanner-don.top +scanner-elena.top +scanner-fred.top +scanner-george.top +scanner-irvin.top +scanner-ivan.top +scanner-jack.top +scanner-jane.top +scanner-jessica.top +scanner-jess.top +scanner-john.top +scanner-josh.top +scanner-julianna.top +scanner-julia.top +scanner-margo.top +scanner-mark.top +scanner-marwin.top +scanner-mary.top +scanner-nelson.top +scanner-olga.top +scanner-viktor.top +scanner-walter.top +scanner-walt.top +scanner-willy.top +scansafe.net +scanscout.com +scanspyware.net +scanty.colormark.cl +scanwith.us.intellitxt.com +scanyourantivirus.xyz +scarcestream.com +scarypasta.com +scatecso1ar.com +scci-hub.cc +scctonden.com +scdn.cxense.com +scdown.qq.com +scdsfdfgdr12.tk +scdwsurveying.com.au +sceknur.com +scenarii-1-sentyabrya.uroki.org.ua +scenicmissouri.us +sc-forbes.forbes.com +schaeffers.112.2o7.net +scharfedvds.com +scheerstudio.be +schemas.microsoft.akadns.net +schlaefereit.nrdc.de +schlager.oewabox.at +schlager-treffpunkt.de +schlampen-treffen.com +schlue-tv.de +schmecksymama.com +schneider-simsek.com +schoenbach-druck.de +schoolalarm.in +school-bgd.ru +school-diplomat.ru +schoorsteen.geenstijl.nl +schoosie.com +schorch.com +schorr.net +schriftstelleraerzte.de +schubert-velag.de +schuelvz.ivwbox.de +schuetzengilde-neudorf.de +schulzehoeing.de +schumacher.adtech.de +schumacher.adtech.fr +schumacher.adtech.us +schutz-sicherheitsvorbeugung.ml +schwabinchen.de +schwab.tt.omtrdc.net +schwanz.bilder.com +sciamcom.112.2o7.net +sciamglobal.112.2o7.net +scibich.com +scienceworldreport.us.intellitxt.com +scientificmethodology.com +scientificpesttherapy.com +scimarec.net +sc.independent.co.uk +sc.intellitxt.com +scirakkers.webcindario.com +sciroccoturkiye.com +s.clickability.com +s.clicktale.net +scnscr.me +scnt.rambler.ru +scoalamameipitesti.ro +scoalavara.ro +scoeyc.com +scolcode.com +scomcluster.cxense.com +scoopquest.com +scopelight.com +scopich.com +score-ads.men +scorecardresearch.com +scorecardrewards-survey.com +scoremygift.com +scorepconline.club +score.zeroclickfraud.com +scorpioncigar.com +scotia1-verifications.com +scotiabank-2017.com +scotiabanking-online.890m.com +scotiabank-secure.com +scotiabank-security.com +scotiabank-update.com +scotiabank-verify.com +scotiaonlinesecurity.com +scotia-verify.com +scotlandmal.com +scottirvine.net +scottishstuff-online.com +scott.kr +scottmorrison.info +scottrade.112.2o7.net +scottsilverthorn.com +scounter.rambler.ru +scout24.wemfbox.ch +scout.co.za +scoutrs.com +scout.scoutanalytics.net +scouts.it +sc.radiofficine.it +scramlotts.org +scrapbook.de +scratch2cash.com +scream.garudamp3.com +screamsoferida.com +screenaddict.thewhizproducts.com +screen-mates.com +screensavers.us.intellitxt.com +screenshot-saves.com +screentoolkit.com +scribe.twitter.com +scrippsbathvert.112.2o7.net +scripps.demdex.net +scrippsdiy.112.2o7.net +scrippsfineliving.112.2o7.net +scrippsfoodnet.112.2o7.net +scrippsfoodnetnew.112.2o7.net +scrippsfrontdoor.112.2o7.net +scrippsgac.112.2o7.net +scrippshgtv.112.2o7.net +scrippshgtvpro.112.2o7.net +scrippsrecipezaar.112.2o7.net +scrippswfts.112.2o7.net +scrippswxyz.112.2o7.net +script.banstex.com +script.crazyegg.com +script.crsspxl.com +script.dotmetrics.net +scripted.com +scripte-monster.de +script.ioam.de +script.netminers.dk +script.opentracker.net +scripts.chitika.net +scripts.conversionattribution.com +scripts.demandbase.com +scripts.host.bannerflow.com +scripts.kataweb.it +scripts.kiosked.com +scripts.kissmetrics.com +scripts.linkz.net +scripts.mofos.com +scripts.mycounter.com.ua +scripts.mycounter.ua +scripts.psyma.com +scripts.sophus3.com +scripts.the-group.net +scripts.verticalacuity.com +scripts.webspectator.com +script.tailsweep.com +script.yeb.biz +scrittoriperamore.org +scr.kliksaya.com +scrnet.biz.ua +scrollbelow.com +scrollingads.hustlermegapass.com +scrooge.channelcincinnati.com +scrooge.channeloklahoma.com +scrooge.click10.com +scrooge.clickondetroit.com +scrooge.nbc11.com +scrooge.nbc4columbus.com +scrooge.nbc4.com +scrooge.nbcsandiego.com +scrooge.newsnet5.com +scrooge.thebostonchannel.com +scrooge.thedenverchannel.com +scrooge.theindychannel.com +scrooge.thekansascitychannel.com +scrooge.themilwaukeechannel.com +scrooge.theomahachannel.com +scrooge.wesh.com +scrooge.wftv.com +scrooge.wnbc.com +scrooge.wsoctv.com +scrooge.wtov9.com +scr-paypal.co.uk +scrubsky.com +scrubswim.com +scsandco.co.in +sc-specialhost.com +sc-spyware.com +scsvpm.in +scs.webtrends.com +sctcpasetlement.com +sctcpasettelment.com +scts-uae.com +scubadivingtv.com +scuba-marin.de +scuolaartedanza.net +scuolaartispettacolo.it +scur4-prive-portaal.nl +sc.urban1communities.com +sc.vmware.com +s.cxt.ms +scyber.net +scz.hit.gemius.pl +sd1kalirejokudus.sch.id +sd.5.p2l.info +sdadimkvartiru.ru +sdc2.sakura.ad.jp +sdc8prod1.wiley.com +sdc.acc.org +sdc.brightcove.com +sdc.ca.com +sdc.caranddriver.com +sdc.dishnetwork.com +sdc.dn.no +sdc.entertainment.com +sdcexecs.us.intellitxt.com +sdc.flysas.com +sdc.jumptheshark.com +sdc.lef.org +sdc.livingchoices.com +sdc.mako.co.il +sdc.mcafee.com +sdc.netiq.com +sdc.prudential.com +sdc.radio-canada.ca +sdc.rbistats.com +sdc.roadandtrack.com +sdc.sanofi-aventis.us +sdc.shawinc.com +sdc.tele.net +sdc.traderonline.com +sdc.tvguide.com +sdc.usps.com +sdc.vml.com +sdc.windowsmarketplace.com +sddaiu.com +sdelai-prosto.ru +sdelatmebel.ru +sdengineers.in +sdfef-tn-tnmn.atspace.co.uk +sdffsdsdffsdsfd.akyurekhirdavat.com +sdfgrthfgvfdsd.com +sdfsdgdfgd.amaz.pro +sdg-translations.com +sdhack.com +sdhfjksdhfjksdh.biz.ua +s.di.com.pl +sdi-pme.com +sditazzahra.sch.id +sdjejeran.sch.id +sdkconfig.ad.xiaomi.com +sdk-controller.widespace.com +sdk.streamrail.com +sdlematanglestari.sch.id +sdn1kaliawi.sch.id +sdn2perumnaswaykandis.sch.id +sdn3labuhandalam.sch.id +sdn5bumiwaras.sch.id +sdnegeri1srandakan.sch.id +sdnpudakpayung02semarang.sch.id +sdns.de +sdnxmy.com +sdogiu.bestamazontips.com +s.domob.cn +sdo.oewabox.at +sdoovo.com +s.dpmsrv.com +sdreif.com +sdrescher.net +sdscdn.userreport.com +sdsjweb.com +sdspropro.co.ua +sdt.ru +sdu68.com +se14th.aamcocentraliowa.com +sea31.mfdns.com +seacoastonlinecom.112.2o7.net +seadragonherbery.com +se.adserver.yahoo.com +sea.effectivemeasure.net +seal.ranking.com +seal.validatedsite.com +seamenfox.eu +seancare.com +sea.net.edu.cn +seanksutton.com +seans24.com.pl +seansik24.pl +seansonline24.pl +sean.woodridgeenterprises.com +searbrmiyet.xyz +search2007.info +search2.net +search34.info.com +search4you.50webs.com +searchacross.com +searchaddis.com +search.addthis.com +searchadv.com +searchassistant.iwon.com +searchatomic.com +search-box.in +search.brainfox.com +search.buzzdock.com +search.clicksor.com +search.conduit.com +searchdiscovered.com +search.dmtracker.com +search.eclickz.com +search.effectivebrand.com +searchengineranker.email +searchengineview.com +search-error.com +search.etargetnet.com +searchfeast.com +searchforit.com +search.freeonline.com +searchfwding.com +searchhub.club +searchignited.com +searchimage.co +searchimpression.com +search.in +search.info.com +searchinquire.com +searchinterneat-a.akamaihd.net +search.ipromote.com +search.keywordblocks.com +searchkut.com +searchlock.com +searchmachine.com +searchmagna.com +searchmagnified.com +searchmarketing.com +search.mediatarget.com +search.mywebsearch.com +searchmywindow-a.akamaihd.net +searchnet.com +search.netseer.com +searchnigeria.net +searchnut.com +search-optimizer.ru +search-phentermine.hpage.net +searchpill.boom.ru +searchportal.information.com +search.privitize.com +searchramp.com +searchrapid.pl +searchremagnified.com +search-results.co +searchresultsguide.com +search.sextracker.com +search.spotxchange.com +search.startnow.com +searchstats.usa.gov +searchtoexplore.com +searchtooknow-a.akamaihd.net +searchwebknow-a.akamaihd.net +searchwe.com +searclhe-poisc.ru +sears.112.2o7.net +searschicerewards.com +searscom.112.2o7.net +sears.demdex.net +searsgoldmastercard.com +searsholdings.tt.omtrdc.net +searskmartcom.112.2o7.net +searsspabenefits.com +seasonale.1.p2l.info +seasonalsamplerspecials.com +seasoned-intakes.000webhostapp.com +seasonsgreetings.com.au +seasonvintage.com +seasoshallow.us +seat-guru.de +seavideo-ak.espn.go.com +sebar.thand.info +sebastianalonso.com.ar +sebastianluetzig.de +sebcotrk.com +seb.d1.sc.omtrdc.net +se.bnt-team.com +seb.scorecardresearch.com +sec0rr03x011817ml.club +sec.appleid-apple.store.fjerh.decoys.com.ar +sec-bd.com +secbird.com +secbusiness101.co.za +seccdn-gl.imrworldwide.com +seccioncontrabajo.com +sec.daten-ueberpruefungsservice.net +secdil.com +seceruty-general.rumahweb.org +sec.hit.gemius.pl +secimage.adtech.de +secimage.adtech.fr +secimage.adtech.us +secitasr.holdonhosting.net +sec.levexis.com +secnicceylon.com +secondnaturehypnosis.com +secourisme-objectif-formation.fr +se.cqcounter.com +secretdeal.club +secretdohod.ru +secretscook.ru +secserv.adtech.de +secserv.adtech.fr +secserv.adtech.us +sectoralbase.info +secufast.bplaced.net +secure01chasewebauthdashboard.electoralshock.com +secure.160117rd.xyz +secure1-apple-store-verify-orders.cf +secure1-auth-web.com +secure1-client-updates-com-submit-login-done-lang-us-b7s.dianebulloch.com +secure2.store.apple.com-contacter-apple.jrrdy.com +secure2.store.de.de.ch.shop.lorettacolemanministries.com +secure32.in.net +secure3.marketengines.com +secure4app.com +secure6.platinumbucks.com +secure8.recovery-fanpagee.ml +secureaccess.ronghai.com.au +secureaccountfb.com +secure-account-locked-apple-id.ml +secureaccount-lockedsecurityreasons.tk +secure-account-paypal.com-servive-customer-online.secure-includes-information-personal.signup.walkincareers.com +secure.ace.advertising.com +secure.ace-tag.advertising.com +secure.addthis.com +secure.adnxs.com +secureads.ft.com +secure-ads.pictela.net +secure.adwebster.com +secure-ams.adnxs.com +secure-apps.at.ua +secure-asia.imrworldwide.com +secure.audienceinsights.net +secure-au.imrworldwide.com +secure.auth.kevinyou.com +secure-bankofamerica-checking-account.solutecno.cl +secure.bankofamerica.com.login-access.decorhireco.co.za +secure.bankofamerica.com.online-banking.mlopfoundation.com +secure.bankofamerica.com.updating.account.deproncourier.com +secure.bankofamerica.verify.account.bealonlineservice.com +secure.bankofamerica.verify.account.notification.mrimoveismt.com.br +secure.bidvertiser.com +secure.bidvertiserr.com +secure.cardtransaction.com +secure-cert.imrworldwide.com +securecheckaccount-policyagreement.com +secure.connect.wellsfargo.com.princealbertmonceau.com +securecontactinfo.com +secure-customer-details.mobilyasit.com +secure-dcr.imrworldwide.com +secured-doc.ministeriosaldaterra.com.br +secured-document.bbvvsanluiscapital.org.ar +secure-dev2.confrim-fanpage111.tk +securedfilesign.com +secured.innerbalance-training.com +secure.directtrack.com +secure-dk.imrworldwide.com +securedliveuploads.com +secured.netflix.com.find.userinfo.jh8g7uh72.netuseractive.com +secured.netflix.com.find.userinfo.n87g3hh91.netuseractive.com +securedocumentdownload.usa.cc +securedownload01.net +secure-drm.imrworldwide.com +secure-ds.serving-sys.com +secured.tiffanyamberhenson.com +secured.westsecurecdn.us +secure-ebill.capcham.com +secure-eu.imrworldwide.com +secure-fape92.regis-dev9.ml +secure-fb-recovery-2017.000webhostapp.com +secure.fhserve.com +secure-file.cherryhilllandscapemaintenance.com +secure.flashtalking.com +secure.gaug.es +secure-gl.imrworldwide.com +secure-googledoc.boulderentertainmentllc.com +secure-id.impressiondesk.com +secure.ifbyphone.com +secure.img-cdn.mediaplex.com +secureinfouserapp.blogdns.org +secure.insightexpressai.com +secure-it.imrworldwide.com +secure-jp.imrworldwide.com +secure-js.kontera.com +secure.leadback.advertising.com +secure.leadforensics.com +secureloginbankofamericas-com.tk +securelogin.paypal.it.webapps.mpp.home.autenticazione.2oflranvbs3drvbmwvj2afac0dybr9qinmkumyfng8gnth1q4ah4fi6ecuft.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.alh5zrdnvj7gdymtzxhyea6dsbap6co6om1edtrodnv8c8rsvyg1pb4id5n0.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.cfrsfp8hcpkwdzsetpo8vir0wi1t64yyfq5knbn4ckw231kifi4nz3a9st5m.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.cybgzbqmymjbfcvgdi7aqceiao6d7yfvzclrsxf5whay3gcbddhg8lo81jax.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.gx86fkitocomhes0vfdqv6d1hpsyoxzulwqr8oalqooyt7xfbrwwmznue6it.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.k2q26ojmrogfubejuvyepr9wmrui9iej0ub60bhrqowaqrjac8fspdfrlzaj.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.l3smq6kznlhql0jleqe7ah3yw1oeh3diuwvbr6b6giliikuc2y02w2pisdnq.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.nfesb5q8cmvq5i26d1lchcozxpq9kgmfluhfledohyuc8m8bci4klha9xq8x.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.rqpzrmup7txbcf9eywnz56pwr387jfy2vdrcpbsmvqnxll3jyfysbdfs7cpg.jafinafara.for-our.info +securelogin.paypal.it.webapps.mpp.home.autenticazione.y8pksa9yzdxlzza8bltezyrdc5sgliy0gokyfim5bag2agz2riwg7nkzisfj.jafinafara.for-our.info +securelymanage-001-site1.ctempurl.com +secure.lynxbowlingservices.com +securemacfix.com +secure.marketengines.com +secure.media6degrees.com +secure.medleyads.com +securemoginaccountcheckafterloginpiypaldescure.agenciamcw.com.br +secure.myboa.cn-iba.com +securemylistings.com +secure.mymedcenter.net +securemypc.co.uk +securenetworkforyou.com +secure-new-page-index-nkloip.gdn +secure.ntrl.or.ug +secure-nz.imrworldwide.com +secure.onlinebankofamerica.checking-account.shalomcelulares.com.br +secure-onlinebank-ofamerica-com.cf +secure-onlinebank-ofamerica-com.ml +secureoptimize.club +secureoptsystem.club +secure.paypal.com-appleauth-auth.c86d361e0bd4144.js-news.info +securepaypalsubitoit.altervista.org +secure-processingcenter.com +securepubads.g.doubleclick.net +secure.quantserve.com +secureredirect101.com +secure.resolution-center.carcompanyinternational.com +securerr.com +securerunner.com +s.ecureserver.net +secure-sg.imrworldwide.com +secure-signin-verify-account-service-center.info +securesignupoffers.net +securesignupoffers.org +secure-societegenerale-authpass.com +securesoft.info +secure-softwaremanager.com +secure.square.logindqx.usa.cc +secure.statcounter.com +securetalk.cwsurf.de +securetestingnetwotk.com +securetracking2.com +securetrk1.com +secure.uac.advertising.com +secure-uk.imrworldwide.com +secure.updates.preferenc.cgi-bin.webscr.cmd-login-submit.dispatch.6785d80a13c0db15d80a13c0db1114821217568496849684968484654654s1.veganhedonist.com +secure-us.imrworldwide.com +secure-validaton.com.sicconingenieros.com +secure.vidhack.com +secure.w3track.com +securewealth.us +secure.webconnect.net +secure.webresint.com +secure.xls.login.airbornefnq.com.au +securexone.com +secure-your-info.customerlogin.trilhashost.com +secure-your-pc-now.in +secure-yt.imrworldwide.com +secure-za.imrworldwide.com +securezone33.xorg.pl +securiitypaypal.webcindario.com +securitas232maximus.xyz +securitas25maximus.xyz +securitas493maximus.xyz +securitas611maximus.xyz +securite.01net.com +securitecontrolepass.com +security2017check.cf +security60-e.com +security-account2017.000webhostapp.com +securityaccountapple-id.com +security-account-block.com +securityaccount-lockednow.ga +securityaccount-lockednow.tk +security-accountverificationidentity-login.jerapahboker.ga +securityahoo.com +security-alert.zs2vm.top +securityallianceservices.com +securityandroidupdate.dinamikaprinting.com +securityandsafetytoday.com.ng +security-bankofireland.com +securitycleaner.com +security-facebook-account.usa.cc +securityfacebookresponds.cf +securityhls.com +securityinbox6876.000webhostapp.com +security-inboxx.000webhostapp.com +securityinfo6467.000webhostapp.com +securityinfonuman.000webhostapp.com +security-info-update-account-setting.ga +securityjam.000webhostapp.com +securityjamteam113.000webhostapp.com +securityjamterms.000webhostapp.com +security-message.support +securitymywindowspcsystem.info +securitynotice032ed.000webhostapp.com +security-notifications.com +security-paypal-account-verification.com.moujmastiyan.com +security-paypal.com +securityscan.us +securityservicehome.com +security-signin-confirm-account-information.com +security-support.servicesecure-account-locked-appleid.tk +security-system-failure-alert7609.info +securityteam4655.000webhostapp.com +securityteam46554.000webhostapp.com +securityteam4657.000webhostapp.com +securityteamuin.000webhostapp.com +securityterm68451.000webhostapp.com +securityterms13131.000webhostapp.com +securityterms22781.000webhostapp.com +securityterms3922511.000webhostapp.com +securityterms465.000webhostapp.com +securityterms5231.000webhostapp.com +securityterms991788.000webhostapp.com +securityterms-info99011wt.000webhostapp.com +securitytermsjam.000webhostapp.com +securitytoyouraccount.com +securitytumterms.000webhostapp.com +securityuinnco.000webhostapp.com +securityuirterms.000webhostapp.com +securityupdaters.somee.com +securityupgrade.sumitro.my.id +security.usaa.com.inet.wc.security.center.0wa.ref.pub.auth.nav-sec.themeatstore.in +security-verifty-unlock.com +securitywarning.info +securitywebservices.com +securoptimizesys.club +securtyfanspage23333.mekarpolicy.ml +secur.wellsfarg0.update.alfatatuagens.com.br +secutityinfo875.000webhostapp.com +secuurity.net +secyres.app.cetinge.acc-nortices.com +sedda.com.au +sedesol.sedesol.gob.mx +sedoparking.com +sedotracker.com +sedu.adhands.ru +seductiondatabase.com +seduction-zone.com +seecure-regiss.d3v-fanpag3.ga +seedata.it +seedinganderosioncontrol.com +seegundamano.com +see.hit.gemius.pl +seeingmeerkat.com +seekbang.com +seekultimatestorm.com +seemlessfixing.tech +seemoreresultshu-a.akamaihd.net +seeq.com.invalid +seeques.com +seereederei-frigga.de +seeresultshub-a.akamaihd.net +seet10.jino.ru +seethisinaction.com +see.wheatonlocksmithandgaragedoor.info +s.effectivemeasure.net +sefror.com +seg.1santa-der-mobi.com +segapi.quantserve.com +segege.com +segling-stockholm.se +segment.com +segment-data.zqtk.net +segment-pixel.invitemedia.com +segments.adaptv.advertising.com +segob.gob.mx +segol.tv +segopecel24.id +segredodoslucros.com +se-group.de +segs.btrll.com +seg.sharethis.com +segurancaetrabalhos.com +seguranca-id-santander.tk +segurocadastreseg.com +seguroerastreador.com +segurows.bget.ru +sehristanbul.com +sei9poo.top +seibli.oewabox.at +seidler-gmbh.de +seikopacking.cn +sejaadiferenca.com +sejda.co +sekcjakarpiowa.pl +sekel.ch +sekiz-construction.com +sekscell.com +seksotur.ru +seks-partner.com +seladela.com +selak.info +sel.as-eu.falkag.net +sel.as-us.falkag.net +select001.adtech.de +select001.adtech.fr +select001.adtech.us +select002.adtech.de +select002.adtech.fr +select002.adtech.us +select003.adtech.de +select003.adtech.fr +select003.adtech.us +select004.adtech.de +select004.adtech.fr +select004.adtech.us +selectairconditioning.com +selective-business.com +selenaryan.com +self-defining.com +selfieholiday.com +selfproducit.com +selfpwn.org +selfsurveys.com +sellanannuity.com +sellercentral.amazon.de.4w38tgh9esohgnj90hng9oe3wnhg90oei.fitliness.com +sellingoffgoodsatcheapgasprices.xyz +sellmeyourtraffic.com +sellnine.net +sellnowio.com +selrea-eraeer9.net +selrea-owhcef20.net +semarmas.co.id +semblueinc.viewmyplans.com +semeandodinheiro.com.br +semeimeie.com +semengineers.com +semes.sk +seminarygeorgia59.ga +seminarykansas904.ml +seminolecreativegroup.com +semiyun.com +se.monetate.net +semp.net +semprofile.com +sendagiftasia.com +sendblasters.ga +sender.hipersushiads.com +sender.megapopads.com +senderous.5gbfree.com +sendet.com +sendfwd.com +sendimate.com +sendingmarketing.com +send.microad.jp +sendori.com +sendspace.pw +senger.atspace.co.uk +seniorcommunityapartments.com +seniorlivinglistings.review +senjatransport.com +sennen.org.uk +senrima.ru +sensation.nu +senseiwolf.pl +sensic.net +sensismediasmart.com.au +sentendar.com +sentierdesindes.com +sentieriformativi.it +sentimentindia.com +sento.122.2o7.net +sentrix.wltechnology.com +sentrol.cl +seo-2-0.com +seoanalyses.com +seocheki.net +seoexpertmarketing.in +seofirmreviewsus.info +seoholding.com +seoic.cn +seojee.com +seomarketings.online +seomatrix.webtrackingservices.com +seonetwizard.com +seo-platform.com +seopoint.com +seorank.info +seorankinglinks.xyz +seorevival.com +seosmart.net +seo-smm.kz +seosoftware.onlinedownloads.org +seo-traffic-ranking.info +seouldae.gosiwonnet.com +separatesilver.com +sepung.co.kr +seqsixxx.com +seralf.com +sercontifi.com +serdcenebolit.com +serenescreen-marine-aquarium.en.softonic.com +serenitykathu.com +seres.https443.net +sergarius.popunder.ru +sergeypashchenko.com +sergiorossistore.online +serial-cloner.softonic.fr +serialefilmy.pl +seriale.org.pl +serialsway.ucoz.ru +serials.ws +serieseries.fr +serieshd.top +serieverpasst.de +sernformatio.com +serpihan7711at.000webhostapp.com +serptehnika.ru +serralheriaprojeart.com.br +sers-sar.info +serv0.com +serv2.ad-rotator.com +servad.mynet.com +serv.ad-rotator.com +servads.aip.org +servads.fansshare.com +serv.adspeed.com +serv.clicksor.net +serve.adplxmd.com +serve.ads.chaturbate.com +serve.adworldmedia.com +servedbyadbutler.com +servedby.adcombination.com +servedby.advertising.com +servedby-buysellads.com +servedby.dm3adserver.com +servedby.edgeads.org +servedby.flashtalking.com +servedby.indiads.com +servedby.informatm.com +servedby.ipromote.com +servedby.netshelter.net +servedby.o2.co.uk +servedbyopenx.com +servedby.orn-adserver.nl +servedby.precisionclick.com +servedby.proxena-adserver.com +servedby.revcontent.com +servedby.studads.com +servedby.valuead.com +serve-east.acuityplatform.com +serve.freegaypix.com +serve.getpopunder.com +serve.mediayan.com +serve.oxcluster.com +serve.popads.net +serve.prestigecasino.com +server01.popupmoney.com +server03new.dot.at +server10.opentracker.net +server11.opentracker.net +server12.opentracker.net +server13.opentracker.net +server14.opentracker.net +server15.opentracker.net +server16.opentracker.net +server17.opentracker.net +server18.opentracker.net +server1.adpolestar.net +server1.affiz.net +server1.beaconpush.com +server1.extra-web.cz +server1.opentracker.net +server239servconfig.tk +server2.as5000.com +server2.discountclick.com +server2.ipstm.net +server2.mediajmp.com +server2.opentracker.net +server2.web-stat.com +server3.opentracker.net +server3.web-stat.com +server3.yieldmanaged.com +server4.opentracker.net +server4.web-stat.com +server5.opentracker.net +server6.opentracker.net +server7.opentracker.net +server821.com +server8.opentracker.net +server9.opentracker.net +server.adformdsp.net +server.adform.net +serveradmin.bluedivisionng.com +serveradobe.co.cc +serverappstorprofileuser.gets-it.net +server.as5000.com +server-au.imrworldwide.com +server.bittads.com +server.bovine-mena.com +server-br.imrworldwide.com +server-by.imrworldwide.com +server-ca.imrworldwide.com +server.cpmstar.com +servercustomerappsuser.homeftp.org +server-de.imrworldwide.com +server-dk.imrworldwide.com +server-ee.imrworldwide.com +server-fi.imrworldwide.com +server-fr.imrworldwide.com +server-hk.imrworldwide.com +servericer.wellsfarg0t.com.aquisites.net +server-iclouds.com +serveric.wellsfarg0t.com.aquisites.net +server-it.imrworldwide.com +serverjainpangwang.pw +server-jp.imrworldwide.com +server.jsecoin.com +server.kobatochan.co +server-lt.imrworldwide.com +server-lv.imrworldwide.com +server-no.imrworldwide.com +server-nz.imrworldwide.com +server-observer.com +server-oslo.imrworldwide.com +server-pl.imrworldwide.com +server.popads.net +server.radiosystem.it +server-ru.imrworldwide.com +server-se.imrworldwide.com +server-sg.imrworldwide.com +server.siteamplifier.net +server-ssl.yieldmanaged.com +serversss.biz +server-stockh.imrworldwide.com +server.toolbar.rediff.com +server-ua.imrworldwide.com +server-uk.imrworldwide.com +server-us.imrworldwide.com +server-za.imrworldwide.com +server.zoiets.be +servethis.com +serve.williamhill.com +servfree.it +service001.adtech.de +service001.adtech.fr +service001.adtech.us +service002.adtech.de +service002.adtech.fr +service002.adtech.us +service003.adtech.de +service003.adtech.fr +service003.adtech.us +service004.adtech.fr +service004.adtech.us +service00x.adtech.de +service00x.adtech.fr +service00x.adtech.us +service1.predictad.com +service2017com.000webhostapp.com +service2.predictad.com +serviceaccountverify.net +service.adtech.de +service.adtech.fr +service.adtech.us +service.apple.support.com-icloud-securemailsaccess.igg.biz +service.bankofamerica-paymet-updateinfo.com +service.bfast.com +servicecenter.co.ua +service-center-support.cicotama.co.id +service.clicksvenue.com +service.confirm-id.rpwebdesigner.com.br +service-core.ru +servicedata.it +service-fermeture.cs-go.fr +service-free.net +service-impots.org +service-information.wellspringhypnosis.com +serviceintelsuport.com +serviceitunescenter.com +service-kiert.com +servicelogin.service.true.continue.passive.green-enjoy.com +servicelogin.service.true.continue.passive.zdravozivljenje.net +service.maxymiser.net +servicemeinroom.com +servicementari.co.id +service.mm-r-prop-11-16-2.com +service.multi-pops.com +service.notic.generate-configrate.com +serviceo.comcast.net +service-paypal-information.sweddy.com +service.persianstat.com +servicer.adskeeper.co.uk +servicer.mgid.com +services1.adtech.de +services1.adtech.fr +services1.adtech.us +services.adtech.de +services.adtech.fr +services.adtech.us +services-associes-fr.com +services.avoidunlimitedaccount.com +servicesecur.com +servicesecure-account-locked-appleid.tk +serviceseniorfr.eu +services.hearstmags.com +services.krxd.net +servicesnext.net +services.notification.cspayment.info +servicesonline1.000webhostapp.com +servicesseront.com +servicesservices.optioonlines.eu +services.webspectator.com +services.wes.df.telemetry.microsoft.com +services.x-traceur.com +service.urchin.com +servicewohnung.de +serviceyourpaypal.com +servicfl.beget.tech +servicfrance24h.com +serviciocuentadesoporte.com +serviciosguru.com +serviciosocialescadreita.com +servicossociaiscaixa.com.br +servimat.co +servinauticbalear.com +serving.adbetclickin.pink +serving.adsrevenue.clicksor.net +serving.bepolite.eu +servingnotice.com +serving.plexop.net +serving-sys.com +serving.xxxwebtraffic.com +servis-limit.com +servisural.ru +servives.safeti.specialis-reponces.com +servlet.jkyitv.mail.jandaldiaries.com +serv-load.com +servmill.com +servnet24.de +servserv.generals.ea.com +serv.tooplay.com +servustv.oewabox.at +serw.clicksor.com +serw.myroitracking.com +se.sitestat.com +s.estat.com +setarehabi.ir +seth.riva-properties.com +sethrollins.net +setjetters.com +setordesegurancao.000webhostapp.com +setracorretora.com.br +setragroups.com +settings-account.store.apple.com-account.store.apple.it.inaitt.com +settings-account.store.apple.com-account.store.apple.it.intesasa.com +settings.luckyorange.net +settings-sandbox.data.microsoft.com +settings-win.data.microsoft.com +setup-32.co.in +setup.advancedcleaner.com +setupdate24.updateworkfreshandnew.space +setupdate24.updateworkfreshandnew.website +setupnewpagecom123456789.3eeweb.com +setupnow.checkerweb.com +setupspcp1.888.com +seunpopo.5gbfree.com +sevendays.com.ua +sevenoneintermedia.112.2o7.net +sevenstars7.com +severalriver.net +sevitec.uy +sevki.com +sevvalsenturk.com +sewamainananak.co.id +se-welding.ru +sewingmaker.com +sewnart12.5gbfree.com +sexad.net +sexadvertentiesite.nl +sexavgo.com +sexblog.pw +sexcamamateurchat.com +sexchamp.de +sexcounter.com +sex-dating.co +sexdnes.sk +sex-fabryka.blogspot.com +sexfabryka.blogspot.com +sexfabryki.blogspot.com +sexfilme-download.de +sexflirtbook.com +sexfromindia.com +sex.hotblog.top +sexinyourcity.com +sexitnow.com +sexkontakteao.info +sexkontakte-seite.com +sexkrasivo.net +sexlist.com +sexmax.de +sexndo.com.br +sex-now5.com +sexobzor.info +sexo.camorg.net +sexopia.pl +sexpartnerx.com +sexpartygirls.net +sexphoto.site +sex-pr.net +sexreliz.com +sexsaoy.com +sexsearch.com +sex-sex-sex5.com +sexsponsors.com +sextasis.cl +sextel-24.pl +sex-tele.pl +sextracker.be +sex-tracker.com +sextracker.com +sex-tracker.de +sextracker.de +sexueyun.com +sexvideo-sex.com +sexvporno.ru +sex-watch.com +sexyali.com +sexyatwork.com +sexyblackhot.com +sexyfemalewrestlingmovies-b.com +sexyfemalewrestlingmovies.com +sexyinsaree.com +sexymarissa.net +sexymedia.nu +sexyoilwrestling.com +sexy-pings.com +sexy-screen-savers.com +sexystat.com +sexyster.tk +sexystrippe.info +sexy-stuttgart.de +sexyteens.hol.es +sexytrend.ru +sexzavod.com +sexzoznamka.eu +seznam.hit.gemius.pl +sf2ej57.com +sfabinc.com +sfads.osdn.com +sfascebook.cf +sfd-chess.ru +sffh.de +sfj-ror.no +s.fl-ads.com +s.flite.com +sfr.fr.enligne-activation.ralstonworks.com +sfrtpnvxlswttiol.pw +sftk.net +sftp.clickability.com +sftrack.searchforce.net +sf.vserv.mobi +sg7e.pl +sg.adserver.yahoo.com +sg-cdn.effectivemeasure.net +sgddos.ze.am +sghu.misterjoy.ru +sgikjkjftfg.webstarterz.com +sgmedia.adspirit.net +sgs001.adtech.de +sgs001.adtech.fr +sgs001.adtech.us +sgs.us.com +sg.yimg.com +sh1234.ddns.net +sh199102.website.pl +sh199323.website.pl +sh199947.website.pl +sh200780.website.pl +sh201955.website.pl +sh205082.website.pl +sh206859.website.pl +sh207010.website.pl +sh207542.website.pl +sh209090.website.pl +sh213333.website.pl +sh214075.website.pl +sh214247.website.pl +sh214879.website.pl +sh4sure-images.adbureau.net +shadowraze.pw +shadyacresminis.bravepages.com +shaheenmotors.uk +shaheenpucollege.com +shahjalalbank.com +shahminerals.in +shahn2k.bid +shai880.com +shakeelchoudhry.myjino.ru +shakesea.com +shakhtar-doneck.ru +shaktitextileengr.com +shakytaste.com +shalegasmart.com +shallownation.us.intellitxt.com +shalo.europeslist.com +shamaapparel.com +shamanic-extracts.biz +shama-rc.net +shamsuljewel.com +shanding.ucoz.es +shanescomics.com +shanngroup.com +shantinathadvertisers.com +shapado.com +shapeuptraining.com.au +share31.co.id +shareadspace.com +shareaholic.com +shareasale.com +shareaza.com +sharebar.addthiscdn.com +sharebutton.net +sharebutton.org +share-buttons-for-free.com +sharebutton.to +sharecast.uk.intellitxt.com +shareddocs.net +sharedprofessionalsfiles.kekelu.com.br +sharefile365.com +share-files.eu +sharehosting.pl +sharepointads.com +shares.com.pl +share-server.com +sharesuper.info +sharetherake.com +sharfiles.com +shariki-zuma-lines.ru +sharingnewhope.net +sharjeasoon.ir +shark-hack.xyz +shar-m.com +sharonbyrdcards.com +sharpchallenge.com +sharpdealerdelhi.com +sharp-marine.com +sharpvisionconsultants.com +sharrepoint.com +shatleyfarms.com +shaw600.5gbfree.com +shawan.000webhostapp.com +shawnewspapers.112.2o7.net +shawnmorrill.com +shaybrennanconstructions.com.au +shazlyco.com +shchaoneng.cn +shcpa2011.com +sh.creativcdn.net +shc-rebates.com +shebudgets.us.intellitxt.com +shecamewithabrabus.com +shecanseeyou.info +shedsforliving.com +sheentuna.com.tw +sheeweknits.com +shefa-global.com +sheilageneti.altervista.org +sheknows.us.intellitxt.com +shellbeachsalonspa.com +shell-sylt.de +shell.xhhow4.com +shelovesmehd.com +shelterstraw.com +shemadi.com +shema.firstcom.co.kr +shemalegalls.blogporn.in +shemale-sex.net +shenaaz.com +shenghonghg.com +shenke.com.cn +sherehindtipu.com +sher.index.hu +sherkatkonandeh.com +sherkconstruction.ca +sherkhundi.com +sherko.ir +sherlock.se +shibanikashyap.asia +shicaifanxin.cn +shiduermin.com +shiek1ph.com +shifatour.com +shifttowisdom.com +shiftword.com +shijian.ac.cn +shiksabd.com +shikshaexam.ga +shilparohit.com +shimaxsolutions.co.za +shim.btrll.com +shimeisai.com +shimmer-shine.ru +shinemedicaldevice.com +shinforeshank.com +shinikiev.com.ua +shiningtrends.com +shinsmt.com +shinystat.com +shinystat.it +shinystat.shiny.it +ship-marvel.co.ua +ships.zapto.org +shirimsr.beget.tech +shisha-swag.de +shishuandmaa.in +shitalpurgimadrasha.edu.bd +shitmovs.com +shivafurnishings.com +shiveringsail.com +shivrajchari.com +shlinks.industrybrains.com +shlyahten.ru +shmetall.com.ua +shmjikrhddazenp75.com +shoal.grahanusareadymix.com +shobasakthi.com +shockingswing.com +shodanhq.com +shoeloungeatl.com +shoemakerlawoffices.com +shoesonlinebuy.cn +shoesonlinebuy.xyz +shofarj.com +shohanb.com +shohidullahkhan.com +shomoyarkagoj24.com +shop4lessmart.com +shopacholic.com +shop.acim.org +shopalliedpools.com +shopbaite.ru +shopbitcoin.ru +shopcheermakeup.info +shop-electron.ru +shopewsd.com +shopformebaby.com +shopgirl826.myjino.ru +shophalloweenboutique.com +shophanghot.net +shop-hasan.ru +shop.heirloomwoodenbowls.com +shopiconboutiqe.com +shop.kauffes.de +shoplvlv.us +shopmillions.com +shopmoreapplicat.myjino.ru +shopnexus.de +shop.pcsecurityshield.com +shopperifymac.com +shopperpromotions.com +shopping.112.2o7.net +shopping611.com.br +shoppingads.com +shoppingbox.partner.leguide.com +shoppingcirnecenter.com.br +shoppingjequiti.com.br +shoppingminds.net +shoppingmiracles.co.uk +shopping-offer.com +shoppingsiterewards.com +shoppstop.comood.opsource.net +shoppytoolmac.com +shopriteco.besaba.com +shopscalise.com +shopsclik.ru +shopsellcardsdumps.com +shop-setting-pages.fulba.com +shop.skin-safety.com +shops-malls-rewardpath.com +shop.speedtex.us +shopstickersbysandstone.com +shop-style.pl +shoptosaveenergy.com +shopvilleroyboch.com.ua +shopway.com.au +shopwme.ru +shore-view.com +short-cut.cc +shorte.st +shoutapparel.com +shoutwire.us.intellitxt.com +shovi.frost-electric-supply.com +show.adclick.lv +showads1000.pubmatic.com +showadsak.pubmatic.com +showads.pubmatic.com +show.adzpower.com +show.buzzcity.net +show.communiad.com +showcount.honest.com +showmeflix.com +show-msgch.qq.com +show.onenetworkdirect.net +showpoint.com.br +showroomlike.ru +show.smartcontext.pl +showsplash.com +show-stopper.com +show.targead.com +showup-tv.com.pl +shraddhainternational.in +shrbahamas.net +shreechaitanyatherapy.in +shreedeesa.my-fbapps.info +shreegyanmanjri.com +shreejioverseasindia.com +shreekrishnaarts.co.in +shreesaicare.com +shreesattargamjainsamaj.org +shrek.6.cn +shrisha.co.in +shristihousing.in +shrug-increase304.ru +shs.grafixreview.com +sh-sunq.com +shtaketniki.ru +shtora66.ru +shtpk.com +shuangfeidyw.com +shuangyanpijiage.com +shuangyifrp-com.us +shuangying163.com +shubhrealestates.com +shyamdevelopers.co.uk +shymkent.xkaz.org +shzjt.com +shzrsy.net +si1ef.com +si.2.cqcounter.com +si.adocean.pl +siads.sv.publicus.com +sibdevice.ru +sibecoprom.ru +sibtest.ru +sibvitr.ru +sicherheitonline.sicherheitbeipp.top +sicherheitonline.sicherimpp.top +sicherheitsabfrage-sicher.ml +sicherheitsabgleich.net +sicherheits-bezahlung.ga +sicherheitscenter-amz.xyz +sicherheitskontrolle.ga +sicherheitsstandards-services.com +sicherheitssystem-sicherheitshilfe.ml +sicherheitsvorbeugung-schutz.cf +sicherheitsvorbeugung-schutz.ga +sicherheitsvorbeugung-schutz.tk +sicherheitszone.ml +sicherheitszone.tk +sicher-payp.al-serviceguard.info +sicher-sicherheitsvorbeugungs.tk +sickadangulf-llc.com +sicken.cede.cl +sickoctover.net +sicoobpf5.tk +sicoobpf6.ml +sicoobpf7.ga +sicoobpf8.ga +sicoobpontos.ga +sicoob-pontos.ml +sicoobpromocoes.com +sicredi.com.br.incorpbb.com +sicredion.bremv.com.br +sicredpagcontas.hol.es +sicronkx.bget.ru +sicurezza-41321852158992158020.secureformi.ml +sicurezza-cartasi.it6omudgk.adiguzelziraat.com.tr +sicurezza-cartasi.itax9.vefaprefabrik.com.tr +sicurezzapostepay.eu +siddhiclasses.in +sidebar.angelfire.com +sideshow.directtrack.com +s.idio.co +sieglind-kraemer.de +siemenasrmaad.date +siemens.d1.sc.omtrdc.net +sierraapps.com +sierrafeeds.com +sierravistacfm.com +sifomedia.aftonbladet.se +sifomedia.citypaketet.se +sifomedia.idg.se +sigarabirakmak.in +sig-eb.me +sightseeingtours.com +sightshare.com +sigil.outwar.com +sigin.ehay.it.dev.acconot.ws.italia.oggleprints.co.uk +sigin.ehay.it.ws.dev.eppureart.com +sigmanet.gr +sigmund-freud.co.uk +signal03.ru +signal-office.com +signaturebagels.com +sign.encoding.information.uzmzudseodc2fjpyi6mjcxndiymtuzmzufazdseyi6swh58fmodc2fjqxoc2fjp.chinaboca.com +sign-idapple.com-informationslockedaccount.ml +signin-accessedicloud.com +signin.account.de-id49qhxg98i1qr9idbexu9.pra-hit.me +signin.account.de-id7uo8taw15lfyszglpssi.pra-hit.me +signin.account.de-idanh0xj7jccvhuhxhqyyw.pra-hit.me +signin.account.de-idccfruiaz920arw8ug77l.pra-hit.me +signin.account.de-idi8de9anrso90mhbqqsgd.pra-hit.me +signin.account.de-idms4ototqylaxd0foeken.pra-hit.me +signin.account.de-idny8uxpccywjixug1xkuv.pra-hit.me +signin.account.de-idphliqff4q0b609q0t23d.pra-hit.me +signin.account.de-idwaivnz5caizlhrvfsdsx.pra-hit.me +signin.amazon.co.uk-prime.form-unsuscribe.id-3234.staticfiction.com +signin.amazon.co.uk-prime.form-unsuscribe.id-4919.naturalsoap.com.au +signin.amazon.co.uk-prime.form-unsuscribe.id-5560.naturalsoap.com.au +signin.amazon.co.uk-prime.form-unsuscribe.id-6861.staticfiction.com +signin.appleidinc.supportappleidinc.com +signin.appleidinc.supportappleids.com +signin-ebay-com-ws-ebayisapi-dll-signin-webscr.ocom.pl +signin.e-bay.us-accountid0296059744.sig-eb.me +signin.e-bay.us-accountid0434768464.sig-eb.me +signin.e-bay.us-accountid0617217684.sig-eb.me +signin.e-bay.us-accountid0902852226.sig-eb.me +signin.e-bay.us-accountid1355210440.sig-eb.me +signin.e-bay.us-accountid1450750918.sig-eb.me +signin.e-bay.us-accountid1866103002.sig-eb.me +signin.e-bay.us-accountid1915829942.sig-eb.me +signin.e-bay.us-accountid4358114473.sig-eb.me +signin.e-bay.us-accountid6082574754.sig-eb.me +signin.e-bay.us-accountid6225640039.sig-eb.me +signin.e-bay.us-accountid7762387269.sig-eb.me +signin.e-bay.us-accountid8002207918.sig-eb.me +signin.e-bay.us-accountid8567581227.sig-eb.me +signin.e-bay.us-accountid9241605818.sig-eb.me +signin.e-bay.us-accountid9520580604.sig-eb.me +signin.eboy.de.ws.ebadell.acconto.de.inc.tech-rentals.com +signin.ebuyers.info +signin.encoding.amaz.fbbcr4xmu0ucvwec2graqrjs5pksoamofxrgj5uyza2hm5spdf3fm7gl3rgn.chinaboca.com +signin.paypal.com.webapps.aypal.biz +signin-servicepolicyagreemenst.com +signodoro.se +signoredom.com +signready.com +signsbybarry.com +signs-lifes.125mb.com +sign.theencoregroup.com.au +signup.advance.net +signx.info +siha.de +si.hit.gemius.pl +siibii.com +siigkorp.pe.hu +siilesvoar.com +sijmp.com +sikdertechbd.com +siklushidupsejahtera.co.id +silaintelektu.as9.pl +silasphysio.com.au +silbergnet.com +sildenafilcitratemed.com +silentplanet.in +silentwalk.co.za +silicoglobal.com +siliconera.us.intellitxt.com +siliconstories.it +silinvoice.com +silkrugsguide.co.uk +silktide.com +silurian.cn +silver2.joaservice.com +silverage.ru +silveragesoftware.com +silvercash.com +silverenkruis.nl +silver.joaservice.com +silvermature.net +silvermountholidays.com +silverseaeyecentre.com +silverspurs.net +silvertel.in +silverwoodneighborhood.org +simba.6.cn +simdie.com +simg.sinajs.cn +simg.zedo.com +similardeals.net +simimeinv.com +simmage.gabrielceausescu.com +simon3.ru +simpi.tourstogo.us +simpleads.net +simplehitcounter.com +simple-image.com.ua +simplenobile.com +simplepleasuresadultstore.com +simplepooltips.com +simplequiltmaking.com +simplescienceprojects.net +simple-share-buttons.com +simplexstrength.com +simpli.fi +simplisticnose.com +simplybuy.biz +simplycommoncents.com +simply-follow-the-steps-to-confirm-some-personal-details.ega.gr +simplyfwd.com +simply-high.co.uk +simplyinteractiveinc.com +simplyweb.me +simpoed.ufop.br +simpson4senate.com +sim-service.net +sims-sims.ru +simul.co +sin1.g.adnxs.com +sinacola-egypt.com +sinarmedia.co.id +sinceresofa.com +sincronismo-bb.com +sindragosa.comxa.com +sinel.info +sinembargo.tk +sinera.org +sinestesia.host.sk +sinettrk.com +singandvoice.com +singdoc.com +singhamrecords.com +singin-e3bay-co-uk.daltonautomotive.com +singinhandmade.com +single-online.petrovka.info +singnata.cf +singtel.co +singular-cy.com +siniature.com +sinillc.com +sinkhole-00.shadowserver.org +s.innovid.com +sinoa.com +sinodent.com +sinopengelleriasma.com +sinopsisantv.work +sinruiyi.com +sin.saratov.sarmo.ru +sintracoopgo.com.br +sinuatemedia.com +si.nuggad.net +sionn.biz +siphic5.top +sip.hotmial.com +sipiot.se +sipl.co.in +sippingdreams.com +sircomed.com +siriedteam.com +sirish.com.np +sirius-expedition.com +sis9the.top +sisco.hit.stat.pl +sisiynas.ru +sisorbe.com +sispe.com.br +sistemacentral.xpg.com.br +sistemadepurificaciondeagua.com +sistempage.000webhostapp.com +sisters.truyen24h.info +sisyfos.se +sitbiztut.ru +sit.com.tr +site3.free-share-buttons.com +site.adform.com +siteanalytics.compete.com +site-analyzer.com +sitebeam.net +site-checksite.tk +siteduzero.net +siteexpress.co.il +site.falconbucks.com +siteimproveanalytics.com +siteinterceptco1.qualtrics.com +siteintercept.qualtrics.com +site.johnlewis.com +siteliz.com +sitemanpaintanddec.co.uk +sitemeter.com +siteonomy.com +site.puritan.com +siterecruit.comscore.com +sitesearch.hitbox.com +sitestat.com +sitestat.kpn-is.nl +sitestats.com +site-stats.i8.com +site-stats.rbl.ms +sitestats.tiscali.co.uk +sitetracker.com +sitevaluation.com +sitevalued.com +sithceddwerrop.cf +sitiomonicaemarcia.com.br +sitiovillage.com.br +sitizil.com +sitkainvestigations.com +sitopreferito.it +sitouniversit.altervista.org +sitracoosp.com.br +situ.it +si-unique.com +s.ivillage.us.intellitxt.com +sivs.ru +s-iwantyou.com +si.wemfbox.ch +sixapart.112.2o7.net +sixapart.adbureau.net +sixcooler.de +sixgoody.com +sixsieme.com +sixsigmatraffic.com +siyahii.com +sizzle-savings.com +sj88.com +sjguild.com +sjonlines.org +sjzsenlia.com +sk.5.p2l.info +skachat-besplatno-obrazcy.ru +sk.adocean.pl +ska.energia.cz +sk-almet.ru +skandicfire.de +skanninge.se +skassets.com +skatestick.bid +skelaxin.1.p2l.info +skelaxin.3.p2l.info +skelaxin.4.p2l.info +skesm.se +skf-fag-bearings.com +skgde.adocean.pl +sk.golden-praga.ru +skgroup.kiev.ua +sk.hit.gemius.pl +skibo281.com +skidki-yuga.ru +skidrowcrack.com +skidrowreloaded.pl +skiholidays4beginners.com +skill.skilljam.com +skimlinkscom.skimlinks.com +skimresources.com +skin-care.1.p2l.info +skincrate.net +skin-konkurs.pl +skinmedica.122.2o7.net +skinskonkurs.pl +skinsycs.89.pl +skinycs.pl +skinykonkurs.pl +skip.oewabox.at +skippyfile.com +skiri.zapto.org +sklad-24.ru +skladopaluwojcice.pl +skladvaz.ru +sklandscap.com +skm-fertigungstechnik.de +sknerus.pl +skocz.pl +skottles.com +skovia.com +skqqfgodr.top +skracacz.com +skrill-terms.com +skroc-link.ga +sk.search.etargetnet.com +skstones.com +s.ktxtr.com +skuawillbil.com +skuawill.com +skulljimgm.temp.swtest.ru +skuteczna-dieta.co.pl +skutecznesrodki-tabletkinapotencje.ovh +skutecznetabletkinaporostwlosow.pl +skvs-okp.org +sky.adinfuse.com +skyauction.122.2o7.net +skybo.co +skyboxtraders.co.ke +sky-connect.adinfuse.com +skydersolutions.com +sky.estat.com +sky.kies.co.kr +skylarkproductions.com +skylinemasr.com +skylink-datacenter.de +skylink.vn +skylite.com.sa +skylta.com +sky-mine.ru +skypeclass.com +skypedong.com +skype.dw.land.to +skypefr.com +skypehotologin.com +skypephonephoto126.com +skyperec.com +skype.tom.com +skype.tt.omtrdc.net +skysport.oewabox.at +skysticker.com +skytechme.com +skytraf.xyz +skyway24.ru +skywebprotection.com +slanted.excelonlinereader.services +slap.alliancekl.com +slashfilm.us.intellitxt.com +slashphone.us.intellitxt.com +slate-ad-scripts.s3.amazonaws.com +slateformchase.com +slatercorp.co.za +slatersorchids.co.nz +slavic-magic.ru +slavkokacunko.de +slayerlife.com +slayinglance.com +slbbbcom.112.2o7.net +slcgt.com +slckg-2p3vy.ads.tremorhub.com +sleamcommunilycom.tk +sledstvie-veli.net +sledzememes.pl +sleep-aids.1.p2l.info +sleeper-sofa.dreamhoster.com +sleep.vermontteddybear.com +slf5cyd.info +sliceofsummer.com +slices-ices.com +slickaffiliate.com +slider.plugrush.com +slightlyoffcenter.net +slimcdn.com +slim.sellany.ru +slimspots.com +slimxxxtubeacn.dnset.com +slimxxxtubealn.ddns.name +slimxxxtubeanr.ddns.name +slimxxxtubeaxy.ddns.name +slimxxxtubeayv.ddns.name +slimxxxtubebej.dnset.com +slimxxxtubebgp.ddns.name +slimxxxtubebmq.dnset.com +slimxxxtubebnd.ddns.name +slimxxxtubecgl.ddns.name +slimxxxtubectk.dnset.com +slimxxxtubecty.ddns.name +slimxxxtubeczp.ddns.name +slimxxxtubedgv.dnset.com +slimxxxtubedjm.ddns.name +slimxxxtubedlb.ddns.name +slimxxxtubedvj.dnset.com +slimxxxtubedxc.ddns.name +slimxxxtubedya.ddns.name +slimxxxtubeejs.ddns.name +slimxxxtubeemz.dnset.com +slimxxxtubefdr.ddns.name +slimxxxtubefel.ddns.name +slimxxxtubeftb.dnset.com +slimxxxtubefzc.ddns.name +slimxxxtubehan.ddns.name +slimxxxtubehdn.dnset.com +slimxxxtubehli.dnset.com +slimxxxtubeidv.ddns.name +slimxxxtubeijc.dnset.com +slimxxxtubeiqb.dnset.com +slimxxxtubejie.dnset.com +slimxxxtubejlp.ddns.name +slimxxxtubejpe.ddns.name +slimxxxtubejvh.ddns.name +slimxxxtubejyk.ddns.name +slimxxxtubekad.ddns.name +slimxxxtubekgj.ddns.name +slimxxxtubekgv.ddns.name +slimxxxtubeklg.dnset.com +slimxxxtubekpn.ddns.name +slimxxxtubekrn.ddns.name +slimxxxtubelap.ddns.name +slimxxxtubelat.ddns.name +slimxxxtubelfr.ddns.name +slimxxxtubelzv.ddns.name +slimxxxtubemue.dnset.com +slimxxxtubeneg.ddns.name +slimxxxtubeneu.ddns.name +slimxxxtubengt.dnset.com +slimxxxtubenqp.ddns.name +slimxxxtubentf.dnset.com +slimxxxtubeocr.dnset.com +slimxxxtubeonf.dnset.com +slimxxxtubeopy.ddns.name +slimxxxtubeoxo.ddns.name +slimxxxtubeoxy.ddns.name +slimxxxtubeppj.dnset.com +slimxxxtubeqfo.ddns.name +slimxxxtubeqsh.ddns.name +slimxxxtubeqve.dnset.com +slimxxxtubeqwr.dnset.com +slimxxxtuberau.ddns.name +slimxxxtuberea.ddns.name +slimxxxtuberep.dnset.com +slimxxxtuberfe.dnset.com +slimxxxtuberjj.ddns.name +slimxxxtuberme.dnset.com +slimxxxtuberue.dnset.com +slimxxxtubesrs.dnset.com +slimxxxtubesrw.ddns.name +slimxxxtubesun.ddns.name +slimxxxtubetmf.ddns.name +slimxxxtubetmg.dnset.com +slimxxxtubetns.ddns.name +slimxxxtubetts.dnset.com +slimxxxtubeubp.dnset.com +slimxxxtubeujh.ddns.name +slimxxxtubeull.dnset.com +slimxxxtubeuvd.dnset.com +slimxxxtubevdn.ddns.name +slimxxxtubevih.dnset.com +slimxxxtubevjk.ddns.name +slimxxxtubewfl.ddns.name +slimxxxtubewiq.ddns.name +slimxxxtubewis.ddns.name +slimxxxtubewmt.dnset.com +slimxxxtubexei.ddns.name +slimxxxtubexiv.dnset.com +slimxxxtubexvq.ddns.name +slimxxxtubexwb.dnset.com +slimxxxtubexxq.dnset.com +slimxxxtubeyge.ddns.name +slimxxxtubeyhz.ddns.name +slimxxxtubeyza.ddns.name +slingshotvisualmedia.com +slitter-io.com +slivoratikam.pw +sljhx9q2l4.ru +sljtm.com +slkrm.ru +slodkieklamstewka.eu +slo-engine.intextad.net +sloi1.com +slonechka.ru +slopeaota.com +slorent.com +slo.sk +slot.sub-zero.it +slov100.ru +slovakia.hit.gemius.pl +slowmacfaster.trade +slowmac.tech +slowpcfixed.co.in +slqctzspc.top +sl-retargeting.adsonar.com +slrtyiqi007.us +sls.update.microsoft.com.akadns.net +slther-io.com +slt.hit.gemius.pl +sltravelcom.112.2o7.net +sluganarodu.ru +slujbauborki.ru +slutloadlive.com +slvv9.com +slyokka.com +sm1.sitemeter.com +sm2.sitemeter.com +sm3maja.waw.pl +sm3.sitemeter.com +sm45mailtrack.com +sm4ll.in +sm4.sitemeter.com +sm5.sitemeter.com +sm6.sitemeter.com +sm7.sitemeter.com +sm8.sitemeter.com +sm9.sitemeter.com +smaato.net +smac.or.kr +smailik.org +smallcss.5gbfree.com +smalleymfg.com +small-game.com +small-games.biz +smallhost.de +small-shopping.xyz +smallsmallworld.co.nz +smallwonders.nz +s.marketwatch.com +smart4ads.com +smartabouthealth.us.intellitxt.com +smartad.mercadolibre.com.ar +smartad.mercadolivre.com.br +smartadserver.com +smartawards.pl +smart-balancewheel.com +smartbalanceworld.com +smart.besonders.ru +smartcarfinder.us.intellitxt.com +smartclip.com +smartclip.net +smartcontext.pl +smartdevicecentral.us.intellitxt.com +smartdigi.id +smartenergymodel.com +smarterbettercities.ch +smartfixer.software-phile.com +smartfoodsglutenfree.kz +smartgiveaway.com +smartherbgroup.eu +smart.hola.com +smarticullties.com +smartify.org +smartinit.webads.nl +smartmaxims.com +smartmediasearcher.com +smartmoney.112.2o7.net +smartperf.com +smartpet.ru +smartpillsvalue.eu +smartresurfacing.com.au +smartroutefinder.com +smart-scripts.com +smartshare.lgtvsdp.com +smartshopdeal.com +smartshoppymac.com +smartsoft-communicator.co.za +smartstats.com +smart.styria-digital.com +smart.synergy-e.com +smartxads.com +smashingstartup.com +smashtheflash.com +smbcass.com +smbcebz.com +smbceop.com +smbcggb.com +smbcmvp.com +smbcnsn.com +smbcuxp.com +smbczxp.com +smc.silvercash.com +smeatvan.biz +s.media-imdb.com +smedizin.oewabox.at +s.megaclick.com +smehelp.org +smestudio.com.uy +smetrics.att.com +smetrics.creditreport.com +smetrics.freecreditreport.com +smetrics.yellowbook.com +smf-modellismo.net +smf.spring-tns.net +smibs.112.2o7.net +smichovbike.cz +smiercidata.5v.pl +smiertelnywypadek.prv.pl +smile-angel.com +smileapparels.com +smile.ganhandoitensextra.com.br +smile.ganhandopontos.com.br +smile-glory.com +smile.modchipstore.com +smiles.org.il +smiles.pontosextra.com.br +smiletownfarm.com +smileysjokes.com +smilingfaceband.com +smilll.depozit.hr +smitaasflowercatering.com +smithwick.net +smkkartika2sby.sch.id +smkn1muaraenim.sch.id +smkn2ponorogo.sch.id +smknurulislamgeneng.sch.id +smmarketingindia.com +smmgigs.com +smm.sitescout.com +smmu-ipv6.smmu.edu.cn +s.moatads.com +s.mobclix.com +smokepipes.net +smokersblogs.com +smokersopinionpoll.com +smokesonstate.com +smokewithrabbits.com +smokingeverywhere.122.2o7.net +smokinggun.122.2o7.net +smowtion.com +smp.adviva.net +smpn2blado.sch.id +smpn2wonosalamdemak.sch.id +smpn5jpr.sch.id +smpn9cilacap.sch.id +smpopmech.112.2o7.net +smp.specificmedia.com +smrcek.com +smrlbd.com +smrrbt.com +smrtpxl.advertising.com +sms18.in +sms2x2.ru +sms4all.pl +sms-ads.com +smscaixaacesso.hol.es +smsiaki.eu +smsleaf.com +sms-lnterac.com +sms-market.com.ua +smsmovies.net +sms-napisz.pl +sms.oewabox.at +sms.pessoafisicabb.com +smstau.com +smstraf.ru +sms-za-darmo.pl +sms-z-internetu.pl +smtp.2911.net +smtp.hanmal.net +smtp-host.smtp.ru +smtp.macau.ctm.net +smtp.orwbystre.com +smtp.potinsnews.com +smtp.praktischertipp.de +smwww.112.2o7.net +snaffo.se +snagajob.122.2o7.net +snakesort.com +snapads.com +snap.cba.pl +snapchat-save.blogspot.com +snapfish.112.2o7.net +snappyjet.com +snapshotfinancials.com +snaps.vidiemi.com +snare.iesnare.com +sn.baventures.com +sndclouds.com +sneakerstore.com.pl +sneaklevel.com +sneakyboy.com +sneakystamp.com +snekdeal.com +sn-gate.com +sngpartners.in +sn-gzzx.com +snickersapp.com +sniff.visistat.com +snip.answers.com +snipjs.answcdn.com +snip.ly +snip.tw +snjack.info +snjatie-geroinovoy-lomki.ru +snkforklift.com +snkschool.com +snomer1.ru +snoobi.com +snooze.de +snore.sabreasiapacific.com +snow.nvr163.com +snowplanes.com +snrav.cn +snrp.uglyas.com +snsdeainavi.info +s.ntv.io +snwmedia.adk2x.com +snworks.com +snws8.healthyspecialnewinfo.rocks +snyatie-lomki-v-stacionare.ru +so.2mdn.net +soaksoak.ru +soal.nl +soap.iovation.com +soaresdrivingschool.us +soaresesquadrias.com.br +sobar.baidu.com +sobartop.baidu.com +sobecjvuwa.com.ru +soblaznu.net +sobolev.net.ru +sobreco.com +socas.pluto.ro +socceraccess.net +soccergaming.us.intellitxt.com +soccerinsider.net +soccerstreaming.co.uk +soc-econom-problems.ru +sochindia.org +sochr.com +social-ads-inc.com +socialanxietysupport.us.intellitxt.com +social.bidsystem.com +social-buttons.com +socialbuttons.xyz +socialfacebook.com +social-fun.ru +social-genius.co.uk +socialitelife.us.intellitxt.com +socialize.eu1.gigya.com +socialking.in +sociallitelife.tags.crwdcntrl.net +socialmadesimple.com +socialmediaadverts.com +social-media-agentur-hagen.de +socialmediasuggest.com +socialmediawiththestars.com +socialme.tk +socialpioneer.de +socialseet.ru +socialspark.com +social-vestnik.ru +sociesccuritiba.com.br +societymix.com +sockshare.net +sockslab.net +soclone.com +socolat.info +socpixel.bidsystem.com +soc-proof.su +sodakventures.com.ng +soda.media +sodastram.de +sodboa.com +sodecoperu.com +sodexo.com +soellas.com +soempre.com +sofa01.webtrekk.net +sofeminine.uk.intellitxt.com +sofiaaxelsson.se +sofiages.com +sofialopes.pt +sofiashouse.web.id +sofit-dmd.ru +sofmap.112.2o7.net +soforakademisi.com +soforteinkommen.net +sofostudio.com +soft1.ru +soft32.us.intellitxt.com +soft4click.com +soft4update.forfreeupgrades.org +softads.50webs.com +softclick.com.br +softcontab.ro +softcore.xxxcounter.com +softer.com.ar +softextrain64.com +softh.blogsky.com +soft.jbdown.net +softlayer.d1.sc.omtrdc.net +softlinesolutions.me +softlinkers.popunder.ru +softomix.com +softomix.net +softonic.112.2o7.net +softonicads.com +softonic-analytics.net +softonic.com +softonic.de.intellitxt.com +softonic.it +softpedia.uk.intellitxt.com +softpedia.us.intellitxt.com +soft-program.com +softprojects007.ru +softquotient.com +softreadynow.thebigforeverupgrade.review +softreadynow.thespaceupdatespcandmac.info +softservebusiness.com +softsmart.mobi +softs.pingfiles.fr +softsunvinyl.com +soft-terminal.ru +softtor.com +softwarekioscos.com +softwareonlineindonesia.com +software-phile.com +softwarepiset.com +softwareschmiede.de +software.software-now.net +softwaretrend.net +softwareupdaterlp.com +software-updates.co +softwareupdate.thebestevercentralsystoupdate.stream +software-wenc.co.cc +softworkvalid.co.za +softxaker.ru +sogena.it +soguiba.org +soheavyblog.com +sohelartist.com +sohh.us.intellitxt.com +sohoindia.net +soh.rd.sl.pt +soildone.net +soilhuikgss.com +soirsinfo.com +soka-adserver.c1exchange.com +sokarajatengah.or.id +sokrates.adtech.de +sokrates.adtech.fr +sokrates.adtech.us +sokratesolkusz.pl +sol.adbureau.net +solar-cco.com +solarno-sim.net +soldadorasmiller.com +solelyfun.com +solicita.info +solidallianzemfb.com +solidbau.oewabox.at +sol-images.adbureau.net +solitaire-game.ru +solitairetime.com +solkurort.ru +solmarket.by +solnplast.ru +solo-juegos.com +solomikeartwork.com +soloteatro.cl +solowires.com +solsteiner.at +solubaba.tk +solutionempilhadeiras.com.br +solutioner.com +solutiongate.ca +solution-istoreweb.com +solutionscore.com +solution.weborama.fr +soluxury.co.uk +solventra.net +solve.nu +solveseek.com +solvusoft.com +soma.1.p2l.info +soma.3xforum.ro +som.aeroplan.com +soma.smaato.net +soma-store.visa-usa.ru +someonewhocares.com +somethingawful.crwdcntrl.net +somethingawful.us.intellitxt.com +somethingnice.hc0.me +somnoy.com +somosunavo.com +sompuserve.com +sonamguptabewafahai.xyz +sonarbanglatravels.co.uk +sonar.sociomantic.com +sonata.1.p2l.info +sonata-arctica.wz.cz +sonatns.sonatrach.dz +soncagri.com +sondajekipmanlari.com +songoo.wz.cz +songplanet.ru +songreen.com +sonic2online.com +sonicdirvein.com +sonico.co +sonicons.com +sonnikforme.ru +sonobi.com +sonolivar.com +sonoma-wine-tasting.com +sonychina.112.2o7.net +sonycomputerentertai.tt.omtrdc.net +sonycorporate.112.2o7.net +sonycorporate.122.2o7.net +sonyelectronicssupportus.112.2o7.net +sonyglobal.112.2o7.net +sonymediasoftware.112.2o7.net +sonyplaystion.com +sonyscei.112.2o7.net +sony.tcliveus.com +soongu.info +soon.iancugelu.net +soonwing.com +soothingminds.biz +sophang8.com +soporte-cuentas-servidores09.com +soporte.personas.serviestado.cl.conectarse.mejorespersonaschilenas.com +sorclan.za.pl +sorhen.com +sormal.pl +s.oroll.com +sorongraya.com +soros.departamentosejecutivos.cl +sorpetalerusa.com +sortthemesitesby.com +sorup.com +sorvetedelivery.com +soscisurvery.de +soserfis.com +soski.popunder.ru +so-socomix.com +sospeintures.com +sosplombiers-6eme.fr +sosplombiers-8eme.fr +sosplombiers-9eme.fr +sossec.com +sostats.mozilla.com +sostox.com +sostrengrene.com +sotimnehenim.pythonanywhere.com +sotkal.lark.ru +sot-v.ru +soudagarminerals.com +soulkhat.my +soulmemory.org +soundfrost.org +soundfyles.eloyed.com +soundsketch.com +sourcefb5.000webhostapp.com +sourceforgemedia-computing.t.domdex.com +source-games.ru +sourcescn.ca +sourceworldltd.com +sourmath.com +sousay.info +southcoasttoday.112.2o7.net +southcoasttodaycom.112.2o7.net +southeasternhotelmanagement.com +southernoutdoorproducts.com +southgatetruckparts.com +southsidedeals.com +souzaaguiar.bid +sovereign.sitetracker.com +sovetogorod.ru +soviego.top +soviet-portal.do.am +sovinsteel.ru +sowellness.be +sowhatdidyathink.com +sowmilk.pacorahome.com +sowparnikarts.com +soxforall.org +soxorok.ddospower.ro +sp1cluster.cxense.com +sp1.convertro.com +spacash.com +space4update.pw +space4updating.win +spacebusinesshub.com +spacefoto.com +spaceinter.com +spaceplan.co.in +spacesbyjudy.com +spaceshipad.com +spaces.slimspots.com +space.us.intellitxt.com +sp.adbrn.com +spadeglobal.com +spads.yamx.com +spaguilareal.mx +spakasse-bamberg.de +spamboxx909.000webhostapp.com +spamfighter.112.2o7.net +spammen.de +spamnuker.com +sp.analytics.yahoo.com +spanel.gem.pl +spanids.dictionary.com +spanids.thesaurus.com +spanishdict-d.openx.net +spanish-fishing.de +spanishfrompauley.com +spankbang.co.uk +spaorescoliin0.com +spaplanet.pl +sparc.nour.net.sa +sparkass-ansbach.de +sparkasse.aktualisieren.com.de +sparkassekonto.com +sparkasse-onlinebanking.info +sparkcognition.co +sparkinfosystems.com +sparklinktravels.net +sparknetworks.112.2o7.net +sparkstudios.com +spartanr.5gbfree.com +s-parta.za.pl +spasswelt.net +spasswelt.xyz +spasticstrichy.in +spatsz.com +spbchampionat.ru +spb-plitka.ru +spb.ru +spc.cefhdghhafdgceifiehdfdad.iban.telemetryverification.net +spc.cekfmeoejdbfcfichgbfcgjf.vast2as3.glammedia-pubnet.northamerica.telemetryverification.net +spc-maker.com +spcode.baidu.com +spd.atdmt.com +spd.atdmt.speedera.net +speakyourminddesigns.com +spe.atdmt.com +specialfood.com.br +specialgiftrewards.com +specialistups.com +specially4u.net +specialoffers.aol.com +specialonlinegifts.com +special-porn.com +specialsections.siteseer.ca +specials-rewardpath.com +specialtyclub.hitbox.com +specificmedia.com +specificmedia.co.uk +specificpop.com +specilized.com +specjalniedlaciebie.com +specjalservice.pl +spectacularsnail.com +spectra.com.co +speedaf.de +speedbar.myway.com +speedbd.com +speedboink.com +speedclicks.ero-advertising.com +speedcounts.com +speedcurve.com +speedex.me +speedfile.info +speedguide.us.intellitxt.com +speed.lstat.youku.com +speed-lte.pl +speednetwork14.adk2.co +speednetwork14.adk2x.com +speednetwork6.adk2x.com +speed.pointroll.com +speedrep.com +speedtestbeta.com +speedtv.us.intellitxt.com +speedup-my.site +speedynewsclips.com +speising.oewabox.at +spekband.com +spellstores.com +spencergifts.112.2o7.net +speroni.pw +spezialreporte.de +spgrupo.com.br +spiderbait.com +spidol.webcam +spi.domainsponsor.com +spidtest.org +spiegel.ivwbox.de +spiegel.met.vgwort.de +spiekers.com +spielwaren-trefz.de +spike669.popunder.ru +spiketv.112.2o7.net +spillvacation.com +spin2016.cf +spinbox.com +spinbox.consumerreview.com +spinbox.freedom.com +spinbox.maccentral.com +spinbox.macworld.com +spinbox.techtracker.com +spinbox.versiontracker.com +spinmedia-d.openx.net +spinnerco.ca +spin.spinbox.net +spinylla.ru +spir.hit.gemius.pl +spirlymo.com +spisforum.se +spitwaterqld.com.au +spixel.adsafeprotected.com +spklds.com +spl4023.online +splashnews.uk.intellitxt.com +splendorsearch-a.akamaihd.net +spl.hit.gemius.pl +splitter.ndsplitter.com +spm.efa-light.com +spns.seriousads.net +spocktuner.jupiterjuice.org +spokanefitness.com +spokeo.pl +sponsor1.com +sponsorads.de +sponsoredlinks.nationalgeographic.com +sponsorpro.de +sponsors.behance.com +sponsors.ezgreen.com +sponsorships.net +sponsors.thoughtsmedia.com +sporhaberiniz.com +sport1.wemfbox.ch +sport5.checkm8.com +sport5digital.checkm8.com +sport7777.net +sportadmin.myjino.ru +sportaladbg.hit.gemius.pl +sportalbg.adocean.pl +sportat.oewabox.at +sport-betting-online.hitslog.net +sport.count.brat-online.ro +sportechipe.ro +sport.gov.mo +sportingbeteur.adsrv.eacdn.com +sportingnews.122.2o7.net +sportingnews.us.intellitxt.com +sport.plumts.com +sport.prf.at +sportsbettingaustralia.com +sports-bonuspath.com +sportscarillustrated.us.intellitxt.com +sports-fitness-rewardpath.com +sports.ign.us.intellitxt.com +sportsillustrated.tags.crwdcntrl.net +sportsinteraction.com +sports.msnbc.us.intellitxt.com +sports-offer.com +sports-offer.net +sportsonline.gr +sports-premiumblvd.com +sportsresor.se +sports.rightpundits.us.intellitxt.com +sports-supplements.us +sportsulsan.co.kr +sport-video-obzor.ru +sporty-licious.com +spotdirect.tv +spot.fitness.com +spot-light.de +spotmarka.ap0x.com +spots.ah-me.com +spotsniper.ru +spotxchange-a.akamaihd.net +spotxchange.com +s.ppjol.net +sppressindustries.com +sprachakademie.info +spraguesnursery.com +spravka130.ru +spravki-online.hit.bg +sprawdzaj-gosci6.6te.net +sprawdziany-odpowiedzi.bo.pl +sprawdziany-odpowiedzi.pl +sprawdzianyodpowiedzi.pl +sprawdzianyonline.pl +sprawdzianyszkolne.pl +sprawdzktopodgglada.blogspot.com +sprawdz-ogladaj.bo.pl +sprawdzpl.pl +sprawdzpunktykarne.eu +sprawdz-to.cba.pl +sprawdz-to.ga +spraywiredirect.com +spread.diadanoivabh.com.br +spreadsheet.bdevelop.co.za +spreadyourtentacles.com +springclick-ads.s3.amazonaws.com +springcoaching.com +springfieldfiles.com +sprintglobal.112.2o7.net +sprintusers.us.intellitxt.com +sprttrack.com +sps01.office.ctm.net +sps-shop.com +sp-storage.spccint.com +sptslmtrafms.com +sptssspk10.cloudapp.net +s.pubmine.com +spunkyvids.com +spwon.com +spw-school.com +spx.owneriq.net +spyarsenal.com +spyeng.ru +spyfu.com +spykemediatrack.co +spykemediatrack.com +spykit.110mb.com +spylog.com +spylog.ru +spymac.net +spymac.us.intellitxt.com +spyshredderscanner.com +spy-sts.com +spytrack.tic.ru +spywarebegone.com +spywareit.com +spywarelabs.com +spywarenuker.com +spywarepc.info +spyware-removers.shengen.ru +spyware-scan.100gal.net +spywareshop.info +spywaresite.info +spywarespy.com +spyware.usafreespace.com +spywords.com +sq2trk2.com +sq7.co.uk +sqbdfyy.com +sqetanarianaqh.com +sqfadsde.com +sqliinfos.com +sqlservercentral.us.intellitxt.com +sql-server-driver.beesearch.info +sqm.df.telemetry.microsoft.com +sqmeinv.com +sqm.telemetry.microsoft.com +sqm.telemetry.microsoft.com.nsatc.net +squairel.com +square1.fastdrynow.com +squarefixv.com +squarefootball.uk.intellitxt.com +squareonline.biz +squaresupportn.net +squareup-admin.com +squeamishscarecrow.com +squibnetwork.co.za +squid.diepresse.com +squidoo.com +squirtvidz.com +sr2.liveperson.net +srcapowq.beget.tech +src-coaching.fr +srch.atdmt.com +srch.startnow.com +src.kitcode.net +srdcfoods.com +srdrvp.com +srecorder.com +sreeshbestdealstore.com +s.rev2pub.com +sricar.com +srijayalaxmiindustries.com +srisai-logistics.com +srisaranankara.sch.lk +srivelavantimbers.com +srkhmer.com +srnartevent-lb.com +sroomafp.allyes.com +sr-rekneskap.no +sr.rlcdn.com +srsdcollege.co.in +srslogisticts.com +srs.targetpoint.com +srtoys.com +srv1.overmedia.com +srv1.rapidstats.de +srv1.ricin.im +srv2trking.com +srv2.twittercounter.com +srv2-verify-apple.intl-updateverification.gq +srv7416.paypal.activity.account.id73165.mdnfgs.com +srv.adengage.com +srv.admailtiser.com +srv.adngin.com +srv-archive.ru +srv.bebi.com +srv.bidvertiser.com +srv.buysellads.com +srv.carbonads.net +srv.clickfuse.com +srv.juiceadv.com +srvkloudexch.com +srvmobile-free.info +srvpub.com +srv.sayyac.com +srv.sayyac.net +srv.stackadapt.com +srv.uk.znaptag.com +srv-us.znaptag.com +srwww1.com +ss-01.com +ss100shop.com +ss1.zedo.com +ss2.zedo.com +ss3.zedo.com +ss7.zedo.com +s.sa.aol.com +ssads.osdn.com +ssaintander-serv1.com +ssartpia.or.kr +ssativewear.com +ssautoland.com +ss-autorigine.myjino.ru +ssbo98omin.rr.nu +sscdn.banners.advidi.com +ssd4.pdns.cz +ssdc.icelandair.com +ssend.microad.jp +ssg.ch +ssgsna7n.beget.tech +ss.hitbox.com +s.shopify.com +ssiapawz.com +ssilmppplxbr.org +s.skimresources.com +ssl2anyone2.com +ssl2anyone3.com +ssl2anyone4.com +ssl2anyone5.com +ssl2anyone.com +ssl3.adhost.com +ssl4anyone2.com +ssl4anyone3.com +ssl4anyone4.com +ssl4anyone5.com +ssl4anyone.com +ssl-6582datamanager.de +ssl.amazon-id-15982.de-customercenter-verifikation.info +ssl.amazon-id-17982.de-customercenter-verifikation.info +ssl.clickbank.net +ssl-compass.oewabox.at +ssl-drive-drop-com.deltastatelottery.com +sslexchcert.com +ssl-geizhals.oewabox.at +ssl.google-analytics.com +ssl-helpgvat.oewabox.at +ssl.istore-recheckbill-idwmid4658944.topslearningsystem.org +ssl-karriere.oewabox.at +ssl.login.skype.com.gohiding.com +ssl-lognewok.com +ssl.mousestats.com +ssl-msn.oewabox.at +ssl-paypal.de-east-account-verification-center.xyz +ssl-paypal.safer-security-and-safe-ty-center.xyz +sslprotect.net +sslsam.com +ssl.security.account.papyal.verfication1.reset22.apreciousproduction.com +ssl.sinergycosmetics.com +ssl.siteimprove.com +ssl-sl-retargeting.adsonar.com +ssl.ticbeat.co +ssl-top.oewabox.at +ssltracking.esearchvision.com +sslt.tellapart.com +ssl-unlock-pages.esy.es +ssl-uspgvat.oewabox.at +ssl-vg03.met.vgwort.de +sslwidget.criteo.com +ssl-willhab.oewabox.at +ssl-wko.oewabox.at +ssl.xplosion.de +ss.mtree.com +ssnkumarhatti.com +sso.anbtr.com +sso.canada.com +ssolo.ir +ssp.adplus.co.id +ssp.adriver.ru +ssp.ad.xiaomi.com +ssp.anyclip-media.com +sspawdzktopodgglada.blogspot.com +sspcash.adxcore.com +ssp.lkqd.net +ssprings.rotator.hadj7.adjuggler.net +ssp.streamrail.net +ssp.videostat.com +ssssd4rrr.szfuchen.com +sstamlyn.gq +sstatic1.histats.com +s-static.innovid.com +s.statistici.ro +s.stats.wordpress.com +ss.tiscali.com +ss.tiscali.it +sstroy44.ru +ssum.casalemedia.com +ssum-sec.casalemedia.com +ssustts.com +ssw.live.com +ssyareobd.top +st-1.1fichier.com +st1.hit.gemius.pl +st1.ifbyphone.com +stabroom.cn +stabx.net +stack7.collect.igodigital.com +stack9.collect.igodigital.com +stackoverflow.dluat.com +stackoverflow.hex1.ru +stackoverflow.xyz +stacksee.lastestapk.com +stackthatbucks.com +st.acstnst.com +st.ad.adnow.com +stadiumcrossing.com +st.adnow.com +st.ad.smaclick.com +staffingsolutions.net +staffingsouls.com +staffsolut.nichost.ru +stage101.hitbox.com +stage102.hitbox.com +stage103.hitbox.com +stage104.hitbox.com +stage105.hitbox.com +stage1.afghancuisine.com.au +stage.hitbox.com +stage.traffiliate.com +staging.elemental-id.com +staging.snip.answers.com +stag.mdotlabs.com +stags.bluekai.com +stags.peer39.net +s.tagsrvcs.com +stainless-steel-producers.com +stairliftsarea.com +stairliftstrue.com +stair.registrydomainservices.com +staket-pvc.se +st.a-link.co.kr +stallonetattoo.com.br +stal-rulon.ru +stalu.sk +stampasvideo.com.br +stampelstugan.se +stampen.adtlgc.com +stampen.linkpulse.com +stamplive.com +stampscom.112.2o7.net +stampscom.tt.omtrdc.net +standardchartered-forex.com +standard-gis.com +standardsandpraiserepurpose.com +standrewsgolfclub.com +stanrandconsulting.co.za +stanthonyscatholicchurch.org +stanzapub.advertserve.com +stapt.com +star61.de +star-advertising.com +starcasm.us.intellitxt.com +starchat.oewabox.at +star.ct8.pl +stardevine.com +stardk.tradedoubler.com +starffa.com +starfleetepsilon.com +starinco.com +stariy-baku.com +starkes-hardt.de +starlight-events.net +starlix.ql.st +star-modelgroup.com +starpages.net +star.pulseonclick.com +starpulse.us.intellitxt.com +starserg1984.net +starsport4.com +starstemka89a.hopto.org +startadvertisement.com +start.badults.se +starter-12.com +starter-contact-application012-user-apdateid.rumosanq.beget.tech +start.freeze.com +startlmes.com +start.myplaycity.com +startnow.com +startonmonday.com +start.outster.com +startpunt.nu.site-id.nl +start.qip.ru +start.sextracker.com +startufa.ru +startupbiz.ro +startuptuesday.com +startwithproper.com +startwp.org +start.xxxcounter.com +starz.122.2o7.net +stast2.gq.com +stat001.mylivepage.com +stat002.mylivepage.com +stat003.mylivepage.com +stat004.mylivepage.com +stat005.mylivepage.com +stat006.mylivepage.com +stat007.mylivepage.com +stat008.mylivepage.com +stat009.mylivepage.com +stat010.mylivepage.com +stat0.888.ku6.com +stat1.888.ku6.com +stat1.vipstat.com +stat1.z-stat.com +stat24.com +stat24.meta.ua +stat2.888.ku6.com +stat2.corp.56.com +stat3.888.ku6.com +stat3.cybermonitor.com +stat.4u.pl +stat.56.com +stat.adlabs.ru +stat.alibaba.com +stat.aport.ru +stat.axelspringer.hu +stat.blogads.com +stat.cliche.se +stat.clickfrog.ru +stat.cncenter.cz +statcounter.com +stat-counter.tass-online.ru +statdb.pressflex.com +stat.dealtime.com +stat.delo.ua +stat.designntrend.com +stat.detelefoongids.nl +stat.discogs.com +stat.dyna.ultraweb.hu +stat.ebuzzing.com +stat.ekologia.pl +statement-updated-reportedauth1955897878-caseid.com +statement-updated-reportedauthtokenmisses43675562-caseid.com +statement-updated-reportedauthtokenmisses99764942-caseid.com +stateofjesus.com +stat.fengniao.com +stat.flashtalking.com +stat.ganbox.com +stat.gw.youmi.net +static1.influads.com +static.2mdn.net +static.4chan-ads.org +static4.emoticonize.com +static.99widgets.com +static.a-ads.com +static.adbutter.net +static.adclick.lt +static.adclick.lv +static.addynamo.net +static.adfarm1.adition.com +static.adfclick1.com +static.adk2.com +static.ad.libimseti.cz +static.adman.gr +static.admaximize.com +static.adsafeprotected.com +staticads.btopenworld.com +static.ads.crakmedia.com +static.adsnative.com +static.adsonar.com +static.ads-twitter.com +static.adtaily.com +static.adtaily.pl +static.adwo.com +static.adzerk.net +static.adziff.com +static.affiliation-france.com +static.aff-landing-tmp.foxtab.com +static.ampxchange.com +static.ard.xxxblackbook.com +static.atgsvcs.com +static.awempire.com +staticb.mydirtyhobby.com +static-bp.kameleoon.com +static.brsrvr.com +static.canalstat.com +static.carbonads.com +static.cdn.adblade.com +static.cdn.gtsmobi.com +static.chartbeat.com +static.clickonometrics.pl +static.clickpapa.com +static.clicktorrent.info +static.clicktripz.com +static.contentabc.com +static.cpalead.com +static.crakbanner.com +static.creatives.livejasmin.com +static.criteo.net +staticd.cdn.adblade.com +staticd.cdn.industrybrains.com +static.doubleclick.net +static.dynad.net +static.estebull.com +static.etracker.com +static.eu.criteo.net +static.everyone.net +static.exaccess.ru +static.exoclick.com +static.exosrv.com +static.fastpic.ru +static.firehunt.com +static.fleshlight.com +static.fmpub.net +static.freenet.de +static.freeskreen.com +static.getclicky.com +static.gfx.streamate.com +static.gfx.streamen.com +static.groupy.co.nz +static.gtop.ro +static.hatid.com +static.hitfarm.com +static.hotjar.com +static.httpool.com.mk +static.ifa.camads.net +static.ifa.empflixlive.com +static.ifa.slutloadlive.com +static.ifa.yobtcams.com +static.inviziads.com +static.itrack.it +static.kameleoon.com +static.kibboko.com +static.ku6.com +static.l3.cdn.adbucks.com +static.l3.cdn.adsucks.com +static.linkz.net +static.lstat.youku.com +static.luminate.com +static.mackeeper.com +static.mediav.com +static.meteorsolutions.com +static.nectarads.com +static.nrelate.com +static.onlinevenditatio.space +static.openads.motorrad-net.at +static.oroll.com +static.parkingpanel.com +static.parsely.com +static.plista.com +static.plugrush.com +static.pochta.ru +static.proximic.com +static.pubdirecte.com +static.pulse360.com +static.pxlad.io +static.realmediadigital.com +static.reasedoper.pw +static.regiojobs.be +static.retirementcommunitiesfyi.com +static.scanscout.com +static-shareaholic.s3.amazonaws.com +static.site24x7rum.com +static.skimlinks.com +static.smni.com +static.springmetrics.com +static-ssl.exoclick.com +static.styria-digital.com +static.tags.yield-atx.com +static.tellapart.com +static.tellaparts.com +static-trackers.adtarget.me +static.tracking202.com +static.trackuity.com +static.trafficjunky.net +static.traffic.ru +static.trafficstars.com +static.uk.addynamo.com +static-uk.addynamo.net +static.unister-adservices.com +static.unocdn.com +static.vertamedia.com +static.virgul.com +static.vpptechnologies.com +static.way2traffic.com +staticweb.com.ferrokim.com.tr +static.williamhill.com +static.wooboo.com.cn +static.woopra.com +static.yieldmo.com +static.youmi.net +static.zanox.com +statik.topica.com +station-les-copains.be +statique.secureguards.eu +statistici.ro +statistics.dynamicsitestats.com +statistics.elsevier.nl +statistics.reedbusiness.nl +statistics.theonion.com +statistik.bundestag.de +statistik-gallup.dk +statistik-gallup.net +statistik.polizei-beratung.de +statistiq.com +stat.it168.com +stat.komoona.com +statm.the-adult-company.com +stat.mystat.hu +stat.netinfocompany.bg +stat.netmonitor.fi +statoilhemavan.se +stat.onestat.com +statoutlook.info +stat.p24.hu +stat.pchome.net +stat.pl +stat.ringier.cz +stat.rolledwil.biz +stats0.one.ru +stats1.clicktracks.com +stats1.corusradio.com +stats1.in +stats1.one.ru +stats1.porntrack.com +stats.24.com +stats.24ways.org +stats2.allure.com +stats2.arstechnica.com +stats2.clicktracks.com +stats2.details.com +stats2.dooyoo.com +stats2.glamour.com +stats2.golfdigest.com +stats2.gourmet.com +stats2.gq.com +stats2.hitbox.com +stats2.lightningcast.net +stats2.luckymag.com +stats2.newyorker.com +stats2.one.ru +stats2.radiocompanion.com +stats2.rte.ie +stats2.self.com +stats2.teenvogue.com +stats2.unrulymedia.com +stats2.vanityfair.com +stats2.wmagazine.com +stats3.clicktracks.com +stats3.hitbox.com +stats3.porntrack.com +stats3.unrulymedia.com +stats4all.com +stats4.clicktracks.com +stats5.lightningcast.com +stats6.lightningcast.net +stats.absol.co.za +stats.adbrite.com +stats.adotube.com +stats.adultswim.com +stats.agent.co.il +stats.agentinteractive.com +stats.airfarewatchdog.com +stats.allliquid.com +stats.askmen.com +stats.askmoses.com +stats.asp24.pl +stats.backcountry.com +stats.bannersnack.com +stats.bbc.co.uk +stats.becu.org +stats.berkman.harvard.edu +stats.big-boards.com +stats.blogger.com +stats.blogoscoop.net +stats.bluebillywig.com +stats.bonzaii.no +stats.bookingbuddy.com +stats.break.com +stats.brides.com +stats.buycostumes.com +stats.buysellads.com +stats.buzzparadise.com +stats.cafepress.com +stats.canalblog.com +stats.cartoonnetwork.com +stats.clickability.com +stats.click-internet.fr +stats.clicktracks.com +stats.cloudwp.io +stats-collector.org +stats.complex.com +stats.concierge.com +stats.cts-bv.nl +stats.dailyrecord.co.uk +stats.darikweb.com +stats.darkbluesea.com +stats.datahjaelp.net +stats.defense.gov +stats.dice.com +stats.directnic.com +stats.dnparking.com +stats.drugstore.com +stats.dziennik.pl +stats.economist.com +stats.e-go.gr +stats.epicurious.com +stats.esomniture.com +statse.webtrendslive.com +stats.examiner.com +stats.fairmont.com +stats.fastcompany.com +stats.fd.nl +statsfe1.ws.microsoft.com +statsfe2.update.microsoft.com.akadns.net +statsfe2.ws.microsoft.com +stats.foxcounter.com +stats.freeonlinegames.com +stats.free-rein.net +stats.f-secure.com +stats.ft.com +stats.gamestop.com +stats.g.doubleclick.net +stats.globesports.com +stats.groupninetyfour.com +stats.grubstreet.com +stats.hitbox.com +stats.homestead.com +stats.hosting24.com +stats.hyperinzerce.cz +stats.idsoft.com +statsie.com +stats.ign.com +stats.ilsemedia.nl +stats.immense.net +stats.independent.co.uk +stats.indexstats.com +stats.indextools.com +stats.infomedia.net +stats.inist.fr +stats.investors.com +stats.ipinyou.com +stats.ircfast.com +stats.itweb.co.za +stats.iwebtrack.com +stats.jippii.com +stats.jtvnw.net +stats.kaltura.com +stats.klsoft.com +stats.ladotstats.nl +stats.lead.mysitehosted.com +stats.libresse.no +stats.lightningcast.net +stats.livingsocial.com +stats.macworld.com +stats.magnify.net +stats.mako.co.il +stats.manticoretechnology.com +stats.media.onet.pl +stats.merriam-webster.com +stats.metacount.com +stats.mezzobit.com +stats.millanusa.com +stats.mirrorfootball.co.uk +stats.multiup.org +stats.mvilivestats.com +stats.netsolads.com +stats-newyork1.bloxcms.com +stats.nowpublic.com +stats.nymag.com +stats.oix.com +stats.olark.com +stats.openload.co +stats.outster.com +stats.ozwebsites.biz +stats.pagefair.com +stats.pandora.com +stats.parstools.com +stats.partypoker.com +stats.paycounter.com +stats.pckeeper.software +stats.persgroep.be +stats.persgroep.nl +stats.pflexads.com +stats.platinumbucks.com +stats.polldaddy.com +stats.popscreen.com +stats-public.grammarly.io +stats.pusher.com +stats.reinvigorate.net +stats.resellerratings.com +stats.revenue.net +stats.sa-as.com +stats.sbstv.dk +stats.searchles.com +stats.self.com +stats.sextracker.com +stats.shopify.com +stats.snacktools.net +stats.space-es.com +stats.sponsorafuture.org.uk +stats.srvasnet.info +stats.ssa.gov +stats.street-jeni.us +stats.style.com +stats.styletechnology.me +stats.superstats.com +stats.surfaid.ihost.com +stat.stars.ru +stats.telegraph.co.uk +stats.thoughtcatalog.com +stats.topofblogs.com +stats.townnews.com +statstracker.celebrity-gossip.net +stats.tubemogul.com +stats.tudou.com +stats.tunt.lv +stats.twistage.com +stats.ultimate-webservices.com +stats.unionleader.com +stats.unwired-i.net +statsv3.gaycash.com +stats.ventivmedia.com +stats.video.search.yahoo.com +stats.virtuemart.net +stats.visistat.com +stats.vodpod.com +stats.voyages-sncf.com +stats.vulture.com +stats.warenform.de +stats.watchmygf.com +stats.webleads-tracker.com +stats.wired.com +stats.wordpress.com +stats.wp.com +stats.www.ibm.com +stats.x14.eu +stats.xxxkey.com +stats.xxxrewards.com +stat.synergy-e.com +stats.yourminis.com +stats.zmags.com +statto.plus8.net +stat-tracker.net +statt-schamanen.de +stat.tudou.com +stat.upforitnetworks.com +status.addthis.com +status.lanus.co.za +status.ticbeat.co +statustroll.com +stat.webmedia.pl +stat.www.fi +statxpress.com +stat.yellowtracker.com +stat.youku.com +stat.zenon.net +staudenzaubergarten.de +stauga.altervista.org +stayhomedads.com +staynplay.net +st.blogads.com +st-bo.kz +stchartered.com +s.tcimg.com +stcx.com +std1.hit.gemius.pl +st.directadvert.ru +std.o.webmd.com +stdporta.com +st.dynamicyield.com +steadfastindia.com +steadyhealth.us.intellitxt.com +steadytec.com +steak-frite250.gq +stealthedeal.com +steamadd.pl +steamco.de +steamcominty.xe0.ru +steamcommuity.ga +steamcommunitly.site88.net +steamcomnrunity.ru +steamcomrnunity.ga +steamcomunity.su +steamconnunity.ofsoo.ru +steamdoladowanie.pl +steamecommunity.com +steame.ru +steam.fasting.tk +steamgifts.5v.pl +steamgrygive.lt.pl +steammcomunnitty.ru +steam.myago.tk +steampowwered.hop.ru +steam-recharger.pl +steam.serulom.tk +steam.steamscommunity.pro +steamsupport.vid.pw +steam-wallet-gifts.com +steam-wallet-money.com +steanconmunity.cf +stebox.pl +steelhouse.com +steelhousemedia.com +steelmaster.lv +steelpoolspty.com +steepstone.de +stefanbakosab.se +stefanheck.de +stefanie-bolemant.de +stefanmaftei.co.uk +stefanopennacchiottigioielleria.com +stefinanails.com +stegia.com +steigeisen-info.de +steklo-zerkalo.com +stelseries.com +stemcellenhancementresearch.com +stenstroems.se +stenstromturboracing.se +stepan007.popunder.ru +stepgo.5gbfree.com +stephae0.beget.tech +stephan.com +stephanehamard.com +stephaniebrownmedia.com +stephanie.tnctrx.com +stephens-laughlin.com +stephwardfashion.com +stepnation.com +stercy.website +sterva.cc +stesmkommunity.ga +stevemonsen.com +stevenlek.com +steveswartz.com +stevezurakowski.com +steviachacraelcomienzo.com +stevieweinberg.com +stevonxclusive.com +st.fanatics.com +stf.terra.com.br +st-ga.ru +stg.widget.crowdignite.com +s.thebrighttag.com +st.hit.gemius.pl +stiamcamnulity.gq +stickers-market.ru +sticker.yadro.ru +stickmake.net +stickyadstv.com +stieprox.com +stignita.zapto.org +stiimcanmuniti.cf +stiker.elegance.bg +stilgi.ru +stillmiracle.com +stimul-m.com.ua +stir.semilo.com +stisa.org.cn +stitchandswitch.com +stitchgrrl.com +stl.p.a1.traceworks.com +st.magnify.net +stmaria.cl +st.marketgid.com +stmaryskarakkunnam.in +stmassage.ru +stmatthewsnj.org +stmholdingslk.com +st-n.ads1-adnow.com +st.n.ads1-adnow.com +st-n.ads2-adnow.com +st.n.ads2-adnow.com +st.n.ads3-adnow.com +stocazomailom.altervista.org +stock5188.com +stockagedesmessageenvoyeretrecuslafibre.000webhostapp.com +stock.daydreamfuze.com +stockemporium.com +stocker.bonnint.net +stockgroup.us.intellitxt.com +stock-pro.info +stockquotes.wooeb.com +stocksworldmap.com +stoffplatz.de +stohpbddotyi.com +stoiximan.gr +stoki.ru +stolpen800.de +stomerijdesperwer.nl +stomilolsztyn.pl +stoneagepk.com +stonebali.com +stoneb.cn +stoneconceptsoz.com +stone.de +stonefachaleta.com +stoneinteriors.ro +stoneriverbronze.com +stonetrade.com.au +stopagingnews.com +stop-dependances-tabac.com +stop-gepatit.te.ua +stoplacrise.biz +stopmeagency.free.fr +stopmikelupica.com +stopphoulplay.com +stopphoulplay.net +stop-sign.com +stop-smoking.1.p2l.info +storage.adsolutions.nl +storage.bulletproofserving.com +storage.outbrain.com +storage.softure.com +storage.trafic.ro +store2.apple.ch.arconets.net +storebrands-middleeast.com +storehouse.ua +store.id.apple.liverpoolbuddhistcentre.co.uk +store.malaysia-it.com +storemarked-contact.com +store-red.zostan-zwyciezca.com +store-rx.com +storestempowered.hop.ru +storestteampowered.com +storesurprise.com +store.ttzarzar.com +storiesto.com +stork.escortfinder.cl +storknet.us.intellitxt.com +stormyachiever.com +stormyshock.com +stormysponge.com +storroliko.club +storustovu.dk +storyinestemtmebt.com +stoughlaw.com +st.pay-click.ru +st.pc.adonweb.ru +stpchel.ru +stpetersburgtimes.122.2o7.net +stpicks.com +stpieautho.com +stpolice.com +strag-invest.ru +straightnest.com +straightresults.com +straighttangerine.cz.cc +strana-krasoty.ru +strana-solnca.ru +strand-und-hund.de +strangeduckfilms.com +stratariskmanagement.com +strategiccapitalalliance.com +stratumnetworks.com +strauthconf.com +strawpoii.me +stream1.livefyre.com +stream1.marketwatch.fyre.co +stream24h.pl +streamate.com +streamate.doublepimp.com +streamershd.pl +streamgo.pl +streamkiste.to +stream-movies.me +stream-online.com.pl +streamoo.pl +streams18plus.pl +streams.net.pl +streamsportowy.pl +streamuj.org +streamy.pl +strechkins.com +streetfire.net +streetfooduncovered.com +streetlightmusic.net +streha-metalko.si +strenge.ga +stressors.com +stressx.org +stretchingabuckblog.com +stretchmate.net +strfls.com +str.hit.gemius.pl +s.tribalfusion.com +strich-code.de +strictlyvodka.com +strigidae.co.za +strigkaomsk.ru +striipee.com +strikeadcdn.s3.amazonaws.com +stringcelebration.com +strings.com.mx +stripellc.com +stripteas.com +strivesidewalk.com +strmyy.com +stro70.com +stroer-d.openx.net +stroicol.net +stroilka.info +stroimajor.ru +stroiminsk.org +stroishop.by +stroiuniversal.com +strojegradnja-trpin.com +strombolisexpressma.com +stromerrealty.com +strongholdsb.ru +strongsignal-a.akamaihd.net +stroyagorod.ru +stroydetali.ru +stroyeq.ru +stroyhelp-dv.ru +stroyinbel.ru +stroymonolit.su +stroyplus.ru +stroy-portal22.ru +strpee.com +strtao.com +structured.blackswanstore.com +structuresofa.com +struntz.de +strv.se +st.sageanalyst.net +st.smartredirect.de +stsoftware.biz +stsolutions.pk +st.targetix.net +sttc.affiliate.hu +st.top100.ru +stts.rbc.ru +sttvisa.com +stua.hit.gemius.pl +stubhub.122.2o7.net +studentenwerk-augburg.de +studenti.unipa.it +studentsholarshops.org +studentsholarshps.org +studio19bh.com.br +studioalimo.com +studio-aparte.com +studiodiconsulenzalavoro.it +studiodigital.co.uk +studiodin.ro +studiofaca.com +studio-fuer-fitness.de +studiolm.ru +studiotosi.claimadv.it +studiovisit.biz +studiowilliancarvalho.com.br +studivz.ivwbox.de +study11.com +studyguide.org +studyligth.org +stuff-about-money.com +stuher.cl +stuntoffer.com +stupidcelebrities.us.intellitxt.com +stutterdate.com +st.valueclick.com +st.videojam.tv +st.vq.ku6.cn +stvv5g.online +stwchicago.org +st.wetrack.it +stx0.sextracker.com +stx10.sextracker.com +stx11.sextracker.com +stx12.sextracker.com +stx13.sextracker.com +stx14.sextracker.com +stx15.sextracker.com +stx1.sextracker.com +stx2.sextracker.com +stx3.sextracker.com +stx4.sextracker.com +stx5.sextracker.com +stx6.sextracker.com +stx7.sextracker.com +stx8.sextracker.com +stx9.sextracker.com +stxavierscollegecalicut.org +stx.banners.sextracker.com +stxbans.sextracker.com +stx.sextracker.com +stycn.com +stylearts.in +styleblazer.us.intellitxt.com +stylefreecrewmusic.com +stylehousemardan.com +stylesideplumbingservices.com.au +stylesoft.com.au +stylincom.112.2o7.net +styro.ru +s.tyxo.com +su.addthis.com +s.uadx.com +suavalds.com +subaat.com +subad-server.com +subaruofamerica.112.2o7.net +sub.beirinckx.be +sub-corporation.com +subdomain.chase-reg.net16.net +subeihm.com +subhsystems.com +subjectalmost.net +subkiller.pl +subojccliw.com +subscribefree-fr.com +subscribe-free.info +subscribe.hearstmags.com +subscribersgifts.com +subscription-individual-apple-music-membership-verify.ga +subscription-individual-apple-music-membership-verify.gq +subscription-individual-apple-music-membership-verify.ml +subsribe-free-fr.info +substanceunderground.com +subtracts.userplane.com +subvertical-awards.000webhostapp.com +subys.com +succeedscene.com +successcon20.in +successful.altervista.org +successful-marketing-now.com +success-seo.com +successtest.co.kr +successwave.com +suchaslowmac.tech +suchasweetdomainname.com +suchenindeutschland.com +suchmaschine-verbraucherschutz-anlegerschutz.de +suchymlodem.pl +suckdude.com +su-cuenta-apple.com +suczki-mlode.blogspot.com +sudanartists.org +sudburypsychotherapy.com +sudcom.org +suddenplot.com +suddhapakhe.com +sudexpert66.ru +sudokuwhiz.com +sueddeut.ivwbox.de +suegovariancancerrace.com +suesschool.com +suexk.ga +sufferent.net +sufyanrecruitingagency.com +sugaraddict.net +sugarcookies.com.au +sugarkun.com +sugarsync.com +suggest-keywords.com +sugiatun.co.id +sugoicounter.com +sugvant.ru +suhprdfb.bid +sujet-du-bac.com +sukalayar.com +sukarame.net +sukebe.com +sukhshantisales.com +sukienka.com +sukirgenk.dvrlists.com +sulaica.com +sumava-litera.cz +sumbersariindah.co.id +sumber-tirta.id +sumfor.cfpwealthcpp.net +sumicsow.gq +summary-paypalinc.com +summary-service-update.com +summarysupport.account-activityservice.com +summerlinhomes411.info +summerneighbor.net +summerplacebb.com.au +summitbusinessmedia.112.2o7.net +summititlefl.com +sumo.com +sumome.com +suncom.112.2o7.net +sun-consulting.co.uk +sunderfoods.com +sunelemech.com +sungbocne.com +sunggysus.com +sunglobal.112.2o7.net +sunhe.jinr.ru +sunidaytravel.co.uk +sun-loving.com +sunlux.net +sunmaker.com +sunning.ca +sunny99.cholerik.cz +sunnyhomes.co.uk +sunny.oewabox.at +sunny-works.com +sunonesearch.112.2o7.net +sunonsunday.com +sunonsunday.co.uk +sunqtr.com +sunrise-chemie.com +sunrise.infoschnell.com +sunrisenurseryschool.com +sunriserealtorspune.com +sunroyalproducts.co.za +sunsofttec.com +suntechnicalservices.com +suntimes-d.openx.net +suntolight.com +suntrust.baten.me +suntrust.comeoqwerty.pranavitours.com +suntrust.com-personal.ml +suntrust.com.pliuer.cf +suntrust.co.nctbutwal.com.np +suntrustealrts.esy.es +sunvary.de +sunview.ae +sunwaytechnical.com +suo.lp.mydas.mobi +sup.adfox.ru +supeiorhealthplan.com +super8service.de +superbrewards.com +supercars.us.intellitxt.com +supercellinfo.ml +super-ciuchy24.pl +superclix.de +superdeals.com.pl +superdon.h16.ru +super-drinks.com.au +super-drinks.co.nz +superegler.net +superelectronicsindia.com +superfastcdn.com +superficial.crwdcntrl.net +superficialsink.com +superfish.com +superforexrobot.com +superherohype.us.intellitxt.com +superinterstitial.com +superiordentalomaha.com +superiorgaragedoorsystems.com +superiqtest.pl +superkanpo.com +supermarketdelivery.gr +supermarket.zostan-zwyciezca.com +supermascote.com.br +supermed.oewabox.at +supermercadosbbb.com +supermesta.ru +supernaturalart.com +supernature-forum.de.intellitxt.com +supernew.org +supernovaapparels.com +super.oewabox.at +superorganic-tent.000webhostapp.com +superpages.122.2o7.net +superprotection10.com +super-regalos.com +supersadovnik.net +supers.com.ua +superserwisy.pl +supersonicads-a.akamaihd.net +supersonicads.com +superstardj.co.uk +superstats.com +supersuper.com.pl +supertop100.com +supertop.ru +supervesti.ru +superzarabotki.co +supooreter-fannpaqee.regis-fanpage1.tk +supoort24.confriim-supporit.ml +supoort-heere2.f4npage-confr1m.tk +suporteapple-id.com +suporte-find-iphone.com +suporteid-apple.com +suporteidevice10.com +suporterox.hotbox.ru +suportfanpage2.accountfanspage9888.ml +suport-lcloud.com +suportyy2.recovery-fanpagee.gq +supp0rt321.fanpaqeee21.gq +supp0rt-signin.atspace.cc +supp0rtsignin-confirm-safety.atspace.cc +suppfree-espace.info +supplements.1.p2l.info +supplements.today +supplychain.institute +supplyses.com +supply-submit-pdf.rogibgroup.com +suppoet.me +supporlimitedaccount--serve.com +suppor-service-partner.ml +support0001221.000webhostapp.com +support232.confrim-fanpage111.ga +support-account.chordguitarkito.com +supportaccounts.cf +supportaccount.services +support-ads-adverd.000webhostapp.com +support.apple.com-notice.info +supportapple-icloud.com +support.appleid.apple.com.webapps0175.com +support-appleidinfo-helprecovery.gq +support-apple.me +support-billing.info.billystaproomormondbeach.com +supportcenter.appleid.apple.com.4ppie3.club +support-chase.ru +support.com-support-help.online +support-customer-unlock.com +supporte32-here.fanpagge-confrim.cf +supporter-icloud.com +support-facebooksecurity.ru +support.fashionartapparel.com +support-fb-page.clan.su +support-fido.com +support.geysers.com +supporthdit.16mb.com +support.kobatochan.co +supportnet.de.intellitxt.com +sup-port.netne.net +support.nopeas.sk +supporto-apple-secure1-id-apple.com-apple.it-italia.apple.intesasa.com +supporto-apple-ufficia.store.apple.inaitt.com +supporto-secure1.italia-id-apple.com-ufficiale.idpaia.com +support-palpal-update.16mb.com +supportpaypal.16mb.com +support.paypal.keratt.com +supportphonelost.com +support-postfinance.com +support-resolved-yourapp-abuse.ga +support-revievv.com +supportsecure-info.com +support.sextronix.com +support.singupforporno.com +supports-summaryauthpolicyagreement.com +support.sweepstakes.com +support-team-app-center.com +supporttechniques.com +support-update-data-verification.com +support-verifying-appleid.klopkeyjukolbfg.gq +supportxmr.com +supporty7.regis-fanpageee-confirm.ga +support-you.in.net +suppourt12.confrim-fanpage111.gq +supravatiles.com +supremaar.com.br +supreme9events.com +supremeadsonline.com +supremeenterprises.org +supremeleading.com +supri-ind.com.br +surbitonplaza.com +surcentro.com +surch.co.uk +surchile.com +sureads.com +surebaby.us.intellitxt.com +surebherieblast.estate +suregodlvme.coxslot.com +sureone.pro +suresafe1.adsovo.com +surfbuyermac.com +surfline.112.2o7.net +surflinksmedical.com +surfmusik-adserver.de +surfsecured.net +surfskateco.com +surgut.flatbe.ru +surgut.zrus.org +surintech.ac.th +surplus-suppliers.com +surubiproducciones.com +survey.112.2o7.net +survey.122.2o7.net +survey1-au.imrworldwide.com +survey2.voicefive.com +surveycentral.directinsure.info +survey.china.alibaba.com +surveycustomergroup.com +survey.foreseeresults.com +survey.g.doubleclick.net +surveyhoney.com +surveymonkeycom.tt.omtrdc.net +survey.nuggad.net +surveypass.com +survey.watson.microsoft.com +survivalandcrossfitness.com +survival.betteroffers.review +survivor.thats.im +survymonkey.xyz +suryapolix.club +susandeland.com +susandsecusaaownawre.esy.es +susanholtphotography.com +suscotrk.com +sus-elsoff.de +susfkil.co.uk +sushiempire.com.au +sushilabirlagirlsschool.com +sushischool.ru +sushiup.es +sushouspell.com +susi.adtech.fr +susi.adtech.us +susilyons.com +sus.nieuwmoer.info +suspendfb.esy.es +suspensioncourriel.weebly.com +suspiciouse-confirmations.com +sussi.cressoft.com.pk +sutra.newzfind.com +suttonsurveyors.com.au +suuporrt53.confrim-fanpage111.cf +suvsukzone.com +suvworks.com +suxiaoyong.f3322.org +suzyblue.net +sv1.eyeonmusica.it +svanaturals.com +svarbit.com +svarkagid.com +svarkon.ru +svastx.moatads.com +svbur.ru +svd.112.2o7.net +svd2.adtlgc.com +svd.adtlgc.com +sveige.nu +svenskaffarsformedling.se +svenskalotteri.se +svensktnarinsliv.se +sverd.net +sverigesstatsministrar.se +svetlotorg.ru +svetodiodoff.ru +svetyivanrilski.com +svfronhofen.net +sview.avenuea.com +sviezera-epost.com +s.visilabs.com +s.visilabs.net +svis.in +svision-online.de +svitor.hostev.net +svnuppsalaorebro.se +svpro7.oewabox.at +svrjyfherds64.com +svstravels.in +svstyle.com +svtrd.com +svtution.org +svzmtffhpglv.ivydancefloors.com +sw3456u.dyndns-blog.com +swa.demdex.net +swadhyayyoga.com +swagbucks.com +swagmen.com +swainmercy.5gbfree.com +swanksoft.com +swan-swan-goose.com +swappit.tapad.com +swarajinternational.in +swarez.net +swattradingco.name.qa +swayingpalmentertainment.com +swb.gol.ge +swborebro.se +s.webtrends.com +swedform.com +sweed-viki.ru +sweepstakesall.com +sweepstakesandcontestsinfo.com +sweepstakes.rewardit.com +sweet55ium55.com +sweetideasbysusan.co.uk +sweetrape.com +sweetsforfree.com +sweetsolstice.ca +sweettalk.co +swe-henf.com +swell.1hpleft.com +swfhostltd.com +swf-ouvidoria-01936368.atm8754340.org +swiatokazji.eu +swiat-pobran.pl +swiatpobran.pl +swiezaki.weebly.com +swiftblessings.co +swiftcar.co.nf +swiftrunlakes.com +swinger-mobil.net +swingersads.co.uk +swingerseiten.com +swingersphotos.pythonanywhere.com +swing-fashion.com +swingingcommunity.com +swingingmonkey.com.au +swinginwithme.ru +swingtimeevents.com +swinon.site +sw.interpolls.com +swiped.su +swissadsolutions.com +swisscasino-bonus.se +swisscom.com-messages1.co +swisscom.demdex.net +swissfarms.com.au +swissgear-bp.ru +swissinf.wemfbox.ch +switch10.hitbox.com +switch11.hitbox.com +switch1.hitbox.com +switch5.hitbox.com +switch6.hitbox.com +switch8.hitbox.com +switch9.hitbox.com +switch.d-agency.net +switch.hitbox.com +switch.pt +switch.rtbsystem.com +switzerland-clinics.com +swm-as.com +swordfishdc.com +swrap.tradedoubler.com +swr.ivwbox.de +swserver.de +swshlds.com +swsociety.se +swsoft.122.2o7.net +swtkes.com +swt.sxhhyy.com +swyamcorporate.in +swzhb.com +sxhhyy.com +sx.mobsweet.mobi +sx.nazari.org +s.xp1.ru4.com +sx.trhnt.com +sx.z0rz.com +sydsarthaus.com +sy.eu.angsrvr.com +syg.com.au +sygraem.com +syhaier.net +sykazt.com.cn +sylicomservicios.com +sylvane.122.2o7.net +sylvialowe.com +symantec.my-place.us +symantec.tt.omtrdc.net +symantex.com +symbalo.com +symbian-freak.us.intellitxt.com +symbianone.us.intellitxt.com +symbiosting.com +symbols-12.com +symmetrytile.com +sympation.com +symphonyintegratedhealthcare.com +sympmsnglobalen.112.2o7.net +sympmsnmusic.112.2o7.net +sympmsnsports.112.2o7.net +synad2.nuffnang.com.cn +synad2.nuffnang.com.my +synad.nuffnang.com.my +synad.nuffnang.com.sg +synanthrose.com +synapseplays.com +sync2.adsniper.ru +syncaccess.net +sync.adaptv.advertising.com +sync.adkernel.com +sync.atomex.net +sync.audtd.com +sync.bfmio.com +sync.cmedia.s3.amazonaws.com +sync.credebat.com +sync.darikweb.com +sync-eu.exe.bid +sync.go.sonobi.com +synchrobox.adswizz.com +synchronyfinancaluniversity.com +synchronyfinancialunivesity.com +synchronyfinanciauniversity.com +synchronyfincial.com +synchroscript.adswizz.com +synchroscript.deliveryengine.adswizz.com +sync.mathtag.com +sync.monarchads.com +sync.rhythmxchange.com +sync.richmetrics.com +sync.search.spotxchange.com +sync.upravel.com +syndicated.mondominishows.com +syndication.cntrafficpro.com +syndication.exdynsrv.com +syndication.exoclick.com +syndication.exosrv.com +syndication.jsadapi.com +syndication.traffichaus.com +syndication.trafficreps.com +syndrome-de-poland.org +synergcysd.com +synergycbd.net +synergyofsteel.de +synes.altervista.org +syntechsys.com +syn.verticalacuity.com +s.youtube.com +sysadmin.map24.com +sysconcalibration.com +sysdeco.com +sysip.net +syskonenanderssonsrestaurang.se +sysolar.com +system32.co.in +system32-errors.xyz +system32.in.net +system64.in.net +system-alert1.com +systemalert3.xyz +systemalert93.com +systemalertmac1.xyz +systemalertmac3.xyz +systemalertmac4.xyz +systemalertmac5.xyz +systemalertmac7.xyz +systemalertmac9.xyz +systemalertmac.xyz +systemalertwin1.xyz +systemalertwin2.xyz +systemalertwin3.xyz +systemalertwin5.xyz +systemalertwin9.xyz +system-detected-proxy-server-block1.info +systemfbblockpages.co.nf +systemhelpr.com +system-inka.de +system-issue-no40005-system.info +system-issue-no40016-system.info +system-kernel-disk-errorx001dsxx-microsoft-windows.55errors5353.net +systemname.xyz +system-require-maintenance-call-support.info +system-require-maintenance-contact-support.info +systemscheckusa.com +system-support-24x7.com +systemunblckpages.co.nf +systweak.com +syvertsen-da.no +szaloneupusty.pl +szamponrevita.pl +szdamuzhi.com +szene1.oewabox.at +s.zeroredirect.com +szesun.net +szinek.hu +szinhaz.hu +s.zkcdn.net +szklokontaktowe.pl +szkocja.miecio.pl +szmaty.pl +sz.met.vgwort.de +szm.net +sznaucer-figa.nd.e-wro.pl +sznm.com.cn +szokgwalt.blogspot.com +szokinfo247.blogspot.com +szokinfor24.blogspot.com +szpiegfriend.pl +szpiegofon.pl +szpieguj.com +szukajfilmcda.online +szybkapozyczkateraz.pl +szybki-internet24.pl +szybki-przeglad.blogspot.com +szzlzn.com +t01.proximic.com +t0.extreme-dm.com +t13.intelliad.de +t1.adserver.com +t1.extreme-dm.com +t1ny.in +t1.softonicads.com +t1.stormiq.com +t1.tentaculos.net +t1.trackalyzer.com +t23.intelliad.de +t.254a.com +t2.junbi-tracker.com +t2lgo.com +t2.softonicads.com +t2t2.com +t2.trackalyzer.com +t3chtonic.com +t3.marinsm.com +t3.trackalyzer.com +t4.liverail.com +t4.trackalyzer.com +t5.trackalyzer.com +t6.trackalyzer.com +t70123.com +t8t7frium3.s.ad6media.fr +t96.duckdns.org +ta20w32e7u.ru +taaaak.com +ta.at.ic5mp.net +ta.at.user-mode-linux.net +taavuxlogibckxdvxdu.com +tabanta.com +tabelafipe.commbbr.org +tabelanet2.dominiotemporario.com +taberecrestine.com +tabex.sopharma.bg +tablelegs.ca +tablepiz.5gbfree.com +tablepoz.5gbfree.com +tablet.gutterhelment.net +tabletkinaerekcjepl.pw +tabletkinaodchudzanie.com.pl +t.abnad.net +taboola.com +tabskillersmachine.com +tacbelarus.ru +tackthisclick.com +tacobell.d1.sc.omtrdc.net +tacoda.at.atwola.com +tacoda.net +ta.com.tw +t.acxiom-online.com +t.adk2.com +t.admob.com +t.adonly.com +t-ads.adap.tv +t.ads.pof.com +tae1ohp.bid +taffr.com +t.afftrackr.com +tafika.ru +tag1.adaptiveads.com +tag.1rx.io +tag1.webabacus.com +tag.admeld.com +tag.adtrendmedia.net +tag.apxlv.com +tag.aticdn.net +tag.beanstock.co +tag.bounceexchange.com +tag.contextweb.com +tag.crsspxl.com +tag.datariver.ru +tag.digitaltarget.ru +tagessch.ivwbox.de +tag.gayadnetwork.com +tagging.outrider.com +tagil.zrus.org +tag.imonomy.com +tagline.bidsystem.com +tag.marinsm.com +tag.mtrcs.samba.tv +tag.navdmp.com +tag.perfectaudience.com +tagpress.oewabox.at +tagrav.se +tag.regieci.com +tag.researchnow.com +tags1.eclkspsa.com +tags.adonly.com +tags.api.umbel.com +tags.bannercde.com +tags.bkrtx.com +tags.bluekai.com +tags-cdn.deployads.com +tags.crwdcntrl.net +tags.deployads.com +tags.expo9.exponential.com +tags.extole.com +tags.h12-media.com +tags.hypeads.org +tags.mathtag.com +tags.mdotlabs.com +tags.mediaforge.com +tags.news.com.au +tags.onscroll.com +tags.rllcll.com +tags.spider-mails.com +tags.tagcade.com +tags.toroadvertising.com +tags.t.tailtarget.com +tags.w55c.net +tag.tlvmedia.com +tagular.com +tag.userreport.com +tag.webcompteur.com +tag.yieldoptimizer.com +tahafares.com +tahed.org +taherimay.com +tahit.wastech2016.in +tahoesup.com +taihouse.ru +tailsweep.com +tailsweep.co.uk +tailsweep.se +tainan-marathon.com +takaful-malaysia.com +takecarewage.com +take.cloud +takeflyte.com +takemake.com +takeprofitsystem.com +takesaspark.com +takethatad.com +taking-technology.com +tako3.com +takru.com +taksirat.com.mk +tal48ter.info +talante.com.br +talant-factory.ru +talented100-writer.xyz +talented102-writer.xyz +talented105-writer.xyz +talented109-writer.xyz +talented110-writer.xyz +talented112-writer.xyz +talented201-writer.xyz +talented23-writer.xyz +talented53-writer.xyz +talented57-writer.xyz +talented68-writer.xyz +talented69-writer.xyz +talented70-writer.xyz +talented76-writer.xyz +talented84-writer.xyz +talented91-writer.xyz +talented94-writer.xyz +talented99-writer.xyz +talentohumanotemporales.com +talentrackershr.com +taletela.us.intellitxt.com +talk2none.com +talk4anyone.com +talka-studios.com +talkaxis.com +talkcity.realtracker.com +talktowndys.com +tallahasseeeyecare.com +tallahasseespeechcenter.verityjane.net +tally-education.com +tally.upsideout.com +talos.adman.gr +taloussanomat.linkpulse.com +talsa.spring-tns.net +tamar-braxton.com +tamarer.com +tamiflu-in-canada.asian-flu-vaccine.com +tamiflu-no-prescription.asian-flu-vaccine.com +tamiflu-purchase.asian-flu-vaccine.com +tamiflu-without-prescription.asian-flu-vaccine.com +tamilcm.com +tamimbappi.us.kzpcmad.tk +tamiracenter.co.id +tampabaywatch.org +tampaiphonerepair.com +tamprc.com +tamsyadaressalaam.org +tanatogroup.co.id +tandfonlin.com +tandlakarcentrum.se +tandoku.net +tandshijab.id +tandvardshuset.net +tangabilder.to +tangerinenet.biz +tango-d.openx.net +tango-house.ru +tangomedia.112.2o7.net +tanieaukcje.com +tanieaukcje.com.pl +taniezakupy.pl +tanimaju-pupuk.id +tanishajewels.com +tankbouwrotselaar.com +tankekraft.com +tanksim.org.ru +tankuje-paliwo.pl +tanlaonline.com +tanner.alicerosenmanmemorial.com +tansania.org +tanvan.com.au +tanzbar-beach.de +tao0451.com +taobaoafp.allyes.cn +taobaoafp.allyes.com +taorminany.com +tapad.com +tapair.com +tap-cdn.rubiconproject.com +tape.at +tapecariamiranda.com.br +tapeciakowo.pl +tapestry.tapad.com +tapetkowo.pl +tapovandayschool.com +t.app5.pw +tap.rubiconproject.com +tap-secure.rubiconproject.com +tapshop.us +taqplayer.info +taqywu51.soup.io +tarabatestserver.in +tarad.com +taraitirohtak.com +tarakc1.net +tarantologistica.it +tarapropertiesllc.com +tarasoft.bg +taraz.xkaz.org +tarer.com +targad.de +target.cm +targetctracker.com +target.e-generator.com +targeting.adwebster.com +targetingnow.com +targetnet.com +target.net.finam.ru +targetpoint.com +target.smi2.net +targetwebpro.su +targonca-online.hu +tarno.tradedoubler.com +tarrahshawn.ru +tar.tradedoubler.com +tarunamataair.org +tarynforce.com +tas2.toboads.si +tas-ba.toboads.com +tas-bg.toboads.com +tas-cz.toboads.com +tas-hr.toboads.com +taskmate.com.au +taskserver.ru +tas-ks.toboads.com +tas-mk.toboads.com +tasokklso.com +tas-rs.toboads.com +tas-si.toboads.com +tasteofhom.com +tastyfoodideas.com +tates.freestats.com +tathastusolutions.com +tatianadecastelbajac.fr +tatlisporklubu.com +t.atpanel.com +tats.cecash.com +tatschke.net +tatsumi-sys.jp +tattomedia.com +tattoo33.ru +tattooha.com +tattooshaha.info +taumi.com +tavelscape.com +tavuks.com +taxandlegalcraft.com +taxco.cl +taximorganizasyon.com +taximytishi.ru +taxi-petr.by +taxitogatwick.com +taxi-v-eisk.ru +tax-refund-hmrc-id00233.com.dormoszip.com +tax-refund-hydroquebec.org +taxreveiws.com +taxslordss.com +taylanbakircilik.com +taylor12.5gbfree.com +taylor3.preferati.com +taylormadegates.com.au +taz.adspirit.de +tb.altervista.org +tbaong.co +t.bbtrack.net +tbccint.com +t.beanstalkdata.com +tbhomeinspection.com +t.blogreaderproject.com +tbl.tradedoubler.com +t.bmmetrix.com +tbohiphop.us.intellitxt.com +t.brand-server.com +tbs.susfkil.co.uk +tbs.tradedoubler.com +tbstv.112.2o7.net +tbsveryfunnyads.112.2o7.net +tbtrack.zutrack.com +tbucki.eu +t-bygg.com +tc.adlink.net +tcadops.ca +tcads.net +tcfbkus.com +t.cfjump.com +tcgtrkr.com +t.channeladvisor.com +tcimg.com +tcinvitationsbydawn.112.2o7.net +tck.bangbros.com +tcmagazine.uk.intellitxt.com +tcmempilhadeiras.com.br +t-complextestosterone.info +tcondo.com +tcookie.usatoday.com +t.cpmadvisors.com +t.cqq5id8n.com +tcr.tynt.com +tcrwharen.homepage.t-online.de +tc-s.convertro.com +tcss.qq.com +tcttruongson.vn +tcvseniorsection.com +tcvtkbnebeq1.com +tcwrcgeneralcontractors.com +tcy.smartadserver.com +tc.zionsbank.com +td-33.ru +t.dailymail.co.uk +tdameritrade.tt.omtrdc.net +tdc.advertorials.dk +tdcanadatrust.creaxa.com +td.demdex.net +tddmwwnnowxo.com +tdeasywebdemo.com +tdels.com +tdkads.ads.dk +td-kuk.si +tdmouri.swz.biz +tdn.r42tag.com +tdsing.ru +tdspanel.com +tds.trafflow.com +tds.tuberl.com +t.dtscout.com +tdverify2.com +te54.i.ng +te.about.com +teachgalaxys.website +teachherspayteachers.com +te.adlandpro.com +teads.tv +te.advance.net +teajf.com +tealium.hs.llnwd.net +team4heat.net +teamamerika.org +teamassociates.net +team-bobcat.org +teameda.comcastbiz.net +teameda.net +teamservice-appstores.com +teamsupport.serverlux.me +teamtalk.uk.intellitxt.com +teamtargetltd.com +teamverifyaccounts.com +te.ap.org +teardroptrailers.us +teasernounternse.online +teastallbd.com +teastick.com +teastory.co +te.astrology.com +teatac4bath.com +tea-tray.com +teatrelluerna.com +teatremataro.es +teatrorivellino.it +teatr-x.ru +te.audiencematch.net +te.belointeractive.com +te.boston.com +te.businessweek.com +tecafri.com +tecchannel.de.intellitxt.com +teccivelengenharia.com.br +tech9638514.ru +techakym.pw +techart24.com +techasiamusicsvr.com +techawards.pl +techbargins.com +techclicks.net +tech.curemysinus.com +tech-dan.xyz +techeblog.us.intellitxt.com +techemeka.work +techexpert.site +tech-faq.us.intellitxt.com +techgadgets.in.intellitxt.com +techgage.us.intellitxt.com +techguy.us.intellitxt.com +te.chicagotribune.com +techielab.co.uk +techieprojects.com +techimo.us.intellitxt.com +techlivegen.com +techmag.space +techmaha.pw +techmob.ir +technewsworld.us.intellitxt.com +technicads.com +technicalasupport.com +technicalconsumerreports.com +technicaldigitalreporting.com +technicserv.com +technicupdate.com +technischer-verkauf.de +technobuffalo.us.intellitxt.com +technologyguide.us.intellitxt.com +technology.msnbc.us.intellitxt.com +technology-revealed.com +technologyreview.us.intellitxt.com +technopellet.gr +technosfera-nsk.ru +technovrbd.com +techpowerup.us.intellitxt.com +techques.com +techradarcom.skimlinks.com +techradar.uk.intellitxt.com +tech.realmedia.co.kr +techreview.112.2o7.net +techreview.adbureau.net +techreview-images.adbureau.net +te.chron.com +techspotcom.skimlinks.com +techspot.us.intellitxt.com +techsupportforum.us.intellitxt.com +techsupportpwr.com +techtightglobal.com +tech.weeklytribune.net +techwirealert.com +techworld.nl.intellitxt.com +techzine.nl.intellitxt.com +te.cleveland.net +tecmaxsolutions.com +tecnetelperu.com +tecnicosaduanales.com +tecnocuer.com +tec.sarl.tk +tecslide.com +tecspb.ru +te.ctnow.com +te.dailycamera.com +te.dailypress.com +ted.dailymail.co.uk +te.dentonrc.com +ted-fisher.pl +tedxrj.com +tedy.su +teecdn.net +teenbbw.yopoint.in +teencam.nu +teengirlsdaily.com +teenmasturbation.nu +teenpatti-coin.co.nf +teenrevenue.com +teens24h.com +teenspublicdisgrace.xyz +teen.streamate.com +teenzforfun.com +teesdaleflyballclub.co.uk +teeser.ru +teespoon.co +teeth.co.jp +teezmo.us +te.greenwichtime.com +tehilla.com +tehmag.co.th +tehngr.ru +tehnolan.ru +tehomercacom.112.2o7.net +tehprom-s.ru +tehranmusic242.com +tehrmtech.com +tehyju87yhj.in +te.idg.com +te.infoworld.com +tei.portal.crockerandwestridge.com +te.ivillage.com +tejasmaritime.com +te.journalnow.com +tekadrian.pro +tekadrian.xyz +tekcharles.xyz +tekchuks.xyz +tekindustri.upnjatim.ac.id +tekjoe.space +tekneaydinlatma.com +teknomasa.com +te.kontera.com +teksoft.pro +teksograd.ru +tekstowp.pl +tel3adv.112.2o7.net +telagospel.net +te.latimes.com +telca.de +tele2nl.112.2o7.net +telechargeme.com +telecommand.telemetry.microsoft.com +telecommand.telemetry.microsoft.com.nsatc.net +telecreditoviabcp.com +telecrepx.com +teledate.de +telefloracom.112.2o7.net +telefon-50-zl.is-best.net +telefonanlagen.televis.at +telefonbuch-telefonbuch.de +telefonfiyatlari.org +telefonica.es.intellitxt.com +telefonica.webnavegador.com.br +telefonino.it.intellitxt.com +telefonsexi.com +telefonsexkostenlos.tk +telefonsex-ohne0900.net +telefonsexsofort.tk +telegbsy.info +telegonica.com +telegraf.by +telegramdownload10.com +telegraphcouk.skimlinks.com +teleikjewr.cn15669.tmweb.ru +telekomtonline-updateaccount.rhcloud.com +telemetry.appex.bing.net +telemetry.urs.microsoft.com +telemetryverification.net +telenor.112.2o7.net +tele.oewabox.at +telephonie-voip.info +telescopiosatm.com +telesoundmusic.com +telestream.com.br +telesvoboda.ru +telewizjada.net +telewizja-internetowa24.pl +tel.geenstijl.nl +telgids.adsolutions.nl +teliad.de +telkku.spring-tns.net +tellihoo.com +tellus-resources.com +teloblar.com +telsis.com +telstra.imrworldwide.com +temafm.ru +tematyczny.pl +te.mcall.com +te.mgnetwork.com +temizlikrehberi.net +temovkozmetika.com +temp.adzerver.com +temper.de +tempest.services.disqus.com +template-kid.com +templatemadness.com +templates-and-themes.info +templesophia.org +temporary777winner777.tk +tempviolation.cf +temscox.com +te.mysanantonio.com +tenant.ca +tenarense.com +tendanse.nl +tendersource.com +tenel.com +tenewagency.se +te.newsday.com +tengofoxfiles.com +tengo.popunder.ru +tenin58gaccel.rr.nu +tenmagazines.us.intellitxt.com +tennishassocks.co.uk +tennis.oewabox.at +tennis-open.net +tennisowo.glt.pl +tennis-top-fit.de +tenorsoftware.com +tentsf05luxfig.rr.nu +tenuate.1.p2l.info +te.nytdigital.com +tenzing.fmpub.net +te.orlandosentinel.com +teprom.it +terapiaderegresionreconstructiva.com +terapiafacil.net +terem.eltransbt.ro +teressanilam.com +terisanam-heykhuhi.tk +terlik-sepeti.com +termodan.ro +terms-app.clan.su +terms-page.at.ua +terms-user.clan.su +teroliss.myjino.ru +terpav.com +terraadstools.com +terrabellaperu.com +terrabrs.com +terraclicks.com +terracon-news.com +terrafootwear.us +terra.fp.oix.net +terrall.com +terralog.com.br +terranord.com +terrassa.gq +terrawood.com +terrevita.com +terribleturkey.com +territoriocartero.com.ar +terrorgruppe.de +terrydev.info +tersereah-kamu.rumahweb.org +terworkingaccountapple-yourverifiedhanc.com +tesab.org.uk +tescikiq.pl +tescobank.alerts.customerservice.study.happywin.com.tw +tescobank.customerservicealerts.cimaport.cl +tescostores.122.2o7.net +te.scripps.com +te.scrippsnetworksprivacy.com +te.scrippsnewspapersprivacy.com +te.sfgate.com +te.signonsandiego.com +teslimedison.000webhostapp.com +tesorosdecancun.com +tesssuzie.000webhostapp.com +test.ad.xiaomi.com +te.stamfordadvocate.com +testapp.adhood.com +testats.inuvo.com +testcocial.cf +test.coremetrics.com +testdata.coremetrics.com +testddd.f3322.net +test.e.ad.xiaomi.com +test.farstaforvaltning.se +test.gaxtoa.com +testgw.iovation.com +testinteligencji.bo.pl +test.invalid +test.iovation.com +testirc.8866.org +testirc.88cc.org +test.ishvara-yoga.com +testmyantivirus.xyz +test--na--iq.blogspot.com +test.new.api.ad.xiaomi.com +testo.5v.pl +testony.com +testowanietwojegoiq.blogspot.com +testpc24.profitableads.online +testpconly12.prepare2upvideosafesystem4setnow.online +testrace.com +test-script.dotmetrics.net +test.speckomfrotstroi.kiev.ua +testtheantivirus.xyz +test.tns-cs.net +testtralala.xorg.pl +test.wiredminds.de +testyiq.com +testyourantivirus.xyz +te.sun-sentinel.com +te.sunspot.net +te.suntimes.com +tesvoviews.com +te.tbo.com +te.thestar.ca +te.thestar.com +tetracsaudi.com +tetra.hitbox.com +te.trb.com +te.versiontracker.com +te.wsls.com +texano.com +texascougar.com +texasforeverradio.com +texas-hold-em.e-online-poker-4u.net +texas-holdem.shengen.ru +texasprivatejets.com +texbaza.by +tex-sync.rockyou.net +textad.eroticmatch.com +textad.manplay.com +textad.net +textad.passionsearch.com +textads.adultadworld.com +textads.biz +textad.sexsearch.com +textad.sexsearchcom.com +textads.madisonavenue.com +textads.men +textad.socialsex.com +textads.sexmoney.com +textad.traficdublu.ro +textad.xpress.com +textad.xxxcupid.com +textad.xxxmatch.com +textenadorborg.ml +textilescalmani.com +text-link-ads.com +text-link-ads.ientry.com +text-link-ads-inventory.com +textlinks.com +textnwo.com +t.extreme-dm.com +textsex.tk +textsrv.com +texwaxrolls.com +tezaureetnoistoricebucovinene.ro +tezoriholding.com +tezrsrc.gov.cn +tf7th.net +tfaforms.co +tfag.de +t.flux.com +tf.nexac.com +tfpack24.de +tfpcmedia.org +tfpmmoz.com +t.frtyg.com +tgdaily.us.intellitxt.com +tgd.timesonline.co.uk +tgequestriancentre.co.uk +tgifdispatchll011.com +tgketjijyryo.ivydancefloors.com +tgn.122.2o7.net +t.goadservices.com +tgp.adultfriendfinder.com +tgpcounter.freethumbnailgalleries.com +tgpmanager.com +tgp.pornsponsors.com +tgptraffic.biz +tgrbzkp7g5bdv82mei6r.missingfound.net +tgtsserver.com +tgyingyin.com +th.2.cqcounter.com +thadrocheleau.bsmjz.ga +thahpe3w.com +thaianaalves.com +thaiccschool.com +thaikitchen.com.au +thailandtraining.com.au +thaimsot.com +thaisamkok.com +thamarbengkel.co.id +thanefreshflower.com +thanfocus.com +th.appleid.apple.com-lcioud.com +thathappened.us.intellitxt.com +thatshowwerollalways.com +thatsjustgay.com +thatsphucked.com +thayhiltonlongisland.112.2o7.net +thayhoteldelcoronado.112.2o7.net +thayvenetian.112.2o7.net +th-cdn.effectivemeasure.net +thcextractor.com +th-construction-services.com +thcr.com +thcsshoppingltd.com +thcvaporizer.com +thdx08.com +the12effect.com +theabstractprincess.com +theacgroupinc.com +theadhost.com +theads.me +theadvertiser.us.intellitxt.com +theaffiliateprogram.com +theaffirnityseafood.com +theallamericansteakhouse.com +theallgirlarcade.com +thearmchaircritic.org +theatreworksindia.com +thebarn.nu +thebeerindex.com +thebernoullieffect.com +thebestbusinessadvices.com +the-best-track.com +the-best-tracker.com +thebigfourlive.com +thebiggroup.in +thebighits.com +the-binary-trader.biz +thebizmeet.com +theblemish.us.intellitxt.com +theblessedbee.co.uk +thebluenoodle.com +thebluffs.com +the-book-factor.com +thebosh.us.intellitxt.com +thebrandgroup.net +thebridgelkn.com +thebrighttag.com +thebristollocksmith.co.uk +thebugs.ws +thebuzz.today +thecainsofficial.com +thecarconnection.us.intellitxt.com +thecelebritycafe.us.intellitxt.com +thechildrensschoolofmusic.com +thechocolatebarjersey.co.uk +thecoffeelofts.com +thecompanyown.com +theconroysflorist.com +thecoolimages.net +thecoral.com.br +thecounter.com +thecounter.com.invalid +the-counter.net +thecountryboy.com.au +thecowboyswaydancesaloon.com +thecreditcardsolution.com +thecreekcondo.net +thecrow.com.br +thedailystarcom.112.2o7.net +thedatesafe.com +thedatingconference.com +thedermarollercure.com +thedoctor.se +theedgerelators.ga +theeldergeek.us.intellitxt.com +the-eventservices.com +thefarmergame.com +thefashionblog.top +thefashionmermaid.com +thefds.net +thefilmpub.com +thefinalfantasy.us.intellitxt.com +thefogcity.com +theforce.us.intellitxt.com +theforeclosures.net +thefrisky.us.intellitxt.com +thefutoncritic.us.intellitxt.com +thefxarchive.com +the-gadgeteer.us.intellitxt.com +thegauntlet.us.intellitxt.com +thegifited.com +thegioixekhach.com +thegira.net +thegladiator.se +theglasscastle.co.in +theglobeandmail.us.intellitxt.com +thegloss.us.intellitxt.com +theglug.net +thegoldenretriever.org +thegoodnewsband.org +thegratitudeguru.com +thegreenshoppingchannel.com +thegroup.112.2o7.net +theguardlan.com +theh7ah.top +thehdroom.us.intellitxt.com +the-headhunters.net +thehealthandfitnesssite.com +thehealthydecision.com +theheroes.ru +thehill-d.openx.net +thehishers.com +thehistorysalon.com +thehollywoodgossip.us.intellitxt.com +thehollywoodnews.uk.intellitxt.com +thehomo.org +thehotspot.nu +thehunterswife.net +theih1w.top +theinquirer.uk.intellitxt.com +theinternetworksltd-news.t.domdex.com +theisennet.de +thejobmasters.com +thejournal.ru +thekchencholing.org +thekeyfinancialgroup.com +the-kret.popunder.ru +thelabrador.org +theladies.xyz +theladylawyers.com +thelakesideinn.co.uk +thelangerinsuranceteam.com +thelastboss.us.intellitxt.com +thelazyim.com +theleadingedgecoaching.com +thelibraryofcongress.122.2o7.net +thelightbulbcollective.com +thelindaclifford.com +thelocalsearchnetwork.com +thelordisableministry.com +thelottosecrets.com +thelovers.co.uk +thelrein.com +themacuser.org +themanifestation.org +themanroom.us.intellitxt.com +themaplemethod.com +themclarenfamily.com +themecoachingprocess.com +themecounter.com +themeparktickets.com +themesaytour.co.kr +themes.opencartgulf.com +themestotal.com +themexp.ezthemes.com +themexp.org +themillionaireinpjs.net +themodules.ru +themoneyclippodcast.com +themovienation.com +the.mtree.com +themusicnetwork.co.uk +thenationofgod.com +thenetinfo.com +thenewcoin.com +thenewinfomedia.info +thenewsday360.com +thenightshiftdiet.com +thennaloperdown.net +thenpulam.com +theonenetwork.us.intellitxt.com +thepainfreeformula.com +thepaparazzis.us.intellitxt.com +the-path-gateway.com +thepetmansion.com +thepiratepartybay.com +thepiratetrader.com +theplacetoupdating.pw +theplumberschoice.store +thepokertimer.com +theporkauthority.com +thepounder.com +theprofitsmaker.net +thequantumspirit.com +theraftingteam.se +therapistla.com +theratepayersdefensefund.com +theravita-ergotherapie.de +therealmissdrea.com +theregister.uk.intellitxt.com +therenewalchurch.org +theribbonprintcompanyblog.com +therichkids.com +therightaccountants.co.uk +theroamingjew.com +therocnation.org +theroyalamerican.com +thesalivan.com +thesavvyunistudent.com +thescholarshome.com +thescreenscene.com +thesearchagency.net +thesearchster.com +the.sextracker.com +theshemalesurvey.com +the-smart-stop.com +thesneakysquirrel.com +thesponsorproject.com +thestar.122.2o7.net +thestardev.122.2o7.net +thestreet.us.intellitxt.com +thesunonsunday.com +thesunonsunday.co.uk +thesuperdeliciousnews.com +thesuperficial.us.intellitxt.com +thesurfshield.com +thetardistimes.ovh +thetattoohut.com +thetearsofthings.net +thetechherald.uk.intellitxt.com +thetechlounge.us.intellitxt.com +thetechzone.us.intellitxt.com +thethunderbirds.de +thetidingsindia.com +thetoiletpaper.com +thetop.be +theunwired.us.intellitxt.com +theupdateinfo.com +theuploadbusiness.com +theuseful.com +theuseful.net +thevintageapple.com +thevisagateway.com +thevision.it +theweatherspace.com +thewebideas.com +thewebologists.myjino.ru +theweddingstyle.net +thewhitedove.net +thewhiteswaninn.co.uk +the-wildbunch.net +thewinesteward.com +thewomenlife.com +thewrap.rotator.hadj7.adjuggler.net +thewritersniche.com +thexdc.com +theybf.us.intellitxt.com +thfox.com +thgalecom.112.2o7.net +thhps.com +thiegs.reco.ws +thijs-steigerhout.nl +thinkalvesinc.com +thinkcomputers.us.intellitxt.com +thinkdigitaladro.hit.gemius.pl +thinkdigitalro.adocean.pl +thinkers-inc.com +thinkgeek.112.2o7.net +thinkhell.org +thinklimitless.co.zw +thinknear-hosted.thinknearhub.com +thinknyc.eu-adcenter.net +thinktanks.co.za +thinktarget.com +thinlaptoprewards.com +thinstall.abetterinternet.com +thirdrange.co.uk +thirdrespect.com +thirdshiftdesign.com +thirtydaychange.com +thirumangalyam.co.in +this.content.served.by.addshuffle.com +this.content.served.by.adshuffle.com +thisisart.us +thisisyourchangeqq.com +thiyya.in +th.mynavpage.com +thomas155.com +thomasgrimesdemo.com +thomashobbs.com +thomasthangbusiness.com +thomasvillefurniture.122.2o7.net +thomchotte.com +thome.112.2o7.net +thomessag22-autotrade.com +thonhoan.com +thoo8ai.bid +thormann-gbr.de +thoroclean.com +thoughtfully-free.com +thoughtsmedia.us.intellitxt.com +thoukik.ru +thrany.ml +thrayamindesign.com +threadandmirror.com +threadwatch.us.intellitxt.com +threepillarsattorneys.vtgbackstage.com +thrilok.com +thrnt.com +throattrees.com +throne.thehelpbiz.com +throughoughtt.online +thruport.com +ths9j89.com +thuexebmt.com.vn +thujmeye-giyatho.tk +thumbs1.amazingamateurs.us +thumbs4.amazingamateurs.us +thumbs.ero-advertising.com +thumbtime.com +thumbzilla.org +thumser-online.de +thunderball.it +thunzilla.com +thwo.com +thxhb.com +thymetogrowessentials.com +ti3net.it +ti5.com.br +tiads.essence.com +tiads.ew.com +tiads.health.com +tiads.instyle.com +tiads.people.com +tiads.sportsillustrated.cnn.com +tiads.timeinc.net +tiandeural.ru +tiantmall.com +tianzhe58.com +tiarabakery.co.id +tiasentosa.co.id +tiazi.com +ticbeat.co +ticker.conduit.com +ticket20.tripod.com +ticketdirekt.com +ticketfly.biz +ticketingmaster.link +ticketlisting.com +ticketone.fr +ticketscript.co +ticketsys.inetwd.com +tidbitscom.skimlinks.com +tidytrail.com +tidyup.company +tiefenwaerme.de +tie.iprom.net +tiens2010.ru +tienthinhcalendar.com +tifr.in +tigershark.adultadworld.com +tijanconstruction.com +tik.no +tiku.io +tilido.com +timaya.ru +timberlandbotas.es +timdreby.com +timeallnews.ru +timebus2.112.2o7.net +timecom.112.2o7.net +timecom.122.2o7.net +timecrimea.ru +timeday24h.net +timedirect.ru +timeessence.122.2o7.net +timeew.122.2o7.net +timefoodandwine.122.2o7.net +timefortune.112.2o7.net +timehealth.112.2o7.net +timehealthtips.122.2o7.net +timeinc.122.2o7.net +time-japan.ru +timela.com.au +timelife.122.2o7.net +timelywebsitehostesses.com +timeofficepirates.122.2o7.net +timeoutcommunications.122.2o7.net +timepeople.122.2o7.net +timepespanol.122.2o7.net +timeplan.de +timepopsci.122.2o7.net +timer4web.com +timerealsimple.112.2o7.net +timerfejs.pl +timeseg.modules.jumptime.com +timespctenbest.122.2o7.net +timespent.eyereturn.com +timeteenpeople.122.2o7.net +timetorelax.biz +timewarner.122.2o7.net +timhost.ru +tim-izolacije.hr +timoteiteatteri.fi +timothycopus.aimoo.com +timothyways.com +timsmjhxjt.info +tinaborg.com +tinggalkan-grup.pe.hu +tingtongb2b.com +tinhquadem11.byethost9.com +tiniwines.ca +t.insigit.com +tinsongroup.us +tintuc24h-online.com +tintuc36h.com +t.invitemedia.com +tinybar.com +tinyfilehost.com +tinyfileshost.com +tinypic.info +tipic.de +tippitoppington.me +tipsforall.xyz +tips.oewabox.at +tipstudy.com +tipsurf.com +tipsychicken.com +tipusultanunanimedicalcollege.org +tiqcdn.com +tiqueabou.co.ke +tirerackcom.112.2o7.net +tirerack.tt.omtrdc.net +tirfadegem.com +tirka.com +tirolcom.oewabox.at +tiscaliadv01.webtrekk.net +tiscali.js.ad.dotandad.com +titan.advertserve.com +titan-cloud.life +titangate-d.openx.net +titanictobacco.com +titanmatch.com +titelhelden.eu +titfuck.nu +title.mximg.com +titon.info +ti.tradetracker.net +ti.tradetracker.nl +titslove.yopoint.in +tivvitter.com +tix.pinion.gg +tiyogkn.com +tizanidine.1.p2l.info +tizer.adv.vz.ru +tizers.net +tjkckpytpnje.com +tjom.co.za +tjx.112.2o7.net +tk.ads.mmondi.com +tkanorganizma.ru +tk-assortiment.ru +tk.baidu.com +tkenzy.com +tk-gregoric.si +tkislamelsyifa.co.id +tkl.ru +tkrhkskan00.codns.com +tksn.ru +tkustom.it +tkweb.baidu.com +tkxerw.com +tl3pdtjoe4yc.net +tldtgs.com +tljchc.org +tlllc.com +tlpinnickmortuary.com +tlvmedia.com +tmakinternational.com +t-mart-web-service.de +tmcnet.us.intellitxt.com +tmdmagento.com +t.mdn2015x1.com +t.mdn2015x2.com +t.mdn2015x3.com +tmearegion26.com +t.medialytics.com +tmfilms.net +tmgr.ccmbg.com +tmhouserent.trade +tmm-kurs.ru +t.mookie1.com +tmp3.nexac.com +t.mplxtms.com +tm-racing.com +tmsads.tribune.com +tmscdn.coremetrics.com +tmscdn.de.coremetrics.com +tmserver-1.com +tmslexus.112.2o7.net +tmsoffshore.com +tmsscion.112.2o7.net +tmstoyota.112.2o7.net +t.mtagmonetizationa.com +t.mtagmonetizationc.com +tm.tradetracker.net +tmtrck.com +tmx.technoratimedia.com +tmz.us.intellitxt.com +tn.5.p2l.info +tn.adserve.com +tnaionline.org +tnctrx.com +t.neodatagroup.com +tnkraft.se +tnlconstruction.com +t.nrelate.com +tns-counter.ru +tns-gallup.dk +tntclix.co.uk +tnttv.112.2o7.net +toads.osdn.com +toastinis.com +toavenetaal.com +tobatub.boxhost.me +tobyortho.com +tocaba.com +tochka-diz.ru +toctok.com.mx +todayissoftware.com +today-newday.cn +todayresearch.com +todayshow.us.intellitxt.com +todaytime.net +toddscarwash.com +toddschneider.com +todohr.com +todolize.com +todo-vende.de +toeslagenwet.nl +toestakenmareca.scottishhomesonline.com +togelive.com +tojojonsson.com +tojojonsson.net +tojojonsson.org +tokeiten.net +tokelau-translate.tk +tokogrosirindonesia.com +tokomini4wd.com +tokomojopahit.co.id +tokotiara.id +tokotrimurni.id +tokushu.co.uk +toloka.hurtom.com +toma-brillenshop.de +tomalinoalambres.com.ar +tom.allyes.com +tomandqueenie.org.au +tomatis.gospartner.com +tomck.com +tomkamstra.com +t.omkt.co +tommontfrooy.nl +tommyalfredsson.se +tommyroos.se +tommysbookmarks.com +tommysbookmarks.net +tomnhoithit.com +tomorrownewstoday.com +tomparkinsomgeneretaeaccescodegrenteforthebilingrenewincrew.tomhwoodparkunik.com +tomsforumz.us.intellitxt.com +tomshardware.fr.intellitxt.com +tomshardware.se.intellitxt.com +tomshardware.us.intellitxt.com +tomsnetworking.us.intellitxt.com +tomsshoes.122.2o7.net +tomstravels.com +tomsuithoorn.nl +toms.us.intellitxt.com +tomtomdescendant.info +tondapopcorn.com +tone-eco.com +toneexcelgreat.com +toners.ae +tonetteveiculos.com.br +tongji.baidu.com +tongjii.us +tongkatmadura.info +tons-to-see.com +tonyquinn.com +tonyyeo.com +toofab.us.intellitxt.com +toofanshadid.com +toogether.se +toolbar.adperium.com +toolbar.baidu.com +toolbarbest.biz +toolbarbucks.biz +toolbarcool.biz +toolbardollars.biz +toolbarmoney.biz +toolbarnew.biz +toolbarpartner.com +toolbarsale.biz +toolbar.soso.com +toolbar.startnow.com +toolbarweb.biz +toolbar.wibiya.com +toolbar.wips.com +toolbarwizard.vmn.net +tooloftrade.com.au +tools2.hitbox.com +tools.ad-net.co.uk +toolsa.hitbox.com +tools.hitbox.com +toolsins.com +toolsky.com +tools.naughtyamerica.com +tools.pacinocash.com +tools.ranker.com +tools.spylog.ru +tools.ztod.com +toomami.com +toombul.net +toondinsey.com +toon-families.com +toonfamilies.net +tooplay.com +toothwhiteningfairfieldct.com +tootoo.to +tooyoung.nu +top100-images.rambler.ru +top100.mafia.ru +top100.rambler.ru +top10.mangoxl.com +top10registrycleaners.com +top123.ro +top1.list.ru +top1site.3host.com +top20.com.invalid +top20free.com +top250movies.ru +top.2d1b.top +top3.list.ru +top50.co.uk +top5ent.com +top5.mail.ru +top6.list.ru +top90.ro +top.addfreestats.com +topads.men +topads.rrstar.com +topapk.mobi +topappspro.com +top.artcomix.com +top.askei.com +topastrologerinindia.in +topattorneysofna.com +topaz-games.com +topaztravelsng.com +topbarh.box.sk +topbestgames.com +topbrandrewards.com +topbucks.com +topcartier.net +top-casting-termine.de +topclickguru.com +topcoatinc.info +topconsumergifts.com +topcounts.com +top.c-stat.eu +top.dating.lt +top-deal.com.pl +topdemaroc.com +topdesktop.ezthemes.com +topdiscount.net +topdownloads.nl.intellitxt.com +topdownloads.ru +top.easy.lv +top.er.cz +topeuro.biz +topforall.com +top-fwz1.mail.ru +topgamesites.net +top.gde.ru +topgolfshopping.stream +tophairtransplant.net +tophostbg.net +tophumor.de +tophyipsites.com +topica.advertserve.com +topinfoexpert.su +topix-d.openx.net +top-karkas.ru +toplessrobotcom.skimlinks.com +toplista.mw.hu +toplistcity.com +toplist.cz +toplist.eu +toplist.pornhost.com +top.list.ru +toplist.sk +toplist.throughput.de +topmailersblog.com +top.mail.ru +topmarketcenter.com +topmarketingonline.com.br +topmedicalwearables.com +topmeds10.com +topmira.com +topmmorpgsites.com.invalid +topmobile.com.au +top-nail.by +topnail-nagelstudios.de +topnews.us.intellitxt.com +top.oewabox.at +top.pcanywhere.net +topphotoeditingapp.com +topping.com.ua +topproductsusa.com +top.proext.com +topquality.cf +topqualitylink.com +toprebates.com +topsafelist.net +topseans.pl +topsearcher.com +topsfielddynamo.com +topshef.ru +topshop.ro +topsir.com +top-site-list.com +topsite.lv +topsiteminecraft.com +topsites.blogflux.com +topsites.com.br +topsocialite.us.intellitxt.com +topspeed.us.intellitxt.com +topstats.com +topstats.net +topsurvey-offers.com +topsy.com +toptechreviews.us.intellitxt.com +toptenreviews.us.intellitxt.com +top-traffic-ticket-attorney.com +toptrends.org +top-ultimateintl.co.za +topvidos.ru +topwebmaster.su +torarica.se +torax.outwar.com +torennty.pl +torgi.kz +torjackan.info +tork-aesthetics.de +torney-hj.de +toroadvertisingmedia.com +torontocarshipping.ca +toronto-criminal-lawyers.ca +torontoit.info +torontoplumbinggroup.com +torontostar.demdex.net +tororango.com +torosindomandiri.com +toro-tags.com +torquenews.us.intellitxt.com +tor.redlightcenter.com +torrent-newgames.com +torrentom.co +torrents.cd +torrents-tracker.com +torrenty-org.pl +torreslimos.com +torridiquartesolo.com +torrnada.ru +torro-trains.com +torso.net +torstarcollect.247realmedia.com +torstardigital.122.2o7.net +torture.ml +torvaldscallthat.info +toscana-elba.de +toshibaamerica.com +tossm.com +tostocks.com +tostus.co +totalfootballperformance.com +totalinstallatoren.se +totalkaraoke.com +totallyguns.com +totallykidz.in +totalshavingsolution.nu +toteallykenya.co.ke +totemcash.com +tothecenter.us.intellitxt.com +t.otherprofit.com +totheventosbh.com.br +totoro.de +totoskana.de +totszentmarton.hu +tottaldomain.cn +totu.info +touchclarity.com +touchclarity.natwest.com +touchdialysis.org +touchdog.net.au +touche.adcentric.proximi-t.com +touch.media-serving.com +touchmods.fr +tour.affbuzzads.com +tourbihar.com +tour.brazzers.com +tour.cineble.com +tourcroatia.co.uk +tourdesigners.co.uk +tourindia.in +tourism.kavala.gr +tourismkwadukuza.co.za +tourismvictoria.com +tour-line.net +tourlogbd.com +touroflimassol.com +toursarenalcr.com +toursbitsconcepts.com +toursmaps.com +toursportsimage.com +toursrilankalk.com +tour.sweetdiscreet.com +tour.xxxblackbook.com +tousavostapis.ca +tovaroboom.vast.ru +toverifaccount.hub-login.com +tovit.de +tower.adexpedia.com +towerecords.com +townhallmedia-d.openx.net +townhall.weekendinc.com +toxicwap.com +toxid-band.de +toybabi.com +toy-offer.com +toy-offer.net +toyota.cyberealhosting.com +toyota.demdex.net +toyotamotorcorporation.122.2o7.net +toyotapalembangtermurah.com +toyouor.com +toys.erolove.in +toysrus.tt.omtrdc.net +tozup.com +tpads.ovguide.com +tpads.sv.publicus.com +tpatten.com +tpc.googlesyndication.com +tpcyunlin.org.tw +tph-gion.com +tpl1.realtracker.com +tpl2.realtracker.com +t.p.mybuys.com +tpnads.com +t.pointroll.com +tpreiasanantonio.net +tpreiasouthtexas.org +tps30.doubleverify.com +tps31.doubleverify.com +t.pswec.com +tpu.ru +t.pusk.ru +tpwelectrical.co.uk +tpxobasr.com +tqbnqsgadiglxiovnc.com +tqglobalservices.com +tr-1.agilone.com +tr1.frosmo.com +tr1.myroitracking.com +tr.2.cqcounter.com +traaaack.com +trabalheondequiser.com.br +trabergstandvard.se +tracedesire.com +traceinvoices.com +trace.qq.com +tracer.perezhilton.com +tracersotra199.com +tracetheglobalone.com +traceyhole.com +track112.site +track12.offersbymail.com +track1.breakmedia.com +track1.offers2004.com +track2.homestead.com +track2.mybloglog.com +track2.ultimateinternetoffers.com +track3.your-picks.com +track.941tracking.com +track.absoluteclickscom.com +tracka.businessleadbuilder.com +track.acclaimnetwork.com +track.ad4mmo.com +track.adbooth.net +trackad.cz +track.adform.com +track.adform.net +track.adjal.com +track.adrevolver.com +track.adservingfactory.com +track.adthrive.com +track.adtraction.com +trackadvertising.net +track.affforce.com +trackalyzer.com +track.anchorfree.com +track.anideaevolves.com +track-apmebf.cj.akadns.net +track.atom-data.io +track.bannerbridge.net +track.bigbrandpromotions.com +track.blogcounter.de +track.blogmeetsbrand.com +track.businesstrenders.com +track.businessunionorg.com +track.cbs.com +track.celtra.com +track.childrensalon.com +track.clearsender.com +track.clickcabintracker.com +track.clickon.co.il +track.clicksor.com +track.clicksure.com +trackcmp.net +track.collegeboard.com +track.construclique.com +track.cracked.com +track.customer.io +track.did-it.com +track.digitcked.com +track.digluen.com +track.digning.com +track.diguati.com +track.directleads.com +trackdiscovery.net +track.dmipartners.com +track.domainsponsor.com +track.dotsly.com +track.double.net +track.dtnlyss.com +track.dvdbox.com +track.e7r.com.br +track.effiliation.com +track.eg-innovations.net +track.emailsvc.net +track.enviodemails.com +tracker1.leadiya.com +tracker.azet.sk +tracker.baidu.com +tracker.bang.com +tracker.bannerflow.com +tracker.beezup.com +tracker.blueprintinteractivetest.com +tracker.bonnint.net +tracker.brainsins.com +tracker.bt.uol.com.br +tracker.cdn-analytics.host +tracker.cl1.fidelizador.com +tracker.clicktrade.com +tracker.consumerpackage.net +tracker.coopt.com +tracker.databrain.com +tracker.departapp.com +tracker.dev.hearst.nl +tracker.ero-advertising.com +tracker.eton-events.com +tracker.financialcontent.com +tracker.freecharge.in +tracker.gtarcade.com +tracker.hitmatic.com +tracker.icerocket.com +tracker.idg.co.uk +tracker.issuu.com +tracker.leadenhancer.com +tracker.mailvalue.net +tracker.marinsm.com +tracker.marketsvc.net +tracker.mattel.com +tracker.mozo.com.au +tracker.netklix.com +tracker.offermarket.net +tracker.onapps.org +tracker.promosvc.com +tracker.promovalue.us +trackers.1st-affiliation.fr +trackers.adtarget.me +tracker.samplicio.us +trackersimulator.org +tracker.squidanalytics.com +tracker.stats.in.th +tracker.svcoffer.com +trackertracker.com +tracker.tradedoubler.com +tracker.truehits.in.th +tracker.truehits.net +tracker.twenga.nl +tracker.u-link.me +tracker.vinsight.de +tracker.wordstream.com +track.exclusivecpa.com +track.eyeviewads.com +track.flexlinks.com +track.flexlinkspro.com +track.fling.com +track.ft.com +track.futureshop.ca +track.gawker.com +track.grannyads.com +track.greatofferstoyou.net +track.grmtracking.com +trackgsm.co.uk +trackgsm.de +trackgsm.pl +track.happylifestylestoday.com +track.homestead.com +track.hotdrugsstore.in +track.hubspot.com +tracki112.com +track.idtargeting.com +track.india-marketing.in +tracking101.com +tracking.10e20.com +tracking.1betternetwork.com +tracking1.euroads.no +tracking.247search.com +tracking2.channeladvisor.com +tracking2.hittail.com +tracking.3com.com +tracking.45-fe6b6-aah.co.uk +tracking.absolstats.com +tracking.adalyser.com +tracking.adctrack.com +tracking.adgoon.it +tracking.adjug.com +tracking.admarketplace.net +tracking.adultsense.com +tracking.affiliates.de +tracking.aimediagroup.com +tracking.allposters.com +tracking.ariong.us +tracking.arxibs01.com +tracking.baddoggiemediagroup.com +tracking.badgeville.com +tracking.bannerflow.com +tracking.batanga.com +tracking.batanga.net +tracking.carprices.com +tracking.cdiscount.com +tracking.checkmygirlfriend.net +tracking.clickmeter.com +tracking.conversionads.com +tracking.craktraffic.com +tracking.crobo.com +tracking.crossovertech.asia +tracking.crunchiemedia.com +tracking.dc-storm.com +tracking.domobmedia.com +tracking.drsfostersmith.com +tracking.dsmmadvantage.com +tracking.dtiserv2.com +tracking.edvisors.com +tracking.eforceworld.com +tracking.engagedigitalmedia.com +tracking.euroads.dk +tracking.eurowebaffiliates.com +tracking.everydayhealth.com +tracking.experience.com +tracking.fanbridge.com +tracking.fathomseo.com +tracking.fccinteractive.com +tracking.feedmob.com +tracking.fitprosperity.net +tracking.foxnews.com +tracking.gajmp.com +tracking.gameforge.de +tracking.godatafeed.com +tracking.hittail.com +tracking.hostgator.com +tracking.hubspot.com +tracking.ibexnetwork.com +tracking.ilinkmd.com +tracking.imagewebdesign.fr +tracking.immobilienscout24.de +tracking.intermundomedia.com +tracking.internetstores.de +tracking.inuvo.com +tracking.iol.co.za +tracking.ipermission.net +tracking.ipermit.net +tracking.jef74.com +tracking.joker.com +tracking.justpremium.com +tracking.keywordmax.com +tracking.klickthru.com +tracking.kurier.at +tracking.lay-ota.fr +tracking.layo-ta.fr +tracking.lengow.com +tracking.lifescript.com +tracking.listhub.net +tracking.m6r.eu +tracking.mailtracker.in +tracking.marketviaemail.net +tracking.medpagetoday.com +tracking.metalyzer.com +tracking.miui.com +tracking.motleyfool.com +tracking.msadcenter.msn.com +tracking.murdoog.com +tracking.myunidays.com +tracking.nesox.com +tracking.oceantidemedia.com +tracking.oe24.at +tracking.oerug.com +tracking.oggifinogi.com +tracking.olx.com +tracking.olx-st.com +tracking.onefeed.co.uk +tracking.onespot.com +tracking.opencandy.com.s3.amazonaws.com +tracking.opienetwork.com +tracking.optimatic.com +trackingorderssh.5gbfree.com +tracking.paymentfindermail.net +tracking.pennystockpicks.net +tracking.percentmobile.com +tracking.perfectwaterpurifier.net +tracking.pickyourplum.com +tracking.prm20cloud.com +tracking.propellerads.com +tracking.publicidees.com +tracking.quisma.com +tracking.rangeonlinemedia.com +tracking.rce.veeseo.com +tracking.retargeting.biz +tracking.revimedia.com +tracking.roispy.com +tracking.salkmarketing.com +tracking.searchmarketing.com +tracking.skyword.com +trackingsoft.com +tracking.softwareprojects.com +tracking.sokrati.com +tracking.spiderbait.com +tracking.stampready.net +tracking-stats-tr.usa.cc +tracking.summitmedia.co.uk +tracking.synthasite.net +tracking.tomsguide.com +tracking.tomshardware.com +tracking.trackmobistore.com +tracking.trafficjunky.net +tracking.trksrv.com +tracking.trutv.com +tracking.ukwm.co.uk +tracking.vacationsmadeeasy.com +tracking.validclick.com +tracking.veille-referencement.com +tracking.veoxa.com +tracking.vindicosuite.com +tracking.websitealive.com +tracking.whattoexpect.com +tracking.wisepops.com +track.ionicmedia.com +trackit.vicotech.com +track.iwfueh.us +track.justcloud.com +track.justdoing.biz +track.keywordstrategy.org +track.kscentraltrack.us +track.lativio.com +track.lawoftrade.com +track.leadin.com +tracklead.net +track.learntotradesrv.com +track.lfstmedia.com +track.linkmails.net +track.linkoffers.net +track.lmsadvlc.ru +trackmail3345.com +track.mailvalue.net +track.make-a-site.net +track.marketingontarget.net +track.marketsvc.net +track.mdirector.com +track.mdrctr.com +trackmedia101.com +track.mia-base.com +track.mindfieldresources.com +track.moreniche.com +track.msadcenter.afgz.com +track.msadcenter.ajfy.com +track.msadcenter.ama.com +track.msadcenter.bfy.com +track.msadcenter.bvp.com +track.msadcenter.cdn.com +track.msadcenter.ceio.com +track.msadcenter.chpn.com +track.msadcenter.cxtv.com +track.msadcenter.dgt.com +track.msadcenter.dtx.com +track.msadcenter.dxr.com +track.msadcenter.ebg.com +track.msadcenter.emee.com +track.msadcenter.eqq.com +track.msadcenter.etvz.com +track.msadcenter.fal.com +track.msadcenter.fcuk.com +track.msadcenter.fmi.com +track.msadcenter.fvpl.com +track.msadcenter.gdb.com +track.msadcenter.gmiy.com +track.msadcenter.hex.com +track.msadcenter.hih.com +track.msadcenter.hlh.com +track.msadcenter.hnsl.com +track.msadcenter.igzr.com +track.msadcenter.imc.com +track.msadcenter.iuf.com +track.msadcenter.iuh.com +track.msadcenter.izy.com +track.msadcenter.jzz.com +track.msadcenter.kfgy.com +track.msadcenter.kfz.com +track.msadcenter.khrg.com +track.msadcenter.kkal.com +track.msadcenter.kpuo.com +track.msadcenter.krt.com +track.msadcenter.llu.com +track.msadcenter.lngl.com +track.msadcenter.lrgo.com +track.msadcenter.ltp.com +track.msadcenter.lyv.com +track.msadcenter.lzwp.com +track.msadcenter.mazp.com +track.msadcenter.mjze.com +track.msadcenter.mkqa.com +track.msadcenter.moas.com +track.msadcenter.msw.com +track.msadcenter.mur.com +track.msadcenter.nge.com +track.msadcenter.nho.com +track.msadcenter.nlke.com +track.msadcenter.nyfg.com +track.msadcenter.oah.com +track.msadcenter.pcp.com +track.msadcenter.pka.com +track.msadcenter.psof.com +track.msadcenter.pszn.com +track.msadcenter.pwpn.com +track.msadcenter.qpz.com +track.msadcenter.qru.com +track.msadcenter.qsvv.com +track.msadcenter.qymv.com +track.msadcenter.rfjq.com +track.msadcenter.ruum.com +track.msadcenter.sax.com +track.msadcenter.scz.com +track.msadcenter.sfq.com +track.msadcenter.sgq.com +track.msadcenter.shy.com +track.msadcenter.szc.com +track.msadcenter.tirj.com +track.msadcenter.tnuw.com +track.msadcenter.toj.com +track.msadcenter.trg.com +track.msadcenter.tux.com +track.msadcenter.usm.com +track.msadcenter.usx.com +track.msadcenter.vava.com +track.msadcenter.vbd.com +track.msadcenter.vbug.com +track.msadcenter.vcf.com +track.msadcenter.vrhe.com +track.msadcenter.vyp.com +track.msadcenter.wdm.com +track.msadcenter.wfm.com +track.msadcenter.wmd.com +track.msadcenter.won.com +track.msadcenter.wup.com +track.msadcenter.xda.com +track.msadcenter.xpp.com +track.msadcenter.xxx.com +track.msadcenter.xzh.com +track.msadcenter.xzwy.com +track.msadcenter.yaz.com +track.msadcenter.ybi.com +track.msadcenter.ytbp.com +track.msadcenter.zepw.com +track.msadcenter.zhv.com +track.msadcenter.zlx.com +track.msadcenter.zmmr.com +track.msadcenter.zul.com +track.msadcenter.zun.com +track.msadcenter.zvjw.com +track.msadcenter.zzv.com +track.mybloglog.com +trackmysales.com +track.netshelter.net +tracknet.twyn.com +track.nifty.com +track.oainternetservices.com +track.offermarket.net +track.omg2.com +track.omgpl.com +track.omguk.com +track.optinstar.com +track.oxcash.com +track.pointroll.com +track.popmog.com +track.pplnk.com +track.ppmdating.com +track.prizeglobal.net +track.promosvc.com +track.promovalue.us +track.promptfile.com +track.publeadmedia.com +track.pubmatic.com +track.pulse360.com +track-rankings.online +track.real2come.com +track.realitykings.com +track.recreativ.ru +track.rediff.com +track.resala1.com +track.roiservice.com +track.roularta.adhese.com +track.rtb-media.ru +track.rtdock.com +track.scrillaspace.com +track.searchignite.com +track.securedvisit.com +track.send.microad.jp +track.seorate.ru +track.shop2market.com +track.sitetag.us +tracksitetraffic1.com +tracksms.pl +track.specialdailydeals4u.com +track.spots.im +track.statesend.co.in +track.stromfeldshippingcenters.com +tracksurf.daooda.com +track.svcoffer.com +tracksy.com +tracksz.co +track.the-members-section.com +track.theprovision.net +track.theviralconcept.com +track.todayreward.net +track.tooplay.com +track.topromotion.net +track.traffcdn.com +tracktrue.clicktrue.biz +track.untd.com +track.upaknee.com +track.viralvidi.com +track.visitorpath.com +track.vivid.com +trackvoluum.com +track.vscash.com +track.webgains.com +track.webprodeals.cf +track.webtrekk.de +track.wesell.co.il +track.whitespace57.com +track.written.com +track.www.zazzle.com +track.xapads.com +track.xtrasize.nl +track.yieldsoftware.com +track.youniversalmedia.com +track.yourmedicalpurchase.ru +trackzapper.com +track.zapromotions.com +track.zipalerts.com +track.ziprecruiter.com +track.zmsndy.com +track.zugo.com +track.zulumarketing.com +tractiontiresusa.com +trada247.net +tradeadexchange.com +tradearabia.advertserve.com +tradecharm.lt +tradedeals.biz +tradedoubler.com +tradedoubler.sonvideopro.com +tradefx.advertserve.com +tradekeys.comlu.com +tradelinksurat.in +trademan11m1.cf +tradem.com +trademissionmgt.com +tradeondot.com +traderinsight.com +traderzplanet.in +tradeworld.co.uk +tradgardspartner.se +tr.adinterax.com +tradngview.com +traduzparainglescom.domainsleads.org +trafaret74.ru +tr-af.com +trafdriver.com +traff1.com +traffic100.com +traffic2cash.org +traffic.acwebconnecting.com +trafficadept.com +trafficads.com +traffic.adwitty.com +traffic.adxprts.com +traffic.adxprtz.com +trafficbalancerouting.com +trafficbee.com +trafficbuilderpro.com +traffic.buyservices.com +trafficedge.adk2x.com +trafficex.adlandpro.com +traffic-exchange.com +trafficfactory.biz +traffic.focuusing.com +trafficgateway.research-int.se +trafficg.com +traffic.getmyads.com +trafficgrowth.com +trafficholder.com +traffichunt.com +trafficjunky.com +trafficjunky.net +trafficleader.com +trafficmania.com +traffic.mindviz.com +trafficmonetize.org +trafficmp.com +trafficneeds.directtrack.com +trafficnetworkads24.com +trafficnetzwerk.de +traffic-offers.com +trafficopen.com +traffic.outbrain.com +traffic.prod.cobaltgroup.com +traffic.pubexchange.com +trafficreceiver.club +traffic.revenuedirect.com +trafficrevenue.net +trafficroup.com +traffic.ru +trafficsecrets.com +traffic.shareaholic.com +trafficspaces.net +trafficstars.com +traffic-stats.streamsolutions.co.uk +trafficstrategies.com +trafficswarm.com +traffic.tcmagnet.com +traffictrade.life +traffictrader.net +traffictraders.com +traffic.webtrafficagents.com +trafficz.com +trafficz.net +tr.affiliate.hu +traffiq.com +traffiqexchange.rotator.hadj7.adjuggler.net +traffique.net +traffixer.com +traffk.info +traffmonster.info +traffok.cn +traffpartners.com +traffprofit.com +traficlaab.ru +trafic.ro +trafisz.com +trafit.com +trafmag.com +trafsearchonline.com +trafstarcurlms.com +trahic.ru +trahvid.com +traidnetup.com +trailblazers.122.2o7.net +traileraddict.us.intellitxt.com +trailerparkflamingo.com +trailersdirect.com.au +trailerservicescom.112.2o7.net +trailtoangkor.com +trainedogs.net +trainoffend.ml +trajan.httpool.com +traktr.news.com.au +traktum.com +tramadol.1.p2l.info +tramadol2006.3xforum.ro +tramadol.3.p2l.info +tramadol.4.p2l.info +tramarkt.oewabox.at +trane-ir-corp-ingersollrand.112.2o7.net +tranest-schlage-link.112.2o7.net +tranquilityequestriancenter.com +transacoweb.com +transactions-ticketmaster.com +transaktion-pp.cf +transassis.com.br +transatlantikhotelspa.com +transbet.ru +transcontinental.com.qa +transcorp.net +transcript.login.2016.alerttoday.org +transcript.login.2016.doc.highplainsmp.com +transcript.login.2016.lerupublishers.com +transcriptum.ru +transduval.cl +transferownerairtenantbnb.website +transglass.cl +transitionblog.com +transition.org.cn +transitiontomillionaire.com +translation.conduit.com +transmercasa.com +transmisje24.net +transoceanoll.com +transpact.in +transpec-analysis.com +transportadorabraga.com.br +transvaluers.com +transvina.win +traptrillhosts.top +travastownsend.com +travekocity.com +travel274.com +travel-and-weather.msnbc.us.intellitxt.com +travelasity.com +travelcape.com +travelexplora.com +travel-insurance-quotes.beesearch.info +traveliocity.com +travel-leisure-bonuspath.com +travel-leisure-premiumblvd.com +traveller-offer.com +traveller-offer.net +travelncs.com +travelnewsgreen.com +travelocidy.com +travelocite.com +travelocitu.com +travelocityca.com +travelocityt.com +travelocoity.com +travelogity.com +traveloicty.com +traveloocity.com +traveloscity.com +travelovity.com +travel-solutions.co.in +travelwizeindia.com +traveolocity.com +travidia.112.2o7.net +travidiathebrick.112.2o7.net +travis.bosscasinos.com +travlers.com +travmateholidays.com +traxdom.ru +trax.gamespot.com +trax.prostrax.com +trax.tvguide.com +trayamentps.com +tr.bigpoint.com +tr.buzzlogic.com +trc.taboola.com +trc.taboolasyndication.com +tr.de.adlink.net +trdstation.com +treasure007.top +treasuretrack-a.akamaihd.net +treatsofcranleigh.com +treatstartaugusth.info +treavelocity.com +trebeurden-location.com +tredexreturns.esy.es +treeguild.com +trekblue.com +trekdata.com +trekmedia.net +trekweb.us.intellitxt.com +trendcounter.com +trendingpatrol.com +trendlinks.com +trendmd.com +trendmicroeuropa01.webtrekk.net +trendnews.com +trends.revcontent.com +trennkost-pyramide.de +trenz.pl +treppenfabrik.de +tresmader.com +treventuresonline.com +trevin.it +treyu.tk +trgde.adocean.pl +tr-gdz.ru +trg.peer39.net +tr.hit.gemius.pl +trhunt.com +triacen.se +trialreg.com +triamulitia.000webhostapp.com +triangle.dealsaver.com +triangleservicesltd.com +triathlontrainingprogram.org +tribalfusion.com +tribalfusion.speedera.net +tribal.us.intellitxt.com +tribblenews.com +triblabla.awasr.cn +triboo01.webtrekk.net +tribuneinteractive.122.2o7.net +trichizobswiv.agddns.net +trickpaypal.com +trickycelery.com +tricomzone.com +trifle.ernstenco.be +trigemer.com +triggerinstalls.com +triggers1.wfxtriggers.com +triggers.wfxtriggers.com +trijayalistrik.com +tringer28.tripod.com +trinitybioactives.com +trinitymirror.112.2o7.net +trinitymirror-d.openx.net +trion.od.ua +triphasil.1.p2l.info +triphasil.3.p2l.info +triphasil.4.p2l.info +triplepenetration.nu +triplequadturbo.com +tripper.de +tripwolf.oewabox.at +trishaalvina.ru +tri-slona.org +trisomie21.lu +tristatebusinesses.com +tritetongue.com +tritratrullala.gekitzelt.de +triumf-realty.ru +triumphrat.us.intellitxt.com +trivagoi.com +triviatoday.co +triviumservices.com +trix.net +trk4.com +trk-4.net +trk.ablogica.com +trk.alskeip.com +trk.atomex.net +trk.cetrk.com +trkdf.com +trk.enecto.com +trk.etrigue.com +trkingace.com +trk.kissmetrics.com +trkmydomain.com +trk.pcsecurityshield.com +trk.simply.net +trk.tidaltv.com +trktra.com +trkur.com +trk.vidible.tv +trk.yadomedia.com +trmit.com +tr.mobiadserv.com +troczewski.pl +troiepoliacneutiwsjai.com +trollskogenssmycken.se +tromselementbygg.no +tronto.com +tronuprising.heliohost.org +trope-design.com +trophyroombar.com +tropicanaavenue.info +tropiccritics.com +tropitalia.com.br +trosabyggplat.se +troshjix.ml +trotamundos.com.pl +trouble.cachetinvestments.com +troue.wsdesign.co.za +trovi.com +troytempest.com +tr.prospecteye.com +trqvelocity.com +tr.tu.connect.wunderloop.net +trubywriting.com +trucap.co.za +truck-addzilla.life +truckersemanifest.com +truckinghaughton.com +truck-land.life +trucknit.com +truck-rece.life +trucri.me +trudogolik.net +true2file.com +trueaussielocal.com.au +trueclickads.net +true-counter.com +truedatalyt.net +truefilen32.com +truegamers.ga +trueguardscaner33-p.xorg.pl +truehandles.com +truehits1.gits.net.th +truehits2.gits.net.th +truehits3.gits.net.th +truehits.gits.net.th +truehits.net +truejeans.in +truemfilelj.gq +truevalue.d2.sc.omtrdc.net +truhealthprod.com +truliia.com +trumpetedextremes.com +trusearch.net +trustaffs.com +trustedgol.net +trustedhealthtips.com +trustedmaccleaner.com +trustedmacleaner.click +trustedmacleaner.work +trusteeehyd6.net +trustgauge.com +trustl.life +trustman.se +trustmarkethot.su +trustpassbuyer.wp.lc +trustruss.com +trust-s-b.com +trustsitesite.com +trustsoft.com +trustusa1.com +trustwebstock.su +trutedid.com +trutilitypartners.com +trvelocity.com +trvlnet.adbureau.net +trvlnet-images.adbureau.net +trw12.com +tr.webantenna.info +tr.wl.webads.nl +trx625.com +try-angle.com +tryme-scandinavianbar.se +try-rx.com +trytesting.usa.cc +trytoimprovesecurity.com +ts1.hitbox.com +ts2.hitbox.com +tsan.net +tscl.com.bd +t.sellpoints.com +t.senaldos.com +t.senaluno.com +tsfkjbw.com +tsiexpressinc.com +t.signaletre.com +t.signauxdeux.com +t.silvinst.com +ts.istrack.com +t.skimresources.com +tslongjian.com +tsm.25u.com +tsms-ad.tsms.com +tsmtrk.com +t.snowball.com +ts.richmedia.yahoo.com +tsstcorpcddvdwshbbdriverfb.aircus.com +tste.ivillage.com +tste.mcclatchyinteractive.com +tste.startribune.com +tstrun.com +tstuhg.com +tsu-68.com +tsv-russee-kiel.de +t.svtrd.com +ts-winkle.de +tsxclub.us.intellitxt.com +tsyndicate.com +tt11.adobe.com +tt3.zedo.com +ttarget.adbureau.net +ttb.lpcloudsvr302.com +ttb.tbddlw.com +t.teads.tv +t.tellapart.com +ttga.in +ttgcoc129.com +ttgroup.vinastar.net +ttkdyw.com +ttkgroup.vn +ttnet.yandex.com.tr +ttoc8ok.com +tt.onmypc.org +tt.onthe.io +t.trackedlink.net +ttrade.elegance.bg +t.trafmag.com +ttrraacckkrr.com +ttsnzvisa.co +ttsq.fr +tttbbbttt.zapto.org +ttt.fwq101.tk +ttu98fei.com +ttu998d.com +ttuk.offers4u.mobi +ttvoe.com +ttwitter.com +tu4wooz.bid +tu8ohye.top +tube8.com +tube8vidsbbr.dnset.com +tube8vidsbhy.dnset.com +tube8vidsbzx.dnset.com +tube8vidscjk.ddns.name +tube8vidscqs.ddns.name +tube8vidscut.ddns.name +tube8vidsdob.dnset.com +tube8vidsdst.ddns.name +tube8vidsfgd.ddns.name +tube8vidshhr.ddns.name +tube8vidshkk.ddns.name +tube8vidshrw.dnset.com +tube8vidsiet.ddns.name +tube8vidsiww.ddns.name +tube8vidsjac.dnset.com +tube8vidsjan.ddns.name +tube8vidsjhn.ddns.name +tube8vidsjtq.ddns.name +tube8vidslmf.dnset.com +tube8vidslni.dnset.com +tube8vidslqk.ddns.name +tube8vidslrz.ddns.name +tube8vidsnlq.dnset.com +tube8vidsnrt.ddns.name +tube8vidsnvd.ddns.name +tube8vidsnyp.dnset.com +tube8vidsolh.ddns.name +tube8vidsotz.dnset.com +tube8vidsowd.dnset.com +tube8vidspeq.ddns.name +tube8vidsqof.ddns.name +tube8vidsrau.dnset.com +tube8vidsrdr.dnset.com +tube8vidsrhl.ddns.name +tube8vidsrom.dnset.com +tube8vidssan.dnset.com +tube8vidssjw.ddns.name +tube8vidssyg.dnset.com +tube8vidstrh.dnset.com +tube8vidstyp.ddns.name +tube8vidsuty.dnset.com +tube8vidsvaj.dnset.com +tube8vidsvcs.ddns.name +tube8vidsvmr.ddns.name +tube8vidsvrx.ddns.name +tube8vidsvtp.dnset.com +tube8vidswsy.dnset.com +tube8vidswtb.ddns.name +tube8vidswys.ddns.name +tube8vidsxlo.ddns.name +tube8vidsxmx.dnset.com +tube8vidsxpg.ddns.name +tube8vidsxpp.dnset.com +tube8vidsxwu.ddns.name +tube8vidsycs.dnset.com +tube8vidsyip.ddns.name +tube8vidsymz.dnset.com +tube8vidsyre.dnset.com +tube8vidsyyf.dnset.com +tube8vidszmi.ddns.name +tube8vidsznj.ddns.name +tube8vidsznx.ddns.name +tube8vidszyj.ddns.name +tube.exclusiotv.be +tubegalorel.com +tubeline.biz +tubemogul.com +tubemoviez.com +tubeoffline.com +tuberiasperuanas.com +tuberkulezanet.ru +tuberkuleznik.ru +tube-xnxx.com +tubgirl.me +tubgirl.org +tubo360.com +tuckermktg.com +tuckows.com +tuckpointingmasonrysystems.com +tucocinaideal.es +tu.connect.wunderloop.net +tudouo.com +tuestaciongourmet.cl +tuhostcr.com +tui.intelli-direct.com +tukangsewa.com +tukejrh.angelfire.com +tukounnai.com +tula.mdverey.ru +tulatoly.com +tulindogruer.net +tuliptravel.co.za +tumbintwo.xyz +tumi.112.2o7.net +tumprogram.com +tu.mulhollandluxury.com +tunada.net +tuneservices.com +tunez9ja.com +tungkinjayala01.000webhostapp.com +tungshinggroup.com.vn +tunisie-info.com +tunmedia.tns-cs.net +tunnel.kobatochan.co +tuno.nuggad.net +t.upajs.co +tupper-posuda.ru +tupper-shop.ru +turbatii.com +turbo-suslik.org +turcotteconstruction.com +turdgasm.com +turist-strani.ru +turizm.bz +turkeyduster.com +turkeyhotelnoslafas.su +turkeyrank.com +turkeyreport.tk +turkkalite.xyz +turkogluelektrik.com +turn.com +turnerapac.d1.sc.omtrdc.net +turnerclassic.112.2o7.net +turnersports.112.2o7.net +turniejkrzyz.za.pl +turning-point.co +turnkey-solutions.net +turn.nexac.com +turobit.pw +turtlediary.co +turvgori.ru +tushiwang.com +tutgh.com +tutiendaencasa.com +tutikutyu.hu +tutorialoutpost.us.intellitxt.com +tutors.com.au +tuvanmuanhagiare.com +tv2dk.nuggad.net +tv2no.linkpulse.com +tv4indy.com +tv4play-se.c.richmetrics.com +tvand.ru +tvandsportstreams.com +tvaovivogratis.com +tvapppay.com +tvcenter.ca +tversvet.ru +tvfanatic.us.intellitxt.com +tv-gross-hesepe.de +tvguide.112.2o7.net +tv-internetowa.pl +tvklodzka.win +tvmedion.pl +tvmtracker.com +tvn2.adocean.pl +tvn.adocean.pl +tvn.hit.gemius.pl +tv-now.us.intellitxt.com +tvonline.hol.es +tvorozhnaja-zapekanka-recept.ru +tvoystartup.ru +tvpqorcajanunal.com +tvqxamentalistfanchonut.com +tv-rightcelebrity.us.intellitxt.com +tvseriesfinale.us.intellitxt.com +tvseriesmovies.pl +tvshowslist.com +tvshowsnow.tvmax.hop.clickbank.net +tv.sohu.com +tv-spoty.info +tvteleport.ru +tv-thaionline.com +tvzebra.popunder.ru +tw2.adserver.yahoo.com +tw.adserver.yahoo.com +twairlines.com +twc.demdex.net +twci.coremetrics.com +twdhefy.com +tweaks.us.intellitxt.com +tweaktown.us.intellitxt.com +tweakvista.us.intellitxt.com +tweet818k.2fh.co +tweetr.ml +tweetsoup.us.intellitxt.com +twelvevisionspartyofcolorado.com +twentemileu.nl +twiclub.in +twinaherbert.org +twincitiescarservice.com +twinderbella.com +twinfish.com.ar +twinflames-twinsouls.net +twinklelittleteepee.com.au +twinsare.loan +twinspack.com +twinsparc.com +twistpub.com.br +twitchguru.us.intellitxt.com +twitlinks.com +twittad.com +twitter.cm +twittercounter.com +twitterlinkup.com +twitter.login.kevanshome.org +twitter.secure.bzpharma.net +twittrading.com +twittruth.com +twizuhmpv.top +twizzls.com +twlistings.com +twnads.weather.ca +twocenturyoffice.com +twodollarshows.com +twoja-inteligencja.pl +twojapewnadata.pl +twojeartykuly.com +twojeartykuly.pl +twojebook.pl +twojepetycje.pl +twojeslodkiebobasy.pl +twojpodgaladcz.glt.pl +twoj-test-iq.blogspot.com +twonkygames.com +t.wowanalytics.co.uk +twpqygsrmxtu.com +twrocket.org +twskype.com +twtalk.com +twttr.com +twu.com.ua +twx.2mdn.net +twxashealth.org +twx.doubleclick.net +twyfordvillagepartnership.co.uk +tx2.ru +tx.5.p2l.info +txads.buzzcity.com +tx.micro.net.pk +txmmarket.pl +txpido.com +txt.adv.vz.ru +txvyfsvbqrwdxdkiuqsqw.com +txx521.com +txxx.com +tyahoo.co +tyareview-document.pdf-iso.webapps-security.review-2jk39w92.gymwiso.gq +tyauniserunsiousern.online +tybec.ca +tycotool.com +tydaya.com +tyehis.linkgaeltdz.co.za +t.yesware.com +tygodniksiedlecki.pl +tyi4.pl +tynt.com +tyosfortots.org +typeofmarijuana.com +type.translatorvr.com +typhloshop.ru +typicdesign.com +tyroo.com +tyumen.xrus.org +tyuogh.co +tywintress.com +tyytrddofjrntions.net +t.zeroredirect.com +tz.jiguangie.com +t.zqtk.net +tzw.com +u0003321.cp.regruhosting.ru +u0.extreme-dm.com +u1817.16.spylog.com +u1.extreme-dm.com +u1.puls.lv +u1trkqf.com +u25u2bqn.top +u2apartment.com +u3102.47.spylog.com +u3305.71.spylog.com +u3608.20.spylog.com +u4056.56.spylog.com +u432.77.spylog.com +u4396.79.spylog.com +u4443.84.spylog.com +u4556.11.spylog.com +u4ghzfb.com +u4luk.com +u5234.87.spylog.com +u5234.98.spylog.com +u555u.info +u5687.48.spylog.com +u574.07.spylog.com +u604.41.spylog.com +u6543ewfgh.dyndns-work.com +u6762.46.spylog.com +u6905.71.spylog.com +u7748.16.spylog.com +u810.15.spylog.com +u85foldero.com +u87654ere.is-a-geek.com +u8781a21.pw +u8959882.isphuset.no +u920.31.spylog.com +u977.40.spylog.com +ua1.hit.stat24.com +ua2.admixer.net +ua2.hit.stat24.com +ua3.hit.stat24.com +ua4.hit.stat24.com +ua5.hit.stat24.com +ua.adocean.pl +ua.adriver.ru +ua.badongo.com +uac.advertising.com +uacae1u.bid +uac.net.au +ua.cnt.gemius.pl +ua-company.ru +ua-content.adriver.ru +u.admob.com +u-ads.adap.tv +uadx.com +uaf.no +ua.hit.gemius.pl +ualumphuoldi.angelcities.com +uamtrk.com +uantonio.pl +uarating.com +uasb.ru +uasuoreapes.com +ua.supersonicads.com +uav.tidaltv.com +uawj.moqhixoz.cn +ubc188.top +uberads.net +ubergizmo.us.intellitxt.com +ubike.tourstogo.us +ublaze.ru +ubmcmm.baidustatic.com +ubpqfjn.com +ubranis.info +ubuarchery.bradweb.co.uk +ubunnu.com +ucanrose.com +ucas.it +uccgsegypt.com +uc.csc.adserver.yahoo.com +u-cheats.ru +uchebavchehii.ru +uchil.net +uchyz.cruisingsmallship.com +uci.securesoft.info +ucitzrhyz.top +ucounter.ucoz.net +ucoxa.work +ucoz.ru +ucsol.ru +ucstat.baidu.com +ucwsmtzxc.top +ucylojistik.com +udayogra-apps.com +udc.msn.com +udecodocs.net +udld.loan +udm.ia6.scorecardresearch.com +udm.ia7.scorecardresearch.com +udm.ia8.scorecardresearch.com +udm.ia9.scorecardresearch.com +udm.ri1.scorecardresearch.com +udm.ri2.scorecardresearch.com +udm.ri3.scorecardresearch.com +udm.ri4.scorecardresearch.com +udm.ri5.scorecardresearch.com +udm.ri6.scorecardresearch.com +udm.ri7.scorecardresearch.com +udm.ri8.scorecardresearch.com +udm.ri9.scorecardresearch.com +udmserve.net +udriveme2.com +udrivemyr54.com +udsgame.online +udyama.co.in +ue5.pl +ueaytdeacktsvcunoh.com +ueber-behoerden.de +uedata.amazon.com +ue-ei-sammler.de +uek8hei.top +uelbdc74fn.s.ad6media.fr +uestnds.com +u.extreme-dm.com +uf2aasn.111adfueo.us +uf2.svrni.ca +ufabrykanta.pl +uf.ainc.com +ufa.xrus.org +ufc202-live.blogspot.com +u-fly.com +ufree.org +uftpakistan.com.pk +uggbootsoutletsale.us +uggsale.online +ugguk.online +ughmvqf.spitt.ru +uglyas.com +uglyaudio.com +ugo.eu-adcenter.net +ugofit.com +ugogo.info +ugpittsburgh.com +ugrcbhena.top +ugwebz.uk.pn +uh3ye6ux.com +uhd-tv.com +uhdtv.website +u.heatmap.it +uhhn.com +uhodzalijami.ru +uhod-za-sobakoj.ru +ui4cahi.bi +ui4cahi.bid +uibanca.com +uidbox.uimserv.net +uikenknowsallguide.xyz +uikenknowsallproperties.xyz +uim.tifbs.net +uio7.pl +ui.oix.net +uiowa.edu.microsoft-pdf.com +ui.ppjol.com +uip.semasio.net +uiru1ie.to +uiru1ie.top +uitvaartverzekeringnl.com +uitvaartverzekeringnu.com +uitvaartverzekeringvergelijkennl.xyz +uiwhjhds.hol.es +ujewq.pl +ujvmzzwsxzrd3.com +uk.2.cqcounter.com +uk4.hit.stat24.com +uk.activeshopper.com +uk-ad2.adinfuse.com +uk.adserver.yahoo.com +uk.ads.hexus.net +uk-ads.openx.net +uk-apple-update.godsrestorationministries.org +uk.at.atwola.com +ukbanners.com +uk.cqcounter.com +ukfdecapkoct.co.za +uk-go.adinfuse.com +uk.i1.yimg.com +ukkelberg.no +ukkvdx.com +uk.mediaplayercodecpack.com +ukmpakarunding.my +uk.nedstat.net +uk.nedstatpro.net +ukonline.hc0.me +ukonlinephoneshop.co.uk +uk.paypal.co.uk.rghuxleyjewellers.com +ukrbanner.net +ukrfarms.com.ua +ukrobstep.com +ukrpts.net +ukrup.com +uk.sitestat.com +uktc.ijento.com +ukugl.tourstogo.us +uk-zheu20.ru +ukznpagau.co.za +uleadstrk.com +ulearn.co.id +ulfsbergercarlsson.se +ulic.baidu.com +ultimateclassicrock.com +ultimateclixx.com +ultimatecounter.com +ultimatefashiongifts.com +ultimategrey.pw +ultimatepopupkiller.com +ultimatesetnewfreeallsoftupgradesystems.pw +ultino.co.uk +ultra2.tsinghua.edu.cn +ultrabestportal.com +ultracet.1.p2l.info +ultram.1.p2l.info +ultramart.biz +ultramercial.com +ultraministry.xyz +ultrasponsor.com +ultrastudio360.com.br +ultratotty.com +ulundi.co.za +um3eemi.top +umadecc.com.br +umban.com +umbilical.mx +umesh.pro.np +umg-stroy.ru +umityangin.net +umkmpascaunikom.com +umnovocaminho.com +umowa-pozyczki.pl +um-razum.ru +ums.adtechus.com +um.simpli.fi +umwelt.weiz.at +unacittaconte.org +unalbilgisayar.com +unathleticmag.us.intellitxt.com +unauthorized-notificationapple.com +unavailablemedicines.com.au +unblockfacebook.co.uk +unblocking-centre2017.000webhostapp.com +unblocking-fb-contact-us.xyz +unblocking-fb-security.xyz +unblocking-fb-support.xyz +unblockpagesystem.co.nf +unblocksit.es +unblocksystempages.co.nf +unblocksystemspagefb.co.nf +unchartedbey.cf +unclepal.ca +uncovermedia.com.ng +uncut.oewabox.at +undef2trust.com +undef8trust.com +undefined.it +under2given.com +undercurrent-movie.com +undergiveto54.com +underluggen.se +undertheinfluencebook.org +underthesite.com +undertonenetworks.com +underwaterdesigner.com +undiscoveredindia.com +unearthliness.com +unece.org +unhilorojo.com +uni10.tk +unicatr.com.br +unicedu.ac.bd +uniclasscliente.tk +uniclick.openv.com +unicomnetwork.com.fj +unidadacademicademexico.com +unifiedpurpose.org +uniformhub.net +uni-hmburg.de +uni.me +unimed.oewabox.at +unimodemhalfduplefw.pen.io +uninstallmypopup.co.in +uninstallpopup.co.in +union.56.com +union.6.cn +unionavenue.net +union.baidu.com +unionleisurewear.com +unionmarkt.de +uni-pasau.de +unique2lazy.com +unisef.top +unisexjewelry.org +unite3tubes.com +united-airline-fare.100pantyhose.com +uniteddental.ca +unitedescrowinc.co +unitedhealthprducers.com +unitedrealestate.gm +unitex.home.pl +unitexindia.com +unitlan.biz +unitotal.ro +unitrailerparts.com +unitus.synergy-e.com +unityenterprises.co.in +unitygame3d.com +universal-d.openx.net +universal-downloader.softonic.fr +universal.iperceptions.com +universals.com.ua +universediamond.com +universesignsbody.com +universetoday.us.intellitxt.com +universidaddelexito.com +universidad-justosierra.edu.mx +universitdegeneve.weebly.com +universityherald.us.intellitxt.com +university-online.petrovka.info +universitystori.altervista.org +universoindiano.com.br +unixmanga.co +unix.ticbeat.co +unknown.counsellor.gov.cn +unknowntray.com +unk.vver.kiae.rr +unlim-app.tk +unlimiclick.com +unlimitedtoable.org +unlink.altitude.lv +unlocked-accountid.com +unlockedweddingsandevents.com.au +unlockingphone.net +unmaroll.ya.ru +unmillondeutilidades.com +unotijolos.eco.br +unpredictable.ga +unrealcommander.biz +unrealcommander.com +unrealcommander.org +unruhe.de +unsecured-guarantor-loans.co.uk +unstat.baidu.com +untd.com +untell.com +unterricht.org +unusconsultoria.com.br +unusualsex.nu +unusualtitle.com +unvailshop.com +unwashedsound.com +unwelcomeaz.top +unyupunyu.com +uoaofgqu.angelcities.com +uogonline.com +uojamcse.angelcities.com +uolcartao.webcindario.com +uole.ad.uol.com.br +uolfreeservers.112.2o7.net +uoljunocom2.112.2o7.net +uolnetzeronet2.112.2o7.net +uolphotosite.112.2o7.net +uomp.net +u.openx.net +u.optorb.com +up2disk.com +up6.org +upads.info +up-cp-23.xyz +updaaccntaccess.co.nf +upd.at +updat120.clanteam.com +update-1.com +update.2017.paypal.com.wcmb.ca +update.51edm.net +updateacces.org +update-account.2017-support.team.comerv0.webs0801cr-cm-lgint-id-l0gin-subpp1-login-login-yah.dgryapi.com +update-account.com.cgi-bin.webscr-cmd.login-submit-dispatch-5885d80a13c0db1f8e263663d3faee8da73942.weedfreegrass.co.uk +update-accounte.strikefighterconsultinginc.com +updateaccount.info.mpp.log.cpress.ok.loggin.cutomeportal.com +update-account-information.com.cgi-bin.cgi-bin.webscrcmd-login-submit.ipds.org.np +update-account.mpp.log.pp.cgi.infos.deutch-de.com +update-accounttactivity.com +update-apple.com.betawihosting.net +updateapppresent.com +updateauto.preparevideosafesystem4unow.site +updateauto.preparevideosafesystem4unow.space +update.ccount.shreeshishumandir.com +update.center.app-user-billing.com +updatedate.cn +updatehereformacandpc.pw +updatehere.ultimatesetnewfreeallsoftupgradesystems.pw +update.hiconversion.com +update-info-16ils.com +update-infored.jalotuvua.com +update.irs.nswsoccer.com.au +update-java.kit.net +updatekbcbe.webcindario.com +updatenewversion.freeupgradelive.com +updatenewversion.videoupdatelive.com +update-now-chase.com.usahabaru.web.id +updatenowpro.com +update.odeen.eu +update.onescan.co.kr +updatepagesfb-apy.cf +update-payplverification.c9users.io +update.privdog.com +update.rifugiopontese.it +updatersnow1.0xhost.net +update.saintfrancoisath.be +updates.com.valleysbest.com +update-scotiabank.com +updates.desktop.ak-networks.com +updatesecureservices.uvprintersbd.com +update-security.net +update-skype.freehostia.com +update.spaceinter.com +updatessonline.com +update.suntrust.company.honeybadgersmarketing.com +update.theplacetoupdating.pw +update.timstackleshop.es +update-usaa.com.usahabaru.web.id +update.verify.comcast.asigurator.com +updatewellsfargo.amvesys.com.au +update.wellsfargo.npahrs.com +update.wellsfargo.vote4miguel.com +updatework.updaterightnow.com +update-your-account.apcofparker.com +update-your-account-information-now.directconnectcm.com +updateyouraccount.pagarbetonwillcon.com +update-your-account.unidadversusindependencia.es +update-your-account-wellsfargo-customer.gabrielfarms.ca +update.your.information.paypal.com.111112232432543654657687908089786575634423424.mohe.lankapanel.biz +updating-flash.cloudapp.net +updatservice.serveradminmanagment.com +updddha.dhlercodhl.tk +updo.nl +upf.go.ug +upgrade4life.inlineonlinesafeupdates.org +upgradenote.checkupdateslive.net +upgradenote.enterbestforupdating.bid +upgradenow24.com +upgrade-payment-pages.fulba.com +upgrdprocess.com.ng +upheaven.com +upi.112.2o7.net +upi.us.intellitxt.com +upload.adtech.de +upload.adtech.fr +upload.adtech.us +upload-button.us +upload.kobatochan.co +upload.luckyorange.net +uploads.kobatochan.co +uploads.ticbeat.co +uploads.tmweb.ru +upload.ticbeat.co +upload.tmcaster.com +up.mykings.pw +up.nytimes.com +upominki.g-a.pl +uponor.otistores.com +up-paypol.co.uk +upperdarby26.com +uppm.akbid-sentral.ac.id +upproar.com +uppsalakatthem.se +uppyads.com +upqeyi.com +uprguinee.org +uproar.com +uproar.fortunecity.com +uprour.com +upshare.org +upsidegastrobar.com.br +ups-job.ch +upsoj.iptvdeals.com +upstart.88vid.com +upstats.yadro.ru +upstore.me +upstreamline.com +upsuppliers.co.za +upswings.net +uptight.su +uptime-alpha.net +uptimebot.net +uptimechecker.com +uptime.com +uptitehusky.com +uptodatecontent.net +uptodate-hosted.com +uptodate-tikso.com +upupa.net +uqie4nzy.com +uqz.com +urahor9u.com +ural-buldozer.ru +uravvtvalidateupgradein.netai.net +urban.adspirit.de +urbanculture.de +urbanenergyci.com +urbanparkhomes.net +urbanpetstore.com +urcarcleaning.be +urccvfmc.bloger.index.hr +urchin.lstat.youku.com +urchman11.zapto.org +urdoot.win +urhomellc.com +uriarteph.com.ar +urkorkat.se +url1.pl +url2image.com +urlaubincarolinensiel.com +urlaub-sylt.com +url-cameralist.tk +urlcash.net +urlcut.net +urlcut.ru +urldelivery.com +urlife2all.com +url-img.link +urll.eu +urlopener.com +urlserverappstoreca.selfip.com +urlsft.com +urlstats.com +urnsforpets.net +uroc.info +uroffer.link +uroki.net +urpchelp22.xyz +urpchelp33.xyz +urpchelp44.xyz +urpchelp55.xyz +urpindia.in +urshort.net +u-ruraldoctor.com +urzedowski.eu +us0.adlibr.com +us1.siteimprove.com +us.2.cqcounter.com +us2.siteimprove.com +usa1pizzawesthaven.com +us.a1.yimg.com +usaa.com-inet-ent-log00on-logon.communiqsoft.com +usaa.com.inet.ent.logon.logon.redirectedfromlogoff.truemain.warefpub.globalproducts.priauth.nav.studentsuccess.com.au +usaa.com.inet.ent.logon.logon.redirectedfromlogoff.truemain.warefpub.global.vsipblocks.com +usaa.com.inet.entlogon.logon.redirectjsp.ef4bce064403e276e26b792bda81c384ce09593b819e632a1.3923ef2c8955cooskieid112824nosdeasd.2300928072ghdo687fed.dobermannclubvictoria.com.au +usaa.com.inet.entlogon.logon.redirectjsp.true.details.refererident.906ce097206.keystoneinteriors.com.au +usaa.com.inet.entlogon.logon.redirectjsp.true.details.refererident.multilaundry.com.au +usaa.com-inet-ent-logon-logon-redirectjsp-true.nanssie.com.au +usaa.com.inet.ent.logon.logon.redirectjsp.true.registrationaccountsummary.abanicosgarciashop.com +usaa.com.inet.ent.logon.logon.redirectjsp.true.registrationaprofile.estatement.myaccountsregistration.vesplast.com +usaa.com-inet--logon-logon-logon-logon.communiqsoft.com +usaa.com-inet--logonnnn.communiqsoft.com +usaa.com-inet-pages-security-take-steps-protect-logon.evenheatcatering.com.au +usaa.com-inet-true-auth-secured-checking-home.ozinta.com.au +usaa.com-inet-true-auth-secured-checking-home-savings.izedi.com +usaa.com-inet-truememberent-iscaddetou.izedi.com +usaa.com-inet-truememberent-iscaddetour.allwinexports.in +usaa.com-inet-truememberent-iscaddetour.balicomp.co.id +usaa.com-inet-truememberent-iscaddetour.horvat-htz.hr +usaa.com-inet-truememberent-iscaddetour.myproofs.com.au +usaa.com-inet-truememberent-iscaddetour.nationalsecurityforce.com.au +usaa.com-inet-truememberent-iscaddetour.newchapterpsychology.com.au +usaa.com-inet-truememberent-iscaddetour-savings.aegisskills.com +usaa.com-inet-truememberent-iscaddetour-savings.gtimarketing.co.za +usaa.com-inet-truememberent-iscaddetour-savings-home.wrmcloud.eu +usaa.com-inet-truememberent-iscaddetour-secured-checking.wrmcloud.eu +usaa.com-inet-truememberent-iscaddetour-secured.frank4life.co.za +usaa.com-inet-truememberent-iscaddetour-secured-safe.jayedahmed.com +usaa.com-inet-truememberent-iscaddetour-start-auth-home.navarnahairartistry.com.au +usaa.com-inet-truememberent-iscaddetour-start-detourid.centrovisionintegral.com +usaa.com-inet-truememberent-iscaddetour-start.hydeplumb.com.au +usaa.com-inet-truememberent-iscaddetour-start.iconprojectsnsw.com.au +usaa.com-inet-truememberent-iscaddetour-start-usaa.pacplus.net.au +usaa.com-inet-truememberent-iscaddetour.wrmcloud.eu +usaa.com-login-verify-onlineaccount.communiqsoft.com +usaa.com.payment.secure.manicreations.in +usaa.com-sec-inet-auth-logon-ent-logon-logon-redirectjsp.chrischadwick.com.au +usaa.com-sec-inet-auth-logon-ent-logon-logon-redirectjspdrevb.stylesoft.com.au +usaa.com-sec-inet-auth-logon-ent-logon-logon-redirectjsprop.youlebeatty.com.au +usaa.com.signon.inet.ent.logon.784999432.logon.85868io.pasvro.net +usaa.com.updateserver984.gilbil.94988489894.charge08yih3983uihj.odishatourist.com +usaa-documents.cf +usaa.ent.login.plcaustralia.com +usaa.logon.cec.com.pk +usaa-online.pe.hu +usaa-support.n8creative.com +usaaug.com +usaa.usaa.com-inet-entctjsp.min.sen.zulba.com +usaa.usaa.com-inet-ent-redirectjsp.min.sen.cfcomex.com.br +usabilitytesten.nl +usacasino.com +usachoice.net +usadacha.net +usadserver.com +us.adserver.yahoo.com +us.ads.justpremium.com +us-ads.openx.net +usads.vibrantmedia.com +usage.trackjs.com +usa-jiaji.com +us-america.ru +us-ana.com +usa.nedstat.net +usapolice.com +usapromotravel.com +usarmymil.info +usatoday1.112.2o7.net +usatoday.app.ur.gcion.com +usatravel-specials.com +usatravel-specials.net +us.b1.yimg.com +usbank.tt.omtrdc.net +us.battle.net.a-wow.net +us.battle.net.b-wow.com +us.battle.net.gm-blizzard.com +us.battle.net.help-blizzard.com +us.battle.net.login.login.xml.account.password-verify.html.logln-game.top +us.battle.net.login.login.xml.account.support.html.entertainment-legion.xyz +us.battle.net.login.login.xml.account.support.html.pets-password.xyz +us.battle.net.support-blizzard.com +usbattlewow.net +usbpro.com +usb-turn-table.co.uk +us.c1.yimg.com +us-cdn.effectivemeasure.net +uscentral17.myserverhosts.com +us-choicevalue.com +us.cqcounter.com +us.d1.yimg.com +usdd1.info +usdm.122.2o7.net +usdoloo.info +usdoor.info +usdsd1.info +usd.sierra-boa.com +usdx.us +us.e1.yimg.com +use.convertglobal.com +usedgolfcartsguide.com +usemax.de +usemydnss.com +user56512.vs.speednames.com +useraccountvalidation-apple.com +user-aple.com +user-appleid.net +user.chase-reg.net16.net +userequip.com +user.fileserver.co.kr +user-information-update.com +users16.jabry.com +users173.lolipop.jp +users.cjb.net +user-security-pp-de.ga +users.effectivebrand.com +users-support-de.ga +user-sync.adhese.com +use-tor.adsrvr.org +us.f1.yimg.com +us.g1.yimg.com +us-gmtdmp.mookie1.com +us.h1.yimg.com +us-helpbattle.net +ushelpwow.net +usiad.net +usinessifpgeili.com +us.intellitxt.com +usitecparana.com.br +us.j1.yimg.com +us.k1.yimg.com +us.kopuz.com +uskudarkoltukdoseme.net +us.l1.yimg.com +us.m1.yimg.com +usmartialartsassociation.com +us.mediaplayercodecpack.com +us.n1.yimg.com +usnews.122.2o7.net +us.o1.yimg.com +us.p1.yimg.com +us.pixel.newscgp.com +us.plagiarizing766fj.pw +uspropertywarehouse.com +uspusees.com +us.q1.yimg.com +us.r1.yimg.com +usr.marketgid.com +us.s1.yimg.com +us.scaliseshop.com +ussearch.122.2o7.net +ussearche.cf +us.sitestat.com +us-sonar.sociomantic.com +ussouellet.com +usswrite.com +us.t1.yimg.com +ustaw-tlo.blogspot.com +ustaw--tlo-fb.blogspot.com +ustion.ru +us-topsites.com +us-tracker.inside-graph.com +us.tracking.justpremium.com +us.tvuim.pw +us.u1.yimg.com +usubmarine.com +usugi-pomocy.sitey.me +usun.112.2o7.net +usunwirusa.pl +us-u.openx.net +us.v1.yimg.com +us.w1.yimg.com +us.x1.yimg.com +us.y1.yimg.com +us.z1.yimg.com +ut.5.p2l.info +ut.addthis.com +utahhappens.com +utahsecure.com +utairway.com +utarget.co.uk +utarget.ru +utenti.lycos.it +utilbada.com +utildata.co.kr +utility.baidu.com +utiljoy.com +utils.media-general.com +utils.mediageneral.com +utils.mediageneral.net +utk.baidu.com +utlitydiscountplans.com +utm2.smileycentral.com +utm.cursormania.com +utm.excite.co.uk +utm.excite.it +utm.myfuncards.com +utm.myway.com +utm.popswatter.com +utm.popularscreensavers.com +utm.smileycentral.com +utmtrk2.smileycentral.com +utm.trk.cursormania.com +utm.trk.excite.com +utm.trk.myfuncards.com +utm.trk.myway.com +utm.trk.popswatter.com +utm.trk.popularscreensavers.com +utm.trk.smileycentral.com +utm.trk.webfetti.com +utm.trk.zwinky.com +utm.webfetti.com +utm.zwinky.com +utoypia.com.au +utpsoxvninhi6.com +utrack.hexun.com +utraffic.engine.adglare.net +utrolive.ru +uts-api.at.atwola.com +utsdpp.persgroep.net +uttamtv.com +utube.ml +utumalsbp.top +utzpkru.411.com1.ru +uubnyqsw.info +uunyadgda1.doubleclick.net +uunyadgds1.doubleclick.net +uuu822.com +uvadovale.com +uvatech.co.uk +uvee1qu.top +uveework.ru +uveous-surveys.000webhostapp.com +uvgt.com +uvidu.butlerelectricsupply.com +uvimage.56.com +uvirt3.active24.cz +uvozdeckych.info +uvy3.pl +uwcomunicaciones.com +uwe-iben.de +uwempeter.5gbfree.com +uwz.oewabox.at +uxoh9fe.top +uxtop.ru +uyqrwg.com +uytmaster.ru +uywsjrsdwh.com +uzaleznienie-od-fejsa.wirtualnie.pl +u.zeroredirect.com +uzmanhavuz.com +uzungil.com +uzvoj.com +v0.extreme-dm.com +v0.stat.ku6.com +v10.xmlsearch.miva.com +v11lndpin.com +v16.56.com +v1.cnzz.com +v1.extreme-dm.com +v1.nedstatbasic.net +v1.stat.ku6.com +v1tj.jiguangie.com +v21.pl +v24s.net +v2.adgoto.com +v2.ads3.ipon.lt +v2.adsbookie.com +v2.chartboost.com +v2mlbrown.com +v2mlyellow.com +v2profit.com +v2.stat.ku6.com +v2.urlads.net +v3.cnzz.com +v3rjvtt.com +v3.stat.ku6.com +v3.toolbar.soso.com +v4.cnzz.com +v5.chinoc.net +v5.cnzz.com +v720hd.ru +v7.cnzz.com +v7pjo.voluumtrk.com +v7.stats.load.com +v9.cnzz.com +va3nek.webqth.com +va.5.p2l.info +vabasa.inwtrade.com +vabon.com +vacances-voyages.info +vacationcellular.net +vacation-guide-blog.com +vacation.toppick.info +vacattionstogo.com +vachevskih.ru +vacicorpus.ye.vc +vaclaimsupportservices.com +vacuumscleaner.com +vad.adbasket.net +vadakkumnadhan.com +vadimkravtcov.ru +v.admedia.com +v.admob.com +vadp.de +vads.adbrite.com +vagiduciv2.temp.swtest.ru +vagony.ru +vah6ox4.top +vaibio.com +vaidosaporacaso.com.br +vaime.net.popunder.ru +vains.com +vaippaandedicators.reducemycard.com +vaishalimotors.com +vaitu.club +vajart.com +vajazzlingkit.com +vakantiefoto.mobi +valb.atm.youku.com +valc.atm.youku.com +valdmir.noriysha.ru +valeriarossi.com.br +valerie-laboratoire.com +valeriyvoykovski.myjino.ru +valet-bablo.ru +valetik.ru +valeurscitoyennes.tg +valf.atm.youku.com +valhallarisingthemovie.co.uk +validarrsanta.com +validate.id.appiestores.com +validation.faceboqk.co +validccseller.com +validclick.com +validdomain.xyz +validlogin.top +valium.este.ru +valium.hut1.ru +valium.ourtablets.com +valium.polybuild.ru +valiumvalium.3xforum.ro +valkiria-tk.ru +vallecriativo.com.br +valley-store.com +valleyvwventures.com +vallgornenis.gq +valmetrundan.se +valntooglesakrundigk.pw +valo.atm.youku.com +valoresito.com +valorfirellc.com +valortho.com +valouweeigenaren.nl +valp.atm.youku.com +valsalud.com +valtrex.1.p2l.info +valtrex.3.p2l.info +valtrex.4.p2l.info +valtrex.7h.com +valtrk.com +valuado.com +valuchelelele.com +valuead.com +valuecitfurniture.com +valueclick.com +valueclickmedia.com +valueclick.net +valuecommerce.com +valuehost.co.uk +valuemailingsalert.com +valuesponsor.com +valume32.in.net +valume64.in.net +valunicorn.com +vamostodosnessa.com.br +vampirediary.ml +van.ads.link4ads.com +vancleefreplica.pw +vancouversun-com.c.richmetrics.com +vandallohullio.com +vandanaskitchen.com +van-de-berg.de +vandrie-ict.nl +vanengelenstichting.org +vanessaleeger.net +vangogh-select.com +vanguardair.com +vanhuy1023.com +vanilabeauty.com +vanillagif.com +vaniqa.1.p2l.info +vankapetkavanis4.pw +vanns.112.2o7.net +vanoostenadvies.nl +vanpeltautosales.com +van.redlightcenter.com +vapeo2.com +vapsy.com +varadankannan.com +varbergsvind.se +vardtorg.ru +varikoz24.com +varsityads.directtrack.com +vasanacreative.com +vasanthkumar.com +vasfagah.ru +vashadvokat.in.ua +vashsvet.com +vashzaym24.ru +vasileostrovsky-rayon.ru +vassabgg.pw +vassanjeeproperties.co.za +vast.bp3845260.btrll.com +vast.bp3846806.btrll.com +vast.bp3846885.btrll.com +vast.bp3854536.btrll.com +vast.bp3855098.btrll.com +vast.bp3855099.btrll.com +vast.bp3855984.btrll.com +vast.bp3855987.btrll.com +vast.bp3855989.btrll.com +vast.bp3855991.btrll.com +vast.bp3855992.btrll.com +vast.deliads.com +vast.optimatic.com +vasttarafik.se +vast.tubemogul.com +vastu-realty.com +vast.vertamedia.com +vastx.moatads.com +vasuarte.net +vasuca.cl +va.tawk.to +vatech2.com +vaude.it +vault9.us.intellitxt.com +vavilone.com +vaxcfg.tk +vayvlpg.com +vbabule.net +vbadbg.hit.gemius.pl +vbbg.adocean.pl +vbit.co.in +vbn6.pl +vb.serverknecht.de +v.bsvideos.com +vbswzm.com +vbvserviios.com +vbx.protofilm.net +vcaf.com +vcbqxu.com +vccd.cn +vcdn.adnxs.com +vcdssaj.com +vcipo.info +vclick.adbrite.com +vclicks.net +vcm.oewabox.at +vcomdeepdiscount.112.2o7.net +vcommerce.112.2o7.net +vcontent.e-messenger.net +vcu.collserve.com +vcxz.pl +vddunav.rs +vdhu.com +vdownloads.ru +vdtrack.com +vdula.czystykod.pl +vduplo.ru +vecherinka.com +vectoni.ga +vectoranalysisllc.com +vectorforgegames.com +vectrabank.112.2o7.net +vedomstvo.net +veerotech.com +veevu.tourstogo.us +vefapro.com +vefgcyukg.top +vega-music.com +vegan-foods.us +vegantravelshow.com +vegascosmetics.ru +vegostoko.spaappointments.biz +veiculos.fipeorg.com +veille-referencement.com +veksi.barginginfrance.net +vektorpress.ru +vekzdorov.ru +velaa-logistics.com +velagio.com +velcomshop.com +velds.com.br +veljipsons.com +vellings.info +velobikestock.com +velocecdn.com +velocityrodandcycle.com +velorbis-bikes.no +vemdeminas.com.br +vemmagermany.de +vempracaixa.info +vencedoronline.com +venczer.com +vendera.fi +vendorweb.citibank.com +venetianbanquetcentre.com +venetian.evyy.net +venicebeach.nu +venta-prom.ru +ventelnos.com +ventivmedia.com +ventricuncut.nfcfhosting.com +venturead.com +venturesindia.co.in +venturytel.net +ventution.com +venus.goclick.com +veoolia.co.uk +verapdpf.info +ver-auto-service.com +verbateam.se +verdestones.com +veremail.com +vereo.eu +verfer.com +verfication.gq +verfppls.com +vericlick.com +verifi74.register-aacunt21.gq +verifi77.register-aacunt21.ml +verifica-postepay.com +verificar-apple.com +verificarmiidapp.com +verificasih11.f4npage-confr1m.gq +verification56.helpfanspagea.tk +verification-account-pp.info +verification-app-me-nowing-hello.com +verificationbilling-authlocked.com +verification-bm.com +verification-ebay2017.tk +verification-facebook.ga +verification.fanspageaccountsupport.com +verification-id-update.security.token.ios.apple2016.device.productostrazzo.com +verification-impots.gzero.com.mx +verification-mobile-nab.com +verification-paymentitunesstore.cf +verification.priceporter.com +verification.prima1.gq +verification.prima2.cf +verification-requested.charlycarlos.com +verification-security-system.cn.com +verified-all.club +verifiedbyverisigned.com +verified.capitalone.com.login.mad105.mccdgm.net +verified-paypal.com +verifier9.wixsite.com +verifiez-votre-compte.site +verifikacii22.fanpage112.ga +verifikasi9888.regis-from-alert32.tk +verifikation-zentrum.top +verifvk.xyz +verify438.com +verify-account-customer.amm-ku.com +verifyaccount-paypal-account.bioflowls.com +verify-bank-chase.com +verifycaptcha.com +verify-facebook-account.xyz +verify-icloud-apple.com +verify-id-apple.com.6b4d41f89.pw +verify-id-infos-authen-services.ga +verify.lestudiolum.net +verify-login.club +verifymail189.com +verifyme.kitaghana.org +verify.myaccount.wallet.iatxmjzqhibe81zbfzzy7nidicadefnaleaa46cq6nxackdbwrrfd2z.crownoption.com +verify-netflix0.com +verify-netflix1.com +verify-page.fbnotification-inc.com +verify-payment-information-center.com +verify.pncbanks.org +verify-scotiabank.com +verify-secure-account.com +verify.security.google-policy.us.equipamentosac.com.br +verify-service10.site +verifysignalcare.com +verify.user.acc-payment-locked.com +verify-your-account-facebook.somee.com +veriifyaccounts-324654.000webhostapp.com +veriiificasion22.registrasi-fanpage-alert23.tk +verisignwildcard.112.2o7.net +verisingusnesbou.com +verisonwildcard.112.2o7.net +veristo.pl +veritassignup.com +verivox01.webtrekk.net +verizonwireless.tt.omtrdc.net +vermontteddybear.112.2o7.net +vernoblisk.com +vernonpitout.com +ver.ovh +versalstudio.by +versionsupport.set2updatenowsafesystemset4now.info +versolltda.com +versus.uz +vertadnet.com +vertaform.com +vertebrare.com.br +vertex28.com +verticaldeconstrucciones.co +vertical-stats.huffpost.com +veruta.com +vervewireless.com +very-koi.com +verymark.info +vesissb.com +vesnatehno.com +vesnatehno.ru +vestelklimaservisiniz.net +vestralocus.com +veszedrendben.hu +vetalen.nl +veteransrealty.000webhostapp.com +vetrous-maju.co.id +ve.tscapeplay.com +vetsx.com +vette-porno.nl +veuhub-d.openx.net +v.extreme-dm.com +vezuviy.su +vf7.soundsecureredir.com +vfastdownload.com +vfdeprod.amobee.com +vffzemb.tk +vfmedia.tv +vfm.org.uk +vgas.co.in +vgdqqcsvfcs.pw +vg-no.c.richmetrics.com +v-going.com.cn +vgoloveboli.net +vg.tns-cs.net +vguns.com.br +vgyatuniontemporal.co +vh1com.112.2o7.net +vhfrysknh.top +vht.tradedoubler.com +vi.5.p2l.info +viaaddictingclips.112.2o7.net +viaaddictinggames.112.2o7.net +viaarena.us.intellitxt.com +viaatom.112.2o7.net +viaatomv6.112.2o7.net +viaatomvideo.112.2o7.net +viabcop.net +viabcpp.com +viabestweekever.112.2o7.net +viacesar.com +viacomedycentral.112.2o7.net +viacomedycentralrl.112.2o7.net +viacomedyde.112.2o7.net +viacom.oewabox.at +viacordblood.com +viadocc.info +via-energy-order.com +viagametrailers.112.2o7.net +viagra.1.p2l.info +viagra.3.p2l.info +viagra.4.p2l.info +viagra-online.petrovka.info +viagra-pill.blogspot.com +viagra.polybuild.ru +viagra.pp.ua +viagra-soft-tabs.1.p2l.info +viagra-store.shengen.ru +viagraviagra.3xforum.ro +via-gra.webstarts.com +viagroid.ru +vialbcpzonasegura.vl-per.com +vialogoonline.112.2o7.net +vialogorollup.112.2o7.net +viamichelin.cdn11.contentabc.com +viamichelin.media.trafficjunky.net +viamtv.112.2o7.net +viamtvcom.112.2o7.net +viamtvnvideo.112.2o7.net +viamtvromania.112.2o7.net +viamtvtr.112.2o7.net +viamtvtr3s.112.2o7.net +viamtvuk.112.2o7.net +viamtvukdev.112.2o7.net +vianaedias.net +viandpet.com +vianewnownext.112.2o7.net +vianickde.112.2o7.net +via.oewabox.at +viaquiz.112.2o7.net +viarnd.112.2o7.net +viarshop.biz +viartstudio.pl +viasatsatelliteservices.112.2o7.net +viasbcpzonasegura.wc-line.com +viashockwave.112.2o7.net +viaspike.112.2o7.net +viasyndimedia.112.2o7.net +viaukplayer.112.2o7.net +viavh1com.112.2o7.net +viavh1scandalist.112.2o7.net +viavh1video.112.2o7.net +viay2m.112.2o7.net +viberdownload10.com +vibe.us.intellitxt.com +vibgyorartschool.com +vibrantmedia.com +vibygillet.se +vice-ads-cdn.vice.com +vice-d.openx.net +viceschool.ca +vicirealestate.com +vicodin-online.petrovka.info +vicodin-store.shengen.ru +vicodin.t-amo.net +victor.connectcloud.ch +victoriaadvocate.112.2o7.net +victorydetailing.com +victoryslastchance.com +vicwulaw.com +vida-fiesta.com +vid.atdmt.com +vid.atm.youku.com +videno.pl +video1.adprimemedia.com +video.adaptv.advertising.com +video-ad-stats.googlesyndication.com +video.bangladeshinfo.com +videobb.ru +videobox.com +video.buzzintersection.com +videochat360.com +videochat.bz +videochat.cafe +video-chat.cn +video-chat.in +videochat.life +video-chat.love +videochat.mx +videochat.ph +videochat.tv.br +videochat.world +videochaty.ru +videoclick.ru +video-clip.ml +videocodezone.us.intellitxt.com +videocop.com +video.cynogage.com +video.dmtracker.com +videoegg.adbureau.net +videoegg.com +video.entertaintastic.com +video.flashtalking.com +videoflyover.com +video-game-rewards-central.com +videogamerewardscentral.com +videogum.tags.crwdcntrl.net +video-hollywood.ru +videoinbox.net +videointerattivi.net +videojam.tv +videojug.uk.intellitxt.com +videokrik.net +video.loudgames.com +videomediagroep.nl +video.od.visiblemeasures.com +videooko.weebly.com +videoo.pl +video-pomp.com +videoporn24.ru +video--production.com +videoproductionfilms.co.uk +videorazr.com +video.rb-webdev.de +videos20083.mail333.su +videosbox.ru +videos.dskjkiuw.com +videosevangelicos.com +videos.fleshlight.com +videos-for-your-business.com +videoslots.888.com +videosongplayer.com +video-stats.video.google.com +videostream.pl +videos.twitter.secure-logins01.com +videos.video-loader.com +videoterbaru2-2015.3eeweb.com +video.theparentingvillage.com +videotroncom.112.2o7.net +videotuber.ru +video.unrulymedia.com +videoway.net +videoway.pl +video-woman.com +videsignz.com +videtubs.pl +vidilife.crwdcntrl.net +vidious5.cf +vidkit.io +vidnet.us.intellitxt.com +vidracariaar.com.br +vidriosymelaminepalacios.com +vids-24.pl +vidwerks.com +vidzi.tv +vielporno.net +viel.su +viessmann-model.de +vietshock22.com +view4cash.de +view.admission.net +view.atdmt.com +view.avenuea.com +view.binlayer.com +view-doc.thaiengine.com +viewdocument.comxa.com +viewerapp.pl +viewerfb.glt.pl +viewer.peer39.com +viewerstats.docstoc.com.s3.amazonaws.com +view.iballs.a1.avenuea.com +viewinformation.com.ng +view.jamba.de +view-location-icloud.com +viewlocation.link +viewmatchprofiles.com +viewmymatchpics.com +viewmynewmatchpictures.com +view.netrams.com +view.network.affiliando.com +viewphoto.io +viewpoint.com +view.protect.docxls.arabiantentuae.com +view.s4.exacttarget.com +view.s6.exacttarget.com +view.s7.exacttarget.com +view.s8.exacttarget.com +viewsfile.com +views.m4n.nl +viewssheetssxxxc.com +viewthisimagecle.myjino.ru +viewtools.com +vi-faceb0ok.com +viglink.com +viglink.pgpartner.com +vigrx-original.ru +viistra.com +vikingantiques.com +vikingrepairhouston.com +vikrantcranes.com +viktoria-center.ru +vilaverdeum.com.br +vilidsss.com +vilingstore.net +villacoloniale.com +villagarden.pl +villagevoicecollect.247realmedia.com +villakohlanta.nu +villalecchi.com +villaroyal.com.mx +villasserena.com +vil-service.com +vimeoo.net +vimusic.net +vindeenbegrafenisverzekering.org +vindinternetprovider.xyz +vinebunker.com +vineyard-garden.com +v.inigsplan.ru +vinitalywholesale.com +vinking.top +vino-con-vista.us +vinodagarwalsspl.com +vinra.in +vinsit.ru +vinsongroup.com.au +vintacom.112.2o7.net +vintadream.112.2o7.net +vintagellure.com +vintontech.info +vinylesiding.org +vinyljazzrecords.com +vinylvault.co.uk +violationpage2017.cf +violbcp.com +violence.us +vioxx.1.p2l.info +vip091-tvmt.rhcloud.com +vip1.tw.adserver.yahoo.com +vip2ch.com +vip2.clickzs.com +vip2.clickzzs.nl +vip.51.la +vip.adstatic.com +vipcheats.us +vip.clickzs.com +vip.clickzzs.nl +vip-computer.com +vipcpms.com +vipdn123.blackapplehost.com +vip.dns-vip.net +vip-dom.in +vip.eeu.pl +viper.popunder.ru +vipfastmoney.com +vip-file.com +viplimousiner.se +vipms.ru +vipoptions.info +vip-parfumeria.ru +vipprojects.cn +vippropertiesshops.com +vipps.com.my +vipromoffers.com +vipsiterip.org +vipsofor.net +vip-traffic.com +viralmeow.com +viralmix.de +viral-nation.com +viralpinki.tk +viralture.com +viralvideo.112.2o7.net +virginmedia.112.2o7.net +virginmobile.122.2o7.net +virginmobileusa.tt.omtrdc.net +virtuabr.com.br +virtuagirl.com +virtualbartendertrack.beer.com +virtualcard.brunst.dk +virtualnaya.com +virtual-office.in +virtual-pcb.com +virtual.thewhig.com +virtueelsex.nl +virusdetector247.com +virusheal.com +virus-help.us +virus-notice.com +vis5.sexlist.com +visa-china.ru +visantgiorn.altervista.org +visaodigitalcftv.com.br +visa-pasport.ru +visa.secure.card.lufkinmoving.com +visasworld.org +visasytrabajo.co +visiblegroupbd.com +visionavd012.se +visionbundall.com.au +visioniconsulting.com +visionja.ch +visionnextservices.com +visionoptical.com.co +visiontech.org.in +visionwell.com.cn +visistat.com +visit2013.in.ua +visitamericavacationhomes.com +visitardistrito.com +visitbox.de +visitcambridge.org +visitors.lexus-europe.com +visitsouthbd.com +visit.theglobeandmail.com +visit.webhosting.yahoo.com +vis.sexlist.com +vistabet-affiliate.host.bannerflow.com +vistapoint.net +vistas.popunder.ru +vistatech.us +visualindesign.be +visualmania.co.nz +visual-pagerank.fr +visualrevenue.com +visualscience.external.bbc.co.uk +visualsltdds.com +viswatejaschool.in +vita.com.hr +vitacost.122.2o7.net +vitalads.net +vitaldentvarese.it +vitalfirstaidtraining.com +vitalfootball.uk.intellitxt.com +vitalitymax.1.p2l.info +vitalityxray.com +vitals.tracking.mdxdata.com +vitaltradinglimited.com +vitaly.agricolacolhue.cl +vitamasaz.pl +vitaminahenger.com.br +vitamxx.in.net +vitanail.ru +vitaplan.rs +vitastil.se +viteonlusarezzo.it +vitex-carbon.ru +vitha.csheaven.com +vitinhtd.com +vitokshoppers.co.ke +vitrigroup.pl +vitrineacim.com.br +vittalaara.com +viuboin4.com +viva.count.brat-online.ro +vivaweb.org +vivekbindra.com +vivelaviesoup.com +viven.host.sk +viverolunaverde.com.ar +vivezacortinas.com.br +vivi8.com +vizag.kharkov.ua +vizirti.com +vizitkarte.ws +vjb.ewangsky.com +vk.18sexporn.ru +vk2ca.com +vkak.ru +vk-ck.ru +vk.com.club52534765.45678754.5435.8454343.11010164345678763256487634434876524.34567876546789876.tw1.ru +vkfyqke.com.cn +vkgaleria.com +vkmcom.beget.tech +vk-mus.ru +vk.myago.tk +vkongakte.com +vkontahte.ru +vkontaktemusic.ru +vkontarkte.com +vkont.bos.ru +vkontckte.ru +vk.serulom.tk +vktr073.net +vlabcop.com +vladhistory.com +vladicher.com +vladimir.xrus.org +vladimir.zrus.org +v.landingzone.se +vlencadernadora.com.br +vle.snh.org.my +vlibs.advertising.com +vliiflsilgr.com +v.lkqd.net +vlogic.ak-networks.com +vlog.leadformix.com +vlorayouthcenter.org +vlpb4vcdofxovkg3fewi.jornalalfaomega.com.br +vltai.com +vm3.parabol.object.bg +vmay.com +vmcsatellite.com +vmix.adbureau.net +vmjubwvajez.com +vml1.s3.amazonaws.com +vmnmvzsmn.over-blog.com +vmn.net +vms.boldchat.com +vmwh.com +vmxzr.com +vnalex.tripod.com +vnchospitality.com +vnedu.kovo.vn +vngamesz.com +vn.grab-credit4u.com +vnmcc.com.vn +vnquatang.com +vntanktransport.com +vnu.eu-adcenter.net +vnumedia01.webtrekk.net +vnumedia02.webtrekk.net +vnumedia03.webtrekk.net +vnumedia04.webtrekk.net +vnunet.uk.intellitxt.com +vocal-mess.com +vocational-training.us +vod24.pl +vodafone-bill.co.uk +vodafonegroup.122.2o7.net +vodafoneit.solution.weborama.fr +vodahelp.sytes.net +vodaodessa.com +vod.com.ua +voditeltrezviy.ru +vodkoved.ru +vod.topbucks.com +voe8uvu.top +voeazu.com +vogueafrik.com +vogueshaire.com +voh782.altervista.org +voicefive.com +voicevegetable.com +voiceworkproductions.com +voirfichier-orange.com +voitl.de +voju.ru +voken.eyereturn.com +vokr-gtavc.ic.cz +volam1vn.com +volgograd.xrus.org +volino.ru +volkswagen.122.2o7.net +vologda-kupi.ru +voloomoney.com +volpefurniture.com +voltrknc1.com +volume-pills.biz +voluumtracker1.com +voluumtracker.com +voluumtrk2.com +voluumtrk3.com +voluumtrk.com +vomit.facilitandosonhos.com.br +vomitgirl.org +vom.sitescout.com +vomwartenberg.de +vonkil.com +vonmenzel.cl +vonradio.com +voodoofiles.us.intellitxt.com +voordeel.ad.nl +voprosotvet24.ru +vorhang.net +vorkehrung-sicherheitssystem.cf +vorlagen-land.de +voronezh.xrus.org +vortex-bn2.metron.live.com.nsatc.net +vortex-cy2.metron.live.com.nsatc.net +vortex.data.microsoft.com +vortex-sandbox.data.microsoft.com +vortex-win.data.microsoft.com +vostoktrade.info +vostroagencies.us +vote.sparklit.com +vote-up.ru +votos-u.webcindario.com +vouchery.online +vouninceernouns.online +vovocars.de +voxiz.fr +vox-static.liverail.com +voyager1.telesat.com.co +vozbujdenie.com +vp5.sudohost.com.br +vpakhtoons.com +vpaypalsecurity.flu.cc +vpc.altitude-arena.com +vperos.net +vpmarketing.com.au +vpmc.122.2o7.net +vpn1.kobatochan.co +vpn1.ticbeat.co +vpnaffiliates.com +vpnhowto.info +vpon.com +vps-10298.fhnet.fr +vps14472.inmotionhosting.com +vps-20046.fhnet.fr +vps-9435.fhnet.fr +vp.tscapeplay.com +vq91811.com +vq918450.com +vqd.fr +vqlgli.com +vra4.com +vrajmetalind.com +vrectdirect.com +vremya.eu +vrf.fi +vriaj.com +vriel.batcave.net +vrnelectro.ru +vr-obb-so.de +vroll.net +vrotike.ru +vrot.stervapoimenialena.info +vrp.outbrain.com +vr-private-kunden-de.tk +vr-private-kundes-de.tk +vrs.cz +vs.asianave.com +vs.blackplanet.com +vs.dmtracker.com +vsdshnik.com +vsesubwaysurfers.com +vseuznaem.com +vsexkontakte.net +vs.forbes.com +v-shared.net +vshs.com +vsii.spinbox.net +vsii.spindox.net +vslider.admedia.com +vsmw.be +vstart.net +vstats.digitaltrends.com +vs.tucows.com +vt-1.nrelate.com +vt.5.p2l.info +vtc.pw +vte.nexteramedia.com +vu.adschoom.com +vucms.com +vuelosbaratosabelgica.com +vulfixxn.beget.tech +vungle.com +vuokraovi.spring-tns.net +vuothxed.com +vural-electronic.com +vusert.accountant +vut.com.ru +vu.veoxa.com +vuvvi.com +v.velaro.com +vverriiffiiccate.com +v.vomedia.tv +vvon.co.uk +vvps.ws +vw.btrll.com +vw.netmng.com +vwr1.hitbox.com +vwr2.hitbox.com +vwr3.hitbox.com +vwu.co +vwwhinolkkme.com +vxiframe.biz +vxv.phre.net +vyc.co +vydoxtrial.com +vykup-avto-krasnodar.ru +vykupavto-krasnodar.ru +vyohacxzoue32vvk.mayrwf.top +vyrus.redirectme.net +vzarabotke.ru +v.zeroredirect.com +vzglyadriv.kg +vzlom-na-zakaz.com +w00tpublishers.wootmedia.net +w-02.th.seeweb.it +w0.drag0n.org +w0.extreme-dm.com +w100.am15.net +w100.hitbox.com +w101.am15.net +w101.hitbox.com +w102.am15.net +w102.hitbox.com +w103.am15.net +w103.hitbox.com +w104.am15.net +w104.hitbox.com +w105.am15.net +w105.hitbox.com +w106.am15.net +w106.hitbox.com +w107.am15.net +w107.hitbox.com +w108.am15.net +w108.hitbox.com +w109.am15.net +w109.hitbox.com +w10.am15.net +w10.centralmediaserver.com +w10.hitbox.com +w10.localadbuy.com +w110.am15.net +w110.hitbox.com +w111.am15.net +w111.hitbox.com +w112.am15.net +w112.hitbox.com +w113.am15.net +w113.hitbox.com +w114.am15.net +w114.hitbox.com +w115.am15.net +w115.hitbox.com +w116.am15.net +w116.hitbox.com +w117.am15.net +w117.hitbox.com +w118.am15.net +w118.hitbox.com +w119.am15.net +w119.hitbox.com +w11.am15.net +w11.centralmediaserver.com +w11.hitbox.com +w120.hitbox.com +w121.hitbox.com +w122.hitbox.com +w123.hitbox.com +w124.hitbox.com +w126.hitbox.com +w128.hitbox.com +w129.hitbox.com +w12.am15.net +w12.hitbox.com +w130.hitbox.com +w131.hitbox.com +w132.hitbox.com +w133.hitbox.com +w135.hitbox.com +w136.hitbox.com +w137.hitbox.com +w138.hitbox.com +w139.hitbox.com +w13.am15.net +w13.hitbox.com +w140.hitbox.com +w141.hitbox.com +w144.hitbox.com +w147.hitbox.com +w14.am15.net +w14.hitbox.com +w153.hitbox.com +w154.hitbox.com +w155.hitbox.com +w157.hitbox.com +w159.hitbox.com +w15.am15.net +w15.hitbox.com +w161.hitbox.com +w162.hitbox.com +w167.hitbox.com +w168.hitbox.com +w16.am15.net +w16.hitbox.com +w170.hitbox.com +w175.hitbox.com +w177.hitbox.com +w179.hitbox.com +w17.am15.net +w17.hitbox.com +w18.am15.net +w18.hitbox.com +w19.am15.net +w19.hitbox.com +w1.am15.net +w1.extreme-dm.com +w1.hitbox.com +w1.iyi.net +w1llisxy.com +w1.luckyorange.com +w1.tcr112.tynt.com +w1.webcompteur.com +w20.am15.net +w20.hitbox.com +w21.am15.net +w21.hitbox.com +w22.am15.net +w22.hitbox.com +w23.am15.net +w23.hitbox.com +w24.am15.net +w24.hitbox.com +w25.am15.net +w25.hitbox.com +w26.am15.net +w26.hitbox.com +w27.am15.net +w27.hitbox.com +w28.am15.net +w28.hitbox.com +w29.am15.net +w29.hitbox.com +w2.am15.net +w2.extreme-dm.com +w2.hitbox.com +w2mobile.com +w30.am15.net +w30.hitbox.com +w31.am15.net +w31.hitbox.com +w32.am15.net +w32.hitbox.com +w33.am15.net +w33.hitbox.com +w34.am15.net +w34.hitbox.com +w35.am15.net +w35.hitbox.com +w36.am15.net +w36.hitbox.com +w37.am15.net +w38.am15.net +w39.am15.net +w3.am15.net +w3data.co +w3.extreme-dm.com +w3facility.org +w3.hitbox.com +w3javascript.com +w3llsfarg0.altervista.org +w40.am15.net +w41.am15.net +w42.am15.net +w43.am15.net +w44.am15.net +w45.am15.net +w46.am15.net +w47.am15.net +w48.am15.net +w4988.nb.host127-0-0-1.com +w49.am15.net +w4.am15.net +w4.extreme-dm.com +w4.hitbox.com +w50.am15.net +w51.am15.net +w52.am15.net +w53.am15.net +w54.am15.net +w55.am15.net +w55c.net +w56.am15.net +w57.am15.net +w58.am15.net +w59.am15.net +w5.am15.net +w5.extreme-dm.com +w5.hitbox.com +w60.am15.net +w612.nb.host127-0-0-1.com +w61.am15.net +w62.am15.net +w63.am15.net +w64.am15.net +w65.am15.net +w65.pl +w66.am15.net +w67.am15.net +w68.am15.net +w69.am15.net +w6.am15.net +w6.extreme-dm.com +w6.hitbox.com +w70.am15.net +w71.am15.net +w72.am15.net +w73.am15.net +w74.am15.net +w75.am15.net +w76.am15.net +w77.am15.net +w78.am15.net +w79.am15.net +w7.am15.net +w7.extreme-dm.com +w7.hitbox.com +w7s8v1904d.ru +w7s.ru +w80.am15.net +w81.am15.net +w82.am15.net +w832297.open.ge.tt +w83.am15.net +w84.am15.net +w85.am15.net +w86.am15.net +w87.am15.net +w88.am15.net +w89.am15.net +w8.am15.net +w8.extreme-dm.com +w8.hitbox.com +w90.am15.net +w91.am15.net +w92.am15.net +w93.am15.net +w94.am15.net +w95.am15.net +w96.am15.net +w97.am15.net +w98.am15.net +w99.am15.net +w9.am15.net +w9.extreme-dm.com +w9.hitbox.com +w9udyd7n7.homepage.t-online.de +wa.5.p2l.info +waalgreenslistens.com +wa.and.co.uk +wabwar.com +wac.2ddcc.alphacdn.net +wachtmeester.nu +wadaab.se +wad.adbasket.net +wadballal.org +wadihkanaan.com +w.admedia.com +w.admob.com +wa.eonline.com +wa.essent.nl +wafmedia3.com +w.ahalogy.com +wahicbefa31.soup.io +wahoha.com +wahoolure.com +wahyufian.zoomshare.com +wait3sec.org +wajoobaba.com +waki.tv +waldenfarms.com +waldonprojects.com +wale-4u2000.myjino.ru +walesedu.com +walgrns.112.2o7.net +walkfootings.dixoninsurance.com +walkingproject.org +walkintubb.bid +walklight.net +walkme.com +walkthedinosaur.com +walla.yad2.co.il +walleoffhotel.com +wallmirrors.in +wallpaperiphone.net +wallpapers91.com +wallstreetestate.com +wall-streetro.count.brat-online.ro +wallstreet.wroclaw.pl +walltable.ru +walmart.112.2o7.net +walmartcom.112.2o7.net +walp.atm.youku.com +walternse.com +walterpayne.org +wam-ads.sitescout.com +wan4399.com +wandal.pl +wandererbraclets.com +wanderleben.de +wandoo.co.uk +wangluoruanjian.com +wangmeng.baidu.com +wangpiao.co +wangqiao365.com +wangxiaorong.com +wankertruth.com +wannawatch.com +wannianli365.com +want2buy.ru +wanted2buy.com.au +wantospo.com +wanyamahotelkariakoo.co.tz +waooyo.co.za +wap.advertising.com +wap.casee.cn +wap-ios10-icloud.com +wap.kobatochan.co +waplock.com +wap.mobiltek.pl +wapsite.me +wapster.malutki.pl +wapster.pl +wap.sxhhyy.com +wap.ticbeat.co +waratahrespite.org +warburgpincusindia.net +warco.pl +warcry.us.intellitxt.com +warda.oewabox.at +wareseeker.com +warezaccess.com +warezkeeper.com +warez.softonic.fr +warface.sarhosting.ru +warf-weapon.h16.ru +wargaming.asia +wargmane.se +warioland.com +warisstyle.com +warkopbundu.id +warlog.info +warlog.ru +warmwest.working-group.ru +warnerbros.112.2o7.net +warnerbros-d.openx.net +warnerbrothersrecords.112.2o7.net +warniiing04.devetol23.ga +warniiing05.devetol23.cf +warning404.facebok-securtity.tk +warning405.facebok-securtity.ml +warning406.facebok-securtity.ga +warningfacebooksecurity.ga +warningfb.000webhostapp.com +warning-message.com +warningwar.ru +warning.xyz +warningzscaler.heraeus.com +warnlng-n0tice-001.gdn +warnlng-n0tice-021.gdn +warnlng-n0tice-031.gdn +warnlng-n0tice-601.gdn +warnlng-n0tice-621.gdn +warnlng-n0tice-631.gdn +warnlng-n0tice-741.gdn +warnlng-n0tice-d11.gdn +warnlng-n0tice-d31.gdn +warnlng-n0tice-d41.gdn +warnlng-n0tice-f21.gdn +warnlng-n0tice-j31.gdn +warnlng-n0tice-n31.gdn +warnlng-n0tice-o21.gdn +warnlng-n0tice-s21.gdn +warnlng-n0tice-t31.gdn +warnlng-n0tice-u11.gdn +warnlng-n0tice-u21.gdn +warnlng-n0tice-v31.gdn +warnlng-n0tice-w01.gdn +warnlng-n0tice-y21.gdn +warnlng-n0tice-z21.gdn +warp2search.us.intellitxt.com +warp.crystalad.com +warriorinjapan.hostjava.net +warrning-fanpa9e1.securittty4.tk +warrning-fanpa9e2.securittty4.ml +warships-world.ru +wartega.5v.pl +wartoscklienta.edu.pl +warungmakanbulikin.id +wasabiam.com.br +wasabi.mine.nu +waserazer.pw +washingtontimes.us.intellitxt.com +was-ist-magersucht.de +wastell.com +watajreda.com +watch24.com +watchandwheels.com +watchdogs-2.ru +watch-movies.ru +watchmyfb.pl +watchmygf.net +watchonline.pl +watchrag.com +watchthewalkingdead.com +watchusgetoff.xyz +water2000.com +water-bed.8p.org.uk +waterbugsanity.org +watercircle.net +watercut.com.my +waterfrontmedia.112.2o7.net +wateristian.com +waterlikely.net +watermanwebs.com +waterpurifier.club +waters-allpro.work +watersedgehoa.info +watershed.bm23.com +watits.com +watkinstravel.com +watson.live.com +watson.microsoft.com +watson.ppe.telemetry.microsoft.com +watsons.tpall.com +watson.telemetry.microsoft.com +watson.telemetry.microsoft.com.nsatc.net +wau.tynt.com +wavefoundationbd.org +waveresume.com +wavestechco.com +wavewave.com +wawasan1.com.my +waw.net.au +way2vidya.com +wayangentrs5410.000webhostapp.com +waycash.net +wayfinder.nl +wayforwardafrica.org +waysbetter.cn +wayyqn.com +wbads.vo.llnwd.net +wba.wirtschaftsblatt.at +wbbwtedkslyvskuu.com +wbextecd.112.2o7.net +wbhchhulhe.com +w.bigames.online +wb.interpolls.com +wbnews.112.2o7.net +wbprocurement.112.2o7.net +wbrostheatricalother.112.2o7.net +wbyd.org +wc0x83ghk.homepage.t-online.de +wcalasa.altervista.org +wcastrprod.122.2o7.net +wcchimicibologna.com +wcm.terraavista.net +w.cnzz.com +wcstockholm.com +wct.co.za +wd.adcolony.com +wdads.sx.atl.publicus.com +wdcs.trendmicro.com +wd-edge.sharethis.com +wdfdocando.com +wdm29.com +wdmwebs.us +wdrake.com +wdsauxqtnga.pw +wealth-doctor.com +wealthlic.net +wealthlookis.com +wealthmanysns.co.za +wealth.sttrims.com +wearablesmed.com +wearablesmemory.com +we-are-gamers.com +wearetomorrow.co.uk +weareyouvoice.org +weasuaair.net +weatherbugbrowserbar.mywebsearch.com +weathercal.com +weathet.com +web01.ticbeat.co +web02.ticbeat.co +web1.affiliatelounge.com +web1b.netreflector.com +web1.realtracker.com +web2.checkm8.com +web2.deja.com +web2.easyresearch.se +web2.harris-pub.com +web2hostcr.com +web2.realtracker.com +web3.easyresearch.se +web3.realtracker.com +web4.realtracker.com +web63.jumptap.com +web64.jumptap.com +web65.jumptap.com +web.acumenpi.com +web.adblade.com +web.adknowledge.com +webads.bizservers.com +webads.co.nz +webads.nl +webads.tradeholding.com +webagosducato.info +webalan.ru +webalize.net +web-amz.adotube.com +webanalytics.globalthoughtz.com +webanalyticsnossl.websense.com +webandcraft.com +webangel.ru +webapps.paypal.com.signin.trukt.biz +webapps-verification-fraud-pay.com +webapps-verification-mnzra-i.cloud +webapps-verification-mxnza.com +webappsverified.com +webbankof-americaaccess.info +webbankof-americaaccess.net +webberguitars.com +web-betting.ru +webbizwild.com +webbug.seatreport.com +webcam-bild.de +webcamsex.nl +webcashmaker.com +webcash.nl +web-ccfr.tsinghua.edu.cn +web.cellfun.mobi +web.checkm8.com +web-clients.mynativeads.com +webclients.net +webcompteur.com +webcomshahkot.com +webcom-software.ws +web.com.uy +webconnect.net +web-counter.5u.com +webcounter.be +webcounter.com +webcounter.cz +webcounter.goweb.de +webcounter.together.net +web.cvut.cz +webdata.vidz.com +webdesigning.name +web-domain.tk +webdrifta.su +webdriftb.su +webdriftc.su +web.easyresearch.se +webedtion.com +webeffective.keynote.com +webenlace.com.ar +web-facebook.co.za +web-feed.net +web-fill.tk +webfranklin.com +webgains.com +webgems.popunder.ru +webgozar.com +webgroundadbg.hit.gemius.pl +webgroundbg.adocean.pl +webhit.aftenposten.no +webhit.afterposten.no +webhits.de +webhosting-ads.home.pl +web-hosting.hitslog.net +webhosting.hut1.ru +webhostingstar.us +webhotell.enivest.no +webindexxg.temp.swtest.ru +web.industrybrains.com +web.info.com +web.informer.com +webinstantservice.com +webiq005.webiqonline.com +web.iqbaldesign.com +webix.me +webjam.com +web.life-line.in.ua +weblink.settrade.com +webload101.hitbox.com +weblo.com +weblog.blogads.com +weblogger.visilabs.com +weblover.info +webmail-ac-paris.fr +webmail-orangev564.com +webmail.orwbystre.com +webmail.ranhill.com +webmail.scccd.org +webmailserveurmailings01.000webhostapp.com +webmailserveurmailings08.000webhostapp.com +webmail.siemense.com +webmailvoice.000webhostapp.com +webmarketing-regional.de +webmasterhome.cn +webmasterjr.com.br +webmasterkai.sitetracker.com +webmaster-partnerprogramme24.de +webmaster-paypal-community.domainezin.com +webmasterplan.com +webmasterplan.de +webmaster.privatamateure.com +webmaster-service-update.com +webmasters.h2porn.com +webmasters.nastydollars.com +webmasters.sextracker.com +webmasters.tubealliance.com +webmasters.videarn.com +webmaster.topbucks.com +webmaster.utherverse.com +webmaster.worldsex.com +webmdcom.tt.omtrdc.net +web-mens.land.ru +webmetrodev.122.2o7.net +web.miamihouseparty.net +webmonetizer.net +webmonitor.fyxm.net +webnavegador.com +webnavegador.com.br +webnetra.entelnet.bo +webnode.me +webnudist.net +web.nyc.ads.juno.co +web-object-paypaccount.com +webofficesignature.myfreesites.net +web-olymp.ru +web-online.pl +weborama.fr +webordermanager.com +weborderpro.su +weborg.hut1.ru +weboxmedia.by +webpaypal.com +webpaypal-login-security-account.ml +webpdp.gator.com +webpoll.sparklit.com +webpower.com +webprog.oewabox.at +webprotectionpro.com +webradiology.ru +webrepresent.com +webreseau.com +webroot.112.2o7.net +webroot.tt.omtrdc.net +websaleonline.su +websalesusa.com +websalex.su +websaley.su +webs.com +webscouter.net +webscr.cgi-bin.payzen.securesession.net +web-secure-appleid.com.2017accounts.com +websecure.eu +web-security-alert-unauthorized-access-call-support.info +web-security-error.info +webseekous.net +web-sensations.com +webseoanalytics.com +webservices-rewardpath.com +webservices.sub2tech.com +webservicesttt.ru +webserv.mos.ru +websetupactivation.com +webshoppermac.com +websiteaccountant.de +websitebuildersinfo.in +websitebuilder.xyz +websiteexplorer.info +websitehome.co.uk +websites-reviews.com +websitetrafficspy.com +websitevaluebot.com +websitevision.xyz +webskratch.com +web.softonic-analytics.net +websponsors.com +websquadinc.com +webstat.channel4.com +web-stat.com +webstat.com +webstat.net +webstats4u.com +webstats.eco.de +webstats.motigo.com +webstats.oanda.com +webstats.plus.net +webstats.thaindian.com +webstats.volvo.com +webstats.web.rcn.net +websterdyrud.com +webstersguitaracademy.com +web.survey-poll.com +websurvey.spa-mr.com +websystem24.nuggad.net +web-t.9gag.com +webtherapy.ru +webtracker.apicasystem.com +webtrackerplus.com +webtraffic.se +webtraxx.de +webtrekk.mediaset.net +webtrekk.net +webtrends1.britishgas.co.uk +webtrends.besite.be +webtrendslive.com +webtrends.randallpub.com +webtrends.telenet.be +webtrends.thisis.co.uk +webtrends.townhall.com +webuilt.com +web.unltd.info +webupdatehelpdesk.webeden.co.uk +weburok.com +webuser.uk.intellitxt.com +webuysupplystore.mooo.com +webview.unityads.unity3d.com +web.vindicosuite.com +webwereld.nl.intellitxt.com +webwire-services.fi +webwise.bt.com +webwise.com +webwise.net +webwise.org +web.yuppipuppy.com +wecanprepareyou.com +wechatdownload10.com +wedding0venues.tk +weddingdresses.xyz +wedding-salon.net +wee4wee.ws +weebvid.moe +weed-forums.ml +weegels.com +weegoplay.com +weekes.biz.tc +weemanmilitia.com +weeth7o.bid +weevah2.top +weevybe.com +weeze.it +wefargoss.com +weforwomenmarathon.org +wegetpaid.net +wegot2at2.com +wegotmedia.co +weight-loss.1.p2l.info +weight-loss.3.p2l.info +weight-loss.4.p2l.info +weightlossforall.us.intellitxt.com +weight-loss.hut1.ru +weightlosssurgeryhelp.com +wein-flatrate.com +weini501.f3322.org +weinzelt.de +weisband.de +weisoc.com +weissig-sachsen.de +wej-dz6.edu.pl +wejdz-tu.pl +welbren.co.za +welck.octopis.com +welcomeauto.ru +welcome.faptitans.com +welcomehomespecialist.com +welcome.pussysaga.com +welington.info +welkguessqata.myrating.id +wellbutrin.1.p2l.info +wellbutrin.3.p2l.info +wellbutrin.4.p2l.info +wellcome2slovenia.ru +wellgrowagro.com +wellmark.ml +wellness2all.com +wellnessmonitor.bravehost.com +wellsfairgo.com +wellsfarg0-onllne.net +wellsfarg0service1.com +wellsfarginfo.myjino.ru +wellsfargo.com.compacttraveller.com.au +wellsfargo.com.halugopalacehotels.com +wellsfargo.com-securelogin-systemsecurity-securitycheck-login.rockyphillips.com +wellsfargo.com.secure-pages-costumers.com +wellsfargo.com.serralheriaprojeart.com.br +wellsfargo-customer-service.ocry.com +wellsfargodealersetvices.com +wellsfargo.login.verify.com.akirai.com +wellsfargomaint.000webhostapp.com +wellsfargoonline.weddingdesire.co.uk +wellsfargo.paediatrictraining.com +wellsfargo.secure.update.metrologpk.com +wellsfargo.tve.com.au +wellsfargousacustomerservice.report.com.ticketid.8f5d41fd4545df.dgf45fg4545fd45dfg4.dfg87d45fg54fdg45f.dg87df4g5f4dg5d7f8g.dfg57df4g5fgf57g.d8gf454g5df4g54f.dfgdf4g5f4g5f.d5g4.indfe.com.br +wellsfargo.userverifyaccountsecure.mesmobil.com.tr +wellsfargowatchoutalert.feelthebeat3.iedu.my +wellsigns.com +wells.nazory.cz +welovetheapp.com +welsfarg0t.ihmsoltech.co.za +welssrago.com +weltonline01.webtrekk.net +welxfarrg0.a0lbiiiing.net +wemarketing.se +wemedinc.com +wenda.io +wendybevan.com +wendystraka11.com +wenlog.de +wenn88.com +wenner.collect.igodigital.com +wensmithey.com +weon.pl +weownthetraffic.com +weporsche.com +weprik.ru +weqeweqqq2012.com +wera.popunder.ru +werbeagentur-ruhrwerk.de +werbegemeinschaft-fuessen.de +werbung.diepresse.com +werbung.meteoxpress.com +wereldbevestigingen.nl +werkenbijliones.nl +werkzeug-discount-ohg.de +werliebtmich.com +werunit.freeho.st +werwer.pl +wesb.net +wes.df.telemetry.microsoft.com +wesharepics.com +wesharepics.info +wesharepics.site +wesleymedia.com +west.05tz2e9.com +w.estat.com +westbriton.uk.intellitxt.com +westcountry.ru +westcriacoes.com.br +westdentalcorp.com +westdy.com +westen-v.life +westen-z.life +westermarkanjou.se +westernamericanfoodschina.cn +westerna.rs +westerntaneyfire.com +westernuniondepartment.com +westernunionglobal.112.2o7.net +westernunion.tt.omtrdc.net +westfieldsports.nsw.edu.au +westgateleisureresort.com +westindo.com +westjet.112.2o7.net +westmadebeats.com +westnorths.cn +westsextube.com +westum.se +westvalleychoraleaz.org +westvilletowingservices.co.za +westwickfarrow.122.2o7.net +westwoodlodgebandb.com +wetgames.ru +wetjane.x10.mx +wetjetrewards.com +wetpaint-d.openx.net +wetpuss.nu +wetrack.it +wetransfer.net.ronaldkuwawi.id.au +wetransfer.nets.ronaldkuwawi.id.au +wettastrono.de +wet-t.de +wetter-belek.de +wetter.wemfbox.ch +wetyt.tourstogo.us +wevcd.com +wewillrocknow.com +wexprime.com +w.extreme-dm.com +wezar.de +wfacebook.com.mx +wfalaw.com +wfashionmall.com +wfb.hatedriveapart.com +wfcomercial.com.br +wf-donat1.1gb.ru +wfogmmueubjj.com +wfoto.front.ru +wfpscripts.webspectator.com +wfussb.oewabox.at +wg21xijg43.ru +wgc1.acecounter.com +wg-gesucht.de.intellitxt.com +wgow.f3322.org +wgr.ru +wgxtbdmyw.top +wh424361.ispot.cc +wh-4.com +whabi.csheaven.com +whaleads.com +whatdosquirrelseat.net +whatisthebestecig.com +whatsappdownload10.com +whatsappvc.com +whatsapp-videocalls.co +whatseek.com +whatsmyparts.com +whatsupinfoley.com +whatswrongwithmoney.com +whatsyourclan.com +whatthetech.us.intellitxt.com +whatzmyip.net +whave.iptvdeals.com +whdhwdwddw.info +wheelchairliftsarea.com +wheel-incampground.com +wheelsforsure.com +wheezepro.com +whengirlsgowild.com +whentheyopened.com +whenu.com +whenvideoup.thebigandfreesystemupdate.website +whenvideoup.thebigandfreesystemupdating.date +whereiskentoday.com +where-toget.com +whetety.xyz +while.cheapwebsitehoster.com +whipcrack.org +whiphoney.com +whipme.yopoint.in +whispa.com +whiteboxin.com +whitecastle.122.2o7.net +whiteelephantwellington.com +whitefountainbusiness.com +whitehorsetechnologies.net +whitemanswebworks.com +whiteoakhighschool1969.com +whiteproduct.com +whiterabbit.com.es +white.sexer.com +white-truck.life +whiteworldtech.com +whive.org +wh.motorpresse-statistik.de +whoads.net +whoateallthepies.uk.intellitxt.com +whoisonline.net +wholefamoies.com +wholesalecheapjerseysfree.com +wholesalejerseychinaoutlet.com +wholesalejerseychinashop.com +wholesalejerseys-cheapest.com +wholesalejerseyscheapjerseys.us.com +wholesalejerseysgaa.com +wholesalenfljerseys.us.com +wholesaletraffic.info +wholesomemedia.com.au +wholinkstome.com +whometrics.net +whos.amung.us +whosonmyserver.com +whosread.com +whoswhodirectories.com +whoyouhelp.ru +whsca.org.au +whynaturalhealth.com +wi.5.p2l.info +wiadomoscix8.pl +wichshilfe.de +w.ic.tynt.com +wideewthoghtts.net +wideo-pryszcz.blogspot.com +widespace.com +widestep.com +widget3.linkwithin.com +widget5.linkwithin.com +widget6.linkwithin.com +widget.achetezfacile.com +widgetbucks.com +widget.criteo.com +widget.crowdignite.com +widget-eforsa.pl +widget.nativly.com +widget.perfectmarket.com +widget.plugrush.com +widget.quantcast.com +widget.realo.be +widgets.amung.us +widgets.kiosked.com +widgets.outbrain.com +widgets.tcimg.com +widget.supercounters.com +widzew.com.pl +wie9eig.top +wiecejnetu.pl +wiedemann.com +wiekendjeweg.nl +wielkaniespodzianka.pl +wielkikonkurs.pl +wielkilukwarty.pl +wienerz.oewabox.at +wiengvat.oewabox.at +wieseversa.no +wifiprotector.com +wi-fitechnology.uk.intellitxt.com +wigetmedia.com +wikes.20fr.com +wikia-ads.wikia.com +wikidevs.com +wikiforosh.ir +wikingowie.tv +wikipediia.de +wiki.pinion.gg +wikiplum.com +wiki.protofilm.net +wikitravel.islandmantra.com +wilberadam.com +wildcattube.com +wileydumcom.112.2o7.net +wileypublishing.112.2o7.net +wilkzwallstreet.blogspot.com +willa-marina.pl +willdrey.com +willhab.oewabox.at +william234.com +williamhill.es +willysy.com +wimel.at +win2ssue.in.net +win323.ws +win326.xyz +win32error.co.in +win32errorfixed.co.in +win32.in.net +win32issue.in.net +win32online.co.in +win32.ws +win345.cn +win44.ws +win64issue.in.net +win64.ws +win8080.ws +winadiscount.com +winaproduct.com +winareward.club +wincert.us.intellitxt.com +wincleaneras.com +wincleaner.com +winco-industries.com +wincon20.in +wincon32.in.net +wincon64.in.net +wincon.in.net +win-cosmetics.pl +windestimator.com +windflower.se +windicatering.co.id +wind.mobi +windoock.com +windoscashback.com +window1.com +window32.in.net +window64.in.net +window.nixnet.cz +windows32.co.in +windows7news.uk.intellitxt.com +windowsbbs.us.intellitxt.com +windows-crash-report.info +windowserror7.tech +windows-errorx.com +windowsitpro.us.intellitxt.com +windowssearch-exp.com +windows-system-support-reqired.info +windows-tech-help.com +windowsytech.com +windowzlive.com +windrushvalleyjoinery.co.uk +windshop.com +windspotter.net +winebear.domainleader.net +winecom.112.2o7.net +wineeniphone6.com-gen.online +wineenthusiastcom.112.2o7.net +wineitudes.wordpress.com +win.enterfree.club +wineration.com +winerd.com +win-everyday.top +winfirewallwarning.in +winfoaccountupdatecmecheldq.webeden.co.uk +winfuture.de.intellitxt.com +wingenieria.com +wingnut.co.za +wingsoffury2.com +wingsofrefuge.net +winhelptech.xyz +winissue.in.net +winlock.usa.cc +winmatrix.us.intellitxt.com +winmit.com +winmpmain.112.2o7.net +winner7777.net +winneragainstamillion.com +winner.online-co.xyz +winner.us +winniedunniel.info +winnipegdrugstore.com +winnix.org +winprizesapp.com +winrar-soft.ru +win-recovery.com +wins8.pl +winscholarship.com +winsetupcostotome.easthamvacations.info +winshoess.pl +win-skin.pl +winskinss.pl +win-spy.com +winstonchurchill.ca +winstoreonline.com +winstudio.co.uk +winsueenterprise.com +winsxs-32.com +winsystemalert10.xyz +winsystemalert1.xyz +winsystemalert3.xyz +winsystemalert4.xyz +winsystemalert6.xyz +win-systemalert7.xyz +winsystemalert7.xyz +winterclassichockeyjerseys.com +winterrowd.us.intellitxt.com +winter-tour.de +wintricksbanner.googlepages.com +winupdate.phpnet.us +winway.xyz +winwilltech.com +winwotgold.pl +win-wot.pl +winx-play.ru +winziptv.com +wiosenny-bon-1500.pl +wiprint.co.id +wiredpetals.com +wiregirl.us.intellitxt.com +wirelessforumsorg.skimlinks.com +wireless.ign.us.intellitxt.com +wirelessman.com.au +wirgjocdt.top +wirtuozseksu.pl +wirtvlg.oewabox.at +wisconsincriminallaw.com +wishglobal.com.my +wishingstargroup.com +wissende.122.2o7.net +witch-counter.de +witherrom55.eklablog.fr +withersby.com +withleather.us.intellitxt.com +withoutyou.nu +withrows.com +withstandingheartwarming.com +wittinhohemmo.net +wittmangroup.com +wittyblast.com +wittyvideos.com +wiwicafe.de +wixx.caliptopis.cl +wizjatv-kody.pl +wizjatv.za-darmo.eu +wjgravier.us.kzpcmad.tk +w-journal.ru +wjttowell.com +wklenter.uk +wkmg.co.kr +wladimirpayen.com +wlaptoplogic.122.2o7.net +wlgoodfellows.com +wlmarketing.com +wlotuspro.com +w.l.qq.com +wl.sk +wltffm.com +wlzjx.net +wm5fixsite.us.intellitxt.com +wm5u.com +wm8eimae.co.nf +wmapp.wiredminds.de +wma-x.com +wm.baidu.com +wm.banners.sextracker.com +w.mcdir.ru +wmedia.adk2x.com +wmediaplayernow.com +wmedia.rotator.hadj7.adjuggler.net +wmforum.org +wmfsettlement.com +wmg.112.2o7.net +wmgmulti.112.2o7.net +wm-goldenclick.ru +wmgv.com +wmirk.ru +wmljw.com +w.mlv-cdn.com +wmmax.com +wm.maxysearch.info +wm.mtree.com +wmrvoczler.aeaglekt.top +wmserver.net +wms-eu.amazon-adsystem.com +wms-na.amazon-adsystem.com +wms-tools.com +wmtanhua.com +wmuwmu.ml +wm.wiredminds.de +wniosek-24h.pl +wniosek-online.co.pl +wnoz.de +wnt-40.seeweb.it +woainivipss.f3322.org +woche.oewabox.at +wog1aeg.bid +woha.nu +wohnheim-weinstadel.de +wohnnet.oewabox.at +woibt.com +w.oix.net +wojewodzkikonkurs.pl +wolf.f3322.org +wolfteamforum.net +wolsmile.net +womama.ru +woman-h.ru +woman-orgasm.ru +womanrare.com +womansfootballshop.com +womanshealthmag.com +woman-tampon.ru +womenonfood.com +womenoptiontraders.com +womenschristiancollege.com +womensforum.us.intellitxt.com +womenshealth.de.intellitxt.com +womens-journal.net +womenslabour.org +womensplay.net +womensterritory.ru +womo.corrmedic.ru +womsy.bobbutcher.net +wonchangvacuum.com.my +wonderdale.com +wonderfoods.gr +wonderfulflowers.biz +wonderfulwedluck.com +wondergrow.in +wonderlandads.com +wonderworld11.com +wondoads.de +woodenboxes.co.uk +wood-finishers.com +woodside-perdoleum.pw +woodstonesubdivision.com +woodtechsolutionbd.com +woodwindowspittsburgh.com +woody123.com +woodyaflowers.com +woodyguthrie.se +woojeoung.com +woooosh.de +woopra.com +woosungelec.com +wopper.bioblitzgaming.ca +woprkolobrzeg.pl +wor6.b6dfnahea.ns2.name +worchids.net +worden.samenresultaat.nl +word.fingalcsrnetwork.ie +wordplaywhiz.com +wordpresscom.skimlinks.com +wordpresscore.com +wordpressdesign.pro +wordpresswebmasterworkshops.com +wordseach.com +wordsoflifesa.org +word-vorlagen.net +word-vorlagen.xyz +wo-regnet-es.de +workandtech.com +workchopapp.com +workcompbroadcasting.com +workicsnow.com +workincanada.com.au +workin-coworking.com.br +workingirl.com +workingupdate.videoupdatelive.com +work-offer.com +workopolis.122.2o7.net +works.if.ua +workurwayup.xyz +worldagriculturalheritage.com +world-change.club +worldclassautoroc.com +worldflags.co.in +worldfurniture.co.uk +worldgymperu.com +worldhistory.biz +worldinternetauthority.com +worldis.me +worldisonefamily.info +worldlovers.ru +world-mmo.com +worldmusicfests.com +worldnetdaily.us.intellitxt.com +worldnowboston.112.2o7.net +worldoffiles.ru +worldoftanks-24.pl +world-people.net +worldpixel.de +world.popadscdn.net +worldsex.ru +worldssafest.com +worldstarhiphop-d.openx.net +worldtools.cc +worldtour.com.pl +world-trade-center.hawaiicity.com +worldtraveler.world +worldtravelguide.uk.intellitxt.com +worldwidebushcraft.com +worldwide-cash.net +worldwidelogisticsgh.com +world-yoga-federation.com +wormgush.com +wormix-cheats.ru +worry-free-savings.com +wosik-dach.service-for-web.de +wotgold.pl +wowanalytics.co.uk +wowas31.ucoz.ru +wowcpc.net +woweb.com.ua +wow.games.info.com +wowinterface.us.intellitxt.com +wowmy-look.com +wowusbattle.net +wp1.cor-natty.com +wp9.ru +wp-club.net +wpepro.net +wp.hit.gemius.pl +wp-index.remapsuk.co.uk +wpiuwos.com +wpk.edu.hk +w.plugrush.com +w.p.mybuys.com +wpni.112.2o7.net +wpnipostcomjobs.112.2o7.net +wpni.tt.omtrdc.net +wppilot.pro +wppluginspro.com +w.prize44.com +wpsecurity.website +wp-stat.s3.amazonasw.com +wp-stats.com +wp.twells.com.hostingmurah.co +wpxn.com +wp.zepmusic.com +wp.zontown.com +wqepoqpwo.bid +wqpfkdomy.top +wrapper.askmen.com +wrapper.fileplanet.com +wrapper.gamespyid.com +wrapper.giga.de +wrapper.ign.com +wrapper.teamxbox.com +wrap.tradedoubler.com +wrek.nl +wrestling-edge.us.intellitxt.com +wrigley.122.2o7.net +wrimkomli.com +writanwords.com +writec.ca +writingassociates.com +wrk.fingalcsrnetwork.ie +wrlista.com.br +wroclawski.com.pl +wrona.it +wronatomser.tk +wrstatic.eu +wrtsila.com +ws01.do.nu +ws02.do.nu +ws03.do.nu +ws03.home.sapo.pt +ws04.do.nu +ws04.home.sapo.pt +ws05.home.sapo.pt +ws06.home.sapo.pt +ws.addthis.com +ws.ampower.me +wsbokanagan.com +wsc1.webspectator.com +wsdm.edu.bd +ws-ea.amazon-adsystem.com +ws-eu.amazon-adsystem.com +wsgames.ru +ws-gateway.com +wsh-cutlery-de.com +ws-na.amazon-adsystem.com +wsp.adskeeper.co.uk +ws.poolnoodle.tech +wssccrally.co.uk +wss-gw-1.hitbox.com +wss-gw-3.hitbox.com +ws.sharethis.com +wss.hbpl.co.uk +wsstransvaal.nl +ws.tapjoyads.com +wstroika.ru +wsws.asia +wsxhost.net +ws.xjb.ac.cn +wsxyx.com +ws.yellowpages.ca +wt10.haote.com +wt82.downyouxi.com +wt9.97sky.cn +wtaar.com +wtdpcb.com +wtlive.com +wtmtrack.com +wtnj.worldnow.com +wt.o.nytimes.com +wtp101.com +wtr1.ru +wtracy.free.fr +w-tres.info +wtrs.101com.com +wtsdc.worldnow.com +wt.sexsearch.com +wt.sexsearchcom.com +wtsindia.in +wttavern.com +wtvertnet.com +wtyczkapodgladacz.bo.pl +wu.adonweb.ru +wuhuyuhua.com +wurr.voila.net +w.usabilla.com +wushirongye.com +wuvac.agwebdigital.com +wuxin6.f3322.net +wuxisinop.com +wuzpalitydevonianizuwb.com +wv.5.p2l.info +wvhotline.com +wv.inner-active.mobi +wvin.su +w.visualdna.com +wv-law.com +wvumedcine.org +wvwa.net +wvw.pavpal.com.intl-measure-security-update.com +wvwr1.hitbox.com +ww1003.smartadserver.com +ww1097.smartadserver.com +ww1270.smartadserver.com +ww129.smartadserver.com +ww135.smartadserver.com +ww13.smartadserver.com +ww147.smartadserver.com +ww14.smartadserver.com +ww150.smartadserver.com +ww1943.ru +ww1.hitbox.com +ww1.hot-sextube.com +ww1.tongji123.com +ww2026.smartadserver.com +ww206.smartadserver.com +ww234.smartadserver.com +ww2468.smartadserver.com +ww251.smartadserver.com +ww264.smartadserver.com +ww2.hitbox.com +ww2.kobatochan.co +ww2.tongji123.com +ww302.smartadserver.com +ww31.hot-sextube.com +ww362.smartadserver.com +ww370.smartadserver.com +ww381.smartadserver.com +ww38.animenetflix.top +ww38.smartadserver.com +ww392.smartadserver.com +ww3.hitbox.com +ww3.tongji123.com +ww3.way-of-fun.com +ww400.smartadserver.com +ww4.drivelinks.info +ww4.tongji123.com +ww55.smartadserver.com +ww57.smartadserver.com +ww62.hsn.com +ww62.smartadserver.com +ww651.smartadserver.com +ww690.smartadserver.com +ww691.smartadserver.com +ww797.smartadserver.com +ww84.smartadserver.com +ww881.smartadserver.com +ww965.smartadserver.com +wwa.hitbox.com +wwaol.com +wwa.pacific-yield.com +wwatchcomusa.112.2o7.net +wwb.hitbox.com +wwbtads.com +wwc.hitbox.com +wwd.hitbox.com +wwdirectories.com +wweconsumer.112.2o7.net +wwecorp2.112.2o7.net +wwe.eim.naureen.net +ww-eu.steelhousemedia.com +wwfsable.com +wwgin.com +wwgmassage.com +wwnhwig.com +wwniww.com +wwp-cartasi-titoari-portale-sicreuzza-2017-ci.dynamic-dns.net +wwtdd.tags.crwdcntrl.net +wwtdd.us.intellitxt.com +wwttmm.com +wwv.onetad.com +www.00fun.com +www02.kobatochan.co +www.02level.tk +www.099499.com +www.0stats.com +www.0uk.net +www.100-100.ru +www.1001movies.com +www101.coolsavings.com +www.101malls.com +www.105vibe.com +www10.ad.tomshardware.com +www.10g.com.tr +www10.glam.com +www10.indiads.com +www10.paypopup.com +www.1-1ads.com +www11.ad.tomshardware.com +www.11hour.com +www11.kkuumn.com +www.11zz.com +www12.0zz0.com +www.123banners.com +www.123count.com +www.123counter.superstats.com +www123.glam.com +www.123go.com +www.123specialgifts.com +www.123stat.com +www12.688ooo.com +www12.ad.tomshardware.com +www12.glam.com +www12.mmnidy.com +www12.wwniww.com +www131.mvnvpic.com +www.13903825045.com +www13.ad.tomshardware.com +www13.glam.com +www13.rtysus.com +www146.lewwwz.com +www14.ad.tomshardware.com +www14.rtyszz.com +www14.smartadserver.com +www154.173nvrenw.com +www15.ad.tomshardware.com +www15.ktoooo.com +www15.mmnidy.com +www15.mnxgz.com +www15.omrtw.com +www16.51mogui.com +www16.rtysus.com +www16.wwttmm.com +www172.lpwangzhan.com +www1.777mnz.com +www17.glam.com +www17-orig.glam.com +www.1800banners.com +www180.myway.com +www.18access.com +www18.glam.com +www18.mm113.com +www18.officedepot.com +www18.rtysus.com +www18.rtyszz.com +www19.71sise.com +www19.777mnz.com +www198.jixnbl.com +www19.xioooo.com +www1.addfreestats.com +www1.adireland.com +www1.ad.tomshardware.com +www.1adult.com +www1.bannerspace.com +www1.belboon.de +www1.bmo.com.hotfrio.com.br +www1.clicktorrent.info +www1.counter.bloke.com +www1.darikweb.com +www1.firesavez5.com +www1.firesavez6.com +www.1freecounter.com +www.1girl1pitcher.org +www1.gto-media.com +www.1guy1cock.com +www1.gxxmm.com +www1.iwon.com +www.1man1jar.org +www.1man2needles.com +www1.mpnrs.com +www1.multipops.com +www1.nuseek.com +www1.pip-pip-pop.com +www1.pollg.com +www1.popinads.com +www.1priest1nun.com +www.1priest1nun.net +www.1quickclickrx.com +www1.realsoft34.com +www1.safenyplanet.in +www1.sedoparking.com +www1.sexinyourcity.com +www.1stoppos.com +www1.tec-tec-boom.com +www.1trac.com +www.1tracksource.online +www1.tynt.com +www1.vip.sc9.admob.com +www1.xise.cn +www1.xmediaserve.com +www1.zapadserver1.com +www.2001-007.com +www.2003xx.com +www.2015rewardopportunities.com +www20.777mnz.com +www209.xcxx518.com +www20.ggaibb.com +www20.hi7800.com +www210.681luanlun.com +www210.paypopup.com +www211.paypopup.com +www212.paypopup.com +www213.hdhd55.com +www213.paypopup.com +www214.ttrtw.com +www21.bolo100.com +www21.counsellor.gov.cn +www21.qqxxdy.com +www22.33lzmm.com +www22.lbmm88.com +www22.mmnidy.com +www22.xyxsol.com +www230.dm599.com +www230.kkvmaj.com +www238.killevo.com +www238.lzxsw100.com +www.23oens9.com +www23.omrtw.com +www23.qqmeise.com +www.23ud82.com +www240.dortxn.com +www24.177momo.com +www24.31qqww.com +www244.lzxsw100.com +www246.oliwei.com +www.247realmedia.com +www24a.glam.com +www24.fuqi3p.com +www24.glam.com +www250.dm599.com +www25a.glam.com +www25.bathandbodyworks.com +www25.glam.com +www25.meenou.com +www25.victoriassecret.com +www.2607.cn +www260.yinghuazhan.com +www26.bjmn100.com +www26.ktoooo.com +www26.llbb88.com +www26.mnxgz.com +www26.rtysus.com +www27.177momo.com +www277.qshfwj.com +www27.xyxsol.com +www281.rentimeinvz.com +www28.33lzmm.com +www28.kkuumn.com +www293.lewwwz.com +www29.hjnvren.com +www29.ltsetu.com +www2.acint.net +www2.addfreestats.com +www2.adhost.com +www2.adireland.com +www2.adserverpub.com +www2.ad.tomshardware.com +www.2-art-coliseum.com +www2a.sitetracker.com +www2.autopartswarehouse.com +www2.bannerspace.com +www.2bbd.com +www2.clustrmaps.com +www2.counter.bloke.com +www2.cqcounter.com +www2.doubleclick.com +www2.game-advertising-online.com +www.2giga.link +www.2girls1cup.cc +www.2girls1cup-free.com +www.2girls1cup.nl +www.2girls1cup.ws +www.2girls1finger.org +www2.glam.com +www.2guys1stump.org +www2.gxxmm.com +www2.hitslink.com +www2.kampanyatakip.net +www2.kiehls.com +www2.leadingedgecash.com +www.2.livejasmin.com +www2.mousestats.com +www2.multipops.com +www2.mystats.nl +www2.nuseek.com +www2.pagecount.com +www2.portdetective.com +www2.pubdirecte.com +www2.rtyszz.com +www2.sellhealth.com +www.2seo8.com +www2.smartadserver.com +www2.stats4free.de +www2.survey-poll.com +www2.yidsense.com +www2.zapadserver1.com +www.302br.net +www30a1.glam.com +www30a1-orig.glam.com +www30a2-orig.glam.com +www30a3.glam.com +www30a3-orig.glam.com +www30a4.glam.com +www30a5.glam.com +www30a6.glam.com +www30a6-orig.glam.com +www30a7.glam.com +www30.feieo.com +www30.fuqi3p.com +www30.glam.com +www30l2.glam.com +www30t1-orig.glam.com +www31.177momo.com +www.31d.net +www31.dwttmm.com +www.321cba.com +www32.rtyszz.com +www3.32hy.com +www33.688ooo.com +www33.bjmn100.com +www33.rtyszz.com +www33.xzmnt.com +www343.ohgooo.com +www344.xoxmmm.com +www346.tx5200.com +www348.xcxx518.com +www34.bjmn100.com +www34.mmnidy.com +www3.51hzmn.com +www35f.glam.com +www35jm.glam.com +www35t.glam.com +www35.xzmnt.com +www.360ads.com +www37.hjnvren.com +www37.kkuumn.com +www37.rtysus.com +www37.yazouh.com +www381.ddlczn.com +www38.hi7800.com +www38.mgscw.com +www38.mimile8.com +www39.71sise.com +www.39dvd-999.com +www39.gxxmm.com +www39.ktoooo.com +www3.addfreestats.com +www3.addthis.com +www3.adireland.com +www3.ad.tomshardware.com +www.3animalsex.com +www3.bannerspace.com +www3.bloomingdales.com +www.3bsoftware.com +www3.click-fr.com +www3.clustrmaps.com +www3.counter.bloke.com +www3.ddns.ms +www.3difx.com +www3.doubleclick.com +www3.doubleclick.net +www.3dstats.com +www3.game-advertising-online.com +www.3guys1hammer.ws +www3.haberturk.com +www3.ihaberadserver.com +www3.kampanyatakip.net +www3.macys.com +www3.nationalgeographic.com +www3.nuseek.com +www3.oyunstar.com +www.3peaks.co.jp +www.3qqq.net +www3.smartadserver.com +www.3turtles.com +www3.webhostingtalk.com +www3.wwniww.com +www3.y-83m4wjpzlx6.usa.cc +www3.zapadserver.com +www.404errorpage.com +www40.51mogui.com +www40.688ooo.com +www415.mxyyth.com +www41.bolo100.com +www41.dwttmm.com +www41.xzmnt.com +www42.meenou.com +www42.rtyszz.com +www43.173nvrenw.com +www43.17sise.com +www43.31qqww.com +www43.6666mn.com +www43.ggaibb.com +www43.kkuumn.com +www44.688ooo.com +www.448868.com +www44.ltsetu.com +www453.dcabkl.com +www45.6666mn.com +www45.71sise.com +www45.xi1111.com +www46.bolo100.com +www46.jijimn.com +www48.177momo.com +www484zz.com +www48.omrtw.com +www48.xioooo.com +www49.ggaibb.com +www49.mimile8.com +www4.addfreestats.com +www4.ad.tomshardware.com +www4.at.debianbase.de +www4.bannerspace.com +www4.clustrmaps.com +www4.counter.bloke.com +www.4download.ienet.pl +www4.epac.to +www.4girlsfingerpaint.org +www4.glam.com +www4.gy7k.net +www4.kampanyatakip.net +www4search.net +www4.smartadserver.com +www.5000-cotydzien.com +www.500ww.com +www50.feieo.com +www.51388.com +www.5178424.com +www.51xcedu.com +www.52209997.com +www5.3-a.net +www57.cbvccc.com +www57.kannilulu.com +www58.ovonnn.com +www.58tpw.com +www5.addfreestats.com +www5.ad.tomshardware.com +www5.afsanalytics.com +www5.bannerspace.com +www5.counter.bloke.com +www5.ggaibb.com +www5.hi7800.com +www5.kampanyatakip.net +www5.mackolik1.com +www5.smartadserver.com +www.5thavenue.com +www5.wwttmm.com +www5.xi1111.com +www5.zoosi.club +www60.rimklh.com +www60.valueclick.com +www62.runningtimes.com +www.688ooo.com +www69.bestdeals.at +www69.byinter.net +www69.dynu.com +www69.findhere.org +www69.fw.nu +www69.ugly.as +www6.addfreestats.com +www6.ad.tomshardware.com +www6.bannerspace.com +www6.click-fr.com +www6.counter.bloke.com +www6.effectivemeasure.net +www6.ezua.com +www6.kampanyatakip.net +www6.mnxgz.com +www6.ns1.name +www6.omrtw.com +www6.smartadserver.com +www70.vcbqxu.com +www.7218.pl +www730.mm6500.com +www7.31mnn.com +www74.rtkgvp.com +www74.valueclick.com +www.7500.com +www.75pp.com +www7.6666mn.com +www.777tool.com +www.77tracking.com +www.78111.com +www7.addfreestats.com +www7.ad.tomshardware.com +www7.bannerspace.com +www7.bolo100.com +www.7bpeople.com +www.7cnbcnews.com +www7.counter.bloke.com +www7.jijimn.com +www7.kampanyatakip.net +www7.lbmm88.com +www.7metasearch.com +www.7minuteworkout.com +www.7search.com +www7.wwniww.com +www7.ygto.com +www.805m.com +www8.0zz0.com +www81.valueclick.com +www83.lsxsccc.com +www8.51hzmn.com +www.888casino.com +www.888.com +www.888poker.com +www8.addfreestats.com +www8.ad.tomshardware.com +www8.afsanalytics.com +www8.bannerspace.com +www8.counter.bloke.com +www8.effectivemeasure.net +www8.glam.com +www8.ns01.us +www8.smartadserver.com +www8-ssl.effectivemeasure.net +www.90888.com +www91.intel.com +www94.xingggg.com +www.961.com +www.999ways.blogspot.co.uk +www99.bounceme.net +www99.fdns.net +www.99stats.com +www99.zapto.org +www9.addfreestats.com +www9.ad.tomshardware.com +www9.collectiblestoday.com +www9.compblue.com +www9.counter.bloke.com +www9.effectivemeasure.net +www9games.com +www.9malls.co.uk +www9.paypopup.com +www9.servequake.com +www9.smartadserver.com +www9.swansonvitamins.com +www9.trickip.org +www.a1a.pl +www.a1fax.com +www.ab4hr.com +www.ab4tn.com +www.abacusfinance.co.uk +www.abc7.pl +www.abcjmp.com +www.abetterinternet.com +www.abonne-free.com +www.abrogatesdv.info +www.absolutely-clean-up-pc-errors.com +www.accidentadvicehelpline.co.uk +www.accuserveadsystem.com +www.acez.com +www.acezsoftware.com +www.ackjeeves.com +www.acmexxx.com +www.acquisizionevideo.com +www.actiagroup.com +www.actiondesk.com +www.action.ientry.net +www.ad4mat.at +www.ad4mat.ch +www.ad4mat.de +www.ad6media.fr +www.ad.admitad.com +www.adadvisor.net +www.adalyser.com +www.adamsfilms.com +www.adamsmarkhotels.com +www.adbanner.gr +www.adbanner.ro +www.adblockanalytics.com +www.adbonus.com +www.adbooth.com +www.adbrite.com +www.adbuka.com +www.adbutler.de +www.adcanadian.com +www.adcarousel.pl +www.adcash.com +www.adcell.de +www.adchimp.com +www.adclick.lv +www.adclickservice.com +www.adclickthru.net +www.adcode.ws +www.adcomplete.com +www.adcycle.com +www.addfreecounter.com +www.addfreestats.com +www.additcinggames.com +www.addshoppers.com +www.addthiscdn.com +www.addthis.com +www.addtoany.com +www.addwish.com +www.adelixir.com +www.ademails.com +www.adengage.com +www.adexchangecloud.com +www.adexit.com +www.adfactor.nl +www.adfirmative.com +www.adforati.com +www.adforgames.com +www.adfunkyserver.com +www.adfusion.com +www.adgitize.com +www.ad-groups.com +www.adgroups.net +www.adgtracker.com +www.adhexa.com +www.adhood.com +www.adimages.beeb.com +www.adimpact.com +www.adinterax.com +www.adipics.com +www.adireland.com +www.adjmps.com +www.adjug.com +www.adjuggler.com +www.adlandpro.com +www.adlantis.jp +www.adloader.com +www.adlock.in +www.adlogix.com +www.admarket.cz +www.admarketplace.net +www.admedien.com +www.admex.com +www.admez.com +www.adminder.com +www.admin.iesnare.com +www.admin.iesnare.co.uk +www.admixxer.com +www.adnet.biz +www.adnet.com +www.ad-net.co.uk +www.adnet.de +www.adnetworkperformance.com +www.adnigma.com +www.adnxs.com +www.adobee.com +www.adobe-flashplayer.com +www.adobetag.com +www.adobur.com +www.adocean.pl +www.adoptim.com +www.adorigin.com +www.adotube.com +www.adpeepshosted.com +www.adpepper.dk +www.adperium.com +www.adpowerzone.com +www.adprotect.net +www.adquest3d.com +www.adranking.de +www.adreadytractions.com +www.adregistry.com +www.adreporting.com +www.adrotate.net +www.adrotator.com +www.adroz.com +www.ads180.com +www.ads234.com +www.ads2srv.com +www.ads345.com +www.adscampaign.com +www.adscampaign.net +www.adscience.nl +www.adsedo.com +www.adsensecustomsearchads.com +www.adsentnetwork.com +www.adserver.co.il +www.adserver.com +www.adserver.com.my +www.adserver.com.pl +www.adserver-espnet.sportszone.net +www.adserver.home.pl +www.adserver.janes.net +www.adserver.janes.org +www.adserver.jolt.co.uk +www.adserver.net +www.adserver.ugo.nl +www.adservtech.com +www.adshost1.com +www.adshost2.com +www.adshost3.com +www.adshot.de +www.adshufffle.com +www.adsinimages.com +www.ads.joetec.net +www.adskeeper.co.uk +www.ad-skills.nl +www.adsoftware.com +www.ad-souk.com +www.adspace.be +www.adspeed.com +www.adspics.com +www.adspoll.com +www.ads.revenue.net +www.adsrvr.org +www.adstogo.com +www.adstreams.org +www.adsupplyads.com +www.adsupply.com +www.adsurve.com +www.adszooks.com +www.adtactics.com +www.adtaily.com +www.adtaily.pl +www.adtechus.com +www.adtegrity.com +www.ad.tgdaily.com +www.adtiger.de +www.adtlgc.com +www.ad.tomshardware.com +www.adtrade.net +www.adtrader.com +www.adtrade.ro +www.adtraff.ru +www.adtrix.com +www.ad.twitchguru.com +www.adultadbroker.com +www.adultblogtoplist.com +www.adultcash.com +wwwadultcheck.com +www.adultcommercial.net +www.adultdatelink.com +www.adultdatingtraffic.com +www.adultfriendfinder.com +www.adultlinkexchange.com +www.adultlinksco.com +www.adult-top-list.com +www.adult-tracker.de +www.adultvalleycash.com +www.ad-up.com +www.advaliant.com +www.advancedcleaner.com +www.advancedmaccleaner.com +www.advancedsoftwaresupport.com +www.advancesrl.eu +www.advanpromo.com +www.advconversion.com +www.adventertainment.it +www.adversal.com +www.adversalservers.com +www.adverterenbijrtl.nl +www.adverterenbijsbs.nl +www.adverterenzeeland.nl +www.advertise.com +www.advertising365.com +www.advertising.com +www.advertising-department.com +www.advertlets.com +www.advertpro.com +www.adverts.dcthomson.co.uk +www.advertserve.com +www.advertyz.com +www.adview.cn +www.adviews.de +www.adwarespy.com +www.adwidecenter.com +www.adwise.bg +www.adwords.google.lloymlincs.com +www.ad-words.ru +www.adworkmedia.com +www.adworld.com.tr +www.adworldmedia.com +www.adxpansion.com +www.adylalahb.ru +www.ad-z.de +www.adzerk.net +www.aektschen.de +www.aeqs.com +www.aeronautica.gob.pa +www.aerreravasi.com +www.afantispy.com +www.afcyhf.com +www.affbuzzads.com +www.affiliateclick.com +www.affiliate-fr.com +www.affiliatefuel.com +www.affiliatefuture.co.uk +www.affiliatesuccess.net +www.affiliatetracking.com +www.affiliatetracking.net +www.affiliation-france.com +www.affordablewebsitetraffic.com +www.afform.co.uk +www.affpartners.com +www.afftrack.com +www.afterdownload.com +www.agkn.com +www.ahwydljt.com +www.aim4media.com +www.aimes.com +www.aintdoinshit.com +www.airbornehydrography.com +www.airsonett.se +www.ajalis.com +www.ajedreztudela.com +www.akirkpatrick.com +www.akoneplatit.sk +www.akstha.com.np +www.alaksaair.com +www.alaskaaair.com +wwwalaskaair.com +www.albiondrugs.com +wwwal.com +www.aldaniti.net +www.alecctv.com +www.alenty.com +www.alexanderinteriorsanddesign.com +www.alexxe.com +www.algocashmaster.com +www.algocashmaster.net +www.alibabaslots.com +www.alicefans.se +www.alladultdirectories.com +www.alladultdirectory.net +wwwallegro.pl +www.allfet.info +www.allhqpics.com +www.all-internet-security.com +www.allosponsor.com +www.almondnetworks.com +www.alphamedical02.fr +www.alphateam.com +www.alrpost69.com +www.altafista.com +www.amazingcounters.com +www.amazing-offers.co.il +www.amazing-opportunities.info +www.amberlf.cn +www.american-prize-center.com +www.amoxicillin-amoxil-buy.com +www.amybites.com +www.anaco.jp +www.analyticdns.org +www.analytic-google.com +www.anastasiasaffiliate.com +www.anatol.com +www.andrewmelchior.com +www.andr.net +www.andyhoppe.com +www.angelinajoliepics.com +www.angelsinuniform.com +www.anglewinks.com +www.angolotesti.it +www.animal36.com +www.animal-drawings.com +www.animalrank.com +www.animaltoplist.com +www.anmira.info +www.annuaire-autosurf.com +www.anothersideofpeace.org +www.anrdoezrs.net +www.antalya.ru +www.antaraimedia.com +www.antarasystems.com +www.ant.com +www.antibasic.ga +www.antiboss.de +www.anticarredodolomiti.com +www.anticlown.com +www.anycracks.com +wwwaolmail.com +www.apmebf.com +www.appafile.com +www.apparelncs.com +www.apparel-offer.com +www.appfindr.org +www.apphostcapital.com +www.appid-lnc.com +www.applecare-inc.com +www.apple.com-notice.info +www.appled-found-icloud.com +www.apple-iaed.com +www.appleidinfo.net +www.applelounge.com +www.appleprotection.org +www.apple-updates.com +www.applexcid.com +www.apple-xid.com +www.applicationsdeliveryupdate.com +www.applicationsflashbinaries.com +www.applicationwiki.com +www.appliedsemantics.com +www.appnexus.com +www.apponic.com +www.aproxtrack2.com +www.aptrafficnetwork.com +www.arbeitssuche-web.de +www.arcadebanners.com +www.arcadefree.com +www.archigate.it +www.areadiprova.eu +www.areasnap.com +www.arecio.work +www.arenda-yeisk.ru +www.areyouabot.net +www.ariboo.com +www.arkanoidgra.pl +www.arkinsoftware.in +www.arklighting.co +www.aroraeducation.com +www.artcomix.com +www.articlefuns.cn +www.articleidea.cn +www.art-music-rewardpath.com +www.art-offer.com +www.art-offer.net +www.art-photo-music-premiumblvd.com +www.art-photo-music-rewardempire.com +www.art-photo-music-savingblvd.com +www.ascentive.com +www.asianread.com +www.asiansforu.com +www.assculturaleincontri.it +www.assoc-amazon.com +www.astalavista.us +www.atdmt.com +www.atinna.com +www.atlantis-asia.com +www.atlasdmt.com +www.atmovs.com +www.atofilms.com +www.atomictime.net +www.atousoft.com +www.atpanel.com +www.atrub.com +www.auctiondirectory.org +www.auctionshare.net +www.audia6.com +www.audioconverter.info +www.aureate.com +www.aussiemoneymethod.com +www.autoappassionati.it +www.autohipnose.com +www.automoneygenerator.com +www.automotive-offer.com +www.automotive-rewardpath.com +www.autonations.com +www.auto-overview.com +www.autosurfpro.com +www.avantlink.com +www.av-clean.com +www.avcounter10.com +www.avenuea.com +www.avis.cm +www.avnads.com +www.avrakougioumtzi.gr +www.avsads.com +www.avskype.com +www.awalkerjones.com +www.a.websponsors.com +www.awesomevipoffers.com +www.awltovhc.com +www.awmads.com +www.axill.com +www.ayehcleaners.com +www.azmsoft.com +www.b3d.com +www.backoffice.evobinary.com +www.backsim.ru +wwwbackstreetboys.com +www.badassjv.com +www.bagslap.com +wwwbaid.com +www.baiduccdn.org +www.baiducdn.org +wwwbajajauto.com +www.balkansteelie.com +www.ballsack.org +www.balook.com +www.bananacashback.com +www.bananarepubic.com +www.bancomers-enlinea-mx-net.net +www.bangbuddy.com +www.bankingservices.xyz +www.bankofamerica.com.ok.am +www.bannanarepublic.com +www.banner4all.dk +www.bannerads.de +www.bannerbackup.com +www-banner.chat.ru +www.bannerconnect.net +www.banner.cz +www.bannerexchange.co.nz +www.banner-exchange.nl +www.bannergratis.it +www.banner-link.com.br +www.bannermanagement.nl +www.bannerpromotion.it +www.banner-rotation.com +www.banners.bgcatalog.net +www.bannersgomlm.com +www.banners.paramountzone.com +www.bannersurvey.biz +www.bannersxchange.com +www.banstex.com +www.barbiemobi.cn +www.barclaysghana.org +www.barelinks.com +www.bargainbeautybuys.com +www.barilliance.net +www.bar.ry2002.02-ry014.snpr.hotmx.hair.zaam.net +www.basecinco.com.ar +www.battle-wowmail-us.com +www.bbelements.com +www.bcservice.it +www.bde3d.com +www.bdsmcompany.com +www.bdsmtours.com +www.be4life.ru +www.beaverday.biz +www.bechloredu.bid +www.beead.co.uk +www.beespace.com.ua +www.be-funk.com +www.belshar.com +www.belstat.be +www.belstat.com +www.belstat.nl +www.berlincitylady.de +www.besstbuy.com +www.bestappinstalls.com +www.bestcomputeradvisor.com +www.bestfactorydelivery.com +www.best-games4you.top +www.besthitsnow.com +www.best-iphone6s.com +www.bestrxpills.com +www.bestsearch.com +www.bestserials.com +www.bestshockers.com +www.bestshopperrewards.com +www.best-top.hu +www.best-top.ro +www.bestwm.info +www.bet365.com +www.betcounter.com +www.bettertextads.com +www.beyondwhois.com +www.bfqnup.party +www.bgbaner.com +wwwbgz.pl +www.bhclicks.com +www.bidclix.com +www.bidclix.net +www.bidtraffic.com +www.bidvertiser.com +www.bigbadted.com +www.bigbangempire.com +www.bigbrandpromotions.com +www.bigbrandrewards.com +wwwbigfoot.com +www.biggestgiftrewards.com +www.bighop.com +www.bigmart.com.np +www.bigpenisguide.com +www.bigsister.cxa.de +www.bigsister-puff.cxa.de +www.bigstoreoffers.co.uk +www.bilbobaggins.comxa.com +www.bilbob.com +www.bilder-upload.eu +www.bilety.ewygrana.pl +www.binadroid.com +www.binarysystem4u.com +www.bitlocker.net +www.bitsfarmclean.com +www.bitspresentdownload.com +www.bitstagcontent.com +www.bivouac-iguana-sahara-merzouga.com +www.bizneed.com +www.biz-offer.com +www.bizographics.com +www.bizopprewards.com +www.bizuteria.ewygrana.pl +www.bj04.com +www.bjorksta.men +www.bkrtx.com +www.blackbookfilm.it +www.blackmtnsoft.com +www.blacksnake.com +www.blasphemysfhs.info +www.blatant8jh.info +www.blazingtrader.biz +www.blenz-me.net +www.blizzard-wow-mail-us.com +www.blizzard-wow-sa-us-battle.com +www.blizzzrd-net.com +www.blogads.com +www.blogads.de +www.blogcatalog.com +www.blogcounter.de +www.blog-hits.com +www.blogonur.com +www.blogrankers.com +www.blogtoplist.com +www.blogtopsites.com +www.bluediamondoffers.com +www.blueimagen.com +wwwbluelight.com +www.bluemountain1.com +www.bluemountain2.com +www.bluemounten.com +wwwbluemountian.com +wwwbluemoutain.com +www.bluestreak.com +www.bluewaffle.biz +www.bluzy.ewygrana.pl +www.bmmetrix.com +www.bmw.ewygrana.pl +www.bnhtml.com +www.bnmq.com +www.bnnr.nl +www.boattraider.com +www.bodog.eu +www.bogata-przyszlosc.com +www.bombkimikolaja.pl +www.bonnobride.com +www.bonzbuddy.com +www.bonzibuddi.com +www.bonzi.com +www.bonzybuddy.com +www.bookclub-offer.com +www.books-media-edu-premiumblvd.com +www.books-media-edu-rewardempire.com +www.books-media-rewardpath.com +www.boonsolutions.com +www.boostsoftware.com +www.bormis.com +www.bostonsubwayoffer.com +www.bostonwall.com +www.bottleguy.com +wwwbowcreek.com +www.bowlgirl.com +www.box.bg +wwwboxlunch.com +wwwbpcreditcard.com +www.bracalemusic.com +www.brainfox.com +www.bramka-sms-za-darmo.pl +www.brandedleadgeneration.com +www.brandrewardcentral.com +www.brandsurveypanel.com +www.brans.pl +www.bravospots.com +www.brevardmusic.com +www.bride1.com +www.brightonclick.com +www.broadcastpc.tv +www.broadspring.com +www.brokertraffic.com +www.brotatoes.com +www.browseraccelerator.com +www.browser-statistik.de +www.bt.emsecure.net +www.btstorrent.cc +www.buchpiraten.org +wwwbudget.com +www.budsinc.com +www.buffalogoesout.com +www.bugsbanner.it +www.bugsurf.com +www.buildtraffic.com +www.buildtrafficx.com +www.bulgariabg.com +www.bulkclicks.com +www.bulletads.com +www.bumerang.cc +www.bundlerepositorycontent.com +www.burstnet.com +www.buscamundo.com +www.business.lbn.ru +www.business-rewardpath.com +www.bus-offer.com +www.bustyjournal.net +www.buttcandy.com +www.butterfly-media.co.uk +www.buwobarun.cn +www.buy404s.com +www.buycheapadvertising.com +www.buyhitscheap.com +www.buyingedge.com +www.buylasix-online.net +www.buyskype.ru +www.buzzadexchange.com +www.buzzadnetwork.com +www.buzzclick.com +www.buzzonclick.com +www.bypasser.net +www.c1.thecounter.de +www.c2.thecounter.de +www.c4dl.com +www.cabeles.com +www.cadastrodacopa.net +www.cadaver.org +www.cadillacescalade.com +www.cafecoquin.com +www.cagame.de +www.caixapre.com.br +www.californiastateparks.com +www.calllwave.com +wwwcallwave.com +www.calworthingtonford.com +www.cam4.fr +www.cambodiaoutsourcing.com +www.cambonanza.com +www.camsoda1.com +www.canadianrugs.com +www.canalstat.com +www.candidography.com +www.canuck-method.com +www.canuckmethods.com +www.capath.com +www.caphyon-analytics.com +www.caramail.com +wwwcareerpath.com +www.careers-rewardpath.com +wwwcarinsurancedojo.com +www.cartoonpornguide.com +www.car-truck-boat-bonuspath.com +www.car-truck-boat-premiumblvd.com +www-casa.it +www.casalemedia.com +www.casamama.nl +www.cash4downloads.com +www.cash4members.com +www.cashback.co.uk +www.cashbackwow.co.uk +www.cashcapitalsystem.com +www.cashcount.com +www.cashengines.com +www.cashgoddess.de +www.cashlayer.com +www.cashthat.com +www.cashtrafic.com +www.casino770.com +www.casino-on-net.com +www.casinoonnet.com +www.casinotropez.com +www.catalinkcashback.com +www.catgallery.com +www.catz4.com +www.caue971.org +www.cazzigrossi.org +www.cbeckads.com +www.cbproads.com +www.cbtopsites.com +www.ccbill.com +www.ccbilleu.com +www.ccp14.ac.uk +www.cctvalberton.co.za +www.cdhomexpo.cn +www.cdiabetes.com +www.cd.iphone7n.superserwisy.pl +www.cdlitong.com +wwwcdnow.com +www.cecash.com +www.ceisystems.it +www.cell-phone-giveaways.com +www.cellphoneincentives.com +www.cellularbeton.it +www.centerfind.com +www.centertrk.com +www.centralsignnew.com +www.centralwestwater.com.au +www.centrumgierjava.pl +www.cerquasas.it +www.certified-toolbar.com +www.ceskarepublika.net +www.cfbrr.com +www.cgi-view-item-co-uk.xf.cz +www.chainsawoffer.com +www.charitywithoutborders.com +www.chartbeat.com +www.chaseonline.com +www.chatbaran.info +www.cheap-laptops-notebook-computers.info +www.cheap-online-stamp.cast.cc +www.cheapstickets.com +www.cheaptickests.com +www.cheapticketes.com +wwwcheaptickets.com +www.cheapticketsinc.com +www.cheapticketts.com +www.cheapticktes.com +www.checkstat.nl +www.cheekybanners.com +www.chelick.net +www.chiaperottipaolo.it +www.chilecapacita.cl +www.chilyregistrycleaner.com +www.chinafsw.cn +www.china-jlt.com +wwwchipchickcom.skimlinks.com +www.chlcotrk.com +www.choicedealz.com +www.choicesurveypanel.com +www.chokertraffic.com +www.christianbusinessadvertising.com +www.chrumedia.com +www.chsplantsales.co.uk +www.chuckfaganco.com +www.chuckledeliveryhosting.com +www.chucklefunhead.com +www.chukumaandtunde.net +www.cibonline.org +www.cifor.com +www.ci-mpsnare.iesnare.com +www.ci-mpsnare.iesnare.co.uk +www.ciqugasox.cn +wwwcitmbusiness.com +www.cityads.ru +www.ciuchy.ewygrana.pl +www.claimfreerewards.com +www.claitors.com +www.clashmediausa.com +www.classicallyabsurdphotography.com +www.classifieds1000.com +www.cleanallspyware.com +www.cleanallvirus.com +www.clean-cracks.com +www.cleanersoft.com +www.cleanmypc.com +www.cleanpcnow.com +www.cleanproxy.com +www.clean-search.com +www.cleansearch.net +www.cleansite.us +www.cleansofts.com +www.clean-space.com +www.clean-start.net +www.cleanuninstall.com +www.cleanup-your-computer.com +www.clear-request.com +www.clearshieldredirect.com +www.cle.kr +www.clevernt.com +www.click10.com +www.click4click.com +www.clickaction.net +www.clickadu.com +www.click.alibaba.com +www.clickbank.com +www.clickbank.net +www.clickbanksites.info +www.clickboothlnk.com +www.clickcash.com +www.clickclick.com +www.clickdensity.com +www.clickedyclick.com +www.click-find-save.com +www.clickhouse.com +www.clickmanage.com +www.clickmeter.com +www.clickpapa.com +www.clicksagent.com +www.click-see-save.com +www.clicksgear.com +www.clicksor.com +www.clicksotrk.com +www.clickspring.net +www.clicktale.com +www.clicktale.net +www.clickterra.net +www.clickthruserver.com +www.clickthrutraffic.com +www.clicktilluwin.com +www.clicktorrent.info +www.clicktracks.com +www.clicktripz.com +www.clicktshirtprinting.co.uk +www.clickvalidator.net +www.clickxchange.com +www.clickzs.com +www.cliop.com +www.clixgalore.com +www.clixtrac.com +www.clkfeed.com +www.clkoffers.com +www.clksite.com +www.closeoutproductsreview.com +www.cloudown.ienet.pl +www.cloudtracked.com +www.clownsong.com +www.clustrmaps.com +www.clxcaf.com +www.cm1359.com +www.cmpartners.com.au +www.cnbnews.com +www.cndownmb.com +www.cnhdin.cn +www.cnn.cm +www.cnnnew.com +wwwcnnnews.com +www.cn-server.com +www.cnstats.com +www.co2stats.com +www.cockrobinforum.com +www.codeads.com +www.codez-knacken.de +www.cogivea.com +www.coin-have.com +www.coinhive.com +www.coinnuggets.co +www.coldwellbanker.net +www.collectiable.com +www.collect.mentad.com +wwwcollegeboytour.com +www.coloritpak.by +www.columbahouse.com +www.columbianhouse.com +www.comairairlines.com +www.comclick.com +www.com-cuenta-de-servicio-662494.org +www.come-see-it-all.com +www.commerce-offer.com +www.commerce-rewardpath.com +www.commercialclientsgroup.ru +www.commissionempire.com +www.commission-junction.com +www.com-notice.info +www.compufixshop.com +www.computer-offer.com +www.computer-offer.net +www.computers-electronics-rewardpath.com +www.computersncs.com +www.computerxchange.com +www.conceptsbyteupdate.com +www.conds.ru +www.conduit-banners.com +www.conduit.com +www.conecptpackagecycle.com +www.congratulations.website +www.connectionlead.com +www.consumeralternatives.org +www.consumergiftcenter.com +www.consumerincentivenetwork.com +www.consumer-org.com +www.contaxe.com +www.contentcleaner.com +www.contentlockingnetworks.com +www.contextpanel.com +www.contextuads.com +www.contextualadv.com +www.contextualclicks.com +www.contextweb.com +www.continentialairline.com +www.contniental.com +www.conversantmedia.com +www.conversionruler.com +www.cookingtiprewards.com +www.coolconcepts.nl +www.cool-downloads.com +www.cool-downloads.net +www.coolfreehost.com +www.coolingtowers.com.mx +www.cool-premiums.com +www.cool-premiums-now.com +www.coolpremiumsnow.com +www.coolsavings.com +www.coolwebstats.com +wwwcopperchief.com +www.copyright-reform.info +www.coreclickhoo.com +www.coreglead.co.uk +www.cornomase.win +www.cortesidesign.com +www.cosmeticscentre.uk.com +www.count24.de +www.counter10.sextracker.be +www.counter11.sextracker.be +www.counter12.sextracker.be +www.counter13.sextracker.be +www.counter14.sextracker.be +www.counter15.sextracker.be +www.counter16.sextracker.be +www.counter1.sextracker.be +www.counter2.sextracker.be +www.counter3.sextracker.be +www.counter4all.com +www.counter4all.de +www.counter4.sextracker.be +www.counter4you.net +www.counter5.sextracker.be +www.counter6.sextracker.be +www.counter7.sextracker.be +www.counter8.sextracker.be +www.counter9.sextracker.be +www.counter.bloke.com +www.countercentral.com +www.counter.cz +www.counter-gratis.com +www.counterguide.com +www.counters4u.com +www.counter.sexhound.nl +www.counter.superstats.com +www.counti.de +www.counting4free.com +www.countit.ch +www.countmypage.com +www.countok.de +www.cozycoreclub.de +www.cpabank.com +www.cpaempire.com +www.cpalead.com +www.cpalist.com +www.cpays.com +www.cpm10.com +www.cpmadvisors.com +www.cpmaffiliation.com +www.cpmfun.com +www.cpmterra.com +www.cpro.moscow +www.cpx24.com +www.cqcounter.com +www.crackandplay.com +www.crackfulldownload.com +www.crackserver.com +www.cracksplanet.com +www.crackzplanet.com +www.crakmedia.com +www.crazypopups.com +www.crazyprotocol.com +www.crazywinnings.com +www.credibleartstherapies.org +www.crediblegfj.info +www.creditauthpagev3.info +www.credit-dreams.com +www.creditorrs.bid +www.credomobile.com +www.crispads.com +www.criteo.com +www.crm-metrix.fr +www.crowdgravity.com +www.crowdignite.com +www.crtasi.it +www.cryptocoinjs.com +www.crypto-loot.com +www.csearsas.com +www.cs-go.ienet.pl +www.cshacks.partycat.us +www.cswilliamsburg.com +www.ctbdev.net +www.c.thecounter.de +www.ctibank.com +www.ctrck.com +www.cudacorp.com +www.cuksy.pl +wwwcultofmaccom.skimlinks.com +www.currentupdateconcepts.com +www.curryheinz.de +www.customersupporthelp.com +www.cw.nu +www.cybereps.com +www.cyber-incentives.com +www.cybermecca.com +www.cyberscat.com +www.cyberzine.com +www.cybilling.com +www.cydoor.com +www.czzcjlb.com +www.d03x2011.com +www.da-ads.com +www.dadparty.com +www.daily-saver.com +www.dailyshare.pro +www.dance-alarm.de +www.darley.co.uk +www.darmowedoladowanko.pl +www.darmowe-wrozby.com +www.darulsaka.com +www.daspar.net +wwwdatabreach-settlement.com +www.dataforce.net +www.datanotary.com +www.datatech.es +www.dateck.com +www.datingadvertising.com +www.dating-banners.com +www.dcm5.com +www.dctracking.com +www.dddcc.com +www.decografix.com +www.deepc.cc +www.deepmetrix.com +www.defaultinternet.com +www.defenderxtactical.com +www.deflorationvirgins.com +www.del-marine.com +www.deltahost.de +www.dentairemalin.com +www.dentalcarre.us +www.depravedwhores.com +wwwdescargas.com +www.desifever.com +www.designbloxlive.com +www.desirevandoorne.nl +www.destinationurl.com +www.detroithardcore.com +www.dezuiderwaard.nl +www.dgmaustralia.com +www.diamentyatlantydy.pl +www.dianomioffers.co.uk +wwwdiariodenavarra.com +www.dia-traffic.com +www.dicarlotrack.com +www.didata.bw +www.didtheyreadit.com +www.dietoftoday.ca.pn +www.dietsecret.ru +www.diffusionpub.com +www.digiaquascr.com +www.digimedia.com +www.dikesalerno.it +www.dimarsbg.com +www.dipli.unipa.it +www.diptanuinfo.co.cc +www.directadvert.ru +www.directgrowthhormone.com +www.directnetadvertising.net +www.directpowerrewards.com +www.direct-stats.com +www.directtrack.com +www.directxex.com +www.dirtyje.ws +www.dirtyrhino.com +www.disable-uac.com +wwwdiscounthotel.com +www.discount-savings-more.com +wwwdisnepchannel.com +www.disney-movie.org +www.distribuidoraderetentores.com.br +www.distrilamadrid.com.ar +www.divisioncore.com +www.divshare.com +www.divx.it +wwwdiynet.com +www.djjashnn.in +www.djler.de +www.djsrp.com +www.djugoogs.com +www.dkworld.de +www.dllfilestab.com +www.dl-plugin.com +www.dnps.com +www.dntx.com +www.dobre-programy.pl +www.docservices.eu +www.doctor-alex.com +www.document.pdf.kfunk.co.za +wwwdocumentscom.000webhostapp.com +www.dodostats.com +www.dogpial.com +www.doladowania.ienet.pl +www.doladowywacztel.pl +www.dolanadserver.com +wwwdollar.com +www.dollarrentcar.com +www.domainfwd.com +www.domainfwding.com +www.domusre.com +www.donneuropa.it +www.donotwatch.org +www.dontwatch.us +www.doodream.com +www.dotnetadvisor.info +www.dotzup.com +www.doubleclickbygoogle.com +www.doubleclick.com +www.doubleclick.net +www.doublelvisions.com +www.dougmlee.com +www.dowdenphotography.com +www.down1oads.com +www.download3x.xcc24.pl +www.downloaddirect.com +www.download.ienet.pl +www.downloads-mobile.com +www.downloads-whatsapp.com +www.downloadupload.com +www.download.v21.pl +www.download.w65.pl +www.downloadwarez.org +www.dpbolvw.net +www.dp-medien.eu +www.dragondefense.pl +www.drivotracker.com +www.drmehul.in +www.dron.ewygrana.pl +www.drowle.com +www.drpacman.pl +www.drteachme.com +www.drunkenstepfather.com +www.dsnextgen.com +www.dt1blog.com +www.dualvaccine.com +www.duplicatefilecleaner.com +www.dutchsales.org +www.dwclick.com +www.dwin1.com +www.dynamictoolbar.com +www.dzzrenjanin.rs +www.earnify.com +www.earnmygift.com +www.earnpointsandgifts.com +www.easy2date.net +www.easyadservice.com +www.easycounter.com +www.easy-dating.org +www.easysurvey.info +www.ebannertraffic.com +www.e-bannerx.com +www.ebayadvertising.com +www.ebaybanner.com +www.ebaychristmas.com +www.ebertandroeper.com +www.eboundservices.com +www.ebtmarketing.com +www.eclean.or.kr +www.eclkspsa.com +www.econda-monitor.de +www.ecpmrocks.com +www.ecxcite.com +www.edge.quantserve.com +www.edirectory.co.uk +www.edle-stuecke.de +www.edmedsnow.com +www.edomz.com +www.education-rewardpath.com +www.edu-offer.com +www.eelsoup.net +www.effectivebrand.com +www.effectivemeasure.net +www.efficienttraffic.com +www.eftps.com +www.egoldenglove.com +www.ehg-rr.hitbox.com +www.eivamos.com +www.elc.tomsk.ru +www.electra-jjh.com.br +www.electronicpromotion.com +www.electronics-bonuspath.com +www.electronics-offer.net +www.electronicspresent.com +www.electronics-rewardpath.com +www.elementnetwork.com +www.elisaart.it +www.eliteconcepts.com +www.ellads.com +www.eltrafiko.com +www.emailadvantagegroup.com +www.emaildeals.biz +www.email-login-support.com +www.emailproductreview.com +www.emarketmakers.com +www.emjcd.com +www.empresarialhsbc.at.vu +www.emrlogistics.com +www.enchantier.com +www.engelfire.com +www.enhance.com +www.enigmasoftware.com +www.enoratraffic.com +www.entercasino.com +www.entertainment-rewardpath.com +www.entertainment-specials.com +www.enviolista.info +www.e-papierosy.ewygrana.pl +www.epicgameads.com +www.epmads.com +www.equallyyolked.com +www.erectile.bid +www.erodynamics.nl +www.eroyear.ru +www.errornuker.com +www.ertya.com +www.eseansik.pl +www.esformofset.com.tr +www.eshopads2.com +www.estat.com +www.estats4all.com +www.etahub.com +www.etiennodent.com +www.etracker.de +www.e-traffic.com +www.etraffic.com +www.euroconcept.ro +www.europaheizung.de +www.europcareer.com +www.europerank.com +www.euros4click.de +www.evaairline.com +www.everestjs.net +www.everydaygays.com +www.evidencenuker.com +www.exactadvertising.com +www.exacttarget.com +www.exasharetab.com +www.exbays.com +www.exchangead.com +www.exchange.bg +www.exchange-it.com +www.exclusive-games.website +www.exclusivegiftcards.com +www.exe-file.de +www.exit-ad.de +www.exitforcash.com +www.exitmoney.com +www.experclick.com +www.expressaffiliatesite.com +www.expressomatogrosso.com.br +www.extreme-dm.com +www.exttrem.de +www.eyeblaster-bs.com +www.eyes.by +www.eyewonder.com +www.ezthemes.com +www.f8350e7c1.se +www.fabioalbini.com +www.fabrics-store.com +www.fabryka-nagrod.com +www.facebok.com.ba +www.facebookasciiart.com +www.facebook.cm +wwwfacebook.com +www.facebookcrawl.co.cc +www.facebookloginsignin.com +www.facebook.realtorarcf.com +www.facebookunblocking.com +www.faceebook.dk +wwwfacultyrewards.com +www.facyd-apple.com +www.faggotry.com +www.fajnefanty.com +www.falkag.de +www.family-offer.com +www.family-partners.fr +www.fasadobygg.com +www.fashionhunter.net +www.fast-adv.it +www.fastcash-ad.biz +www.fastcounter.linkexchange.nl +www.fastdownload10.com +www.fastnclick.com +www.fastusersonline.com +www.fatcatrewards.com +www.faucett.bid +www.favicon.com +www.fcgol.pl +www.fchabkirchen-frauenberg.de +www.feaecebook.com +www.febk.net +www.federatedstores.com +www.federicksofhollywood.com +www.feedjit.com +www.feedstermedia.com +www.feiyang163.com +www.fellent.eu +www.fetisch-pornos.cxa.de +www.feyads.com +www.fhserve.com +www.ficken-ficken-ficken.cxa.de +www.ficken-xxx.cxa.de +www.fictioncinema.com +www.fiduciariobajio.com.mx +www.fif49.info +www.filefortune.com +www.fileoasis.net +www.files-download.xcc24.pl +www.finance-offer.com +www.financial-advice-books.com +www.finanzmarkt2004.de +www.finder.cox.net +www.findit-quick.com +www.fineclicks.com +www.fiocchidiriso.com +www.firebanner.com +www.firstconsumers.com +wwwfirstib.com +www.fischereszter.hu +www.fishclix.com +www.fitnesshealthreporter.com +www.fixcleaner.com +www.fixio-pc-cleaner.com +www.flagcounter.com +www.flashadtools.com +www.flashcasino.com +www.flashdem.fr +www.flashplayer-adobe.com +www.flashplayer_macro.kit.net +www.flowers-offer.com +www.flowtec.com.br +www.flu23.com +wwwfly4free.pl +wwwflyadeal.com +www.flyingcroc.com +wwwflyjoon.com +www.fmbj.science +www.fmcurling.org +www.fncash.com +www.focalex.com +www.folloyu.com +www.food-drink-bonuspath.com +www.food-drink-rewardpath.com +www.foodmixeroffer.com +www.food-offer.com +www.footballmanager.com.pl +www.forboringbusinesses.com +www.foreclousure.com +www.foreclousures.com +www.forex-instruments.info +www.formacionprofesional.webuda.com +www.formalyzer.com +www.formessengers.com +www.forsa.ienet.pl +www.forum.ithealth.ru +www.fosamobi.com +www.fotoidea.com +www.fotopreweddingmurah.com +www.foxcounter.com +www.fpcclicks.com +www.fpcpopunder.com +www.fpctraffic2.com +www.fpctraffic.com +www.frameptp.com +www.freeadguru.com +www.freebiegb.co.uk +www.freebiesms.co.uk +www.freebitmoney.com +www.freecamdollars.com +www.freecameraonus.com +www.freecameraprovider.com +www.freecamerasource.com +www.freecamerauk.co.uk +www.freecamsecrets.com +www.freecamsexposed.com +www.free-choices.com +www.freecoolgift.com +www.freecounter.it +www.free-counters.net +www.freedailydownload.com +www.freedesignerhandbagreviews.com +www.freedinnersource.com +www.freedownloadzone.com +www.freedvddept.com +www.freeelectronicscenter.com +www.freeelectronicsdepot.com +www.freeelectronicsonus.com +www.freeelectronicssource.com +www.freeentertainmentsource.com +www.freeezinebucks.com +www.freefoodprovider.com +www.freefoodsource.com +www.freeforums.org +www.freefuelcard.com +www.freefuelcoupon.com +www.freegamessource.com +www.freegasonus.com +www.freegasprovider.com +www.free-gift-cards-now.com +www.freegiftcardsource.com +www.freegiftreward.com +www.free-gifts-comp.com +www.free-hardcoresex.org +www.freehitwebcounters.com +www.freeipodnanouk.co.uk +www.freeipoduk.com +www.freeipoduk.co.uk +www.freelaptopgift.com +www.freelaptopnation.com +www.free-laptop-reward.com +www.freelaptopreward.com +www.freelaptopwebsites.com +www.freemaintenancesysforpcandmac.top +www.freemao.com +www.freenation.com +www.freenew.net +www.freeoffers-toys.com +www.freepayasyougotopupuk.co.uk +www.freeplasmanation.com +www.freepornsubmits.com +www.freerestaurantprovider.com +www.freerestaurantsource.com +www.freeserials.ws +www.freeshoppingprovider.com +www.freeshoppingsource.com +www.freestats.com +www.freestats.tv +www.freestats.ws +www.freestat.ws +www.free-toplisten.at +www.freeusersonline.com +www.freevideo.biz.nf +www.freewebsites.com +www.freewebtown.com +www.freo-stats.nl +www.friend-card.com +www.friend-cards.com +www.friend-cards.net +www.friend-greeting.com +www.friend-greetings.com +www.friendgreetings.com +www.friend-greetings.net +www.friendgreetings.net +www.friendlyduck.com +www.froling.bee.pl +www.frontpagecash.com +www.frosinonewesternshow.it +www.frtya.com +www.frtyb.com +www.fruitlauncher.com +www.fsm-europe.eu +www.ftjcfx.com +www.fuckbookdating.com +www.fuck.org +www.full-edition.info +www.fulltraffic.net +www.fun2cell.net +www.funklicks.com +www.fun.lbn.ru +www.funnelchair.com +www.funtopliste.de +www.furnitureulimited.com +www.fusestats.com +www.fusionbanners.com +www.fxcounters.com +www.fxlayer.net +www.fxstra.com +www.fyxm.net +www.gacatl.com +www.gaja79.com +www.galileounaluna.com +www.gallerytrafficservice.com +www.galliagroup.com +www.game-advertising-online.com +www.gameangel.com +www.gameatlas.com +www.game-clicks.com +www.gameconsolerewards.com +www.gameplaylabs.com +www.gamepor.com +wwwgamepro.com +www.gamerevoluton.com +www.games4u.ws +www.gamesfly.com +www.gamesharck.com +www.gamesharkcentral.com +wwwgameshark.com +www.games-toys-bonuspath.com +www.games-toys-free.com +www.games-toys-rewardpath.com +www.gamevance.com +www.gaohaiying.com +www.garudaairlines.com +www.garybonnell.jp +www.gasthofpost-ebs.de +www.gatekeeper.tss.net +www.gatoradvertisinginformationnetwork.com +www.gator.com +www.gayxperience.com +wwwgazete.com +www.gb206.com +www.gbcash.com +www.gcmadvertising.com +www.gdby.com.cn +www.gdzjco.com +www.gen2server.com +www.generationgirls.com +www.genericnexium40mg.net +www.generic-onlinenexium.net +www.genforumgenealogy.com +www.gennaroespositomilano.it +www.gentedicartoonia.it +www.geolocation.performgroup.com +www.geoplugin.net +www.geoworldonline.com +www.geraldgore.com +www.getacool100.com +www.getacool500.com +www.getacoollaptop.com +www.getacooltv.com +www.getagiftonline.com +www.get-avast.com +www.getfilemacgetdmg.com +www.getfilesmact.com +www.getiton.com +www.getloan.com +www.getmeaticket.co.uk +www.getmyads24.com +www.getmyfreebabystuff.com +www.getmyfreegear.com +www.getmyfreegiftcard.com +www.getmyfreelaptop.com +www.getmyfreelaptophere.com +www.getmyfreeplasma.com +www.getmylaptopfree.com +www.getmyplasmatv.com +www.get-quadcleaner.com +www.getrockerbox.com +www.getsearchlist.com +www.getsmart.com +www.getspecialgifts.com +www.getstatistics.se +www.getyourfreecomputer.com +www.getyourfreetv.com +www.gewinnspiele-slotmachine.de +www.gezinti.com +www.ghareebkar.com +www.giftcardchallenge.com +www.giftcardsurveys.us.com +www.giftrewardzone.com +www.gifts-flowers-rewardpath.com +www.gilvision.com +www.gimmethatreward.com +wwwgirlchanh.com +www.gliamicidellunicef.it +www.globalcharge.com +www.globe7.com +www.gloomky.com +www.glxgroup.com +wwwgmacmortgage.com +www.gmads.net +www.gmcjjh.org +www.gnomihalkidikis.gr +www.gns-consola.com +www.gnuetella.com +www.go2jump.org +www.go777site.com +www.goat.cx +www.goatse.bz +www.goatse.ca +www.goatse.cx +www.goatsegirl.org +www.goatse.ru +www.go-free-gifts.com +www.gofreegifts.com +www.goggl.com +www.goggle.com +www.gojiberry500.pl +www.goldadvert.cz +www.gold-city.it +www.goldenyearshealth.org +wwwgoldstandardrewards.com +www.goody-garage.com +www.googkle.com +www.googleadservices.com +www.google-analytics.com +www-google-analytics.l.google.com +www.google.com-document-view.alibabatradegroup.com +www.google-docs.org +www.google.ienet.pl +www-google.nl +wwwgoogles.com +www.googletagmanager.com +www.googletagservices.com +www.googlew.com +www.googlewordpad.info +www.googlre.com +www.googlwe.com +www.googmel.win +www.goolegames.com +www.goolges.com +www.gopeds.com +www.gopogle.com +www.gopopup.com +www.gozatar.com +www.gpr.hu +www.grabbit-rabbit.com +www.grabfile.co +www.gradiamenty.pl +www.grakreatorkamody.pl +www.granie-na-czekanie.ienet.pl +www.gratis-counter-gratis.de +www.gratis-toplist.de +www.gratisweb.com +www.greasypalm.com +www.greatwalltour.org +www.grendizer.biz +www.grmtech.net +www.grouphappy.com +www.groupm.com +www.gryjava.gsm.pl +www.grz67.com +www.gtop.ro +www.gtradersoft.com +www.guaranty.com.cn +www.guardappsfarm.com +www.guardcyclequick.com +www.guesstheview.com +www.gulf-industrial.com +www.guptamedianetwork.com +www.gvc.vn +www.gwmtracker.com +www.gxplugin.com +www.h21.ru +www.habaapac.com +www.hackboy.hit.bg +www.hacking-facebook.com +www.h-adachi.org +www.hai2u.com +www.hakerzy.net +www.handyarchive.com +www.hanulsms.com +www.haoyunlaid.com +www.haphuongfoundation.net +www.happydiscountspecials.com +www.hardware4freaks.de +www.harmonyhollow.net +www.hashforcash.us +www.hausnet.ru +www.hdchd.org +www.healthbeautyncs.com +www.health-beauty-rewardpath.com +www.health-beauty-savingblvd.com +www.healthclicks.co.uk +www.healthyaltprods.com +www.healthyspecialnewinfo.rocks +www.heaptickets.com +www.heartrevitalized.com +www.hebdotop.com +www.heimlich-gefilmt.cxa.de +www.helltraffic.com +www.helpmedownload.com +www.hengjia8.com +www.hentaidatabase.com +www.herbalsmokeshops.com +www.hertzsales.com +www.heusmarketing.nl +www.hey.lt +www.hgtzz.com +www.hgwclan.de +www.hi7800.com +www.hidebux.com +www.hidemyass.com +www.highestmrket.bid +www.hightrafficads.com +www.hiperstat.com +www.histats.com +www.historykill.com +www.hitbox.com +www.hitboxwireless.com +www.hit-counter-download.com +www.hit-counts.com +www.hitekshop.vn +www.hitlistcheck.de +www.hitmaster.de +www.hit-now.com +www.hitpro.us +www.hitslink.com +www.hitstats.co.uk +www.hittracker.org +www.hjaoopoa.top +www.hlserve.com +www.hnskorea.co.kr +www.hobwelt.com +www.hoerbird.net +www.holdhelptime.com +www.holiday-gift-offers.com +www.holidayproductpromo.com +www.holidayshoppingrewards.com +www.holika.com +www.home4bizstart.ru +www.homedepoy.com +www.homeelectronicproducts.com +www.home-garden-premiumblvd.com +www.home-garden-rewardempire.com +www.home-garden-rewardpath.com +www.homeoffun.com +www.homewares.org +www.homrdepot.com +www.hookedmediagroup.com +www.hooqy.com +www.hopto.org +www.hornytraffic.com +www.hospedar.xpg.com.br +www.hostadserver.com +www.hostedbanners.com +www.host-it.co.uk +www.hostmyportfolio.com +www.hot2015rewards.com +www.hot-bot.com +www.hotchatdate.com +www.hot-daily-deal.com +www.hotelroom.co +www.hotgiftzone.com +www.hotkeys.com +www.hotlog.ru +www.hot-product-hangout.com +www.hotranks.com +www.hotspotshield.com +www.howtocleanacomputervirus.com +www.howtotroll.org +www.hozehqom.com +www.hryspap.cn +www.htmate2.com +www.https-paypal-com.tk +www.huadianbeijing.com +www.huaxintrip.com +www.huberts-kochseite.de +www.hubtraffic.com +www.hudsonleadership.com +www.hugedomains.com +www.humanclick.com +www.hung-guan.com.tw +www.huren-verzeichnis.is4all.de +www.hustlercash.hit.bg +www.hvmalumni.org +www.hw-ad.de +www.hxtrack.com +www.hypercounter.com +www.hypertracker.com +www.ibis.cz +www.iboard.com +www.ibps.com +www.iccee.com +www.icecars.com +www.icentric.net +www.icityfind.com +www.icloud-appleld.com +www.icloud-ivce.com +www.icloud-rastrear.com +www.icloudsiphone.com +www.icoocash.com +www.icracks.net +www.ictcmwellness.com +www.icybrand.eu +www.idealcasino.net +www.idfonline.co.il +www.idirect.com +www.ieginc.com +www.iesnare.com +www.iesnare.co.uk +www.ifastnet.com +www.ifileyou.com +www.iframes.us +www.igame4free.com +www.i-games.biz +www.ihaberadserver.com +www.iicdn.com +www.ijacko.net +www.ilovecheating.com +www.ilovemobi.com +www.imagerieduroc.com +www.i.matheranalytics.com +www.imcounting.com +www.imiclk.com +www.immobaustein.de +www.impm.upel.edu.ve +www.impresadeambrosis.it +www.impresionesweb.com +www.impressionaffiliate.com +www.impressionaffiliate.mobi +www.impressionlead.com +www.impressionperformance.biz +www.imrworldwide.com +www.imrworldwide.com.au +wwwinbank.pl +www.incentaclick.com +www.incentivegateway.com +www.incentivenetworks2.com +www.incentiverewardcenter.com +www.incentive-scene.com +www.incestdot.com +www.incestgold.com +www.inckamedia.com +www.indesignstudioinfo.com +www.indiads.com +www.ineedhits.com +www.inevo.co.il +www.infinite-ads.com +www.infinityads.com +www.infoaz.nl +www.info.com +www.infolinia-kontakt-telefon.pl +www.infopaypal.com +www.infotelsrl.com +www.infra.by +www.inlinea.co.uk +www.innatek.com +www.innovateads.com +www.inpagevideo.nl +www.insideasiatravel.com +www.insidecentralfl.com +www.insightexpress.com +www.inskinad.com +www.ins-offer.com +www.installm.net +www.instorm.com +www.insurance-rewardpath.com +www.intela.com +www.intelli-direct.com +www.intellisuggest.com +www.intelli-tracker.com +www.intellitxt.com +www.interactivebrands.com +www.intera-x.com +www.interia-ek.ru +www.internethistorycleaner.ws +www.internetsecurity.com +www.interstats.nl +www.interstitialzone.com +www.intnet-offer.com +www.invitefashion.com +www.iovation.com +www.iovation.co.uk +www.ipcounter.de +www.iperbanner.com +www.iphone6plus.ewygrana.pl +www.iphonegames3g.com +www.ipm.upel.edu.ve +www.ipstat.com +www.iqapps.in +www.iranwebads.com +www.is1.clixgalore.com +www.isettatech.com +www.isfilebest.com +www.islamic-banners.com +www.islamipedia.org +www.isoftibest.com +www.istats.nl +www.ist-track.com +www.isuzi.com +www.itcompany.com +www.itrackerpro.com +www.itsfree123.com +www.itunesdownloadstore.com +www.itunes-relevant.com +www.ivwbox.de +www.ivysolutions.it +www.iwantmyfreecash.com +www.iwantmy-freelaptop.com +www.iwantmyfree-laptop.com +www.iwantmyfreelaptop.com +www.iwantmygiftcard.com +www.iwanttodeliver.com +www.iws.ro +www.iwstats.com +www.iybasketball.info +www.izalingi.com +www.jak-szybko-zarobic.com +www.janeaustenjoy.com +www.japanesevehicles.us +www.japanmadchen.com +www.japscat.org +www.japtron.es +www.javascriptobfuscator.com +www.jaybeee.name +www.jcmarcadolib.com +www.jcwhiney.com +www.jcwhintey.com +www.jcwhitey.com +www.jdfabrication.com +www.jdoqocy.com +www.jejuskypension.com +www.jellycounter.com +www.jersey-offer.com +www.jetpackdigital.com +www.jetseeker.com +www.jivox.com +www.jiztini.com +www.jizzads.com +www.jl29jd25sm24mc29.com +www.jmp2click.com +www.jmpads.com +www.jobdeliver.tk +www.joecartonn.com +www.joetoons.com +www.joincreditexpert.co.uk +www.joinfree.ro +www.joingvo.com +www.joinourwebsite.com +www.jolic2.com +www.joomlalivechat.com +www.josip-stadler.org +www.jouwstats.nl +www.jque.net +www.jscount.com +www.jsecoin.com +www.jsing.net +www.jsonip.com +www.juedische-kammerphilharmonie.de +www.juiceadv.com +www.juicyads.com +www.junecleeland.com +www.jung201.tk +www.justhookup.com +www.justin-polska.ewygrana.pl +www.jwdn.net +www.jxliu.com +www.jzigsobgsmxdmr.bid +www.k5zoom.com +www.kaaza-legal.de +www.kajahdfssa.net +www.kalandraka.pt +www.kalantzis.net +www.kamalmodelschoolkpt.com +www.kampanyatakip.net +www.kanoodle.com +www.kaplanindex.com +www.kaspersky-shop.ch +www.katia-paliotti.com +www.kazaa.com +www.kcta.or.kr +www.kennethjustice.com +www.keybinary.com +www.keyofhealth.com +www.keywordblocks.com +www.keywordmax.com +www.kickassratios.com +www.kidsangel.com +www.kids-in-sandbox.com +www.kidsinsandbox.info +www.kikesantander.com +www.kingdomfestival.cm +www.kino.ewygrana.pl +www.kinomarathon.ru +www.kipasdenim.com +www.kitaramarketplace.com +www.kitaramedia.com +www.kitaratrk.com +www.kitchentablegang.org +www.kixer.com +www.kjbbc.net +www.klamm-counter.de +www.klikbonus.com +www.klikdirect.com +www.klikijuz.com +www.kliksaya.com +www.klixmedia.com +www.km69.de +www.kmdl101.com +www.kmindex.ru +www.knacads.com +www.koch-backrezepte.de +www.komodia.com +www.kontera.com +www.konversation.com +www.kowasaki.com +www.kpremium.com +www.kproxy.net +www.kqzyfj.com +www.kreaffiliation.com +www.kuhdi.com +www.kvr-systems.de +www.kwbtgame.com +www.kwistal.nl +www.kwrealty2015.mobi +www.ladyclicks.ru +www.laexotic.com +www.lanonna.co.uk +www.lansrv050.com +www.laobaozj.com +www.lapiden.com +www.laptopreportcard.com +www.laptoprewards.com +www.laptoprewardsgroup.com +www.laptoprewardszone.com +www.larivieracasino.com +www.lasthr.info +www.lateecapes.com +www.laugh-mail.com +www.laugh-mail.net +www.lays.ewygrana.pl +www.lcbcad.co.uk +www.lccl.org.uk +www.lduhtrp.net +www.le1er.net +www.leadgenetwork.com +www.leadgreed.com +www.leadingedgecash.com +www.leadpub.com +www.leadtrackgo.com +www.learning-offer.com +www.lefos.net +www.legal-rewardpath.com +www.legendofdragoon.com +www.leisure-offer.com +www.lejournaldescarrieres.com +www.lemonparty.biz +www.lemonparty.org +www.lennoxcollections.com +www.lesben-pornos.cxa.de +www.letssearch.com +www.libecki.net +www.libo-conveyor.com +www.liders.biz +www.lidl.pl-vouchers.com +www.lifeeverest.com +www.lifeforminc.com +www.lifelabs.vn +www.liitt.us +www.lijit.com +www.likeportal.com +www.likespike.com +www.likethislist.biz +www.likethis.mbosoft.com +www.linconpark.com +www.linkads.de +www.linkbucks.com +www.linkbuddies.com +www.linkconnector.com +www.linkcounter.com +www.linkfame.com +www.linkhut.com +www.linkpulse.com +www.linkredirect.biz +www.linkreferral.com +www.linksalpha.com +www.links-and-traffic.com +www.linkshare.com +www.links-private-krankenversicherung.de +www.linktarget.com +www.linkwithin.com +www.linkworth.com +www.lintelligence.de +www.liones.nl +www.liqwid.net +www.litec-fr.com +www.litra.com.mk +www.littledevildoubt.com +www.little-help.com +www.littlesturgisrally.com +www.liveadclicks.com +www.liveadexchanger.com +www.livecount.fr +www.livefyre.com +www.livejasmin.com +www.livestat.com +www.livewebstats.dk +www.livewell.net +www.lldiettracker.com +www.loading-delivery1.com +www.loading-delivery2.com +www.localh0st.info +www.loggerx.com +www.logging.to +www.lolgifting.com +www.lolhello.com +www.lolrpgifts.com +www.lolshare.me +www.lolshock.com +www.loltrain.com +www.lomalindasda.org +www.lonelycheatingwives.com +www.lonelywifehookup.com +www.longtraffic.com +www.lostartofbeingadame.com +wwwlotto24.de +www.lottoforever.com +www.lottoga.com +www.lovecouple.ru +www.lovendo.it +www.lovetrust.ru +www.lowes-pianos-and-organs.com +www.lpcloudsvr302.com +www.lpmxp2014.com +www.lpmxp2015.com +www.lpmxp2016.com +www.lpmxp2017.com +www.lpmxp2018.com +www.lpmxp2019.com +www.lpmxp2020.com +www.lpmxp2021.com +www.lpmxp2022.com +www.lpmxp2023.com +www.lpmxp2024.com +www.lpmxp2025.com +www.lpmxp2026.com +www.lpmxp2027.com +www.lprshcsmijfovp.com +www.luce.polimi.it +www.luchtenbergdecor.com.br +www.lucky-day-uk.com +www.luckyday.world +www.lucyfeed.com +www.lufhansa.com +www.lufthansaairlines.com +www.lufthanza.com +www.lycosgamesville.com +www.lydaoyou.com +www.lyzgs.com +www.lzjl.com +www.m1crosoft.com +www.m-99.co.uk +www.maatch.com +www.macaheadapps.com +www.mac.com-w.net +www.macfillerck.com +www.macombdisplayads.com +www.maconbraves.com +www.magellen.com +www.magicznarybka.pl +www.magicznytotem.pl +www.mahindrainsurance.com +www.mailforfreedom.com +www.mainadv.com +www.mainteck-fr.com +www.makohela.tk +wwwmakro.nl +www.malest.com +www.malicioso.net +www.malkm.com +www.mamameidia.com +www.mamamidia.com +wwwmancow.com +www.mangayhentai.com +www.mansmith.net +www.mapqueat.com +www.mapquestt.com +www.mapquuest.com +www.marcopolo.uk.net +www.marinoderosas.com +www.markbruinink.nl +www.marketbill.com +www.market-buster.com +www.marketing-rewardpath.com +www.marketscore.com +www.marss.eu +www.martgage.com +www.marygoroud.ga +www.masterspace.biz +www.mastertracks.be +www.mathenea.com +www.mauritaniecoeur.org +www.maxbounty.com +www.maxonclick.com +www.maxregistrycleaner.com +www.maxregistrycleaner.net +www.maxxxhits.com +www.maybankard.com.my +www.mb01.com +www.mb102.com +www.mb57.com +www.m-barati.de +wwwm.bzbk.pl +www.mcleanvahomes.com +www.mcsqd.com +www.mdsignsbog.com +www.meatspin.biz +www.meatspin.com +www.media2.travelzoo.com +www.mediahighway.net +www.media-motor.com +www.mediaplayercodecpack.com +www.media-playerz.com +www.mediareps.com +www.mediatraffic.com +www.medical-offer.com +www.medical-research-books.com +www.medical-rewardpath.com +www.medleyads.com +www.medtecchina.com +www.meetic-partners.com +www.meetyourmessenger.co.uk +www.megacounter.de +www.megagiftcity.com +www.megastats.com +www.meiluziai.info +www-meinauto.de +www.mellowads.com +www.menshealthweb.co +www.merchantapp.com +www.mercuras.com +www.merlin.co.il +www.merryholidays.org +www.merrymilkfoods.com +www.messagetag.com +www.metacount.com +www.metareward.com +www.metavertising.com +www.methodcasino2015.com +www.methode-binaire.com +www.metricsimage.com +www.mftracking.com +www.mgid.com +www.mgjmp.com +www.microsoft2010.com +www.microsoft-update.name +www.mightymagoo.com +www.mijnbladopdemat.nl +www.mikewine.tk +www.mikras.nl +www.milardi.it +www.mil-colores.com +www.milesdebanners.com +www.milkfountain.com +www.mimile8.com +www.minecraftzadarmo.pl +www.ming-dun.com.tw +www.minigameplanet.com +www.minionki.ewygrana.pl +www.mirrors.site50.net +www.misterjoy.ru +www.mktg-offer.com +www.mktrack.com +www.mlclick.com +www.mlinktracker.com +www.mlntracker.com +www.mlpoint.pt +www.mlstat.com +www.mm113.com +www.mm26.com +www.mmaaxx.com +www.mmapquest.com +www.mmgads.com +www.mmnetwork.mobi +www.mmstat.com +www.mmtracking.com +www.mnetads.com +www.mobatory.com +www.mobilejmp.com +www.mobireport.com +www.mobisciaga.pl +www.mobjmp.com +www.mochibot.com +www.modulartanks.com +www.mojezakupy.net +www.monarchslo.com +www.mondoperaio.net +www.monerominer.rocks +www.money4exit.de +www.moneywin24.com +www.mongoosemetrics.com +www.monkeyball.osa.pl +www.monofeel.com +www.monsonis.net +www.montacarichi.it +www.morefreecamsecrets.com +www.morevisits.info +www.mormonchurchgenealogy.com +www.motivacionyrelajacion.com +www.motofee.de +www.motoren.ru +www.motortecnica.org +www.moviedownloader.net +www.movie-port.ru +www.moviesfone.com +www.moviestarplanethack.info +www.mp3downloadhq.com +www.mp3helpdesk.com +www.mp3playersource.com +www.mplayerdownloader.com +www.mp-mail.nl +www.mpmotrk.com +wwwmpof.com +www.mpression.net +www.mprptrk.com +www.mpsnare.iesnare.com +www.mpsnare.iesnare.co.uk +www.mpxxtrk.com +www.msgtag.com +www.mshelp247.weebly.com +www.ms-mvp.org +www.msnsports.com +www.mspbooster.com +www.msp-hack.com +www.mtmsms.com +www.mtree.com +www.mudfall.com +www.mudmonster.org +www.mueller-holz-bau.com +www.multipops.com +www.mvav.com +www.myadsl.co.za +www.myaffiliateprogram.com +www.myairbridge.com +www.mycashback.co.uk +www.mycelloffer.com +www.mychoicerewards.com +www.mycleanerpc.com +www.mycleanpc.com +www.mycleanpc.tk +www.myclickbankads.com +www.mycoursesource.com +www.mycpvlife.com +www.mydati.com +www.mydreamdegree.com +www.myexclusiverewards.com +www.myfreedinner.com +www.myfreegifts.co.uk +www.myfreemp3player.com +www.mygiftcardcenter.com +www.mygreatrewards.com +www.mylike.co.uk +www.mylottoadserv.com +www.mylovecards.com +www.mylperu.com +www.myluvcrush.ca +www.mymailuk.co.uk +www.myoffers.co.uk +www.myoffertracking.com +www.mypagerank.net +www.myreferer.com +www.my-reward-channel.com +www.my-rewardsvault.com +www.myroitracking.com +www.mysearch.com +www.mysearch-engine.com +www.myseostats.com +www.myshopmarketim.com +wwwmyshopriteexperience.com +www.myshovel.com +www.mystat.pl +www.my-stats.com +www.mystats.nl +www.mytoplist.gen.tr +www.mytotalsearch.com +www.mytraf.info +www.mytraf.ru +www.myuitm.com +www.myusersonline.com +www.mywebsearch.com +wwwmywififiext.net +www.mywot.com +www.mywot.net +www.n149adserv.com +www.na47.com +www.nagroda-sms.pl +www.naiadsystems.com +www.naijakush.ml +www.najlepszedlaciebie.com +www.najtanszegryjava.pl +www.nakhit.com +www.nalook.com +www.nanoadexchange.com +www.naszasa.pl +www.nationalissuepanel.com +www.nationalsurveypanel.com +www.naturalgrowthstore.biz +www.naturesunshine.com +www.naughty-traffic.com +www.navigearinc.com +www.nbcsearch.com +www.nbrtrack.com +www.nbyuxin.com +www.ncsreporting.com +www.nctracking.com +www.ndparking.com +www.nearbyad.com +www.nedstat.com +www.nedstat.co.uk +www.nedstat.nl +www.needadvertising.com +www.needmorehits.com +www.neki.org +www.nelsongod.ca +www.neptuneads.com +www.nero-us.com +www.nestscape.com +www.netagent.cz +www.netcscape.com +www.netdirect.nl +www.netmaxx.com +www.netpalnow.com +www.netpaloffers.net +www.netpoll.nl +www.net-pratique.fr +www.netscae.com +www.neumashop.cl +www.neurotrascending.com +www.new-balance.ewygrana.pl +www.newclick.com +www.newcracks.net +www.neweed.org +www.neweuropetradings.com +www.newpassporn.com +www.news6health.com +www.newssourceoftoday.com +www.nextgenstats.com +www.nextlnk7.com +www.nextstudent.com +www.nexusddl.com +www.nexxis.com.sg +www.neyscape.com +www.ngads.com +www.nike.ewygrana.pl +www.nikey.cn +www.nikolamireasa.com +www.nimp.org +www.nine2rack.in +www.ninjadollars.com +www.nkgamers.com +www.nlbanner.nl +www.nmapquest.com +www.nnmclub.me +www.nobrain.dk +www.noiselolpainoff.com +www.noowho.com +www.northpoleitalia.it +www.nosilia.se +www.nospartenaires.com +www.notaverde.com +www.nothing-but-value.com +www.nothingcompares.co.uk +www.notrecommended.co.uk +www.novastarled.com +www.noveldocs.com +www.novemberrainx.com +www.nowgifttown.com +www.nowstat.com +www.nryb.com +www.nsrecord.org +www.ntdesk.de +www.ntdfbp.com +www.ntkrnlpa.info +www.ntsearch.com +www.nu26.com +www.nubijlage.nl +www.nutabuse.com +www.nutaku.com +www.nutten-verzeichnis.cxa.de +www.nuvon.com +wwwnwa.com +www.nwhomecare.co.uk +www.nysubwayoffer.com +www.nytadvertising.com +www.nytimes.no +www.oainternet.com +www.obanner.net +www.obesitycheck.com +www.objectopoly.info +www.obyz.de +www.ocpersian.com +www.octopusgirl.com +www.odbior-nagrody.pl +www.odliczamy.net +www.odszukaj-telefon.ienet.pl +www.offerent.com +www.offerx.co.uk +www.officialrdr.com +www.ohimmades.pw +www.ohiomm.com +www.oifc.in +www.oiluk.net +www.oinadserve.com +www.oix.com +www.oix.net +www.ojolink.fr +www.ojrq.net +www.oktrk.com +www.okulary3d.ewygrana.pl +www.oldceltoiradio.de +www-old.nastydollars.com +wwwoldnavy.com +www.oligamodel.com +www.omnicleaningservices.com +www.omniture.com +www.on2url.com +www.onadstracker.com +www.onclickpredictiv.com +www.onclicktop.com +www.one-door.com +www.onestat.com +www.onestatfree.com +www.oneund.ru +www.onlineadmin.net +www.onlinebestoffers.net +www.online-buyprednisone.com +www.online-city.ienet.pl +www.onlinedownloads.org +www.onlineloan-personal.net +www.online-ruletka.pl +www.online.sh.cn +www.onlineslotmaschine.com +www.onlinewebservice3.de +wwwonlneverfy.com +www.onlyfreeoffersonline.com +www.on.nimp.org +www.ontheweb.com +www.onwardclick.com +www.onwey.com +www.oofun.com +www.opendownload.de +www.opendownloadmanager.com +www.openinternetexchange.com +www.openload.de +www.openshares.info +www.opensoftwareupdate.com +www.opensoftwareupdater.com +www.operacjarzeka.pl +www.operator.ienet.pl +www.operatorium.ienet.pl +www.opinionlab.com +www.optiad.net +www.optiker-michelmann.de +www.optimization-methods.com +www.optimum-hits.com +www.oralse.ca +www.oralse.cx +www.orbiyz.com +www.oreidofitilho.com.br +www.oreware.com +www.oriceline.com +www.originalicons.com +www.orquestanacaona.cult.cu +www.os-downloads.com +www.ostsee-schnack.de +www.oszukacruletke.pl +www.otherinbox.com +www.otherossettlement.com +www.otosponsorki.pl +www.otsserver.com +www.ourfuckbook.com +www.outlinearray.com +www.out-lok.hpage.com +www.outwar.com +www.over50datingservices.com +www.owocowebabelki.pl +www.oxiads.fr +www.oz-offers.com +www.p3322.com +wwwpacebus.com +www.pacificpoker.com +www.pagerank10.co.uk +www.pager.site50.net +www.paime.com +www.painolympics.info +www.painolympics.org +www.pamoran.net +www.panazan.ro +www.pantanalvip.com.br +www.paperg.com +www.papierturm.de +www.paraskov.com +www.parkingcrew.net +www.parsads.com +www.partner-ads.com +www.partner.googleadservices.com +www.partycasino.com +www.pastie.org +www.pathforpoints.com +www.patrickhickey.eu +www.pawnauctions.net +www.paycounter.com +www.payn.me +www.paypaal.it +www.pay-pal.com-cgibin-canada.4mcmeta4v.cn +www.paypalcridit.com +www.paypalcz.cz +www.paypal-exchange.com +www.payperranking.com +www.pay-per-search.com +www.paypopup.com +www.payusatax.com +www.pccleaner.com +www.pccleanerpro.com +www.pc-detox.com +www.pcmatic.com +www.pcmightymax.net +www.pcpitstop.com +www.pcregistrycleaner.com +www.pcsecurityshield.com +www.pc-wallpapers.co.uk +www.pdf-platinum.info +www.peachy18.com +www.peakclick.com +www.peiceline.com +www.penera.pl +www.penix.nl +wwwpennys.com +www.penwithian.co.uk +www.people-choice-sites.com +www.pepipo.com +www.perderbarriga.me +www.performanceadexchange.com +www.performics.com +www.perilshed.info +www.permissionresearch.com +www.persgroepadvertising.nl +www.persianstat.com +www.persianstat.ir +www.personalcare-offer.com +www.personalcashbailout.com +www.personxing.in.net +www.perupuntocom.com +www.petpleasers.ca +www.petrafashion.com +www.petrenko.biz +www.petsmovies.com +www.pfaltzgraf.com +www.pfhsystem.com +www.pflexads.com +www.pgalvaoteles.pt +www.pgathailand.com +www.pheedo.com +www.phoenixads.co.in +www.phonearena.pl +www.phonejapan.com +www.phorm.com +www.phormlabs.com +www.photo-ads.co.uk +www.php4you.biz +www.phpoutsourcingindia.com +www.piardofon.pl +www.pick-savings.com +www.picture-uploads.com +www.pieiron.co.uk +www.piekielnakuchnia.mobi +www.pieniadze-pieniadze.com +www.pills-home.com +www.pillsmoney.com +www.pinion.gg +www.pinoytv.ru +www.pixazza.com +www.pixelpmm.info +www.pixeltrack66.com +www.pixha.net +www.placelocal.com +www.plarium.com +www.plasmatv4free.com +www.plasmatvreward.com +www.platinumbucks.com +www.playerassist.com +www.playersaid.com +www.playfromcolumbiahouse.com +www.playgril.com +www.playlott.com +www.playsataion.com +www.playsations.com +wwwplaysite.com +www.playstatation.com +www.playtasia.se +www.playu.de +www.plumsoftware.co.uk +www.poesiadelsud.it +www.pointclicktrack.com +www.pointroll.com +www.pokemonporno.com +www.poker4spain.com +www.pokeradar.io +www.poker.cm +www.poker-new.com +www.poker-unique.com +www.politicalopinionsurvey.com +www.pollmonkey.com +www.polnolunie.com +www.poloatmer.ru +www.polskasupermarkecie.website +www.pomboma-promo.com +www.popadvert.com +www.poponclick.com +www.poppers-rush.ru +www.popunder.com +www.popunder.ru +www.popupad.net +www.popupdomination.com +www.popupmoney.com +www.popuptraffic.com +www.popuptrafic.com +www.popuptraf.ru +www.pornoboliviano.com +www.pornoinfantil.com +www.porno-lesben.cxa.de +www.pornsponsors.com +www.portaldimensional.com +www.portalrodzinny.pl +www.port.bg +www.postads24.com +www.postmasterbannernet.com +www.postmasterdirect.com +www.postnewsads.com +www.powerlinks.com +www.powerturk.rocks +wwwpowerwarranties.com +www.poxudeli.ru +www.ppctracking.net +www.ppwfb.com +www.praceline.com +www.prawdziwe-konkursy.pl +www.praxisww.com +www.prdirectory.biz +www.precisioncounter.com +www.predictad.com +www.predictivadnetwork.com +www.predictivesearch.com +www.preligions.com +www.premieropinion.com +www.premiumholidayoffers.com +www.premiumpedia.com +www.premiumproductsonline.com +www.premium-reward-club.com +www.premiumsmail.net +www.pressurespot.com +www.prevent-asian-flu.com +www.prezentofon.pl +www.pr-free.de +www.priiceline.com +www.primosearch.com +www.printmail.biz +www.privatamateure.com +www.privdog.com +www.prizes.co.uk +www.prjcode.com +www.proascolcolombia.com +www.probabilidades.net +www.pro.clanweb.cz +www.productopinionpanel.com +www.productresearchpanel.com +www.producttestpanel.com +www.professionalblackbook.com +www.professionalcash.com +www.profill-smd.com +www.profitboosterapp.com +www.profitsitesbiz.com +www.profitzone.com +www.proflashdata.com +www.progettocrea.org +www.program3.com +www.projectwonderful.com +www.projesite.com +www.prolapseman.com +www.prometsrl.org +www.promobenef.com +www.promo.com.au +wwwpromoter.com +www.promotion-campaigns.com +www.propan.ru +www.pro-partners.nl +www.prorodeosportmed.com +www.pro.webstat.pl +www.prriceline.com +www.psc.ewygrana.pl +www.psclicks.com +www.pstats.com +www.ptp4ever.net +www.ptraliplahndo.ru +www.pubdirecte.com +www.pulsimo.com +www.pulsix.com +www.pumpkin.co.uk +www.pumpsrus.com +www.punishtube.com +www.pureadexchange.com +www.puroclean.com +www.purplehorses.net +www.purredheanb.online +www.pussygreen.com +www.pussysaga.com +www.puush.in +www.px24.com +www.pythonpays.com +www.qantasairways.net +www.qbop.com +www.qgtjhw.com +www.qhdast.com +www.qitrck.com +www.qksrv.net +www.qksz.net +wwwq.net +www.qqkabb.com +www.qssa.co.uk +www.qsstats.com +www.quad-cleaner.com +www.qualityindustrialcoatings.com +www.quantserve.com +www.quareclk.com +www.quickbitsdownloads.com +www.quickbrowsersearch.com +www.quickcash-system.com +www.quickcreditscore.co.uk +www.quickloanbank.com +www.quinnwealth.com +www.qzip.cjb.net +www.r2prod.com +www.racingandclassic.com +www.radiate.com +www.rampidads.com +www.randki-sex.com +www.random-logic.com +www.randppro-cuts.com +www.rank3w.com +www.ranking-charts.de +www.ranking.com +www.ranking-counter.de +www.ranking-hits.de +www.ranking-links.de +www.rankmaschine.de +www.rankyou.com +www.rapidcounter.com +www.rashtrahit.org +www.ratemodels.net +www.rauchentzug.de +www.ravel-rewardpath.com +wwwrbs.com +www.rd-direct.com +www.readnotify.com +wwwrealator.com +www.realincestvideos.com +www.realinnovation.com +www.realist.gen.tr +www.realtextads.com +www.realtracker.com +www.rebeccacella.com +www.recreation-leisure-rewardpath.com +www.redactiepartners.nl +www.redemptionengine.com +www.redhotchilli.co.uk +www.redhotfreebies.co.uk +www.redirectingat.com +www.redirectme.net +www.redroomnetwork.com +www.redsheriff.com +www.reducelnk.com +www.reduxmediia.com +www.reefclubcasino.com +www.reelcentric.com +www.refer.ru +www.reg-cleaners.com +www.regdefense.com +www.regflow.com +www.registrarads.com +www.registrycleanerforvista.com +www.registry-cleaner.net +www.registrycleanerpro.net +www.registrycleaner-reviews.net +www.registry-cleaners-compared.com +www.registrycleanersreviewed.com +www.registrycleanertechnology.com +www.registrycleanertop.com +www.registry-clean-up.net +www.registrydefender.com +www.registry-error-cleaner.com +www.registryfix.com +www.registrysweeper.com +www.reifen-simon.com +www.reklam3.net +www.reklamzadserver.com +www.relevantknowledge.com +www.relmaxtop.com +www.remotrk.com +www.removearrest.com +www.rempko.sk +www.rentfromart.com +www.researchnow.co.uk +www.resolvingserver.com +www.restore-pc.com +www.res-x.com +www.revcontent.com +www.revisitors.com +www.rewardblvd.com +www.rewardhotspot.com +www.rewardsflow.com +www.rewardsnow.co.uk +www.rewardszoneusa.com +www.rhydel.site +www.ribcagebags.com +www.riccardochinnici.it +www.rickparty.com +www.rickrolling.com +www.rightmedia.com +www.rightmedia.net +www.rightstats.com +www.rimmugygur.is +www.ringtonematcher.com +www.ringtonepartner.com +www.riskymail4free.com +www.ristoromontebasso.it +www.rivasearchpage.com +www.riverwalktrader.co.za +www.rkdms.com +www.robsxxx.com +www.robtopol.in +www.rockingclicks.com +www.rocks.io +www.roispy.com +www.rokus-tgy.hu +www.roltek.com.tr +www.romanticmaui.net +www.romepartners.com +www.root--servers.org +www.rooversadvocatuur.nl +www.roslinkivsrobale.pl +www.roulettebotplus.com +www.rovdyrdebatt.org +www.rovion.com +www.rowanmclean.com +www.rozrywkabox.com +www.rscounter10.com +www.rsptrack.com +www.rsrly.com +www.rst-velbert.de +www.rtcode.com +www.rubanners.com +www.rubiks.ca +www.rubyfortune.com +www.ruclicks.com +www.rusdosug.nu +www.russian-sex.com +www.rwpads.net +www.s2d6.com +www.sa44.net +www.sacredphoenix.com +www.sade-ecrivain.com +www.saemark.is +www.safelinking.net +www.safemobilelink.com +www.safenetdir.com +www.safepccleaner.com +www.safesoftware182.com +www.sagent.io +www.sailing3.com +www.sakheer.com +www.salentoeasy.it +www.salesonline.ie +www.salldo.de +www.salseras.org +www.samaclub.com +www.sammachivonline.com +www.samsclub33.pochta.ru +www.samsung.ewygrana.pl +www.sankyo.gr.jp +www.sanoma-adverteren.nl +www.sanseracingteam.com +www.sasdiskcleaner.com +www.sasenergia.pt +www.sasson-cpa.co.il +www.save-plan.com +www.savings-specials.com +www.savings-time.com +www.sayfabulunamadi.com +www.sayherbal.com +www.sayitoutloud.de +www.sbcmsbmc.com +www.sbo.it +www.scambiobanner.tv +www.scanmyphones.com +www.scanspyware.net +www.scantanzania.com +www.schuh-zentgraf.de +www.schwarz-weisses.de +www.schwule-boys-nackt.cxa.de +www.scoreadate.com +www.scoremygift.com +www.scotiaonline.scotiabank.salferreras.com +www.screen-mates.com +www.scrollbelow.com +www.sdlpgift.com +www.sdspropro.co.ua +www.seal-technicsag.ch +www.search2007.info +www.searchacross.com +www.searchadv.com +www.searchapps.me +www.searchatomic.com +www.searchdiscovered.com +www.searchforit.com +www.searchfwding.com +www.searchignited.com +www.searchinquire.com +www.searchmachine.com +www.searchmagna.com +www.searchmagnified.com +www.searchnet.com +www.searchnigeria.net +www.searchnut.com +www.searchremagnified.com +www.searchresultsguide.com +www.searchtoexplore.com +www.searchv.com +www.searchwe.com +www.seasonalsamplerspecials.com +www.sebastienleduc.com +www.sebcotrk.com +www.secondome.com +www.secretbehindporn.com +www.secretosx.com +www.securecontactinfo.com +www.securemypc.co.uk +www.securepaths.com +www.secure-processingcenter.com +www.securerunner.com +www.securesignupoffers.net +www.securesignupoffers.org +www.securetracking2.com +www.securetrk1.com +www.securityscan.us +www.sedoparking.com +www.sedotracker.com +www.sedotracker.de +www.sedoxo.ewygrana.pl +www.seductiveamateurs.com +www.seehits.com +www.seekbang.com +www.seekways.com +www.segredodemarketing.com +www.sekel.ch +www.selfpwn.org +www.selfsurveys.com +www.sellmeyourtraffic.com +www.sendfwd.com +www.sendingmarketing.com +www.sendori.com +www.sentrol.cl +www.seoholding.com +www.seonetwizard.com +www.seo-portal.ro +www.seralighting.it +www.serials.ws +www.servedby.advertising.com +www.serveradobe.co.cc +www.servertasarimbu.com +wwwservicemerchandise.com +www.sevenstars7.com +www.sexadvertentiesite.nl +www.sexcount.de +www.sexfind.com +www.sexinyourcity.com +www.sexmoney.com +www.sexpartnerx.com +www.sexpicsmovies.com +www.sexsponsors.com +www.sextracker.com +www.sextronix.com +www.sexyads.net +www.sexy-kamerki.ienet.pl +www.sexytiger.ru +wwwsfmta.com +www.shareasale.com +www.shareaza.com +www.share-server.com +www.shc-rebates.com +www.shinilchurch.net +www.shinystat.com +www.shinystat.it +www.shockcounter.com +www.shopathome.com +www.shopperpromotions.com +www.shopping-artikel.de +www.shoppingjobshere.com +www.shoppingminds.net +www.shopping-offer.com +www.shoppingsiterewards.com +www.shops-malls-rewardpath.com +www.shoptosaveenergy.com +www.shore-view.com +www.shotalove.net +www.showcaserealestate.net +www.sieltre.it +www.sijmp.com +www.silveragesoftware.com +www.silvercash.com +www.simplecounter.net +www.simpli.fi +www.simsweek.pl +www.sinera.org +www.singlesadnetwork.com +www.singular-cy.com +www.siom.ac.cn +www.sirius-expedition.com +www.sitecounter.be +www.site-id.nl +www.sitemeter.com +www.sitepalace.com +www.sitestat.com +www.sitestats.com +www.sitestatslive.com +www.sitetagger.co.uk +www.sitetracker.com +www.sixsigmatraffic.com +www.sizzle-savings.com +www.sj88.com +www.skassets.com +www.skattabrain.com +www.skypeclass.com +www.skypefr.com +www.skyperec.com +www.slapintins.publicvm.com +www.slivki.com.ua +www.slorent.com +www.slutloadlive.com +www.smartadserver.com +www.smartgiveaway.com +www.smartgvcfunding.com +www.smartlinks.dianomi.com +www.smartlog.ru +www.smartredirect.de +www.smartscan.ro +www.smart-scripts.com +www.smarttargetting.com +www.smartwatch.ewygrana.pl +www.smbscbmc.com +www.smcbscbs.com +www.smichovbike.cz +www.smithwick.net +www.smokersopinionpoll.com +www.smsmovies.net +www.smspop.com +www.snapchat.ienet.pl +www.sneakyboy.com +www.sochr.com +www.sociallypublish.com +www.softcha.com +www.softtube.cn +www.software-phile.com +www.softwareviews.net +www.soidc.com +www.someonewhocares.com +www.sompuserve.com +www.sonnoli.com +www.sonyplaystion.com +www.soongu.info +www.sostox.com +www.sourmath.com +www.spamnuker.com +www.spasms.de +www.specialgiftrewards.com +www.specialonlinegifts.com +www.specials-rewardpath.com +www.specialstat.com +www.specificclick.com +www.specificmedia.com +www.specificpop.com +www.specilized.com +www.specjalniedlaciebie.com +www.speedboink.com +www.speedcount.de +www.speedcounter.net +www.speedcounts.com +www.speedrep.com +www.speedtestbeta.com +www.speedyclick.com +www.spiderbait.com +www.spinbox.com +www.spinbox.net +www.spiritueelcentrumaum.net +www.spklds.com +www.splem.net +www.sp-niemyslow.pl +www.sponsorads.de +www.sponsoradulto.com +www.spookylinks.com +www.sporhaberiniz.com +www.sports-bonuspath.com +www.sports-fitness-rewardpath.com +www.sportsinteraction.com +www.sports-offer.com +www.sports-offer.net +www.sports-premiumblvd.com +www.sport-stream.ienet.pl +www.sportygorskie.pl +www.spotsniper.ru +www.spreadyourtentacles.com +www.spris.com +www.spunkycash.com +www.spyarsenal.com +www.spylog.com +www.spylog.ru +www.spywarebegone.com +www.spywareit.com +www.spywarenuker.com +www.spywarespy.com +www.sq2trk2.com +www.srn.net.in +www.srv2trking.com +www.ss-01.com +www.stamplive.com +www.staradvertiser.co +www.star-advertising.com +www.startnewtab.com +www.startnow.com +www.start-page.org +www.stat24.com +www.statcount.com +www.statcounter.com +www.stat.pl +www.stats4free.de +www.statsector.hu +www.statsession.com +www.statsforever.com +www.stats.in.th +www.stats.net +www.stattrax.com +www.steamtraffic.com +www.stephens-laughlin.com +www.stickylogic.com +www.stiffnetwork.com +wwwstillwaterinsurance.com +www.stimul-m.com.ua +www.stirparts.ru +www.stkjw.net +www.stockhostingvault.com +www.stopphoulplay.com +www.stop-sign.com +www.strangeduckfilms.com +www.strawpoii.me +www.streamate.com +www.streamatelive.com +www.streamen.com +www.streaming.xcc24.pl +www.streams.ienet.pl +www.streetfile.org +www.stressx.org +www.striemline.de +www.stripteas.com +www.stsoftware.biz +www.sttvisa.com +www.studiochiarelli.eu +www.studiolegaleabbruzzese.com +www.subfix.de +www.subsitesadserver.co.uk +www.successgroupiitjee.com +www.sucherle.de +www.suckdude.com +www.sudokuwhiz.com +www.sugarsync.com +www.sunbrehden.top +www.sundayregister.com +www.sunidaytravel.co.uk +www.sunonsunday.com +www.sunonsunday.co.uk +www.super8service.de +www.superbanner.org +www.super-barman.pl +www.superbrewards.com +www.superclix.de +www.superinterstitial.com +www.superpyton.pl +www.supersonicads.com +www.support.apple.com-notice.info +www.supremeadsonline.com +www.supremehits.net +www.suprsonic.com +www.surch.co.uk +www.surfaccuracy.com +www.surplus-suppliers.com +www.surveynetworks.com +www.surveysite.com +www.suscotrk.com +www.svarkon.ru +www.swanksoft.com +www.sweetsforfree.com +www.swingingcommunity.com +www.sylicomservicios.com +www.symantex.com +www.symbiosting.com +www.syncaccess.net +www.synovite-scripts.com +www.system4.nl +www.system-live-media.cz +www.t5.ro +www.taba.site +www.ta.com.tw +www.taffr.com +www.tag4arm.com +www.tagclearbits.com +www.tagzone.site +www.talentbroker.net +www.tamilrockers.link +www.tamprc.com +www.t-analytics.com +www.tangabilder.to +www.tanger.com.br +www.tao123.com +www.tapair.com +www.tarakc1.net +www.target.cm +wwwtarget.com +www.targeted-banners.com +www.targetingnow.com +www.tattooshaha.info +www.tavelscape.com +www.tcimg.com +www.td583.com +www.tdcanadatrusy.com +www.tdms.saglik.gov.tr +www.te81.net +www.teachersfc.org +www.teb-bireysell.com +www.techbargins.com +www.technix.it +www.tekyalhaja.xyz +www.terraclicks.com +www.terrapops.com +www.testery.ewygrana.pl +www.test-iq.ienet.pl +www.testracking.com +www.test-zdrady-na-telefon.pl +www.textads.biz +www.textadvertising.com +www.textbanners.net +www.text-link-ads.com +www.textlinkads.com +www.textlink.cz +www.textsrv.com +www.t-gas.co.uk +www.tgpmanager.com +www.thatrendsystem.com +www.thatsjustgay.com +www.thatsphucked.com +www.theads.me +www.theaffiliateprogram.com +www.the-best-movies.xcc24.pl +www.thebighits.com +www.thebigoutdoors.co.uk +www.the-binary-options-guide.com +www.the-binary-theorem.com +www.thebugs.ws +www.thecounter.com +www.the-counter.net +www.thedatesafe.com +www.thedatingconference.com +www.the-discount-store.com +www.theexgirlfriends.com +www.thefreepremiummy15.com +www.thehomo.org +www.themacuser.org +www.themexp.org +www.themillionaireinpjs.net +www.the-path-gateway.com +www.thepounder.com +www.theprofitsmaker.net +www.theroamingjew.com +www.thesearchagency.net +www.thesearchster.com +www.thesexcinema.com +www.the-smart-stop.com +www.thesocialsexnetwork.com +www.thesparkmachine.com +www.thesunonsunday.com +www.thesunonsunday.co.uk +www.thesurfshield.com +www.thetop10.com +www.thetop.be +www.thetraderinpajamas.com +www.theuseful.com +www.theuseful.net +www.thewaycloud.com +www.theweatherspace.com +www.thickcash.com +www.thinktarget.com +www.thinlaptoprewards.com +www.thomchotte.com +www.thoosje.com +www.thoroclean.com +www.thoughtfully-free.com +www.thruport.com +www.thumser-online.de +www.tiergestuetzt.de +www.tinaborg.com +www.tinbuadserv.com +www.tinka.ru +www.tkdami.net +www.tkqlhce.com +www.tldtgs.com +www.tnctrx.com +www.tns-counter.ru +www.togelive.com +www.tomnhoithit.com +www.tomtomnavigation.org +www.tons-to-see.com +www.toochattoo.com +www.toolbarcounter.com +www.toomami.com +www.toondinsey.com +www.toon-families.com +www.toonfamilies.net +www.top100lists.ca +www.top100.lt +www.top100.ro +www.top10registrycleaners.com +www.top1.ro +www.top20free.com +www.top25.ro +www.top300.ro +www.top90.ro +www.top99.ro +www.topadult.ro +www.topblogging.com +www.topblogs.com.ph +www.topbrandrewards.com +www.topconsumergifts.com +www.topdemaroc.com +www.toplist.cz +www.toplistim.com +www.toplist.sk +www.topmeds10.com +www.topqualitylink.com +www.top-rank.pl +www.topsiteguide.com +www.topsites24.de +www.topsites24.net +www.topsiteuri.ro +www.toptracker.ru +www.torgi.kz +www.toriyo.tj +www.toroadvertisingmedia.com +www.torrent.pl +www.torrenty-org.pl +www.torturespank.com +www.tossm.com +www.tostadomedia.com +www.totaladperformance.com +www.totalfax.net +www.totemcash.com +www.totszentmarton.hu +www.touchclarity.com +www.tourindia.in +www.toursbitsstock.com +www.towerecords.com +www.toy-offer.com +www.toy-offer.net +www.tpt.edu.in +www.tqlkg.com +www.tr100.net +www.tr553.com +www.tracc.it +www.tracemyip.org +www.track2cash.com +www.trackadvertising.net +www.trackbacksecure.com +www.trackertracker.com +www.tracki112.com +www.trackingclick.net +www.trackingstatalytics.com +www.tracklead.net +www.trackzapper.com +www.tradeadexchange.com +www.tradedoubler.com +www.tradedoubler.com.ar +www.tradem.com +www.traff1.com +www.traffic4u.com +www.trafficads.com +www.trafficbeamer.com +www.trafficbeamer.nl +www.trafficcenter.de +www.trafficflame.com +www.trafficg.com +www.traffichaus.com +www.trafficmagnet.net +www.trafficnetworkads24.com +www.trafficpace.com +www.trafficresults.com +www.trafficrevenue.net +www.traffictrader.net +www.traffictraders.com +www.trafficzap.com +www.traficmax.fr +www.trafic.ro +www.trafix.ro +www.trafsearchonline.com +www.trails.nu +www.traktrafficflow.com +www.traktum.com +www.travekocity.com +www.traveladvertising.com +www.travelasity.com +www.travelcape.com +www.traveliocity.com +www.travel-leisure-bonuspath.com +www.travel-leisure-premiumblvd.com +www.traveller-offer.com +www.traveller-offer.net +www.travelncs.com +www.travelocidy.com +www.travelocite.com +www.travelocitu.com +www.travelocityca.com +www.travelocityt.com +www.travelocoity.com +www.travelogity.com +www.traveloicty.com +www.traveloocity.com +www.traveloscity.com +www.travelovity.com +www.traveolocity.com +www.travlers.com +www.treavelocity.com +www.treeloot.com +www.trendcounter.com +www.trendnews.com +www.trendsonline.biz +www.trendsonline.me +www.trendsonline.mobi +www.tribalfusion.com +www.triplequadturbo.com +www.trk4.com +www.trkfl.com +www.trkingace.com +www.trkr1.com +www.trndsys.mobi +www.trqvelocity.com +www.trucktirehotline.com +www.true-counter.com +www.trusearch.net +www.trustgauge.com +www.trustsoft.com +www.trutedid.com +www.trvelocity.com +www.trx625.com +www.t-sb.net +www.tsgonline.com +www.ttnet.yandex.com.tr +www.tubehits.com +www.tubgirl.me +www.tubgirl.org +www.tuckows.com +www.tumri.net +www.turdgasm.com +www.turkeyrank.com +www.turn.com +www.tutop.com +www.tuttosessogratis.org +www.tvnews.or.kr +www.tvshowslist.com +wwwtwa.com +www.twairlines.com +www.twoj-voucher.com +www.two-of-us.at +www.twskype.com +www.twttr.com +www.tw.vipbeanfun.com +www.tylko-dla-ciebie.com +www.tynt.com +www.tzw.com +www.u1trkqf.com +www.ugdturner.com +www.ukantivirus.co.uk +www.ukbanners.com +www.ukrpts.net +www.uleadstrk.com +www.ultimatecounter.com +www.ultimatefashiongifts.com +www.ultimatetopsites.com +www.unblockfacebook.co.uk +www.unblocksit.es +www.undertonenetworks.com +www.unicaitaly.it +www.unicast.com +www.uniglass.net +wwwunigo.com +www.unionleisurewear.com +www.uniqebrokeroffers.com +www.uniqueinternettexasholdempoker.com +www.universal-traffic.com +www.unlimiclick.com +www.unrealcommander.biz +www.unrealcommander.com +www.unrealcommander.org +www.update-java.kit.net +www.updatestar.com +www.updo.nl +www.upi6.pillsstore-c.com +www.uploadh.com +www.upproar.com +www.uproar.com +wwwuproar.com +www.uprour.com +www.uptodatecontent.net +www.uqz.com +www.urdoot.win +www.uriyuri.com +www.urlcash.net +www.urldelivery.com +www.usadserver.com +www.usaenterprise.com +www.usaphotocopyservice.com +www.usatravel-specials.com +www.usatravel-specials.net +www.us-choicevalue.com +www.usemax.de +www.usenetjunction.com +www.usersonlinecounter.com +www.us.kctctour.com +www.us-topsites.com +www.utarget.co.uk +www.uvatech.co.uk +www.v3club.net +www.v61.com +www.vacationcellular.net +www.validatedsite.com +www.validview.com +www.valueclick.com +www.valuehost.co.uk +www.vanguardair.com +www.vasanthkumar.com +www.vclicks.net +www.vdhu.com +www.vdtrack.com +www.velmedia.net +www.venturead.com +www.vertadnet.com +www.vertourmer.com +www.very-koi.com +www.verypositiveus.com +www.via22.net +www.via99.org +www.viagra-home.com +www.vibrantmedia.com +www.victory.com.pl +www.video-game-rewards-central.com +www.videogamerewardscentral.com +www.videohube.eu +www.videolove.clanteam.com +www.videomediagroep.nl +www.videosongplayer.com +www.videostan.ru +www.view4cash.de +www.villalecchi.com +www.vinyljazzrecords.com +www.vipcpms.com +www.vipmingxing.com +www.vippotexa.ru +www.vipromoffers.com +www.virtualsurfer.com +www.virtumundo.com +www.visitor-track.com +www.visitortracklog.com +www.visits.lt +www.vitorrentz.in +www.vivaimontina.com +www.vivo7.com +www.vizury.com +www.vjsoft.net +www.vk2ca.com +www.v-links.net +www.vmay.com +www.vmcsatellite.com +www.vntanktransport.com +www.voicefive.com +www.vokr-gtavc.ic.cz +www.volleyball-doppeldorf.de +www.vomitgirl.org +www.voucher-for-you.online +www.vpnaffiliates.com +www.vq918450.com +www.vroll.net +www.vstats.net +www.vthought.com +www.vtoyshop.com +www.vulcannonibird.de +www.vvpan.com +www.vvvic.com +www.vydoxtrial.com +www.w3counter.com +wwww.8cr.purredheanb.online +wwww.adleads.com +www.walkintubb.bid +www.walkthedinosaur.com +www.wallpapers91.com +wwwwal-mart.com +www.wannawatch.com +www.wantsfly.com +www.warco.pl +www.warezaccess.com +www.warezkeeper.com +www.warioland.com +www.watch24.com +www.waterpipe.ca +www.wayrestylephotoblog.com +www.wdm29.com +www.wdmwebs.us +www.weathet.com +www.web3000.co.uk +www.webabrufe.de +www.webalize.net +www.webanalyser.net +www.webandcraft.com +www.webcashvideos.com +www.web-chart.de +www.webclients.net +www.webcompteur.com +www.webconnect.net +www.webcounter.com +www.web-feed.net +www.webfolder.v21.pl +www.webgozar.ir +www.webhits.de +www.webhostingcounter.com +www.webmoblink.com +www.webpaypal.com +www.webservices-rewardpath.com +www.webservis.gen.tr +www.websitealive3.com +www.website-hit-counters.com +www.websitehome.co.uk +www.websitepromoten.be +www.webspectator.com +www.websponsors.com +www.web-stat.com +www.webstat.com +www.webstats4u.com +www.webstat.se +www.webtistic.com +www.webtrackerplus.com +www.webtraxs.com +www.webtrekk.net +www.webtrends.net +www.webwise.com +www.webwise.net +www.webwise.org +www.wegetpaid.net +www.weitclick.de +www.wellsfarg0-onllne.net +www.weownthetraffic.com +www.werkenbijliones.nl +www.westbournec.com +www.westerntaneyfire.com +www.westreclameadvies.nl +www.wewillrocknow.com +www.whalecashads.com +www.whatuwhatuwhatuwant.com +www.whengirlsgowild.com +www.whereugetxxx.com +www.whipcrack.org +www.whiteboxin.com +www.whitesmoke.com +www.whitesmoke.us +www.whitesports.co.kr +www.widebanner.com +www.widespace.com +www.widestep.com +www.widgetbucks.com +www.wigetmedia.com +www.wigglewoo.com +www.wilddreams.info +www.wildsap.com +www.wildscapes.pro +www.willcommen.de +www.williamhill.es +www.willysy.com +www.winadiscount.com +www.winaproduct.com +www.wincleaneras.com +www.wincleaner.com +www.windaily.com +www.winnerschoiceservices.com +www.winscholarship.com +www.win-spy.com +www.witkey.com +www.wkmg.co.kr +www.wmediaplayernow.com +www.wmmax.com +www.wmserver.net +www.w.nolimit-video.com +www.wojnaczolgow.pl +www.wojownicyzulicy.pl +www.wordplaywhiz.com +www.wordseach.com +www.work-offer.com +www.worldata.com +www.wormgush.com +www.worry-free-savings.com +www.wowjs.1www.cn +www.wppluginspro.com +www.wpxn.com +www.wrestlingexposed.com +wwww.ricevillage.com +www.writingassociates.com +www.wtp101.com +www.wundercounter.com +www.wwaol.com +www.wwfsable.com +www.ww-tv.net +www.www4search.net +www.wwwadultcheck.com +www.wwwalaskaair.com +www.wwwal.com +www.wwwaolmail.com +www.wwwbackstreetboys.com +www.wwwbigfoot.com +www.wwwbluelight.com +www.wwwbluemountian.com +www.wwwbluemoutain.com +www.wwwbowcreek.com +www.wwwbudget.com +www.wwwcallwave.com +www.wwwcareerpath.com +www.wwwcdnow.com +www.wwwcheaptickets.com +www.wwwcnnnews.com +www.wwwdiscounthotel.com +www.wwwdiynet.com +www.wwwdollar.com +www.wwwfacebook.com +www.wwwgamepro.com +www.wwwgameshark.com +www.wwwgmacmortgage.com +www.www-google.nl +www.wwwgoogles.com +www.wwwmancow.com +www.wwwnwa.com +www.wwwoldnavy.com +www.wwwplaysite.com +www.wwwrealator.com +www.wwwservicemerchandise.com +www.wwwtarget.com +www.wwwtwa.com +www.wwwuproar.com +www.wwwwal-mart.com +www.wygraj-skiny.win +www.wykop.net.pl +www.wykreslanka.com.pl +www.wyroki.eu +www.wysistat.com +www.xaxis.com +www.xbn.ru +www.xchangetrak.com +www.xclicks.net +www.xcr-286.com +www.x-diesel.biz +www.x-diesel.com +www.x-diesel.info +www.x-diesel.org +www.xed.pl +www.xg4ken.com +www.xicaxique.com.br +www.xiruz.kit.net +www.xiti.com +www.xl-rank.com +www.xmhbcc.com +www.xntk.net +www.xossipx.top +www.x-park.net +www.xpays.com +www.xpop.co +www.x-pronet.com +www.xruletka.pl +www.xsedu.zj.cn +www.xstat.pl +www.xtds.info +www.xtewx.com +www.xtrafic.ro +www.xvideoslive.com +www.xvika.net +www.xvika.org +www.xxxbannerswap.com +www.xxxcounter.com +www.xxxnations.com +www.xxxnightly.com +www.xxxtoolbar.com +www.xxxwebtraffic.com +www.xy7track.com +www.xyfex.com +www.xyztraffic.com +www.y8.com +wwwyamahabicycles.com +www.yataro.jp +www.yc1234.com +www.yceml.net +www.ydhyjy.com +www.yibaruxet.cn +www.yidongguanye.com +www.yidsense.com +www.yieldmanager.net +www.yieldpartners.com +www.yieldtraffic.com +www.ymxpb.com +www.yntscp.com +www.youaresogay.com +www.youcanoptout.com +www.youcanoptout.net +www.youcanoptout.org +www.youf1le.com +www.youfck.com +www.youfileisoft.com +www.youfiletor.com +www.youho.com +www.yourdedicatedhost.com +www.yourdvdplayer.com +www.yourfreegascard.com +www.yourfuckbook.com +www.yourgascards.com +www.yourgiftrewards.com +www.your-gift-zone.com +www.yourgiftzone.com +www.yourhandytips.com +www.yourhitstats.com +www.yourhotgiftzone.com +www.youripad4free.com +www.yourlustmedia.com +www.yourrewardzone.com +www.yoursmartrewards.com +www.yourstats.net +www.youtuhe.com +www.ypmadserver.com +www.ypmate.com +www.yrals.com +www.yserch.com +www.ytdownloader.com +www.yvmads.com +www.ywvcomputerprocess.info +www.zal-inkasso.de +www.zanox-affiliate.de +www.zapto.org +www.zapunited.com +www.zarobek4u.com +www.zarobicpieniadze.com +www.zarobicprzezinternet.com +www.zarrmarketing.co.uk +www.zatzy.com +www.zbest.in +www.zbippirad.info +www.zctei.com +www.zedo.com +www.zemgo.com +www.zentastic.com +www.zergnet.com +www.zeronegames.com.br +www.zeroredirect2.com +www.zevents.com +www.zipitfast.com +www.zlokalizuj.ienet.pl +www.zlothonline.info +www.zlotyskok.pl +www.zoodrawings.com +www.zoogdiesney.com +www.zoogdinsney.com +www.zoogdisany.com +www.zoogdiseny.com +www.zoogdisiny.com +www.zoogdisny.com +www.zooggames.com +www.zoomovies.org +www.zoompegs.com +www.zoophil.com +www.zoosexart.com +www.zootoplist.com +www.zootravel.com +www.zugo.com +www.zuverink.net +www.zwierzakiatakuja.pl +www.zytpirwai.net +www.zyxyfy.com +wxfzkd.com +wxjflab.com +wxrcvqfqtdgh.com +wxy.bnuep.com +wy.5.p2l.info +wyatb.com +wybierz-nagrode.pl +wyciskanie-pryszcza.blogspot.com +wycyxtnqe.top +wydawca.lead.network +wyf003.cn +wygrajfidgetspinner.pl +wygrajgiftcard.pl +wygraj-iphone6s.pl +wygrajjacka.pl +wygrajnike.blogspot.com +wygrajpsc.eu +wygrajriotsy.pl +wygrajskiny.pl +wygraj-skiny.win +wygraj-teraz.com +wygrajz5.pl +wygrane24.com.pl +wygrane-konkurs.pl +wygrania.com +wygrywa.pl +wyklady.com +wykop.hit.gemius.pl +wykop.net.pl +wylosujgry.pl +wyngatefarms.com +wyniki-konkurs.eu +wyniki-konkursu2017.eu +wyniki-lista.pl +wyo.co +wyominggrassfed.com +wypad3k0.blogspot.com +wypratama.co.id +wypromuj.nazwa.pl +w.zeroredirect.com +wzfmxlrrynnbekcqzu.com +wzgyyq.com +wzscales.com +wzxkpfigm.top +x0md.r0tfo.top +x107nqa.com +x17online.us.intellitxt.com +x1sdwn8.com +x25.2mydns.com +x25.plorp.com +x2.xclicks.net +x3dgames.net.ru +x3.extreme-dm.com +x3-team.ru +x3.xclicks.net +x4.lov3.net +x4.xclicks.net +x5sbb5gesp6kzwsh.homewind.pl +x5.xclicks.net +x65zz.popularprizes.8981275.com +x6x.a.la +x6.xclicks.net +x6.yakiuchi.com +x86adserve006.adtech.de +x888x.myserver.org +x8bhr.com +x8x.dyndns.dk +x8x.trickip.net +x9qjl1o3yc.seojee.com +xa58.cn +xactive.xyz +x.admob.com +xads.zedo.com +xaijo.com +xamateurpornlic.www1.biz +xanax-online.dot.de +xanax-online.run.to +xanax-online.sms2.us +xanax.ourtablets.com +xanax-store.shengen.ru +xanax.t-amo.net +xanaxxanax.3xforum.ro +xanjan.cn +xanthan.ir +xapi.juicyads.com +xap.ss.la +xarxesnetworking.com +xavierbier.com +xawards.pl +xaxis.com +xaydunghonngoc.com +xaylapdiendanang.com +x.azjmp.com +xbaboon.com +xbfk51p7.review +x.bidswitch.net +xblasterads1.com +xbox1emulator.org +xbox360emulator.com +xbox360.ign.us.intellitxt.com +xbox.ign.us.intellitxt.com +xboxoneemux.com +xboxster.ru +x-box.t35.com +xbsezlmaha.loan +xbs.mtree.com +xbs.pao.mtree.com +xbs.sea.mtree.com +x.cb.kount.com +xcc24.pl +xcdgfs.com +xchange.ro +xchangetrak.com +xchat26.myfreecams.com +xch.directrev.com +xch.smrtgs.com +xcl168.s37.jjisp.com +x.clickcertain.com +xclicks.net +xclones.in.net +xclusive.ly +xcnn.com +x.cnt.my +x.co +xcombear.ru +xcr-286.com +xctoflftirk.ivydancefloors.com +xctzwsy.com +xcvopay-pavpal-com-efgregegegeujezssedfrresd435.serveusers.com +xcxzc.ga +xczys.com +xdbwgs.com +x-diesel.biz +x-diesel.com +x-diesel.info +x-diesel.org +xdomplus.com +xdoza.com +xdso.com +xdyjhhjghj.000webhostapp.com +xed.pl +xedserver.com +xeit.com +xemphimhayhd.ga +xenical.1.p2l.info +xenical.3.p2l.info +xenical.4.p2l.info +xenomc.com +xep3gae.top +xep.info +xertive.com +xev2o.com +xev.ru +xfacesbook.com +x.fidelity-media.com +xfinity.com--------phone--confirmation---service-11601574.antiochian.org.nz +xfinity.com--------phone--confirmation---service-593475923.antiochian.org.nz +xfinity.com--------phone--confirmation---service-86362368.antiochian.org.nz +xfire.com +xfotosx01.fromru.su +xft5ui5gr5.is-gone.com +xfuckbook.com +xg4ken.com +xgames-04.com +xgftnlrt.bloger.index.hr +xgggat.myjino.ru +xghyywvutcoq.com +xgydq.com +xhamstertube.com +xhdz.net +xhealth.112.2o7.net +xhealthmobiletools.112.2o7.net +xhealthmobiltools.112.2o7.net +xhqsysp.com +x-hydrocodone.info +xi1111.com +xiangni169.com +xian.jztedu.com +xianyicao.net +xiaocen.com +xiaommn.com +x.iasrv.com +xiazai1.wan4399.com +xiazai2.net +xiazai.dns-vip.net +xiazaidown.net +xiazailou.co +xiazhai.tuizhong.com +xiazhai.xiaocen.com +xicaxique.com.br +xiguasew.com +xigushan.com +xigushan.net +xilonem.ca +ximdav.bplaced.net +x.imwx.com +xinbut.net +xindalawyer.com +xingqibaile.com +xingsi.com +xingyunjiaren.com +xingzi-vision.com +xinhaoxuan.com +xinhuacybz.com +xinhuawindows.com +xin-lian.cn +xinmeiren.net +x.interia.pl +xinweico.net +xinxinbaidu.com.cn +xinyangmeiye.com +xinyitaoci.com +xioooo.com +x-istanbulclub.com +xiti.com +xit.sexlist.com +xiugaiba.com +xixiasedy.com +xixile361.com +xjcudekxtw.net +xjgyb.com +xjlottery.com +xjrul.com +xkaz.org +xkitcs.com +xkochp.cc +xkygmtrrjalx.com +x-lime.net +xlivehost.com +xlmis.com +xlncglasshardware.com +xlolitka.com +xlonhcld.xlontech.net +xlovecam.com +xlsmoyvwt.ivydancefloors.com +xlxl.f3322.org +xmamaonline.xyz +xmarkscom.skimlinks.com +xmgupzbqtj.com +xml2.nbcsearch.com +xml.adfclick1.com +xml.admanage.com +xml.ad-maven.com +xmladserver.com +xml.adservme.com +xml.adsparkmedia.net +xml.adtech.de +xml.adtech.fr +xml.adtech.us +xml.adventurefeeds.com +xml.adxfactory.com +xml.bravenet.com +xml.click9.com +xmldycrfuqukdyiepov.pw +xml.ecpvads.com +xml.explorads.com +xmlheads.com +xmlinde.com +xml.intelligenttrafficsystem.com +xml.mxsads.com +xml.nbcsearch.com +xml.onwardclick.com +xmlpitstop.us.intellitxt.com +xml.plusfind.net +xml.quiveradnet.com +xml.revenuehits.com +xml.seekandsee.com +xmlterra.com +x.mochiads.com +xmronta.com +xmtkj.com +xn--1-8sbcpb0bdm8k6a.xn--p1ai +xn--24-glceagatoq7c2a6ioc.xn--p1ai +xn--66v140h.com +xn--6jw.com +xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai +xn-----6kccaibs5cb8afhjrfmix2n.xn--p1ai +xn------7cdbapdecfd4ak1bn0amjffj7afu3y.xn--p1ai +xn-----7kcabaipgeakzcss7bjdqdwpfnhv.xn--p1ai +xn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai +xn----7sbaaabaei0cc8aj5bj0bncejx.xn--p1ai +xn----7sbahjd3btneuw1joc.xn--p1ai +xn----7sbahm7ayzj1l.xn--p1ai +xn----7sbbagbq7bd5aheftfllo4m.xn--p1ai +xn----7sbbahaq9bb5afgiqfliv4m.xn--p1ai +xn----7sbho2agebbhlivy.xn--p1ai +xn----7sbifcamovvfggw9d.xn--p1ai +xn--80a0aadt.com +xn--80a6ad.com +xn--80aaafbn2bc2ahdfrfkln6l.xn--p1ai +xn--80aaagge2acs2agf3bgi.xn--p1ai +xn--80aaagvmjabrs1aoc9luc.xn--p1ai +xn--80aaaks3bbhabgbigamdr2h.xn--p1ai +xn--80aafb2a.xn--p1ai +xn--80aagddcgkbcqbad7amllnejg6dya.xn--p1ai +xn--80aanaardaperhcem4a6i.com +xn--80ab4aa2g.xn--p1ai +xn--80abgj3a5acid6ghs.top +xn--80abwt.com +xn--80adaggc5bdhlfamsfdij4p7b.xn--p1ai +xn--80aeahghtf8ac5i.xn--p1ai +xn--80aebbcbcdemfkhba4byaehoejh8dza3v.xn--p1ai +xn--80ahdheogk5l.xn--p1ai +xn--80ahvj9e.xn--p1ai +xn--80aikhbrhr.net +xn--80ajbshivpvn2i.xn--p1ai +xn--80ajjbdhgmudixfjc8c5a9df8b.xn--p1ai +xn--80ak6aa92e.com +xn--80amrfdv0h.com +xn--80aodinpgi.xn--p1ai +xn-----8kcatubaocd1bneepefojs1h2e.xn--p1ai +xn----8sbdbjgb1ap7a9c4czbh.xn--p1acf +xn----8sbhefaln6acifdaon5c6f4axh.xn--p1ai +xn--90acenikpebbdd4f6d.xn--p1ai +xn--989awoz98btnal2e708b.com +xn--9ckxbq5co.com +xn--9g3b23j84k.com +xn----9sbebi2bvzr7h.xn--p1ai +xn--avgng-ora.se +xn--b1adccaf1bzj.xn--p1ai +xn--b1ag5cfn.xn--p1ai +xn--b1agm2d.net +xn--begndeingilizce-1vb59n.com +xn--behrdengnge-s8a2u.de +xn--bestelnidag-28a.org +xn--bltter-cua.de +xn--c1acygb.xn--p1ai +xn--czogi-m7a.pl +xn--d1abj0abs9d.in.ua +xn--d1aifoe0a9a.top +xn--dowiecznoci-mfc.pl +xn----dtbndd4ae7eub.top +xn--e1afanlbnfckd7c3d.xn--p1ai +xn--e1aggki3c.xn--80adxhks +xn--e1ap.com +xn--elektriker-malm-ntb.nu +xn--fortunadsseldorf-qzb.de +xn--frgafrst-b0a7o.se +xn--gar-hla.io +xn--genvgar-8wa.nu +xn--h1aakne2ba.xn--p1ai +xn--h1ahbi.com.ua +xn--hanfdmmung-u5a.com +xn--hcksler-5wa.com +xn--hl0bw67b.com +xn--hxtt49a0mzjrd.com +xn----itbeirbjbi7bc6bh2d.xn--p1ai +xn----itbkqkfiq.xn--p1ai +xn--l1aengat.xn--p1ai +xn--lifehacer-1rb.com +xn--lstadhemnra-t8ae.se +xn--messgerte-12a.at +xn--mgba3a2ei5a.com +xn--milliyet-p0ed.com +xn--nztu2k.net +xn--oogle-wmc.com +xn--orw0a8690a.com +xn--plschtier-r9a.de +xn--portogebhren-klb.de +xn--praswki-o0a.org +xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai +xn--r9zm80a.com +xn--radiohren-57a.de +xn--reisebrosoftware-ozb.de +xn--s-1ga.se +xn--selbststndig-heute-stb.de +xn--singlebrsen-guide-5zb.de +xn--spdniczki-66a.pl +xn--stockholmbostder-7nb.se +xn--telusmobilit-meb.com +xn--tierheim-lbeck-psb.de +xn--tnsbergkommune-qqb.no +xn--u8jtdyb1ew67y.com +xn--verschlsselt-jlb.com +xn--vns90erw5e.com +xnxxandxvideos.com +xnxx-n.com +xn--yahoo-2ra.com +xn--ziratbank-31a.com +xn--zirt-doaa.com +xn--zraat-y3a.com +xoads.com +xobjzmhopjbboqkmc.com +xolodremont.ru +xoomer.alice.it +xoom.virgilio.it +xorgwebs.webs.com +xotsa.frenchgerlemanelectric.com +xouert.accountant +xoxktv.com +xp1.zedo.com +xp2.zedo.com +xpantivirus.com +x-park.net +xpath.syncrvprodist.com +xpcs.ads.yahoo.com +xpedientindia.com +xpertsearch.com +xpertwebinfotech.com +x-phentermine.info +xpipemotoring.top +xpl.theadex.com +xplusone.com +xpnssuh.net +xponlinescanner.com +xponsor.com +xpop.co +x-porno.video +xpornstarsckc.ddns.name +xporontube.tripod.com +xportvusbdriver8i.snack.ws +xpostmail.com +xpresms.com +xpresscare.ru +x-pronet.com +xpt.com.au +xpxp06.com +xpxp36.com +xpxp48.com +xpxp53.com +xpxp74.com +xq1.net +xqqd.net +xqyrkdq.tk +x-rates.ru +xr.flyboytees.com +xr.h4ck.la +xrnhongyuda.com +x-road.co.kr +xrs56.com +xrus.org +xrwxeqgw.com +x.saponsroyale.com +xsd6.com +xsion.net +xsso.anbtr.com +x-stars.ru +xstatic.nk-net.pl +xsuper-filmy.pl +xsztfrlkphqy.com +xtainment.net +xtd.com.au +xtds.info +xtendmedia.com +xtesty.pl +xtqizu.com +x-traceur.com +xtrafic.ro +xtremetop100.com +xtube.com +xtubeporno.net +xtxgsx.com +xuanguo.f3322.org +xuelisz.com +xuemeilu.com +xuenvwg.com +xuexingmm.com +xuhukor.boxhost.me +xuki.us +xulusas.com +xuonginaz.com +xuvhyfu1.mvean.ml +xvga.org +xvideod03.com +xvideosbay.com +xvideosporn.biz +xvika.net +xvika.org +xvlaw.com +xvrxyzba253.hotmail.ru +xwatt.ru +xwbe.wcdn.co.il +xwell.ru +xx52200.com +xxart.ru +xxi.ss.la +xxjrbdguytaii.com +xxlargepop.com +xxooyx.com +xxvideohot-2015.ga +xxx18.ucoz.com +xxx3dvideo.com +xxxcounter.com +xxx.cqcounter.com +xxxdatinglocal.us +xxxguitars.com +xxxmyself.com +xxxnaked.nu +xxxnatelefon.ru +xxxporno18.ru +xxxpornway.com +xxx-r.com +xxxreactor.com +xxxrus.org +xxx-treker.ru +xxxtube69.com +xxxx.nsupdate.info +xxxxxxx.hopto.org +xxx.zz.am +xxyyzz.youcanoptout.com +xy-cs.net +xyguilin.com +xyhpkj.com +xyleo.co.uk +xymlhxg.com +xyrjtq.misterjoy.ru +xyxbhig.net +xyxsol.com +xyxudubax.angelcities.com +xyybaike.com +xyyualjm.com +xyz.freelogs.com +xyz.freeweblogger.com +xyzguyz.com +xz1013.com +xz618.com +xz9u.com +xzcnjs01s0-system.esy.es +xzegarsmiercix.prv.pl +x.zeroredirect.com +xzheli.com +xz.hkfg.net +xzipy.com +xzlive.com +xzmnt.com +xzpk.org +xzsk.com +xzz.goodoboy.com +y0.extreme-dm.com +y1.extreme-dm.com +y1i69.com +y2k.hitbox.com +y3.ifengimg.com +y4681.6128786.com +y73shop.com +y822.com +ya-aaaa123123.myjino.ru +yaaknaa.info +yab-adimages.s3.amazonaws.com +yabuka.com +yachfz.altervista.org +yachtmasters.com.br +yachtsegeln.at +yacovtours.ro +yad1.yad2.co.il +yaderenergy.ru +y.admob.com +yadro.ru +yads.zedo.com +yaestamoscansadosdesusleyes.com.py +ya-googl.ws +yah00.mall-message.security-update.ingenieriaissp.com +yah-online.csbnk.info +yahoo.effectivemeasure.net +yahoo.ivwbox.de +yahoo.nuggad.net +yahoo-online.com +yahoosaver.net +yahoo-sign.com +yahoo-verification.publamaquina.cl +yah.upajs.co +y.ai +yaisha0.bid +yamaha.122.2o7.net +yamangensan.net +yambalingalonga.com +yam-cdc.com +yamexico.com +yaminecraft.ru +yamleg.fu8.com +yamoo.com.ng +yanagi.co.kr +yanbaru-ikoi.com +yandexadexchange.net +yandex.serulom.tk +yang.hitbox.com +yangqifoods.com +yangzhou.c-zs.com +yangziriver.com +yangzirivercorp.com.au +yannick.delamarre.free.fr +yantushi.cn +yanuotianxia.org +yaoguangdj.com +yardbarker.tags.crwdcntrl.net +yardbookpro.com +yarentuzlamba.net +yarigeidly.com +yasamkocutr.com +yaslibakici.net +yaslibakicisi.com.tr +yasmin.1.p2l.info +yasmin.3.p2l.info +yasmin.4.p2l.info +yatilieleman.com +yatrk.xyz +yatue.biz +yaxay.com +yaza.com.pk +yazhoutupianwang.com +yazouh.com +yb2198124.f3322.org +ybex.com +ybguvvvvcduv.trade +ybinst0.ec.yimg.com +ybinst1.ec.yimg.com +ybinst2.ec.yimg.com +ybinst3.ec.yimg.com +ybinst4.ec.yimg.com +ybinst5.ec.yimg.com +ybinst6.ec.yimg.com +ybinst7.ec.yimg.com +ybinst8.ec.yimg.com +ybinst9.ec.yimg.com +ybjch.cn +ycare-login.microsoft-pdf.com +ycdeaf.or.kr +y.cdn.adblade.com +ychan.drivershq.hop.clickbank.net +yclydq.com +ycqjd.com +ycshiweitian.com +yctuoyu.com +ycv.clearshieldredirect.com +ycwlky.com +ycyns.com +yd315.com +ye6.pl +yeartwit.com +yebocasino.com +yebocasino.co.za +yeeeah.us.intellitxt.com +yegushi.com +yekna.com +yellcom.122.2o7.net +yellocloud.be +yellowcabnc.com +yellow-directory-canada.com +yellspain.112.2o7.net +yelpay.ru +yembonegroup.com +yemekicmek.com +yemengaglar.com +yenigalatasaraysozleri.com +yeniresimlerii.com +yeniyuzyillions.org +yepdigital.adk2x.com +yerea.cf +yes1899.com +yes4biz.net +yesads.com +yesadvertising.com +yeshigongzhu.com +yesindiacommunication.net +yesitisqqq.com +yeskyafp.allyes.com +yesmt.com +yesteam.org.in +yettysharl.ru +yeukydrant.com +y.extreme-dm.com +yfcarh.com +yfdiet.com +yfvnve.com +ygoulkycdibpjcm.pw +ygy.co +yhiltd.co.uk +yhit.press +yhjlhb.com +yhoo.com.hk +yhzawnm.mvnuc.nut.cc +y.ibsys.com +yiduaner.cn +yie4zooseif.info +yieldads.com +yield.audience.digitalmedia.bg +yieldbuild.com +yieldlab.net +yieldmanagement.adbooth.net +yieldmanager.adbooth.com +yieldmanager.com +yieldmanager.net +yieldmo.com +yieldtraffic.com +yiexua8.top +yifgbtboi.top +yigitakcali.com +yihaotui.com +yiheng.jztedu.com +ying.hitbox.com +yingke86wang.com +yinpingshan.net +yinputech.com +yinyuanhotel.net +yinyue.fm +yipstas.com +yisde.cgffood.vn +yitkomfj.angelcities.com +yiuuu.cf +yixingim.com +yjlonnmtaytxp.com +yk.handlerhackz.tk +ykkg.com +ykxo.com +ylcoffeetea.com +ylgingq.angelcities.com +yllix.com +ylmqjz.com +ylprwb.com +ylpzt.juzojossai.net +ym.adnxs.com +ymail-activate1.bugs3.com +ymailadminhome.com +ym.bannerconnect.net +ymvvdsfhix.pw +ymxpb.com +ynovarsignos.com +ynrenai.net +ynxp.co +ynymnwbm.bloger.index.hr +yoda.cybereps.com +yodleeinc.tt.omtrdc.net +yodo.ro +yogamanas.com +yogamatsexpert.com +yogamentor.com +yogavaidyasala.com +yoggrt.com +yologroup.com.au +yoluxuryevents.com +yonalon.com +yongjiang.tmcaster.com +yongyap.com +yontorisio.com +yoo9ier.top +yoo.londonbinanddumpsterrental.ca +yoopsie.com +yopoint.in +yorick.adjuggler.net +yorkerwis.ga +yorkexports.com +yorkndb.com +yorkshireccc.com +yorkshire.com +yorkstrike.on.nimp.org +yorktoncurlingclub.com +yoshkarola.zrus.org +yosle.net +yosoyfeliz.se +yostlawoffice.com +yotafiles.com +yotefiles.com +yottos.com +yotube.com +youandcredit.ru +youaresogay.com +youaskedthedomain.cn +youbenefitschoices.com +youbloodyripper.com +youbrainboost.asia +youcanbringmebacktolife.com +youcanlosefat.com +youcanoptin.com +youcanoptin.net +youcanoptin.org +youcanoptout.com +youcanoptout.net +youcanoptout.org +youcorn.com +youdao.com +youdesigner.kz +youease.com +youerwq.men +youfck.com +yougetsignal.com +youghbould.wordpress.com +yougube.com +youinvest.org +youjizz.com +youjizz.vc +youknownow.ru +youko56.com +youkuedu.com +youngandcursed.com +youngcarinsurance.com +youngsbeautysupplygr.com +young-virgin.nu +youpageupdate.cf +youporn-forum.ga +youporn-forum.uni.me +youporn-ru.com +youradexchange.com +yourads.website +youradulthosting.com +yourb4you.com +your-bearings.com +yourcoloradoelectrician.com +yourcomputerhelpdesk.com +your-confirm-safety.co.nf +your.dailytopdealz.com +yourdailytrailer.yournewtab.com +yourdesires.ru +yourdvdplayer.com +youresponsive.com +your-fanpagee1.regis-dev9.tk +yourfiles.pl +yourfortressforwellbeing.com +yourfreegascard.com +your-free-iphone.com +yourgascards.com +yourgiftrewards.com +your-gift-zone.com +yourgiftzone.com +yourhandytips.com +yourhost.pl +yourhotgiftzone.com +youri.nu +youripad4free.com +yourlearningnetwork.net +your-movies.pl +yourmovies.pl +yourothersite.com +yourownapplestore.com +yourownapplestore.trizac.com +yourpage.blazenet.net +yourpagesupdale.cf +yourpdf3.com +yourrewardzone.com +your-safe.xyz +yoursearch.me +yourseniorapartments.com +yoursite.com +yoursmartrewards.com +yourspageupdate.cf +yourstats.net +yourtango.us.intellitxt.com +yourtemplatefinder.com +yourtreedition.com +yourverifiycation.com +yourvisionlifecoach.com +yousewan.com +you-shall-not-pass.is74.ru +youspots.top +youthnexusuganda.org +youthsprout.com +youtibe.com +youtoner.it +youtube.112.2o7.net +youtubeclone.us +youtubedownload.org +youtubei.youtube.com +youtuberid.com +youtuebe.info +youtuhe.com +youvids.pl +yoyoykamphora.com +yoyo-zdjecia.bo.pl +yoytv.za-darmo.eu +ypcpw.com +ypgg.kr +yplassembly.in +ypn-js.overture.com +ypschool.cn +yqybjyw.com +yrals.com +yramasltd.com +yrkdsp.112.2o7.net +yrkes-klader.se +yrkeve.112.2o7.net +yrnvau.com +yrservice.com.au +yrtas.btrll.com +yrwap.cn +ysbbcrypsc.com +yserch.com +ysgnerionirkutskagl.com +ysiu.freenation.com +ysjtly.com +yskhyaxzfaw.org +ystoidea.mirupload.ru +yt1.ddns.net +yt.5.p2l.info +ytaahg.vo.llnwd.net +ytdhshoutidai.com +ytdownloader.com +ytf8i5ce.top +ytg1235.com +ytmnd.com +ytownhall.com +yts.moatads.com +yttestsite.com +ytx360.com +yuanhehuanbao.com +yuanjiaomm.com +yuankouvip.com +yuarra.pluto.ro +yubikk.info +yuccavalleyquicklube.com +yudexjr.com +yuejinjx.com +yueqi360.com +yue.uaesoa.net +yugege.f3322.net +yugk.net +yugo-star.ru +yugu4.ml +yuirehijoj.vilayer.me +yukoyuko.112.2o7.net +yukpoligami.com +yukselenyapi.com.tr +yulh.com +yumaballet.org +yumekin.com +yumenetworks.com +yuminhong.blog.neworiental.org +yuniomy88.000webhostapp.com +yunque.pluto.ro +y.un-technologies.com +yupdduk.co.kr +yuppipark.com +yuppipuppy.com +yupuwuxake.ihostwell.com +yuracqori.com +yurgorod.ru +yur-p.ru +yusungtech.co.kr +yuxiwine.com +yuyu.com +yvdeuwn.angelcities.com +yvrktjohnvdb.com +yvwjmnodepyi.com +yvwxggsoorvm.com +yxb77.com +yxcqhb.com +yxhlv.com +yxhxtc.net +yx-in-f108.1e100.net +yxing-apple.com +yxshengda.com +yxxzzt.com +yxzyjx.net +yy3dhmfd.top +yyjgift.com +yyjwcimlyngh.com +yymus.com +yysscc.com +y.zeroredirect.com +yzhsqdexo.top +yz-sl.cn +yzunited.com +yzwle.com +z0bu.dynu.com +z0.extreme-dm.com +z0x.pl +z1.adserver.com +z1.extreme-dm.com +z1.zedo.com +z2.zedo.com +z32538.nb.host127-0-0-1.com +z3us1.z-ed.info +z5x.net +z7752.com +z8x.pl +z9x.pl +za10groszy.pl +za1.sierra-fox.com +za2.zeroredirect8.com +za9ahfi.top +zaapplesales.blogspot.com +zabava-bel.ru +zabilogha.ehost-services204.com +z.abnad.net +za-cdn.effectivemeasure.net +zacharywilliams.com.au +zachomikowane.blogspot.com +za-chomikuj.pl +zacne.eu +za-darmo.eu +zadmj.cp-addltives.com +z.admob.com +zads.zedo.com +zafiti01.webtrekk-us.net +za-fun-offer.com +zag.112.2o7.net +zag.122.2o7.net +zagga.in +zahlungsident.xyz +zahnaerztewl.de +zahnimplantateneu.xyz +zahnklammer.net +zahntechnik-imlau.de +zahvat.ru +zai1mai.top +zaidia.xhost.ro +zaile-umrzesz.pl +zaimhelp.ru +zaim-pod-zalog-krasnodar.ru +zaiph2a.top +zajm-pod-zalog-nedvizhimosti.ru +zajm-zalog-krasnodar.ru +zakazfutbolki.com +zakazvzloma.com +zakon-ob-obrazovanii.ru +zakonobosago.ru +zal-inkasso.net +zaloadi.ru +zaloro.com +zalukajfilmy.pl +zalukaj-online.pl +zalukaj-player.pl +zamalek-jp.com +zamaramusic.es +zambini.ru +zambrana.com +zamiana-koloru.blogspot.com +zamitech.com +zamow-najacze1.pl +zampolit1990.popunder.ru +za-music.mymobiplanet.com +zanaflex.1.p2l.info +zango.112.2o7.net +zangocash.com +zango.com +zanox-affiliate.de +zanox.com +zantracker.com +zanzibarcarhire.info +zaobao.com.sg +zapadserver1.com +zapcdn.space +zapisujemy24.pl +zapisujemy-sie.pl +zapto.org +zara11.com +zarabiaj-dzis.pl +zarabiajpieniadze.org +zarabiajwsieci.5v.pl +zarabotat-na-sajte.ru +zarajbuilders.com +zara.voucher.giftcards-promotion.com +zara.vouchers.fashion-promotions.com +za-rejestrowany.pl +zarenica.net +zarepta.com +zarget.com +zarinakhan.net +zarobkisasiada.pl +zarozinski.info +zarrmarketing.co.uk +zartsex.de +zashgroup.net +zasilkonto.cba.pl +zasil-konto.tk +zastenchivosti.net +zastroyka.org +zataz.fr.intellitxt.com +zatznotfunny.us.intellitxt.com +zavariushoponline.com +zavidovodom.com +zazagames.org +za.zeroredirect1.com +zb1.zeroredirect1.com +z-bankieren.com +zbest.in +zbierajnagrody.bo.pl +zbiorniczek.pl +zbiornik.com +zbjpsy.com +z.blogads.com +zb.zeroredirect1.com +zbzppbwqmm.biz +zc1.delta-boa.com +zc1.zeroredirect11.com +z.ceotrk.com +zcfywnicu.top +zchon.net +zcontentlocker7gpa8a.xyz +zc.zeroredirect1.com +zd1.zeroredirect1.com +zd1.zeroredirect6.com +zdads.e-media.com +zdau-builder.122.2o7.net +zdbb.net +zdbb.netshelter.net +zdesestvareznezahodi.com +zdesformula.ru +zdesoboi.com +zdf.ivwbox.de +zditm.pl +zdlceq.com +zdnet.be.intellitxt.com +zdravets.org +zdwomen.com +zd.zeroredirect1.com +zd.zeroredirect2.com +ze1.zeroredirect1.com +zealotnetworks-d.openx.net +zebra56.com +zebracoddoc.us +zebradudka.com +zebramart.ru +zebrezebre.com +zebutal.1.p2l.info +zed21.net +zedo.com +zeesuccess.com +zeevex-online.com +zegar-fb.pl +zegarfb.pl +zegarysmierci.prv.pl +zeg-distribution.com +zeit01.webtrekk.net +zeit.met.vgwort.de +zeitonl.ivwbox.de +zejotyke.boxhost.me +zejrzyj-zdjecia.bo.pl +zekert.com +zeldalagrange.com +zeldalily.us.intellitxt.com +zeleznobeton.ru +zelihaceylan.net +zellokpaq.kz +zemgo.com +zencudo.co.uk +zenfone4.com +zengolese.com +zenigameblinger.org +zenitchampion.cn +zenithtradinginc.com +zenkreka.com +zenpraktijk.nl +zensmut.com +zensolar.com.au +zentastic.com +zentronic.co.id +zenzuu.com +zer4us.co.il +zero1.it +zerocash.msk.ru +zeroclan.net +zeroclick.sendori.com +zerofruti.com.br +zeromskiego-77.naszebanki.pl +zeroredirect10.com +zeroredirect11.com +zeroredirect12.com +zeroredirect1.com +zeroredirect2.com +zeroredirect3.com +zeroredirect4.com +zeroredirect5.com +zeroredirect6.com +zeroredirect7.com +zeroredirect8.com +zeroredirect9.com +zeroredirect.com +zerowastecity.org +zesdak-mounde.tk +zesiumshop.de +zestardshop.com +zetawhit.com +zetes.vdsinside.com +zetgie.com.pl +zetmaster.ru +zettapetta.com +zeusclicks.com +zeus.developershed.com +zeus.rhsystems.ru +zevents.com +z.extreme-dm.com +ze.zeroredirect1.com +ze.zeroredirect2.com +zf1.quebec-bin.com +zf1.zeroredirect11.com +zfb2015.com +zfet.com +zfhg.digitaldesire.com +zfhx.com +zfm.oewabox.at +zfotos.fromru.su +zfyn.com +zf.zeroredirect1.com +z.gameslivetv.com +zgarniij_vouchher.skroc.pl +zgarnijbilety.pl +zgarnij-butynike.coolpage.biz +zgarnijciuchy.pl +zgarnijdoladowanie.pl +zgarnij.net +zgarnijnike.blogspot.com +zgarnij-nikebuty.coolpage.biz +zgarnijplik.pl +zgarnij-prezent.pl +zgdjc.com +zgfhl.com +zgsjfo.com +zgsysz.com +zgzmei.com +zh18.net +zh1.zeroredirect11.com +zhalehziba.com +zhangzhian.net +zhanhuen168.f3322.org +zhaojinyi5045.f3322.org +zharmonics-online.com +zhengxing.onlinedj.com.cn +zhenzhongmuye.com +zhidao.shchaoneng.cn +zhidao.xinhuacybz.com +zhidao.yxad.com +zhiher.com +zhijufang.com +zhirnayautka.ru +zhirok.com +zhizhishe.com +zh-k-obyknovennoe-chudo.ru +zhongguociwang.com +zhonghe-zg.com +zhongpandz.com +zhongtongbus.lk +zhongwenlink.com +zhongyilunwen.com +zhs389.com +zhuravlev.info +zhuxuelong.f3322.org +ziale.org.zm +ziayi0e.top +zibup.csheaven.com +zichoh6.bid +zief.pl +ziej6ai.bid +ziemiazakazana.pl +zierfisch-hilfe.de +ziffdavisdesktoplinux.112.2o7.net +ziffdavis-d.openx.net +ziffdavisenterprise.112.2o7.net +ziffdavisenterpriseglobal.112.2o7.net +ziffdaviseweek.112.2o7.net +ziffdavisfilefront.112.2o7.net +ziffdavisglobal.112.2o7.net +ziffdavispennyarcade.112.2o7.net +zigarettenonl.canalblog.com +zigarettenonlinekaufen1.bloog.pl +zigarettenonlinekaufen1.blox.pl +zigarettenonlinekaufen2.bloog.pl +zigarettenonlinekaufen2.drupalgardens.com +zigzog.ru +ziheyuan.com +ziillowhouses.us +zik-et-dance.com +zikr360.com +zilllow.us +zimbras.org +zimc.com +zimeks.com.mk +zimmer-zu-vermieten.de +zintext.com +zionstar.net +zip.er.cz +zipitfast.com +zippedonlinedoc.com +zip.sk +ziptrapping.co.za +zipzoomfly.122.2o7.net +ziraatbireyselkampanya.com +ziraatceptesube.net +ziraatkampanyalari.org +zirakpurproperty.com +zixunxiu.com +zizicell.id +zj1.zeroredirect1.com +zjgswtl.com +zjhnyz.com +zjhuashi.net +zjjlf.croukwexdbyerr.net +zjk24.com +zjknx.cn +zjkxunda.com +zjlawyeronline.com +zjnzf.com +zjylk.com +zj.zeroredirect1.com +zk2.pl +zkashi.com +zkic.com +zkjovpdgxivg.ga +zk.zeroredirect1.com +zl1.bravo-deg.com +zlate.de +zlatnajesen.com +zlokalizujtelefon.pl +zlothonline.info +zlqsb.com +zm1.zeroredirect5.com +z-master.ru +zmedia.com +zmienienie-koloru.blogspot.com +zmienkolorfejsazafree.blogspot.com +zmienkolory.blogspot.com +zmien-koolor.blogspot.com +zmien-motyw.blogspot.com +z.moatads.com +zmotoryzowani247.pl +zmotoryzowani-24.pl +zmotoryzowani24.pl +zmovvkzvr.top +zmt100.com +z-na.amazon-adsystem.com +znajdz-numer.pl +znakom.sibtest.ru +znakomstva-moskva77.ru +znakomstva-piter78.ru +znaniyapolza.ru +znapapp.ae +znaptag-us.s3.amazonaws.com +znaturaloriginal.com +zndxa.com +zobacz24.pl +zobaczktopodgladaa.blogspot.com +zoboutique.com +zocor.about-tabs.com +zoek.zugo.com +zoetekroon.nl +zog.link +zoguo.com +zojirushi-products.ru +zoloft.1.p2l.info +zoloft.3.p2l.info +zoloft.4.p2l.info +zoloft.about-tabs.com +zolotoy-lis.ru +zomb.webzdarma.cz +zona-aqua.ru +zonaberitahot.com +zonadehospitales.mx +zonamovil.cuentaspremiobcp.com +zonasegura1.bnenlinea.net +zonasegura.bnenlinea.net +zonaseguraivia1bcp.com +zonaseguravia2bcp.com +zonaseguravialbcp.com +zonaseguravirtual1.com +zonasequraviabcp.com +zonawm.biz.popunder.ru +zone-kev717.info +zonnepanelenwebshop.com +zoodrawings.com +zoogdiesney.com +zoogdinsney.com +zoogdisany.com +zoogdiseny.com +zoogdisiny.com +zoogdisny.com +zooggames.com +zooh1od.top +zoolubimets.ru +zoominfo.com +zoomovies.org +zoompegs.com +zoomtechnology.com.pk +zoomwebmedia.com.au +zoophil.com +zoosexart.com +zootoplist.com +zootravel.com +zoo-zip.de +zophim.me +zorkiy.net +zostan-testerka.club +zostan-zwyciezca.com +zotasinc.com +zous.szm.sk +zovermedical.com.sa +zoygroup.com +zpaypal.co.uk +zpfrak.com +zpm-jaskula.com.pl +zqmdm.com +zqzcphioh.top +zr0.net +zr1.zeroredirect11.com +zrdom.com.ua +z-realestates.com +zriigruporubii.com +zrizvtrnpale.tk +zrus.org +zryydi.com +zs11.cnzz.com +zs16.cnzz.com +zs1.zeroredirect1.com +zs2vm.top +zscaler.net +zscalerone.net +zscalertwo.net +zsc.scmspain.com +zs.hniuzsjy.cn +zsmisaki.com +zssdi.it +zsw.jsyccnxq.com +ztamfqvtod.com +ztb.cztv.tv +ztgy.com +ztkmne.com +ztrack.net +ztrf.net +zt.tim-taxi.com +zu1.november-lax.com +zug.us.intellitxt.com +zum.mudmaggot.com +zumodi.com +zuribysheth.com +zuverink.net +zuzim.xyz +zuzzer5.com +zv1.november-lax.com +zverokruh-shop.cz +zvetki.ru +zvezdagedon.ru +zvezda-group.ru +zviframe.biz +zvogsatformalisticirekb.com +zw52.ru +zwgoca.com +zwickauer-musikforum.de +zwyciezcy-konkursu.ml +zx6.ru +zxsqing.com.ng +zxyjhjzwc.com +zyban.1.p2l.info +zyban.about-tabs.com +zyban-store.shengen.ru +zyjyyy.com +zyngatables.com +zyprexa.about-tabs.com +zyrdu.cruisingsmallship.com +zyrtec.1.p2l.info +zyrtec.3.p2l.info +zyrtec.4.p2l.info +zyski-z-innowacji.pl +zytpirwai.net +zyv.tiziana.ru +zzbroya.com.ua +zz.cqcounter.com +zzdsfy.com +z.zeroredirect.com +zzha.net +zzhomes.com +zzhtv.com +z-ziraatmobil.xyz +zzjfl.net +zzjgjjh.com +zzmyw.com +zzpxw.cn +zzqrt.com +zzqwaxxybf.info +zzshw.net +zzsyw.com +zztxdown.com +zzz.clickbank.net diff --git a/tricerads_list/tricerads-logo.png b/tricerads_list/tricerads-logo.png new file mode 100644 index 0000000..69d4032 Binary files /dev/null and b/tricerads_list/tricerads-logo.png differ